@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

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

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: 0.75s;
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

/*
 * Foundation Icons v 3.0
 * Made by ZURB 2013 http://zurb.com/playground/foundation-icon-fonts-3
 * MIT License
 */
@font-face {
  font-family: "foundation-icons";
  src: url("../..//fonts/foundation/foundation-icons.eot");
  src: url("../..//fonts/foundation/foundation-icons.eot?#iefix") format("embedded-opentype"), url("../..//fonts/foundation/foundation-icons.woff") format("woff"), url("../..//fonts/foundation/foundation-icons.ttf") format("truetype"), url("../..//fonts/foundation/foundation-icons.svg#fontcustom") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fi-address-book:before,
.fi-alert:before,
.fi-align-center:before,
.fi-align-justify:before,
.fi-align-left:before,
.fi-align-right:before,
.fi-anchor:before,
.fi-annotate:before,
.fi-archive:before,
.fi-arrow-down:before,
.fi-arrow-left:before,
.fi-arrow-right:before,
.fi-arrow-up:before,
.fi-arrows-compress:before,
.fi-arrows-expand:before,
.fi-arrows-in:before,
.fi-arrows-out:before,
.fi-asl:before,
.fi-asterisk:before,
.fi-at-sign:before,
.fi-background-color:before,
.fi-battery-empty:before,
.fi-battery-full:before,
.fi-battery-half:before,
.fi-bitcoin-circle:before,
.fi-bitcoin:before,
.fi-blind:before,
.fi-bluetooth:before,
.fi-bold:before,
.fi-book-bookmark:before,
.fi-book:before,
.fi-bookmark:before,
.fi-braille:before,
.fi-burst-new:before,
.fi-burst-sale:before,
.fi-burst:before,
.fi-calendar:before,
.fi-camera:before,
.fi-check:before,
.fi-checkbox:before,
.fi-clipboard-notes:before,
.fi-clipboard-pencil:before,
.fi-clipboard:before,
.fi-clock:before,
.fi-closed-caption:before,
.fi-cloud:before,
.fi-comment-minus:before,
.fi-comment-quotes:before,
.fi-comment-video:before,
.fi-comment:before,
.fi-comments:before,
.fi-compass:before,
.fi-contrast:before,
.fi-credit-card:before,
.fi-crop:before,
.fi-crown:before,
.fi-css3:before,
.fi-database:before,
.fi-die-five:before,
.fi-die-four:before,
.fi-die-one:before,
.fi-die-six:before,
.fi-die-three:before,
.fi-die-two:before,
.fi-dislike:before,
.fi-dollar-bill:before,
.fi-dollar:before,
.fi-download:before,
.fi-eject:before,
.fi-elevator:before,
.fi-euro:before,
.fi-eye:before,
.fi-fast-forward:before,
.fi-female-symbol:before,
.fi-female:before,
.fi-filter:before,
.fi-first-aid:before,
.fi-flag:before,
.fi-folder-add:before,
.fi-folder-lock:before,
.fi-folder:before,
.fi-foot:before,
.fi-foundation:before,
.fi-graph-bar:before,
.fi-graph-horizontal:before,
.fi-graph-pie:before,
.fi-graph-trend:before,
.fi-guide-dog:before,
.fi-hearing-aid:before,
.fi-heart:before,
.fi-home:before,
.fi-html5:before,
.fi-indent-less:before,
.fi-indent-more:before,
.fi-info:before,
.fi-italic:before,
.fi-key:before,
.fi-laptop:before,
.fi-layout:before,
.fi-lightbulb:before,
.fi-like:before,
.fi-link:before,
.fi-list-bullet:before,
.fi-list-number:before,
.fi-list-thumbnails:before,
.fi-list:before,
.fi-lock:before,
.fi-loop:before,
.fi-magnifying-glass:before,
.fi-mail:before,
.fi-male-female:before,
.fi-male-symbol:before,
.fi-male:before,
.fi-map:before,
.fi-marker:before,
.fi-megaphone:before,
.fi-microphone:before,
.fi-minus-circle:before,
.fi-minus:before,
.fi-mobile-signal:before,
.fi-mobile:before,
.fi-monitor:before,
.fi-mountains:before,
.fi-music:before,
.fi-next:before,
.fi-no-dogs:before,
.fi-no-smoking:before,
.fi-page-add:before,
.fi-page-copy:before,
.fi-page-csv:before,
.fi-page-delete:before,
.fi-page-doc:before,
.fi-page-edit:before,
.fi-page-export-csv:before,
.fi-page-export-doc:before,
.fi-page-export-pdf:before,
.fi-page-export:before,
.fi-page-filled:before,
.fi-page-multiple:before,
.fi-page-pdf:before,
.fi-page-remove:before,
.fi-page-search:before,
.fi-page:before,
.fi-paint-bucket:before,
.fi-paperclip:before,
.fi-pause:before,
.fi-paw:before,
.fi-paypal:before,
.fi-pencil:before,
.fi-photo:before,
.fi-play-circle:before,
.fi-play-video:before,
.fi-play:before,
.fi-plus:before,
.fi-pound:before,
.fi-power:before,
.fi-previous:before,
.fi-price-tag:before,
.fi-pricetag-multiple:before,
.fi-print:before,
.fi-prohibited:before,
.fi-projection-screen:before,
.fi-puzzle:before,
.fi-quote:before,
.fi-record:before,
.fi-refresh:before,
.fi-results-demographics:before,
.fi-results:before,
.fi-rewind-ten:before,
.fi-rewind:before,
.fi-rss:before,
.fi-safety-cone:before,
.fi-save:before,
.fi-share:before,
.fi-sheriff-badge:before,
.fi-shield:before,
.fi-shopping-bag:before,
.fi-shopping-cart:before,
.fi-shuffle:before,
.fi-skull:before,
.fi-social-500px:before,
.fi-social-adobe:before,
.fi-social-amazon:before,
.fi-social-android:before,
.fi-social-apple:before,
.fi-social-behance:before,
.fi-social-bing:before,
.fi-social-blogger:before,
.fi-social-delicious:before,
.fi-social-designer-news:before,
.fi-social-deviant-art:before,
.fi-social-digg:before,
.fi-social-dribbble:before,
.fi-social-drive:before,
.fi-social-dropbox:before,
.fi-social-evernote:before,
.fi-social-facebook:before,
.fi-social-flickr:before,
.fi-social-forrst:before,
.fi-social-foursquare:before,
.fi-social-game-center:before,
.fi-social-github:before,
.fi-social-google-plus:before,
.fi-social-hacker-news:before,
.fi-social-hi5:before,
.fi-social-instagram:before,
.fi-social-joomla:before,
.fi-social-lastfm:before,
.fi-social-linkedin:before,
.fi-social-medium:before,
.fi-social-myspace:before,
.fi-social-orkut:before,
.fi-social-path:before,
.fi-social-picasa:before,
.fi-social-pinterest:before,
.fi-social-rdio:before,
.fi-social-reddit:before,
.fi-social-skillshare:before,
.fi-social-skype:before,
.fi-social-smashing-mag:before,
.fi-social-snapchat:before,
.fi-social-spotify:before,
.fi-social-squidoo:before,
.fi-social-stack-overflow:before,
.fi-social-steam:before,
.fi-social-stumbleupon:before,
.fi-social-treehouse:before,
.fi-social-tumblr:before,
.fi-social-twitter:before,
.fi-social-vimeo:before,
.fi-social-windows:before,
.fi-social-xbox:before,
.fi-social-yahoo:before,
.fi-social-yelp:before,
.fi-social-youtube:before,
.fi-social-zerply:before,
.fi-social-zurb:before,
.fi-sound:before,
.fi-star:before,
.fi-stop:before,
.fi-strikethrough:before,
.fi-subscript:before,
.fi-superscript:before,
.fi-tablet-landscape:before,
.fi-tablet-portrait:before,
.fi-target-two:before,
.fi-target:before,
.fi-telephone-accessible:before,
.fi-telephone:before,
.fi-text-color:before,
.fi-thumbnails:before,
.fi-ticket:before,
.fi-torso-business:before,
.fi-torso-female:before,
.fi-torso:before,
.fi-torsos-all-female:before,
.fi-torsos-all:before,
.fi-torsos-female-male:before,
.fi-torsos-male-female:before,
.fi-torsos:before,
.fi-trash:before,
.fi-trees:before,
.fi-trophy:before,
.fi-underline:before,
.fi-universal-access:before,
.fi-unlink:before,
.fi-unlock:before,
.fi-upload-cloud:before,
.fi-upload:before,
.fi-usb:before,
.fi-video:before,
.fi-volume-none:before,
.fi-volume-strike:before,
.fi-volume:before,
.fi-web:before,
.fi-wheelchair:before,
.fi-widget:before,
.fi-wrench:before,
.fi-x-circle:before,
.fi-x:before,
.fi-yen:before,
.fi-zoom-in:before,
.fi-zoom-out:before {
  font-family: "foundation-icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  text-decoration: inherit;
}

.fi-address-book:before {
  content: "\f100";
}

.fi-alert:before {
  content: "\f101";
}

.fi-align-center:before {
  content: "\f102";
}

.fi-align-justify:before {
  content: "\f103";
}

.fi-align-left:before {
  content: "\f104";
}

.fi-align-right:before {
  content: "\f105";
}

.fi-anchor:before {
  content: "\f106";
}

.fi-annotate:before {
  content: "\f107";
}

.fi-archive:before {
  content: "\f108";
}

.fi-arrow-down:before {
  content: "\f109";
}

.fi-arrow-left:before {
  content: "\f10a";
}

.fi-arrow-right:before {
  content: "\f10b";
}

.fi-arrow-up:before {
  content: "\f10c";
}

.fi-arrows-compress:before {
  content: "\f10d";
}

.fi-arrows-expand:before {
  content: "\f10e";
}

.fi-arrows-in:before {
  content: "\f10f";
}

.fi-arrows-out:before {
  content: "\f110";
}

.fi-asl:before {
  content: "\f111";
}

.fi-asterisk:before {
  content: "\f112";
}

.fi-at-sign:before {
  content: "\f113";
}

.fi-background-color:before {
  content: "\f114";
}

.fi-battery-empty:before {
  content: "\f115";
}

.fi-battery-full:before {
  content: "\f116";
}

.fi-battery-half:before {
  content: "\f117";
}

.fi-bitcoin-circle:before {
  content: "\f118";
}

.fi-bitcoin:before {
  content: "\f119";
}

.fi-blind:before {
  content: "\f11a";
}

.fi-bluetooth:before {
  content: "\f11b";
}

.fi-bold:before {
  content: "\f11c";
}

.fi-book-bookmark:before {
  content: "\f11d";
}

.fi-book:before {
  content: "\f11e";
}

.fi-bookmark:before {
  content: "\f11f";
}

.fi-braille:before {
  content: "\f120";
}

.fi-burst-new:before {
  content: "\f121";
}

.fi-burst-sale:before {
  content: "\f122";
}

.fi-burst:before {
  content: "\f123";
}

.fi-calendar:before {
  content: "\f124";
}

.fi-camera:before {
  content: "\f125";
}

.fi-check:before {
  content: "\f126";
}

.fi-checkbox:before {
  content: "\f127";
}

.fi-clipboard-notes:before {
  content: "\f128";
}

.fi-clipboard-pencil:before {
  content: "\f129";
}

.fi-clipboard:before {
  content: "\f12a";
}

.fi-clock:before {
  content: "\f12b";
}

.fi-closed-caption:before {
  content: "\f12c";
}

.fi-cloud:before {
  content: "\f12d";
}

.fi-comment-minus:before {
  content: "\f12e";
}

.fi-comment-quotes:before {
  content: "\f12f";
}

.fi-comment-video:before {
  content: "\f130";
}

.fi-comment:before {
  content: "\f131";
}

.fi-comments:before {
  content: "\f132";
}

.fi-compass:before {
  content: "\f133";
}

.fi-contrast:before {
  content: "\f134";
}

.fi-credit-card:before {
  content: "\f135";
}

.fi-crop:before {
  content: "\f136";
}

.fi-crown:before {
  content: "\f137";
}

.fi-css3:before {
  content: "\f138";
}

.fi-database:before {
  content: "\f139";
}

.fi-die-five:before {
  content: "\f13a";
}

.fi-die-four:before {
  content: "\f13b";
}

.fi-die-one:before {
  content: "\f13c";
}

.fi-die-six:before {
  content: "\f13d";
}

.fi-die-three:before {
  content: "\f13e";
}

.fi-die-two:before {
  content: "\f13f";
}

.fi-dislike:before {
  content: "\f140";
}

.fi-dollar-bill:before {
  content: "\f141";
}

.fi-dollar:before {
  content: "\f142";
}

.fi-download:before {
  content: "\f143";
}

.fi-eject:before {
  content: "\f144";
}

.fi-elevator:before {
  content: "\f145";
}

.fi-euro:before {
  content: "\f146";
}

.fi-eye:before {
  content: "\f147";
}

.fi-fast-forward:before {
  content: "\f148";
}

.fi-female-symbol:before {
  content: "\f149";
}

.fi-female:before {
  content: "\f14a";
}

.fi-filter:before {
  content: "\f14b";
}

.fi-first-aid:before {
  content: "\f14c";
}

.fi-flag:before {
  content: "\f14d";
}

.fi-folder-add:before {
  content: "\f14e";
}

.fi-folder-lock:before {
  content: "\f14f";
}

.fi-folder:before {
  content: "\f150";
}

.fi-foot:before {
  content: "\f151";
}

.fi-foundation:before {
  content: "\f152";
}

.fi-graph-bar:before {
  content: "\f153";
}

.fi-graph-horizontal:before {
  content: "\f154";
}

.fi-graph-pie:before {
  content: "\f155";
}

.fi-graph-trend:before {
  content: "\f156";
}

.fi-guide-dog:before {
  content: "\f157";
}

.fi-hearing-aid:before {
  content: "\f158";
}

.fi-heart:before {
  content: "\f159";
}

.fi-home:before {
  content: "\f15a";
}

.fi-html5:before {
  content: "\f15b";
}

.fi-indent-less:before {
  content: "\f15c";
}

.fi-indent-more:before {
  content: "\f15d";
}

.fi-info:before {
  content: "\f15e";
}

.fi-italic:before {
  content: "\f15f";
}

.fi-key:before {
  content: "\f160";
}

.fi-laptop:before {
  content: "\f161";
}

.fi-layout:before {
  content: "\f162";
}

.fi-lightbulb:before {
  content: "\f163";
}

.fi-like:before {
  content: "\f164";
}

.fi-link:before {
  content: "\f165";
}

.fi-list-bullet:before {
  content: "\f166";
}

.fi-list-number:before {
  content: "\f167";
}

.fi-list-thumbnails:before {
  content: "\f168";
}

.fi-list:before {
  content: "\f169";
}

.fi-lock:before {
  content: "\f16a";
}

.fi-loop:before {
  content: "\f16b";
}

.fi-magnifying-glass:before {
  content: "\f16c";
}

.fi-mail:before {
  content: "\f16d";
}

.fi-male-female:before {
  content: "\f16e";
}

.fi-male-symbol:before {
  content: "\f16f";
}

.fi-male:before {
  content: "\f170";
}

.fi-map:before {
  content: "\f171";
}

.fi-marker:before {
  content: "\f172";
}

.fi-megaphone:before {
  content: "\f173";
}

.fi-microphone:before {
  content: "\f174";
}

.fi-minus-circle:before {
  content: "\f175";
}

.fi-minus:before {
  content: "\f176";
}

.fi-mobile-signal:before {
  content: "\f177";
}

.fi-mobile:before {
  content: "\f178";
}

.fi-monitor:before {
  content: "\f179";
}

.fi-mountains:before {
  content: "\f17a";
}

.fi-music:before {
  content: "\f17b";
}

.fi-next:before {
  content: "\f17c";
}

.fi-no-dogs:before {
  content: "\f17d";
}

.fi-no-smoking:before {
  content: "\f17e";
}

.fi-page-add:before {
  content: "\f17f";
}

.fi-page-copy:before {
  content: "\f180";
}

.fi-page-csv:before {
  content: "\f181";
}

.fi-page-delete:before {
  content: "\f182";
}

.fi-page-doc:before {
  content: "\f183";
}

.fi-page-edit:before {
  content: "\f184";
}

.fi-page-export-csv:before {
  content: "\f185";
}

.fi-page-export-doc:before {
  content: "\f186";
}

.fi-page-export-pdf:before {
  content: "\f187";
}

.fi-page-export:before {
  content: "\f188";
}

.fi-page-filled:before {
  content: "\f189";
}

.fi-page-multiple:before {
  content: "\f18a";
}

.fi-page-pdf:before {
  content: "\f18b";
}

.fi-page-remove:before {
  content: "\f18c";
}

.fi-page-search:before {
  content: "\f18d";
}

.fi-page:before {
  content: "\f18e";
}

.fi-paint-bucket:before {
  content: "\f18f";
}

.fi-paperclip:before {
  content: "\f190";
}

.fi-pause:before {
  content: "\f191";
}

.fi-paw:before {
  content: "\f192";
}

.fi-paypal:before {
  content: "\f193";
}

.fi-pencil:before {
  content: "\f194";
}

.fi-photo:before {
  content: "\f195";
}

.fi-play-circle:before {
  content: "\f196";
}

.fi-play-video:before {
  content: "\f197";
}

.fi-play:before {
  content: "\f198";
}

.fi-plus:before {
  content: "\f199";
}

.fi-pound:before {
  content: "\f19a";
}

.fi-power:before {
  content: "\f19b";
}

.fi-previous:before {
  content: "\f19c";
}

.fi-price-tag:before {
  content: "\f19d";
}

.fi-pricetag-multiple:before {
  content: "\f19e";
}

.fi-print:before {
  content: "\f19f";
}

.fi-prohibited:before {
  content: "\f1a0";
}

.fi-projection-screen:before {
  content: "\f1a1";
}

.fi-puzzle:before {
  content: "\f1a2";
}

.fi-quote:before {
  content: "\f1a3";
}

.fi-record:before {
  content: "\f1a4";
}

.fi-refresh:before {
  content: "\f1a5";
}

.fi-results-demographics:before {
  content: "\f1a6";
}

.fi-results:before {
  content: "\f1a7";
}

.fi-rewind-ten:before {
  content: "\f1a8";
}

.fi-rewind:before {
  content: "\f1a9";
}

.fi-rss:before {
  content: "\f1aa";
}

.fi-safety-cone:before {
  content: "\f1ab";
}

.fi-save:before {
  content: "\f1ac";
}

.fi-share:before {
  content: "\f1ad";
}

.fi-sheriff-badge:before {
  content: "\f1ae";
}

.fi-shield:before {
  content: "\f1af";
}

.fi-shopping-bag:before {
  content: "\f1b0";
}

.fi-shopping-cart:before {
  content: "\f1b1";
}

.fi-shuffle:before {
  content: "\f1b2";
}

.fi-skull:before {
  content: "\f1b3";
}

.fi-social-500px:before {
  content: "\f1b4";
}

.fi-social-adobe:before {
  content: "\f1b5";
}

.fi-social-amazon:before {
  content: "\f1b6";
}

.fi-social-android:before {
  content: "\f1b7";
}

.fi-social-apple:before {
  content: "\f1b8";
}

.fi-social-behance:before {
  content: "\f1b9";
}

.fi-social-bing:before {
  content: "\f1ba";
}

.fi-social-blogger:before {
  content: "\f1bb";
}

.fi-social-delicious:before {
  content: "\f1bc";
}

.fi-social-designer-news:before {
  content: "\f1bd";
}

.fi-social-deviant-art:before {
  content: "\f1be";
}

.fi-social-digg:before {
  content: "\f1bf";
}

.fi-social-dribbble:before {
  content: "\f1c0";
}

.fi-social-drive:before {
  content: "\f1c1";
}

.fi-social-dropbox:before {
  content: "\f1c2";
}

.fi-social-evernote:before {
  content: "\f1c3";
}

.fi-social-facebook:before {
  content: "\f1c4";
}

.fi-social-flickr:before {
  content: "\f1c5";
}

.fi-social-forrst:before {
  content: "\f1c6";
}

.fi-social-foursquare:before {
  content: "\f1c7";
}

.fi-social-game-center:before {
  content: "\f1c8";
}

.fi-social-github:before {
  content: "\f1c9";
}

.fi-social-google-plus:before {
  content: "\f1ca";
}

.fi-social-hacker-news:before {
  content: "\f1cb";
}

.fi-social-hi5:before {
  content: "\f1cc";
}

.fi-social-instagram:before {
  content: "\f1cd";
}

.fi-social-joomla:before {
  content: "\f1ce";
}

.fi-social-lastfm:before {
  content: "\f1cf";
}

.fi-social-linkedin:before {
  content: "\f1d0";
}

.fi-social-medium:before {
  content: "\f1d1";
}

.fi-social-myspace:before {
  content: "\f1d2";
}

.fi-social-orkut:before {
  content: "\f1d3";
}

.fi-social-path:before {
  content: "\f1d4";
}

.fi-social-picasa:before {
  content: "\f1d5";
}

.fi-social-pinterest:before {
  content: "\f1d6";
}

.fi-social-rdio:before {
  content: "\f1d7";
}

.fi-social-reddit:before {
  content: "\f1d8";
}

.fi-social-skillshare:before {
  content: "\f1d9";
}

.fi-social-skype:before {
  content: "\f1da";
}

.fi-social-smashing-mag:before {
  content: "\f1db";
}

.fi-social-snapchat:before {
  content: "\f1dc";
}

.fi-social-spotify:before {
  content: "\f1dd";
}

.fi-social-squidoo:before {
  content: "\f1de";
}

.fi-social-stack-overflow:before {
  content: "\f1df";
}

.fi-social-steam:before {
  content: "\f1e0";
}

.fi-social-stumbleupon:before {
  content: "\f1e1";
}

.fi-social-treehouse:before {
  content: "\f1e2";
}

.fi-social-tumblr:before {
  content: "\f1e3";
}

.fi-social-twitter:before {
  content: "\f1e4";
}

.fi-social-vimeo:before {
  content: "\f1e5";
}

.fi-social-windows:before {
  content: "\f1e6";
}

.fi-social-xbox:before {
  content: "\f1e7";
}

.fi-social-yahoo:before {
  content: "\f1e8";
}

.fi-social-yelp:before {
  content: "\f1e9";
}

.fi-social-youtube:before {
  content: "\f1ea";
}

.fi-social-zerply:before {
  content: "\f1eb";
}

.fi-social-zurb:before {
  content: "\f1ec";
}

.fi-sound:before {
  content: "\f1ed";
}

.fi-star:before {
  content: "\f1ee";
}

.fi-stop:before {
  content: "\f1ef";
}

.fi-strikethrough:before {
  content: "\f1f0";
}

.fi-subscript:before {
  content: "\f1f1";
}

.fi-superscript:before {
  content: "\f1f2";
}

.fi-tablet-landscape:before {
  content: "\f1f3";
}

.fi-tablet-portrait:before {
  content: "\f1f4";
}

.fi-target-two:before {
  content: "\f1f5";
}

.fi-target:before {
  content: "\f1f6";
}

.fi-telephone-accessible:before {
  content: "\f1f7";
}

.fi-telephone:before {
  content: "\f1f8";
}

.fi-text-color:before {
  content: "\f1f9";
}

.fi-thumbnails:before {
  content: "\f1fa";
}

.fi-ticket:before {
  content: "\f1fb";
}

.fi-torso-business:before {
  content: "\f1fc";
}

.fi-torso-female:before {
  content: "\f1fd";
}

.fi-torso:before {
  content: "\f1fe";
}

.fi-torsos-all-female:before {
  content: "\f1ff";
}

.fi-torsos-all:before {
  content: "\f200";
}

.fi-torsos-female-male:before {
  content: "\f201";
}

.fi-torsos-male-female:before {
  content: "\f202";
}

.fi-torsos:before {
  content: "\f203";
}

.fi-trash:before {
  content: "\f204";
}

.fi-trees:before {
  content: "\f205";
}

.fi-trophy:before {
  content: "\f206";
}

.fi-underline:before {
  content: "\f207";
}

.fi-universal-access:before {
  content: "\f208";
}

.fi-unlink:before {
  content: "\f209";
}

.fi-unlock:before {
  content: "\f20a";
}

.fi-upload-cloud:before {
  content: "\f20b";
}

.fi-upload:before {
  content: "\f20c";
}

.fi-usb:before {
  content: "\f20d";
}

.fi-video:before {
  content: "\f20e";
}

.fi-volume-none:before {
  content: "\f20f";
}

.fi-volume-strike:before {
  content: "\f210";
}

.fi-volume:before {
  content: "\f211";
}

.fi-web:before {
  content: "\f212";
}

.fi-wheelchair:before {
  content: "\f213";
}

.fi-widget:before {
  content: "\f214";
}

.fi-wrench:before {
  content: "\f215";
}

.fi-x-circle:before {
  content: "\f216";
}

.fi-x:before {
  content: "\f217";
}

.fi-yen:before {
  content: "\f218";
}

.fi-zoom-in:before {
  content: "\f219";
}

.fi-zoom-out:before {
  content: "\f21a";
}

meta.foundation-version {
  font-family: "/5.5.3/";
}

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0;
}

meta.foundation-mq-small-only {
  font-family: "/only screen and (max-width: 40em)/";
  width: 0;
}

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.0625em)/";
  width: 40.0625em;
}

meta.foundation-mq-medium-only {
  font-family: "/only screen and (min-width:40.0625em) and (max-width:64em)/";
  width: 40.0625em;
}

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.0625em)/";
  width: 64.0625em;
}

meta.foundation-mq-large-only {
  font-family: "/only screen and (min-width:64.0625em) and (max-width:90em)/";
  width: 64.0625em;
}

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.0625em)/";
  width: 90.0625em;
}

meta.foundation-mq-xlarge-only {
  font-family: "/only screen and (min-width:90.0625em) and (max-width:120em)/";
  width: 90.0625em;
}

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.0625em)/";
  width: 120.0625em;
}

meta.foundation-data-attribute-namespace {
  font-family: false;
}

html, body {
  height: 100%;
}

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

html,
body {
  font-size: 100%;
}

body {
  background: #fff;
  color: #252525;
  cursor: auto;
  font-family: "Ubuntu", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  position: relative;
}

a:hover {
  cursor: pointer;
}

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

img {
  -ms-interpolation-mode: bicubic;
}

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

.left {
  float: left !important;
}

.right {
  float: right !important;
}

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

.hide {
  display: none;
}

.invisible {
  visibility: hidden;
}

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

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

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

select {
  width: 100%;
}

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

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

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

@media only screen {
  .small-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .small-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .small-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .small-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .small-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .small-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .small-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .small-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .small-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .small-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .small-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .small-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .small-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .small-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .small-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .small-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .small-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .small-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .small-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .small-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .small-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .small-1 {
    width: 8.3333333333%;
  }
  .small-2 {
    width: 16.6666666667%;
  }
  .small-3 {
    width: 25%;
  }
  .small-4 {
    width: 33.3333333333%;
  }
  .small-5 {
    width: 41.6666666667%;
  }
  .small-6 {
    width: 50%;
  }
  .small-7 {
    width: 58.3333333333%;
  }
  .small-8 {
    width: 66.6666666667%;
  }
  .small-9 {
    width: 75%;
  }
  .small-10 {
    width: 83.3333333333%;
  }
  .small-11 {
    width: 91.6666666667%;
  }
  .small-12 {
    width: 100%;
  }
  .small-offset-0 {
    margin-left: 0 !important;
  }
  .small-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .small-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .small-offset-3 {
    margin-left: 25% !important;
  }
  .small-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .small-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .small-offset-6 {
    margin-left: 50% !important;
  }
  .small-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .small-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .small-offset-9 {
    margin-left: 75% !important;
  }
  .small-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .small-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .small-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.small-centered,
  .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.small-uncentered,
  .columns.small-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.small-centered:last-child,
  .columns.small-centered:last-child {
    float: none;
  }
  .column.small-uncentered:last-child,
  .columns.small-uncentered:last-child {
    float: left;
  }
  .column.small-uncentered.opposite,
  .columns.small-uncentered.opposite {
    float: right;
  }
  .row.small-collapse > .column,
  .row.small-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.small-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.small-uncollapse > .column,
  .row.small-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
}
@media only screen and (min-width:40.0625em) {
  .medium-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .medium-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .medium-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .medium-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .medium-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .medium-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .medium-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .medium-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .medium-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .medium-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .medium-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .medium-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .medium-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .medium-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .medium-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .medium-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .medium-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .medium-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .medium-1 {
    width: 8.3333333333%;
  }
  .medium-2 {
    width: 16.6666666667%;
  }
  .medium-3 {
    width: 25%;
  }
  .medium-4 {
    width: 33.3333333333%;
  }
  .medium-5 {
    width: 41.6666666667%;
  }
  .medium-6 {
    width: 50%;
  }
  .medium-7 {
    width: 58.3333333333%;
  }
  .medium-8 {
    width: 66.6666666667%;
  }
  .medium-9 {
    width: 75%;
  }
  .medium-10 {
    width: 83.3333333333%;
  }
  .medium-11 {
    width: 91.6666666667%;
  }
  .medium-12 {
    width: 100%;
  }
  .medium-offset-0 {
    margin-left: 0 !important;
  }
  .medium-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .medium-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .medium-offset-3 {
    margin-left: 25% !important;
  }
  .medium-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .medium-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .medium-offset-6 {
    margin-left: 50% !important;
  }
  .medium-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .medium-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .medium-offset-9 {
    margin-left: 75% !important;
  }
  .medium-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .medium-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .medium-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.medium-centered,
  .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.medium-uncentered,
  .columns.medium-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.medium-centered:last-child,
  .columns.medium-centered:last-child {
    float: none;
  }
  .column.medium-uncentered:last-child,
  .columns.medium-uncentered:last-child {
    float: left;
  }
  .column.medium-uncentered.opposite,
  .columns.medium-uncentered.opposite {
    float: right;
  }
  .row.medium-collapse > .column,
  .row.medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.medium-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.medium-uncollapse > .column,
  .row.medium-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
}
@media only screen and (min-width:64.0625em) {
  .large-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .large-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .large-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .large-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .large-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .large-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .large-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .large-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .large-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .large-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .large-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .large-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .large-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .large-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .large-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .large-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .large-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .large-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .large-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .large-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .large-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .large-1 {
    width: 8.3333333333%;
  }
  .large-2 {
    width: 16.6666666667%;
  }
  .large-3 {
    width: 25%;
  }
  .large-4 {
    width: 33.3333333333%;
  }
  .large-5 {
    width: 41.6666666667%;
  }
  .large-6 {
    width: 50%;
  }
  .large-7 {
    width: 58.3333333333%;
  }
  .large-8 {
    width: 66.6666666667%;
  }
  .large-9 {
    width: 75%;
  }
  .large-10 {
    width: 83.3333333333%;
  }
  .large-11 {
    width: 91.6666666667%;
  }
  .large-12 {
    width: 100%;
  }
  .large-offset-0 {
    margin-left: 0 !important;
  }
  .large-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .large-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .large-offset-3 {
    margin-left: 25% !important;
  }
  .large-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .large-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .large-offset-6 {
    margin-left: 50% !important;
  }
  .large-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .large-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .large-offset-9 {
    margin-left: 75% !important;
  }
  .large-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .large-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .large-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.large-centered,
  .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.large-uncentered,
  .columns.large-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.large-centered:last-child,
  .columns.large-centered:last-child {
    float: none;
  }
  .column.large-uncentered:last-child,
  .columns.large-uncentered:last-child {
    float: left;
  }
  .column.large-uncentered.opposite,
  .columns.large-uncentered.opposite {
    float: right;
  }
  .row.large-collapse > .column,
  .row.large-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.large-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.large-uncollapse > .column,
  .row.large-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
}
.accordion {
  margin-bottom: 0;
  margin-left: 0;
}
.accordion:before, .accordion:after {
  content: " ";
  display: table;
}
.accordion:after {
  clear: both;
}
.accordion .accordion-navigation, .accordion dd {
  display: block;
  margin-bottom: 0 !important;
}
.accordion .accordion-navigation.active > a, .accordion dd.active > a {
  background: rgb(231.83, 231.83, 231.83);
  color: #222222;
}
.accordion .accordion-navigation > a, .accordion dd > a {
  background: #EFEFEF;
  color: #222222;
  display: block;
  font-family: "Ubuntu", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 1rem;
  padding: 1rem;
}
.accordion .accordion-navigation > a:hover, .accordion dd > a:hover {
  background: rgb(227.05, 227.05, 227.05);
}
.accordion .accordion-navigation > .content, .accordion dd > .content {
  display: none;
  padding: 0.9375rem;
}
.accordion .accordion-navigation > .content.active, .accordion dd > .content.active {
  background: #FFFFFF;
  display: block;
}

.alert-box {
  border-style: solid;
  border-width: 1px;
  display: block;
  font-size: 0.8125rem;
  font-weight: normal;
  margin-bottom: 1.25rem;
  padding: 0.875rem 1.5rem 0.875rem 0.875rem;
  position: relative;
  transition: opacity 300ms ease-out;
  background-color: #1E90FA;
  border-color: rgb(5.2347826087, 124.587826087, 235.5652173913);
  color: #FFFFFF;
}
.alert-box .close {
  right: 0.25rem;
  background: inherit;
  color: #333333;
  font-size: 1.375rem;
  line-height: 0.9;
  margin-top: -0.6875rem;
  opacity: 0.3;
  padding: 0 6px 4px;
  position: absolute;
  top: 50%;
}
.alert-box .close:hover, .alert-box .close:focus {
  opacity: 0.5;
}
.alert-box.radius {
  border-radius: 0.25rem;
}
.alert-box.round {
  border-radius: 62.5rem;
}
.alert-box.success {
  background-color: #ACCF29;
  border-color: rgb(147.92, 178.02, 35.26);
  color: #FFFFFF;
}
.alert-box.alert {
  background-color: #EF2323;
  border-color: rgb(219.6644067797, 15.9755932203, 15.9755932203);
  color: #FFFFFF;
}
.alert-box.secondary {
  background-color: #CDCDCD;
  border-color: rgb(176.3, 176.3, 176.3);
  color: rgb(69.7, 69.7, 69.7);
}
.alert-box.warning {
  background-color: #F1852A;
  border-color: rgb(228.3697797357, 112.5766519824, 15.0102202643);
  color: #FFFFFF;
}
.alert-box.info {
  background-color: #8fc8fd;
  border-color: rgb(88.5326315789, 173.2526315789, 252.0273684211);
  color: rgb(69.7, 69.7, 69.7);
}
.alert-box.alert-close {
  opacity: 0;
}

[class*=block-grid-] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem;
}
[class*=block-grid-]:before, [class*=block-grid-]:after {
  content: " ";
  display: table;
}
[class*=block-grid-]:after {
  clear: both;
}
[class*=block-grid-] > li {
  display: block;
  float: left;
  height: auto;
  padding: 0 0.625rem 1.25rem;
}

@media only screen {
  .small-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }
  .small-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .small-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }
  .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .small-block-grid-3 > li {
    list-style: none;
    width: 33.3333333333%;
  }
  .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .small-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }
  .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .small-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }
  .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .small-block-grid-6 > li {
    list-style: none;
    width: 16.6666666667%;
  }
  .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .small-block-grid-7 > li {
    list-style: none;
    width: 14.2857142857%;
  }
  .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .small-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }
  .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .small-block-grid-9 > li {
    list-style: none;
    width: 11.1111111111%;
  }
  .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .small-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }
  .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .small-block-grid-11 > li {
    list-style: none;
    width: 9.0909090909%;
  }
  .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .small-block-grid-12 > li {
    list-style: none;
    width: 8.3333333333%;
  }
  .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
@media only screen and (min-width:40.0625em) {
  .medium-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }
  .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .medium-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }
  .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .medium-block-grid-3 > li {
    list-style: none;
    width: 33.3333333333%;
  }
  .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .medium-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }
  .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .medium-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }
  .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .medium-block-grid-6 > li {
    list-style: none;
    width: 16.6666666667%;
  }
  .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .medium-block-grid-7 > li {
    list-style: none;
    width: 14.2857142857%;
  }
  .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .medium-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }
  .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .medium-block-grid-9 > li {
    list-style: none;
    width: 11.1111111111%;
  }
  .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .medium-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }
  .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .medium-block-grid-11 > li {
    list-style: none;
    width: 9.0909090909%;
  }
  .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .medium-block-grid-12 > li {
    list-style: none;
    width: 8.3333333333%;
  }
  .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
@media only screen and (min-width:64.0625em) {
  .large-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }
  .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .large-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }
  .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .large-block-grid-3 > li {
    list-style: none;
    width: 33.3333333333%;
  }
  .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .large-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }
  .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .large-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }
  .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .large-block-grid-6 > li {
    list-style: none;
    width: 16.6666666667%;
  }
  .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .large-block-grid-7 > li {
    list-style: none;
    width: 14.2857142857%;
  }
  .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .large-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }
  .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .large-block-grid-9 > li {
    list-style: none;
    width: 11.1111111111%;
  }
  .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .large-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }
  .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .large-block-grid-11 > li {
    list-style: none;
    width: 9.0909090909%;
  }
  .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .large-block-grid-12 > li {
    list-style: none;
    width: 8.3333333333%;
  }
  .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
.breadcrumbs {
  border-style: solid;
  border-width: 1px;
  display: block;
  list-style: none;
  margin-left: 0;
  overflow: hidden;
  padding: 0.5625rem 0.875rem 0.5625rem;
  background-color: rgb(232.5, 232.5, 232.5);
  border-color: rgb(209.25, 209.25, 209.25);
  border-radius: 0.25rem;
}
.breadcrumbs > * {
  color: #1E90FA;
  float: left;
  font-size: 0.6875rem;
  line-height: 0.6875rem;
  margin: 0;
  text-transform: uppercase;
}
.breadcrumbs > *:hover a, .breadcrumbs > *:focus a {
  text-decoration: underline;
}
.breadcrumbs > * a {
  color: #1E90FA;
}
.breadcrumbs > *.current {
  color: #333333;
  cursor: default;
}
.breadcrumbs > *.current a {
  color: #333333;
  cursor: default;
}
.breadcrumbs > *.current:hover, .breadcrumbs > *.current:hover a, .breadcrumbs > *.current:focus, .breadcrumbs > *.current:focus a {
  text-decoration: none;
}
.breadcrumbs > *.unavailable {
  color: #999999;
}
.breadcrumbs > *.unavailable a {
  color: #999999;
}
.breadcrumbs > *.unavailable:hover, .breadcrumbs > *.unavailable:hover a, .breadcrumbs > *.unavailable:focus,
.breadcrumbs > *.unavailable a:focus {
  color: #999999;
  cursor: not-allowed;
  text-decoration: none;
}
.breadcrumbs > *:before {
  color: #AAAAAA;
  content: "/";
  margin: 0 0.75rem;
  position: relative;
  top: 1px;
}
.breadcrumbs > *:first-child:before {
  content: " ";
  margin: 0;
}

/* Accessibility - hides the forward slash */
[aria-label=breadcrumbs] [aria-hidden=true]:after {
  content: "/";
}

button, .button {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  border-style: solid;
  border-width: 0;
  cursor: pointer;
  font-family: "Ubuntu", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  line-height: normal;
  margin: 0 0 1.25rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  padding: 1rem 2rem 1.0625rem 2rem;
  font-size: 1rem;
  background-color: #1E90FA;
  border-color: rgb(4.8695652174, 115.8956521739, 219.1304347826);
  color: #FFFFFF;
  transition: background-color 300ms ease-out;
}
button:hover, button:focus, .button:hover, .button:focus {
  background-color: rgb(4.8695652174, 115.8956521739, 219.1304347826);
}
button:hover, button:focus, .button:hover, .button:focus {
  color: #FFFFFF;
}
button.secondary, .button.secondary {
  background-color: #CDCDCD;
  border-color: #a4a4a4;
  color: #333333;
}
button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  background-color: #a4a4a4;
}
button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  color: #FFFFFF;
}
button.success, .button.success {
  background-color: #ACCF29;
  border-color: rgb(137.6, 165.6, 32.8);
  color: #FFFFFF;
}
button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  background-color: rgb(137.6, 165.6, 32.8);
}
button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  color: #FFFFFF;
}
button.alert, .button.alert {
  background-color: #EF2323;
  border-color: rgb(204.3389830508, 14.8610169492, 14.8610169492);
  color: #FFFFFF;
}
button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  background-color: rgb(204.3389830508, 14.8610169492, 14.8610169492);
}
button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  color: #FFFFFF;
}
button.warning, .button.warning {
  background-color: #F1852A;
  border-color: rgb(212.4370044053, 104.7224669604, 13.9629955947);
  color: #FFFFFF;
}
button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  background-color: rgb(212.4370044053, 104.7224669604, 13.9629955947);
}
button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  color: #FFFFFF;
}
button.info, .button.info {
  background-color: #8fc8fd;
  border-color: rgb(65.1894736842, 161.7894736842, 251.6105263158);
  color: #333333;
}
button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  background-color: rgb(65.1894736842, 161.7894736842, 251.6105263158);
}
button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  color: #FFFFFF;
}
button.large, .button.large {
  padding: 1.125rem 2.25rem 1.1875rem 2.25rem;
  font-size: 1.25rem;
}
button.small, .button.small {
  padding: 0.875rem 1.75rem 0.9375rem 1.75rem;
  font-size: 0.8125rem;
}
button.tiny, .button.tiny {
  padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  font-size: 0.6875rem;
}
button.expand, .button.expand {
  padding: 1rem 2rem 1.0625rem 2rem;
  font-size: 1rem;
  padding-bottom: 1.0625rem;
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}
button.left-align, .button.left-align {
  text-align: left;
  text-indent: 0.75rem;
}
button.right-align, .button.right-align {
  text-align: right;
  padding-right: 0.75rem;
}
button.radius, .button.radius {
  border-radius: 0.25rem;
}
button.round, .button.round {
  border-radius: 62.5rem;
}
button.disabled, button[disabled], .button.disabled, .button[disabled] {
  background-color: #1E90FA;
  border-color: rgb(4.8695652174, 115.8956521739, 219.1304347826);
  color: #FFFFFF;
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}
button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  background-color: rgb(4.8695652174, 115.8956521739, 219.1304347826);
}
button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  color: #FFFFFF;
}
button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  background-color: #1E90FA;
}
button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
  background-color: #CDCDCD;
  border-color: #a4a4a4;
  color: #333333;
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}
button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  background-color: #a4a4a4;
}
button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  color: #FFFFFF;
}
button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  background-color: #CDCDCD;
}
button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
  background-color: #ACCF29;
  border-color: rgb(137.6, 165.6, 32.8);
  color: #FFFFFF;
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}
button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  background-color: rgb(137.6, 165.6, 32.8);
}
button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  color: #FFFFFF;
}
button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  background-color: #ACCF29;
}
button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
  background-color: #EF2323;
  border-color: rgb(204.3389830508, 14.8610169492, 14.8610169492);
  color: #FFFFFF;
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}
button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  background-color: rgb(204.3389830508, 14.8610169492, 14.8610169492);
}
button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  color: #FFFFFF;
}
button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  background-color: #EF2323;
}
button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
  background-color: #F1852A;
  border-color: rgb(212.4370044053, 104.7224669604, 13.9629955947);
  color: #FFFFFF;
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}
button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  background-color: rgb(212.4370044053, 104.7224669604, 13.9629955947);
}
button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  color: #FFFFFF;
}
button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  background-color: #F1852A;
}
button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
  background-color: #8fc8fd;
  border-color: rgb(65.1894736842, 161.7894736842, 251.6105263158);
  color: #333333;
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}
button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  background-color: rgb(65.1894736842, 161.7894736842, 251.6105263158);
}
button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  color: #FFFFFF;
}
button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  background-color: #8fc8fd;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

@media only screen and (min-width:40.0625em) {
  button, .button {
    display: inline-block;
  }
}
.button-group {
  list-style: none;
  margin: 0;
  left: 0;
}
.button-group:before, .button-group:after {
  content: " ";
  display: table;
}
.button-group:after {
  clear: both;
}
.button-group.even-2 li {
  display: inline-block;
  margin: 0 -2px;
  width: 50%;
}
.button-group.even-2 li > button, .button-group.even-2 li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.even-2 li:first-child button, .button-group.even-2 li:first-child .button {
  border-left: 0;
}
.button-group.even-2 li button, .button-group.even-2 li .button {
  width: 100%;
}
.button-group.even-3 li {
  display: inline-block;
  margin: 0 -2px;
  width: 33.3333333333%;
}
.button-group.even-3 li > button, .button-group.even-3 li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.even-3 li:first-child button, .button-group.even-3 li:first-child .button {
  border-left: 0;
}
.button-group.even-3 li button, .button-group.even-3 li .button {
  width: 100%;
}
.button-group.even-4 li {
  display: inline-block;
  margin: 0 -2px;
  width: 25%;
}
.button-group.even-4 li > button, .button-group.even-4 li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.even-4 li:first-child button, .button-group.even-4 li:first-child .button {
  border-left: 0;
}
.button-group.even-4 li button, .button-group.even-4 li .button {
  width: 100%;
}
.button-group.even-5 li {
  display: inline-block;
  margin: 0 -2px;
  width: 20%;
}
.button-group.even-5 li > button, .button-group.even-5 li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.even-5 li:first-child button, .button-group.even-5 li:first-child .button {
  border-left: 0;
}
.button-group.even-5 li button, .button-group.even-5 li .button {
  width: 100%;
}
.button-group.even-6 li {
  display: inline-block;
  margin: 0 -2px;
  width: 16.6666666667%;
}
.button-group.even-6 li > button, .button-group.even-6 li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.even-6 li:first-child button, .button-group.even-6 li:first-child .button {
  border-left: 0;
}
.button-group.even-6 li button, .button-group.even-6 li .button {
  width: 100%;
}
.button-group.even-7 li {
  display: inline-block;
  margin: 0 -2px;
  width: 14.2857142857%;
}
.button-group.even-7 li > button, .button-group.even-7 li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.even-7 li:first-child button, .button-group.even-7 li:first-child .button {
  border-left: 0;
}
.button-group.even-7 li button, .button-group.even-7 li .button {
  width: 100%;
}
.button-group.even-8 li {
  display: inline-block;
  margin: 0 -2px;
  width: 12.5%;
}
.button-group.even-8 li > button, .button-group.even-8 li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.even-8 li:first-child button, .button-group.even-8 li:first-child .button {
  border-left: 0;
}
.button-group.even-8 li button, .button-group.even-8 li .button {
  width: 100%;
}
.button-group > li {
  display: inline-block;
  margin: 0 -2px;
}
.button-group > li > button, .button-group > li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group > li:first-child button, .button-group > li:first-child .button {
  border-left: 0;
}
.button-group.stack > li {
  display: block;
  margin: 0;
  float: none;
}
.button-group.stack > li > button, .button-group.stack > li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  border-left: 0;
}
.button-group.stack > li > button, .button-group.stack > li .button {
  border-color: rgba(255, 255, 255, 0.5);
  border-left-width: 0;
  border-top: 1px solid;
  display: block;
  margin: 0;
}
.button-group.stack > li > button {
  width: 100%;
}
.button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  border-top: 0;
}
.button-group.stack-for-small > li {
  display: inline-block;
  margin: 0 -2px;
}
.button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  border-left: 0;
}
@media only screen and (max-width: 40em) {
  .button-group.stack-for-small > li {
    display: block;
    margin: 0;
    width: 100%;
  }
  .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
    border-left: 1px solid;
    border-color: rgba(255, 255, 255, 0.5);
  }
  .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
    border-left: 0;
  }
  .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
    border-color: rgba(255, 255, 255, 0.5);
    border-left-width: 0;
    border-top: 1px solid;
    display: block;
    margin: 0;
  }
  .button-group.stack-for-small > li > button {
    width: 100%;
  }
  .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
    border-top: 0;
  }
}
.button-group.radius > * {
  display: inline-block;
  margin: 0 -2px;
}
.button-group.radius > * > button, .button-group.radius > * .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.radius > *:first-child button, .button-group.radius > *:first-child .button {
  border-left: 0;
}
.button-group.radius > *,
.button-group.radius > * > a,
.button-group.radius > * > button,
.button-group.radius > * > .button {
  border-radius: 0;
}
.button-group.radius > *:first-child, .button-group.radius > *:first-child > a, .button-group.radius > *:first-child > button, .button-group.radius > *:first-child > .button {
  -webkit-border-bottom-left-radius: 0.25rem;
  -webkit-border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
}
.button-group.radius > *:last-child, .button-group.radius > *:last-child > a, .button-group.radius > *:last-child > button, .button-group.radius > *:last-child > .button {
  -webkit-border-bottom-right-radius: 0.25rem;
  -webkit-border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.button-group.radius.stack > * {
  display: block;
  margin: 0;
}
.button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  border-left: 0;
}
.button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  border-color: rgba(255, 255, 255, 0.5);
  border-left-width: 0;
  border-top: 1px solid;
  display: block;
  margin: 0;
}
.button-group.radius.stack > * > button {
  width: 100%;
}
.button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  border-top: 0;
}
.button-group.radius.stack > *,
.button-group.radius.stack > * > a,
.button-group.radius.stack > * > button,
.button-group.radius.stack > * > .button {
  border-radius: 0;
}
.button-group.radius.stack > *:first-child, .button-group.radius.stack > *:first-child > a, .button-group.radius.stack > *:first-child > button, .button-group.radius.stack > *:first-child > .button {
  -webkit-top-left-radius: 0.25rem;
  -webkit-top-right-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.button-group.radius.stack > *:last-child, .button-group.radius.stack > *:last-child > a, .button-group.radius.stack > *:last-child > button, .button-group.radius.stack > *:last-child > .button {
  -webkit-bottom-left-radius: 0.25rem;
  -webkit-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
@media only screen and (min-width:40.0625em) {
  .button-group.radius.stack-for-small > * {
    display: inline-block;
    margin: 0 -2px;
  }
  .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
    border-left: 1px solid;
    border-color: rgba(255, 255, 255, 0.5);
  }
  .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
    border-left: 0;
  }
  .button-group.radius.stack-for-small > *,
  .button-group.radius.stack-for-small > * > a,
  .button-group.radius.stack-for-small > * > button,
  .button-group.radius.stack-for-small > * > .button {
    border-radius: 0;
  }
  .button-group.radius.stack-for-small > *:first-child, .button-group.radius.stack-for-small > *:first-child > a, .button-group.radius.stack-for-small > *:first-child > button, .button-group.radius.stack-for-small > *:first-child > .button {
    -webkit-border-bottom-left-radius: 0.25rem;
    -webkit-border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-left-radius: 0.25rem;
  }
  .button-group.radius.stack-for-small > *:last-child, .button-group.radius.stack-for-small > *:last-child > a, .button-group.radius.stack-for-small > *:last-child > button, .button-group.radius.stack-for-small > *:last-child > .button {
    -webkit-border-bottom-right-radius: 0.25rem;
    -webkit-border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
}
@media only screen and (max-width: 40em) {
  .button-group.radius.stack-for-small > * {
    display: block;
    margin: 0;
  }
  .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
    border-left: 1px solid;
    border-color: rgba(255, 255, 255, 0.5);
  }
  .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
    border-left: 0;
  }
  .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
    border-color: rgba(255, 255, 255, 0.5);
    border-left-width: 0;
    border-top: 1px solid;
    display: block;
    margin: 0;
  }
  .button-group.radius.stack-for-small > * > button {
    width: 100%;
  }
  .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
    border-top: 0;
  }
  .button-group.radius.stack-for-small > *,
  .button-group.radius.stack-for-small > * > a,
  .button-group.radius.stack-for-small > * > button,
  .button-group.radius.stack-for-small > * > .button {
    border-radius: 0;
  }
  .button-group.radius.stack-for-small > *:first-child, .button-group.radius.stack-for-small > *:first-child > a, .button-group.radius.stack-for-small > *:first-child > button, .button-group.radius.stack-for-small > *:first-child > .button {
    -webkit-top-left-radius: 0.25rem;
    -webkit-top-right-radius: 0.25rem;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  .button-group.radius.stack-for-small > *:last-child, .button-group.radius.stack-for-small > *:last-child > a, .button-group.radius.stack-for-small > *:last-child > button, .button-group.radius.stack-for-small > *:last-child > .button {
    -webkit-bottom-left-radius: 0.25rem;
    -webkit-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }
}
.button-group.round > * {
  display: inline-block;
  margin: 0 -2px;
}
.button-group.round > * > button, .button-group.round > * .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.round > *:first-child button, .button-group.round > *:first-child .button {
  border-left: 0;
}
.button-group.round > *,
.button-group.round > * > a,
.button-group.round > * > button,
.button-group.round > * > .button {
  border-radius: 0;
}
.button-group.round > *:first-child, .button-group.round > *:first-child > a, .button-group.round > *:first-child > button, .button-group.round > *:first-child > .button {
  -webkit-border-bottom-left-radius: 62.5rem;
  -webkit-border-top-left-radius: 62.5rem;
  border-bottom-left-radius: 62.5rem;
  border-top-left-radius: 62.5rem;
}
.button-group.round > *:last-child, .button-group.round > *:last-child > a, .button-group.round > *:last-child > button, .button-group.round > *:last-child > .button {
  -webkit-border-bottom-right-radius: 62.5rem;
  -webkit-border-top-right-radius: 62.5rem;
  border-bottom-right-radius: 62.5rem;
  border-top-right-radius: 62.5rem;
}
.button-group.round.stack > * {
  display: block;
  margin: 0;
}
.button-group.round.stack > * > button, .button-group.round.stack > * .button {
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.5);
}
.button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  border-left: 0;
}
.button-group.round.stack > * > button, .button-group.round.stack > * .button {
  border-color: rgba(255, 255, 255, 0.5);
  border-left-width: 0;
  border-top: 1px solid;
  display: block;
  margin: 0;
}
.button-group.round.stack > * > button {
  width: 100%;
}
.button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  border-top: 0;
}
.button-group.round.stack > *,
.button-group.round.stack > * > a,
.button-group.round.stack > * > button,
.button-group.round.stack > * > .button {
  border-radius: 0;
}
.button-group.round.stack > *:first-child, .button-group.round.stack > *:first-child > a, .button-group.round.stack > *:first-child > button, .button-group.round.stack > *:first-child > .button {
  -webkit-top-left-radius: 1rem;
  -webkit-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.button-group.round.stack > *:last-child, .button-group.round.stack > *:last-child > a, .button-group.round.stack > *:last-child > button, .button-group.round.stack > *:last-child > .button {
  -webkit-bottom-left-radius: 1rem;
  -webkit-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
@media only screen and (min-width:40.0625em) {
  .button-group.round.stack-for-small > * {
    display: inline-block;
    margin: 0 -2px;
  }
  .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
    border-left: 1px solid;
    border-color: rgba(255, 255, 255, 0.5);
  }
  .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
    border-left: 0;
  }
  .button-group.round.stack-for-small > *,
  .button-group.round.stack-for-small > * > a,
  .button-group.round.stack-for-small > * > button,
  .button-group.round.stack-for-small > * > .button {
    border-radius: 0;
  }
  .button-group.round.stack-for-small > *:first-child, .button-group.round.stack-for-small > *:first-child > a, .button-group.round.stack-for-small > *:first-child > button, .button-group.round.stack-for-small > *:first-child > .button {
    -webkit-border-bottom-left-radius: 62.5rem;
    -webkit-border-top-left-radius: 62.5rem;
    border-bottom-left-radius: 62.5rem;
    border-top-left-radius: 62.5rem;
  }
  .button-group.round.stack-for-small > *:last-child, .button-group.round.stack-for-small > *:last-child > a, .button-group.round.stack-for-small > *:last-child > button, .button-group.round.stack-for-small > *:last-child > .button {
    -webkit-border-bottom-right-radius: 62.5rem;
    -webkit-border-top-right-radius: 62.5rem;
    border-bottom-right-radius: 62.5rem;
    border-top-right-radius: 62.5rem;
  }
}
@media only screen and (max-width: 40em) {
  .button-group.round.stack-for-small > * {
    display: block;
    margin: 0;
  }
  .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
    border-left: 1px solid;
    border-color: rgba(255, 255, 255, 0.5);
  }
  .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
    border-left: 0;
  }
  .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
    border-color: rgba(255, 255, 255, 0.5);
    border-left-width: 0;
    border-top: 1px solid;
    display: block;
    margin: 0;
  }
  .button-group.round.stack-for-small > * > button {
    width: 100%;
  }
  .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
    border-top: 0;
  }
  .button-group.round.stack-for-small > *,
  .button-group.round.stack-for-small > * > a,
  .button-group.round.stack-for-small > * > button,
  .button-group.round.stack-for-small > * > .button {
    border-radius: 0;
  }
  .button-group.round.stack-for-small > *:first-child, .button-group.round.stack-for-small > *:first-child > a, .button-group.round.stack-for-small > *:first-child > button, .button-group.round.stack-for-small > *:first-child > .button {
    -webkit-top-left-radius: 1rem;
    -webkit-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }
  .button-group.round.stack-for-small > *:last-child, .button-group.round.stack-for-small > *:last-child > a, .button-group.round.stack-for-small > *:last-child > button, .button-group.round.stack-for-small > *:last-child > .button {
    -webkit-bottom-left-radius: 1rem;
    -webkit-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }
}

.button-bar:before, .button-bar:after {
  content: " ";
  display: table;
}
.button-bar:after {
  clear: both;
}
.button-bar .button-group {
  float: left;
  margin-right: 0.625rem;
}
.button-bar .button-group div {
  overflow: hidden;
}

/* Clearing Styles */
.clearing-thumbs, [data-clearing] {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}
.clearing-thumbs:before, .clearing-thumbs:after, [data-clearing]:before, [data-clearing]:after {
  content: " ";
  display: table;
}
.clearing-thumbs:after, [data-clearing]:after {
  clear: both;
}
.clearing-thumbs li, [data-clearing] li {
  float: left;
  margin-right: 10px;
}
.clearing-thumbs[class*=block-grid-] li, [data-clearing][class*=block-grid-] li {
  margin-right: 0;
}

.clearing-blackout {
  background: #333333;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 998;
  left: 0;
}
.clearing-blackout .clearing-close {
  display: block;
}

.clearing-container {
  height: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 998;
}

.clearing-touch-label {
  color: #AAAAAA;
  font-size: 0.6em;
  left: 50%;
  position: absolute;
  top: 50%;
}

.visible-img {
  height: 95%;
  position: relative;
}
.visible-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  max-height: 100%;
  max-width: 100%;
}

.clearing-caption {
  background: #333333;
  bottom: 0;
  color: #CCCCCC;
  font-size: 0.875em;
  line-height: 1.3;
  margin-bottom: 0;
  padding: 10px 30px 20px;
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
}

.clearing-close {
  color: #CCCCCC;
  display: none;
  font-size: 30px;
  line-height: 1;
  padding-left: 20px;
  padding-top: 10px;
  z-index: 999;
}
.clearing-close:hover, .clearing-close:focus {
  color: #CCCCCC;
}

.clearing-assembled .clearing-container {
  height: 100%;
}
.clearing-assembled .clearing-container .carousel > ul {
  display: none;
}

.clearing-feature li {
  display: none;
}
.clearing-feature li.clearing-featured-img {
  display: block;
}

@media only screen and (min-width:40.0625em) {
  .clearing-main-prev,
  .clearing-main-next {
    height: 100%;
    position: absolute;
    top: 0;
    width: 40px;
  }
  .clearing-main-prev > span,
  .clearing-main-next > span {
    border: solid 12px;
    display: block;
    height: 0;
    position: absolute;
    top: 50%;
    width: 0;
  }
  .clearing-main-prev > span:hover,
  .clearing-main-next > span:hover {
    opacity: 0.8;
  }
  .clearing-main-prev {
    left: 0;
  }
  .clearing-main-prev > span {
    left: 5px;
    border-color: transparent;
    border-right-color: #CCCCCC;
  }
  .clearing-main-next {
    right: 0;
  }
  .clearing-main-next > span {
    border-color: transparent;
    border-left-color: #CCCCCC;
  }
  .clearing-main-prev.disabled,
  .clearing-main-next.disabled {
    opacity: 0.3;
  }
  .clearing-assembled .clearing-container .carousel {
    background: rgba(51, 51, 51, 0.8);
    height: 120px;
    margin-top: 10px;
    text-align: center;
  }
  .clearing-assembled .clearing-container .carousel > ul {
    display: inline-block;
    z-index: 999;
    height: 100%;
    position: relative;
    float: none;
  }
  .clearing-assembled .clearing-container .carousel > ul li {
    clear: none;
    cursor: pointer;
    display: block;
    float: left;
    margin-right: 0;
    min-height: inherit;
    opacity: 0.4;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 120px;
  }
  .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
    height: 100%;
    max-width: none;
  }
  .clearing-assembled .clearing-container .carousel > ul li a.th {
    border: none;
    box-shadow: none;
    display: block;
  }
  .clearing-assembled .clearing-container .carousel > ul li img {
    cursor: pointer !important;
    width: 100% !important;
  }
  .clearing-assembled .clearing-container .carousel > ul li.visible {
    opacity: 1;
  }
  .clearing-assembled .clearing-container .carousel > ul li:hover {
    opacity: 0.8;
  }
  .clearing-assembled .clearing-container .visible-img {
    background: #333333;
    height: 85%;
    overflow: hidden;
  }
  .clearing-close {
    padding-left: 0;
    padding-top: 0;
    position: absolute;
    top: 10px;
    right: 20px;
  }
}
/* Foundation Dropdowns */
.f-dropdown {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  width: 100%;
  z-index: 89;
  margin-top: 2px;
  max-width: 200px;
}
.f-dropdown.open {
  display: block;
}
.f-dropdown > *:first-child {
  margin-top: 0;
}
.f-dropdown > *:last-child {
  margin-bottom: 0;
}
.f-dropdown:before {
  border: inset 6px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent #FFFFFF transparent;
  border-bottom-style: solid;
  position: absolute;
  top: -12px;
  left: 10px;
  z-index: 89;
}
.f-dropdown:after {
  border: inset 7px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent #cccccc transparent;
  border-bottom-style: solid;
  position: absolute;
  top: -14px;
  left: 9px;
  z-index: 88;
}
.f-dropdown.right:before {
  left: auto;
  right: 10px;
}
.f-dropdown.right:after {
  left: auto;
  right: 9px;
}
.f-dropdown.drop-right {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  width: 100%;
  z-index: 89;
  margin-top: 0;
  margin-left: 2px;
  max-width: 200px;
}
.f-dropdown.drop-right.open {
  display: block;
}
.f-dropdown.drop-right > *:first-child {
  margin-top: 0;
}
.f-dropdown.drop-right > *:last-child {
  margin-bottom: 0;
}
.f-dropdown.drop-right:before {
  border: inset 6px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent #FFFFFF transparent transparent;
  border-right-style: solid;
  position: absolute;
  top: 10px;
  left: -12px;
  z-index: 89;
}
.f-dropdown.drop-right:after {
  border: inset 7px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent #cccccc transparent transparent;
  border-right-style: solid;
  position: absolute;
  top: 9px;
  left: -14px;
  z-index: 88;
}
.f-dropdown.drop-left {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  width: 100%;
  z-index: 89;
  margin-top: 0;
  margin-left: -2px;
  max-width: 200px;
}
.f-dropdown.drop-left.open {
  display: block;
}
.f-dropdown.drop-left > *:first-child {
  margin-top: 0;
}
.f-dropdown.drop-left > *:last-child {
  margin-bottom: 0;
}
.f-dropdown.drop-left:before {
  border: inset 6px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent transparent #FFFFFF;
  border-left-style: solid;
  position: absolute;
  top: 10px;
  right: -12px;
  left: auto;
  z-index: 89;
}
.f-dropdown.drop-left:after {
  border: inset 7px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent transparent #cccccc;
  border-left-style: solid;
  position: absolute;
  top: 9px;
  right: -14px;
  left: auto;
  z-index: 88;
}
.f-dropdown.drop-top {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  width: 100%;
  z-index: 89;
  margin-left: 0;
  margin-top: -2px;
  max-width: 200px;
}
.f-dropdown.drop-top.open {
  display: block;
}
.f-dropdown.drop-top > *:first-child {
  margin-top: 0;
}
.f-dropdown.drop-top > *:last-child {
  margin-bottom: 0;
}
.f-dropdown.drop-top:before {
  border: inset 6px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: #FFFFFF transparent transparent transparent;
  border-top-style: solid;
  bottom: -12px;
  position: absolute;
  top: auto;
  left: 10px;
  right: auto;
  z-index: 89;
}
.f-dropdown.drop-top:after {
  border: inset 7px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: #cccccc transparent transparent transparent;
  border-top-style: solid;
  bottom: -14px;
  position: absolute;
  top: auto;
  left: 9px;
  right: auto;
  z-index: 88;
}
.f-dropdown li {
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.125rem;
  margin: 0;
}
.f-dropdown li:hover, .f-dropdown li:focus {
  background: #EEEEEE;
}
.f-dropdown li a {
  display: block;
  padding: 0.5rem;
  color: #555555;
}
.f-dropdown.content {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  padding: 1.25rem;
  width: 100%;
  z-index: 89;
  max-width: 200px;
}
.f-dropdown.content.open {
  display: block;
}
.f-dropdown.content > *:first-child {
  margin-top: 0;
}
.f-dropdown.content > *:last-child {
  margin-bottom: 0;
}
.f-dropdown.radius {
  border-radius: 0.25rem;
}
.f-dropdown.tiny {
  max-width: 200px;
}
.f-dropdown.small {
  max-width: 300px;
}
.f-dropdown.medium {
  max-width: 500px;
}
.f-dropdown.large {
  max-width: 800px;
}
.f-dropdown.mega {
  width: 100% !important;
  max-width: 100% !important;
}
.f-dropdown.mega.open {
  left: 0 !important;
}

.dropdown.button, button.dropdown {
  position: relative;
  padding-right: 3.5625rem;
}
.dropdown.button::after, button.dropdown::after {
  border-color: #FFFFFF transparent transparent transparent;
  border-style: solid;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  top: 50%;
  width: 0;
}
.dropdown.button::after, button.dropdown::after {
  border-width: 0.375rem;
  right: 1.40625rem;
  margin-top: -0.15625rem;
}
.dropdown.button::after, button.dropdown::after {
  border-color: #FFFFFF transparent transparent transparent;
}
.dropdown.button.tiny, button.dropdown.tiny {
  padding-right: 2.625rem;
}
.dropdown.button.tiny:after, button.dropdown.tiny:after {
  border-width: 0.375rem;
  right: 1.125rem;
  margin-top: -0.125rem;
}
.dropdown.button.tiny::after, button.dropdown.tiny::after {
  border-color: #FFFFFF transparent transparent transparent;
}
.dropdown.button.small, button.dropdown.small {
  padding-right: 3.0625rem;
}
.dropdown.button.small::after, button.dropdown.small::after {
  border-width: 0.4375rem;
  right: 1.3125rem;
  margin-top: -0.15625rem;
}
.dropdown.button.small::after, button.dropdown.small::after {
  border-color: #FFFFFF transparent transparent transparent;
}
.dropdown.button.large, button.dropdown.large {
  padding-right: 3.625rem;
}
.dropdown.button.large::after, button.dropdown.large::after {
  border-width: 0.3125rem;
  right: 1.71875rem;
  margin-top: -0.15625rem;
}
.dropdown.button.large::after, button.dropdown.large::after {
  border-color: #FFFFFF transparent transparent transparent;
}
.dropdown.button.secondary:after, button.dropdown.secondary:after {
  border-color: #333333 transparent transparent transparent;
}

/* Standard Forms */
form {
  margin: 0 0 1rem;
}

/* Using forms within rows, we need to set some defaults */
form .row .row {
  margin: 0 -0.5rem;
}
form .row .row .column,
form .row .row .columns {
  padding: 0 0.5rem;
}
form .row .row.collapse {
  margin: 0;
}
form .row .row.collapse .column,
form .row .row.collapse .columns {
  padding: 0;
}
form .row .row.collapse input {
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
form .row input.column,
form .row input.columns,
form .row textarea.column,
form .row textarea.columns {
  padding-left: 0.5rem;
}

/* Label Styles */
label {
  color: rgb(76.5, 76.5, 76.5);
  cursor: pointer;
  display: block;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 0;
  /* Styles for required inputs */
}
label.right {
  float: none !important;
  text-align: right;
}
label.inline {
  margin: 0 0 1rem 0;
  padding: 0.5625rem 0;
}
label small {
  text-transform: capitalize;
  color: rgb(103.275, 103.275, 103.275);
}

/* Attach elements to the beginning or end of an input */
.prefix,
.postfix {
  border-style: solid;
  border-width: 1px;
  display: block;
  font-size: 0.875rem;
  height: 2.3125rem;
  line-height: 2.3125rem;
  overflow: visible;
  padding-bottom: 0;
  padding-top: 0;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}

/* Adjust padding, alignment and radius if pre/post element is a button */
.postfix.button {
  border: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 0;
  text-align: center;
}

.prefix.button {
  border: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 0;
  text-align: center;
}

.prefix.button.radius {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 0.25rem;
  -webkit-border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
}

.postfix.button.radius {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 0.25rem;
  -webkit-border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.prefix.button.round {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 62.5rem;
  -webkit-border-top-left-radius: 62.5rem;
  border-bottom-left-radius: 62.5rem;
  border-top-left-radius: 62.5rem;
}

.postfix.button.round {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 62.5rem;
  -webkit-border-top-right-radius: 62.5rem;
  border-bottom-right-radius: 62.5rem;
  border-top-right-radius: 62.5rem;
}

/* Separate prefix and postfix styles when on span or label so buttons keep their own */
span.prefix, label.prefix {
  background: rgb(242.25, 242.25, 242.25);
  border-right: none;
  color: #333333;
  border-color: #cccccc;
}

span.postfix, label.postfix {
  background: rgb(242.25, 242.25, 242.25);
  border-left: none;
  color: #333333;
  border-color: #cccccc;
}

/* We use this to get basic styling on all basic form elements */
input:not([type]), input[type=text], input[type=password], input[type=date], input[type=datetime], input[type=datetime-local], input[type=month], input[type=week], input[type=email], input[type=number], input[type=search], input[type=tel], input[type=time], input[type=url], input[type=color], textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  background-color: #FFFFFF;
  border-style: solid;
  border-width: 1px;
  border-color: #cccccc;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  display: block;
  font-family: inherit;
  font-size: 0.875rem;
  height: 2.3125rem;
  margin: 0 0 1rem 0;
  padding: 0.5rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s linear, background 0.15s linear;
}
input:not([type]):focus, input[type=text]:focus, input[type=password]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=month]:focus, input[type=week]:focus, input[type=email]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=color]:focus, textarea:focus {
  background: rgb(249.9, 249.9, 249.9);
  border-color: #999999;
  outline: none;
}
input:not([type]):disabled, input[type=text]:disabled, input[type=password]:disabled, input[type=date]:disabled, input[type=datetime]:disabled, input[type=datetime-local]:disabled, input[type=month]:disabled, input[type=week]:disabled, input[type=email]:disabled, input[type=number]:disabled, input[type=search]:disabled, input[type=tel]:disabled, input[type=time]:disabled, input[type=url]:disabled, input[type=color]:disabled, textarea:disabled {
  background-color: #DDDDDD;
  cursor: default;
}
input:not([type])[disabled], input:not([type])[readonly], fieldset[disabled] input:not([type]), input[type=text][disabled], input[type=text][readonly], fieldset[disabled] input[type=text], input[type=password][disabled], input[type=password][readonly], fieldset[disabled] input[type=password], input[type=date][disabled], input[type=date][readonly], fieldset[disabled] input[type=date], input[type=datetime][disabled], input[type=datetime][readonly], fieldset[disabled] input[type=datetime], input[type=datetime-local][disabled], input[type=datetime-local][readonly], fieldset[disabled] input[type=datetime-local], input[type=month][disabled], input[type=month][readonly], fieldset[disabled] input[type=month], input[type=week][disabled], input[type=week][readonly], fieldset[disabled] input[type=week], input[type=email][disabled], input[type=email][readonly], fieldset[disabled] input[type=email], input[type=number][disabled], input[type=number][readonly], fieldset[disabled] input[type=number], input[type=search][disabled], input[type=search][readonly], fieldset[disabled] input[type=search], input[type=tel][disabled], input[type=tel][readonly], fieldset[disabled] input[type=tel], input[type=time][disabled], input[type=time][readonly], fieldset[disabled] input[type=time], input[type=url][disabled], input[type=url][readonly], fieldset[disabled] input[type=url], input[type=color][disabled], input[type=color][readonly], fieldset[disabled] input[type=color], textarea[disabled], textarea[readonly], fieldset[disabled] textarea {
  background-color: #DDDDDD;
  cursor: default;
}
input:not([type]).radius, input[type=text].radius, input[type=password].radius, input[type=date].radius, input[type=datetime].radius, input[type=datetime-local].radius, input[type=month].radius, input[type=week].radius, input[type=email].radius, input[type=number].radius, input[type=search].radius, input[type=tel].radius, input[type=time].radius, input[type=url].radius, input[type=color].radius, textarea.radius {
  border-radius: 0.25rem;
}

form .row .prefix-radius.row.collapse input,
form .row .prefix-radius.row.collapse textarea,
form .row .prefix-radius.row.collapse select,
form .row .prefix-radius.row.collapse button {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 0.25rem;
  -webkit-border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
form .row .prefix-radius.row.collapse .prefix {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 0.25rem;
  -webkit-border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
}
form .row .postfix-radius.row.collapse input,
form .row .postfix-radius.row.collapse textarea,
form .row .postfix-radius.row.collapse select,
form .row .postfix-radius.row.collapse button {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 0.25rem;
  -webkit-border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
}
form .row .postfix-radius.row.collapse .postfix {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 0.25rem;
  -webkit-border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
form .row .prefix-round.row.collapse input,
form .row .prefix-round.row.collapse textarea,
form .row .prefix-round.row.collapse select,
form .row .prefix-round.row.collapse button {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 62.5rem;
  -webkit-border-top-right-radius: 62.5rem;
  border-bottom-right-radius: 62.5rem;
  border-top-right-radius: 62.5rem;
}
form .row .prefix-round.row.collapse .prefix {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 62.5rem;
  -webkit-border-top-left-radius: 62.5rem;
  border-bottom-left-radius: 62.5rem;
  border-top-left-radius: 62.5rem;
}
form .row .postfix-round.row.collapse input,
form .row .postfix-round.row.collapse textarea,
form .row .postfix-round.row.collapse select,
form .row .postfix-round.row.collapse button {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 62.5rem;
  -webkit-border-top-left-radius: 62.5rem;
  border-bottom-left-radius: 62.5rem;
  border-top-left-radius: 62.5rem;
}
form .row .postfix-round.row.collapse .postfix {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 62.5rem;
  -webkit-border-top-right-radius: 62.5rem;
  border-bottom-right-radius: 62.5rem;
  border-top-right-radius: 62.5rem;
}

input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
}

/* Respect enforced amount of rows for textarea */
textarea[rows] {
  height: auto;
}

/* Not allow resize out of parent */
textarea {
  max-width: 100%;
}

::-webkit-input-placeholder {
  color: #666666;
}

:-moz-placeholder { /* Firefox 18- */
  color: #666666;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #666666;
}

:-ms-input-placeholder {
  color: #666666;
}

/* Add height value for select elements to match text input height */
select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-color: #FAFAFA;
  border-radius: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+");
  background-position: 100% center;
  background-repeat: no-repeat;
  border-style: solid;
  border-width: 1px;
  border-color: #cccccc;
  color: rgba(0, 0, 0, 0.75);
  font-family: inherit;
  font-size: 0.875rem;
  line-height: normal;
  padding: 0.5rem;
  border-radius: 0;
  height: 2.3125rem;
}
select::-ms-expand {
  display: none;
}
select.radius {
  border-radius: 0.25rem;
}
select:focus {
  background-color: rgb(242.5, 242.5, 242.5);
  border-color: #999999;
}
select:disabled {
  background-color: #DDDDDD;
  cursor: default;
}
select[multiple] {
  height: auto;
}

/* Adjust margin for form elements below */
input[type=file],
input[type=checkbox],
input[type=radio],
select {
  margin: 0 0 1rem 0;
}

input[type=checkbox] + label,
input[type=radio] + label {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
  vertical-align: baseline;
}

/* Normalize file input width */
input[type=file] {
  width: 100%;
}

/* HTML5 Number spinners settings */
/* We add basic fieldset styling */
fieldset {
  border: 1px solid #DDDDDD;
  margin: 1.125rem 0;
  padding: 1.25rem;
}
fieldset legend {
  font-weight: bold;
  margin: 0;
  margin-left: -0.1875rem;
  padding: 0 0.1875rem;
}

/* Error Handling */
[data-abide] .error small.error, [data-abide] .error span.error, [data-abide] span.error, [data-abide] small.error {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 1rem;
  margin-top: -1px;
  padding: 0.375rem 0.5625rem 0.5625rem;
  background: #EF2323;
  color: #FFFFFF;
}
[data-abide] span.error, [data-abide] small.error {
  display: none;
}

span.error, small.error {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 1rem;
  margin-top: -1px;
  padding: 0.375rem 0.5625rem 0.5625rem;
  background: #EF2323;
  color: #FFFFFF;
}

.error input,
.error textarea,
.error select {
  margin-bottom: 0;
}
.error input[type=checkbox],
.error input[type=radio] {
  margin-bottom: 1rem;
}
.error label,
.error label.error {
  color: #EF2323;
}
.error small.error {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 1rem;
  margin-top: -1px;
  padding: 0.375rem 0.5625rem 0.5625rem;
  background: #EF2323;
  color: #FFFFFF;
}
.error > label > small {
  background: transparent;
  color: rgb(103.275, 103.275, 103.275);
  display: inline;
  font-size: 60%;
  font-style: normal;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
}
.error span.error-message {
  display: block;
}

input.error,
textarea.error,
select.error {
  margin-bottom: 0;
}

label.error {
  color: #EF2323;
}

.inline-list {
  list-style: none;
  margin-top: 0;
  margin-bottom: 1.0625rem;
  margin-left: -1.375rem;
  margin-right: 0;
  overflow: hidden;
  padding: 0;
}
.inline-list > li {
  display: block;
  float: left;
  list-style: none;
  margin-left: 1.375rem;
}
.inline-list > li > * {
  display: block;
}

.label {
  display: inline-block;
  font-family: "Ubuntu", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  line-height: 1;
  margin-bottom: auto;
  position: relative;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.25rem 0.5rem 0.25rem;
  font-size: 0.6875rem;
  background-color: #1E90FA;
  color: #FFFFFF;
}
.label.radius {
  border-radius: 0.25rem;
}
.label.round {
  border-radius: 1000px;
}
.label.alert {
  background-color: #EF2323;
  color: #FFFFFF;
}
.label.warning {
  background-color: #F1852A;
  color: #FFFFFF;
}
.label.success {
  background-color: #ACCF29;
  color: #FFFFFF;
}
.label.secondary {
  background-color: #CDCDCD;
  color: #333333;
}
.label.info {
  background-color: #8fc8fd;
  color: #333333;
}

ul.pagination {
  display: block;
  margin-left: -0.3125rem;
  min-height: 1.5rem;
}
ul.pagination li {
  color: #222222;
  font-size: 0.875rem;
  height: 1.5rem;
  margin-left: 0.3125rem;
}
ul.pagination li a, ul.pagination li button {
  border-radius: 0.25rem;
  transition: background-color 300ms ease-out;
  background: none;
  color: #999999;
  display: block;
  font-size: 1em;
  font-weight: normal;
  line-height: inherit;
  padding: 0.0625rem 0.625rem 0.0625rem;
}
ul.pagination li:hover a,
ul.pagination li a:focus, ul.pagination li:hover button,
ul.pagination li button:focus {
  background: rgb(229.5, 229.5, 229.5);
}
ul.pagination li.unavailable a, ul.pagination li.unavailable button {
  cursor: default;
  color: #999999;
  pointer-events: none;
}
ul.pagination li.unavailable:hover a, ul.pagination li.unavailable a:focus, ul.pagination li.unavailable:hover button, ul.pagination li.unavailable button:focus {
  background: transparent;
}
ul.pagination li.current a, ul.pagination li.current button {
  background: #1E90FA;
  color: #FFFFFF;
  cursor: default;
  font-weight: bold;
}
ul.pagination li.current a:hover, ul.pagination li.current a:focus, ul.pagination li.current button:hover, ul.pagination li.current button:focus {
  background: #1E90FA;
}
ul.pagination li {
  display: block;
  float: left;
}

/* Pagination centred wrapper */
.pagination-centered {
  text-align: center;
}
.pagination-centered ul.pagination li {
  display: inline-block;
  float: none;
}

/* Panels */
.panel {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(215.6025, 215.6025, 215.6025);
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: rgb(242.25, 242.25, 242.25);
  color: #333333;
}
.panel > :first-child {
  margin-top: 0;
}
.panel > :last-child {
  margin-bottom: 0;
}
.panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6, .panel p, .panel li, .panel dl {
  color: #333333;
}
.panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6 {
  line-height: 1;
  margin-bottom: 0.625rem;
}
.panel h1.subheader, .panel h2.subheader, .panel h3.subheader, .panel h4.subheader, .panel h5.subheader, .panel h6.subheader {
  line-height: 1.4;
}
.panel.callout {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(215.6025, 215.6025, 215.6025);
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: rgb(241.5, 248.34, 254.7);
  color: #333333;
}
.panel.callout > :first-child {
  margin-top: 0;
}
.panel.callout > :last-child {
  margin-bottom: 0;
}
.panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6, .panel.callout p, .panel.callout li, .panel.callout dl {
  color: #333333;
}
.panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6 {
  line-height: 1;
  margin-bottom: 0.625rem;
}
.panel.callout h1.subheader, .panel.callout h2.subheader, .panel.callout h3.subheader, .panel.callout h4.subheader, .panel.callout h5.subheader, .panel.callout h6.subheader {
  line-height: 1.4;
}
.panel.callout a:not(.button) {
  color: #1E90FA;
}
.panel.callout a:not(.button):hover, .panel.callout a:not(.button):focus {
  color: rgb(5.2347826087, 124.587826087, 235.5652173913);
}
.panel.radius {
  border-radius: 0.25rem;
}

/* Progress Bar */
.progress {
  background-color: #F6F6F6;
  border: 1px solid white;
  height: 1.5625rem;
  margin-bottom: 0.625rem;
  padding: 0.125rem;
}
.progress .meter {
  background: #1E90FA;
  display: block;
  height: 100%;
  float: left;
  width: 0%;
}
.progress .meter.secondary {
  background: #CDCDCD;
  display: block;
  height: 100%;
  float: left;
  width: 0%;
}
.progress .meter.success {
  background: #ACCF29;
  display: block;
  height: 100%;
  float: left;
  width: 0%;
}
.progress .meter.alert {
  background: #EF2323;
  display: block;
  height: 100%;
  float: left;
  width: 0%;
}
.progress.secondary .meter {
  background: #CDCDCD;
  display: block;
  height: 100%;
  float: left;
  width: 0%;
}
.progress.success .meter {
  background: #ACCF29;
  display: block;
  height: 100%;
  float: left;
  width: 0%;
}
.progress.alert .meter {
  background: #EF2323;
  display: block;
  height: 100%;
  float: left;
  width: 0%;
}
.progress.radius {
  border-radius: 0.25rem;
}
.progress.radius .meter {
  border-radius: -0.75rem;
}
.progress.round {
  border-radius: 1000px;
}
.progress.round .meter {
  border-radius: 999px;
}

.reveal-modal-bg {
  background: #000000;
  background: rgba(0, 0, 0, 0.45);
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1004;
  left: 0;
}

.reveal-modal {
  border-radius: 0.25rem;
  display: none;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 1005;
  left: 0;
  background-color: #FFFFFF;
  padding: 1.875rem;
  border: solid 1px #666666;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 40em) {
  .reveal-modal {
    min-height: 100vh;
  }
}
.reveal-modal .column, .reveal-modal .columns {
  min-width: 0;
}
.reveal-modal > :first-child {
  margin-top: 0;
}
.reveal-modal > :last-child {
  margin-bottom: 0;
}
@media only screen and (min-width:40.0625em) {
  .reveal-modal {
    left: 0;
    margin: 0 auto;
    max-width: 75rem;
    right: 0;
    width: 80%;
  }
}
@media only screen and (min-width:40.0625em) {
  .reveal-modal {
    top: 6.25rem;
  }
}
.reveal-modal.radius {
  box-shadow: none;
  border-radius: 0.25rem;
}
.reveal-modal.round {
  box-shadow: none;
  border-radius: 62.5rem;
}
.reveal-modal.collapse {
  padding: 0;
  box-shadow: none;
}
@media only screen and (min-width:40.0625em) {
  .reveal-modal.tiny {
    left: 0;
    margin: 0 auto;
    max-width: 75rem;
    right: 0;
    width: 30%;
  }
}
@media only screen and (min-width:40.0625em) {
  .reveal-modal.small {
    left: 0;
    margin: 0 auto;
    max-width: 75rem;
    right: 0;
    width: 40%;
  }
}
@media only screen and (min-width:40.0625em) {
  .reveal-modal.medium {
    left: 0;
    margin: 0 auto;
    max-width: 75rem;
    right: 0;
    width: 60%;
  }
}
@media only screen and (min-width:40.0625em) {
  .reveal-modal.large {
    left: 0;
    margin: 0 auto;
    max-width: 75rem;
    right: 0;
    width: 70%;
  }
}
@media only screen and (min-width:40.0625em) {
  .reveal-modal.xlarge {
    left: 0;
    margin: 0 auto;
    max-width: 75rem;
    right: 0;
    width: 95%;
  }
}
.reveal-modal.full {
  height: 100vh;
  height: 100%;
  left: 0;
  margin-left: 0 !important;
  max-width: none !important;
  min-height: 100vh;
  top: 0;
}
@media only screen and (min-width:40.0625em) {
  .reveal-modal.full {
    left: 0;
    margin: 0 auto;
    max-width: 75rem;
    right: 0;
    width: 100%;
  }
}
.reveal-modal.toback {
  z-index: 1003;
}
.reveal-modal .close-reveal-modal {
  color: #AAAAAA;
  cursor: pointer;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 0.625rem;
  right: 1.375rem;
}

.side-nav {
  display: block;
  font-family: "Ubuntu", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  list-style-position: outside;
  list-style-type: none;
  margin: 0;
  padding: 0.875rem 0;
}
.side-nav li {
  font-size: 0.875rem;
  font-weight: normal;
  margin: 0 0 0.4375rem 0;
}
.side-nav li a:not(.button) {
  color: #1E90FA;
  display: block;
  margin: 0;
  padding: 0.4375rem 0.875rem;
}
.side-nav li a:not(.button):hover, .side-nav li a:not(.button):focus {
  background: rgb(86.25, 171.75, 251.25);
  color: rgb(97.5, 177.3, 251.5);
}
.side-nav li a:not(.button):active {
  color: rgb(97.5, 177.3, 251.5);
}
.side-nav li.active > a:first-child:not(.button) {
  color: rgb(97.5, 177.3, 251.5);
  font-family: "Ubuntu", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
}
.side-nav li.divider {
  border-top: 1px solid;
  height: 0;
  list-style: none;
  padding: 0;
  border-top-color: rgb(229.5, 229.5, 229.5);
}
.side-nav li.heading {
  color: #1E90FA;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
}

.split.button {
  position: relative;
  padding-right: 5.0625rem;
}
.split.button span {
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-left: solid 1px;
}
.split.button span:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  display: block;
  border-style: inset;
  top: 50%;
  left: 50%;
}
.split.button span:active {
  background-color: rgba(0, 0, 0, 0.1);
}
.split.button span {
  border-left-color: rgba(255, 255, 255, 0.5);
}
.split.button span {
  width: 3.09375rem;
}
.split.button span:after {
  border-top-style: solid;
  border-width: 0.375rem;
  margin-left: -0.375rem;
  top: 48%;
}
.split.button span:after {
  border-color: #FFFFFF transparent transparent transparent;
}
.split.button.secondary span {
  border-left-color: rgba(255, 255, 255, 0.5);
}
.split.button.secondary span:after {
  border-color: #FFFFFF transparent transparent transparent;
}
.split.button.alert span {
  border-left-color: rgba(255, 255, 255, 0.5);
}
.split.button.success span {
  border-left-color: rgba(255, 255, 255, 0.5);
}
.split.button.tiny {
  padding-right: 3.75rem;
}
.split.button.tiny span {
  width: 2.25rem;
}
.split.button.tiny span:after {
  border-top-style: solid;
  border-width: 0.375rem;
  margin-left: -0.375rem;
  top: 48%;
}
.split.button.small {
  padding-right: 4.375rem;
}
.split.button.small span {
  width: 2.625rem;
}
.split.button.small span:after {
  border-top-style: solid;
  border-width: 0.4375rem;
  margin-left: -0.375rem;
  top: 48%;
}
.split.button.large {
  padding-right: 5.5rem;
}
.split.button.large span {
  width: 3.4375rem;
}
.split.button.large span:after {
  border-top-style: solid;
  border-width: 0.3125rem;
  margin-left: -0.375rem;
  top: 48%;
}
.split.button.expand {
  padding-left: 2rem;
}
.split.button.secondary span:after {
  border-color: #333333 transparent transparent transparent;
}
.split.button.radius span {
  -webkit-border-bottom-right-radius: 0.25rem;
  -webkit-border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.split.button.round span {
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}
.split.button.no-pip span:before {
  border-style: none;
}
.split.button.no-pip span:after {
  border-style: none;
}
.split.button.no-pip span > i {
  display: block;
  left: 50%;
  margin-left: -0.28889em;
  margin-top: -0.48889em;
  position: absolute;
  top: 50%;
}

.sub-nav {
  display: block;
  margin: -0.25rem 0 1.125rem;
  overflow: hidden;
  padding-top: 0.25rem;
  width: auto;
}
.sub-nav dt {
  text-transform: uppercase;
}
.sub-nav dt,
.sub-nav dd,
.sub-nav li {
  color: #999999;
  float: left;
  font-family: "Ubuntu", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  margin-left: 1rem;
  margin-bottom: 0;
}
.sub-nav dt a,
.sub-nav dd a,
.sub-nav li a {
  color: #999999;
  padding: 0.1875rem 1rem;
  text-decoration: none;
}
.sub-nav dt a:hover,
.sub-nav dd a:hover,
.sub-nav li a:hover {
  color: rgb(114.75, 114.75, 114.75);
}
.sub-nav dt.active a,
.sub-nav dd.active a,
.sub-nav li.active a {
  border-radius: 3px;
  background: #1E90FA;
  color: #FFFFFF;
  cursor: default;
  font-weight: normal;
  padding: 0.1875rem 1rem;
}
.sub-nav dt.active a:hover,
.sub-nav dd.active a:hover,
.sub-nav li.active a:hover {
  background: rgb(5.2347826087, 124.587826087, 235.5652173913);
}

.switch {
  border: none;
  margin-bottom: 1.5rem;
  outline: 0;
  padding: 0;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.switch label {
  background: #DDDDDD;
  color: transparent;
  cursor: pointer;
  display: block;
  margin-bottom: 1rem;
  position: relative;
  text-indent: 100%;
  width: 4rem;
  height: 2rem;
  transition: left 0.15s ease-out;
}
.switch input {
  left: 10px;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 9px;
}
.switch input + label {
  margin-left: 0;
  margin-right: 0;
}
.switch label:after {
  background: #FFFFFF;
  content: "";
  display: block;
  height: 1.5rem;
  left: 0.25rem;
  position: absolute;
  top: 0.25rem;
  width: 1.5rem;
  transition: left 0.15s ease-out;
  transform: translate3d(0, 0, 0);
}
.switch input:checked + label {
  background: #1E90FA;
}
.switch input:checked + label:after {
  left: 2.25rem;
}
.switch label {
  height: 2rem;
  width: 4rem;
}
.switch label:after {
  height: 1.5rem;
  width: 1.5rem;
}
.switch input:checked + label:after {
  left: 2.25rem;
}
.switch label {
  color: transparent;
  background: #DDDDDD;
}
.switch label:after {
  background: #FFFFFF;
}
.switch input:checked + label {
  background: #1E90FA;
}
.switch.large label {
  height: 2.5rem;
  width: 5rem;
}
.switch.large label:after {
  height: 2rem;
  width: 2rem;
}
.switch.large input:checked + label:after {
  left: 2.75rem;
}
.switch.small label {
  height: 1.75rem;
  width: 3.5rem;
}
.switch.small label:after {
  height: 1.25rem;
  width: 1.25rem;
}
.switch.small input:checked + label:after {
  left: 2rem;
}
.switch.tiny label {
  height: 1.5rem;
  width: 3rem;
}
.switch.tiny label:after {
  height: 1rem;
  width: 1rem;
}
.switch.tiny input:checked + label:after {
  left: 1.75rem;
}
.switch.radius label {
  border-radius: 4px;
}
.switch.radius label:after {
  border-radius: 3px;
}
.switch.round {
  border-radius: 1000px;
}
.switch.round label {
  border-radius: 2rem;
}
.switch.round label:after {
  border-radius: 2rem;
}

table {
  background: #FFFFFF;
  border: solid 1px #DDDDDD;
  margin-bottom: 1.25rem;
  table-layout: auto;
}
table caption {
  background: transparent;
  color: #222222;
  font-size: 1rem;
  font-weight: bold;
}
table thead {
  background: #F5F5F5;
}
table thead tr th,
table thead tr td {
  color: #222222;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 0.5rem 0.625rem 0.625rem;
}
table tfoot {
  background: #F5F5F5;
}
table tfoot tr th,
table tfoot tr td {
  color: #222222;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 0.5rem 0.625rem 0.625rem;
}
table tr th,
table tr td {
  color: #222222;
  font-size: 0.875rem;
  padding: 0.5625rem 0.625rem;
  text-align: left;
}
table tr.even, table tr.alt, table tr:nth-of-type(even) {
  background: #F9F9F9;
}
table thead tr th,
table tfoot tr th,
table tfoot tr td,
table tbody tr th,
table tbody tr td,
table tr td {
  display: table-cell;
  line-height: 1.125rem;
}

.tabs {
  margin-bottom: 0 !important;
  margin-left: 0;
}
.tabs:before, .tabs:after {
  content: " ";
  display: table;
}
.tabs:after {
  clear: both;
}
.tabs dd,
.tabs .tab-title {
  float: left;
  list-style: none;
  margin-bottom: 0 !important;
  position: relative;
}
.tabs dd > a,
.tabs .tab-title > a {
  display: block;
  background-color: #EFEFEF;
  color: #222222;
  font-family: "Ubuntu", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 1rem;
  padding: 1rem 2rem;
}
.tabs dd > a:hover,
.tabs .tab-title > a:hover {
  background-color: rgb(224.66, 224.66, 224.66);
}
.tabs dd.active > a,
.tabs .tab-title.active > a {
  background-color: #FFFFFF;
  color: #222222;
}
.tabs.radius dd:first-child a,
.tabs.radius .tab:first-child a {
  -webkit-border-bottom-left-radius: 0.25rem;
  -webkit-border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
}
.tabs.radius dd:last-child a,
.tabs.radius .tab:last-child a {
  -webkit-border-bottom-right-radius: 0.25rem;
  -webkit-border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.tabs.vertical dd,
.tabs.vertical .tab-title {
  position: inherit;
  float: none;
  display: block;
  top: auto;
}

.tabs-content {
  margin-bottom: 1.5rem;
  width: 100%;
}
.tabs-content:before, .tabs-content:after {
  content: " ";
  display: table;
}
.tabs-content:after {
  clear: both;
}
.tabs-content > .content {
  display: none;
  float: left;
  padding: 0.9375rem 0;
  width: 100%;
}
.tabs-content > .content.active {
  display: block;
  float: none;
}
.tabs-content > .content.contained {
  padding: 0.9375rem;
}
.tabs-content.vertical {
  display: block;
}
.tabs-content.vertical > .content {
  padding: 0 0.9375rem;
}

@media only screen and (min-width:40.0625em) {
  .tabs.vertical {
    float: left;
    margin: 0;
    margin-bottom: 1.25rem !important;
    max-width: 20%;
    width: 20%;
  }
  .tabs-content.vertical {
    float: left;
    margin-left: -1px;
    max-width: 80%;
    padding-left: 1rem;
    width: 80%;
  }
}
.no-js .tabs-content > .content {
  display: block;
  float: none;
}

/* Image Thumbnails */
.th {
  border: solid 4px #FFFFFF;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  display: inline-block;
  line-height: 0;
  max-width: 100%;
  transition: all 200ms ease-out;
}
.th:hover, .th:focus {
  box-shadow: 0 0 6px 1px rgba(30, 144, 250, 0.5);
}
.th.radius {
  border-radius: 0.25rem;
}

/* Tooltips */
.has-tip {
  border-bottom: dotted 1px #CCCCCC;
  color: #333333;
  cursor: help;
  font-weight: bold;
}
.has-tip:hover, .has-tip:focus {
  border-bottom: dotted 1px rgb(2.7391304348, 65.1913043478, 123.2608695652);
  color: #1E90FA;
}
.has-tip.tip-left, .has-tip.tip-right {
  float: none !important;
}

.tooltip {
  background: #333333;
  color: #FFFFFF;
  display: none;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.3;
  max-width: 300px;
  padding: 0.75rem;
  position: absolute;
  width: 100%;
  z-index: 1006;
  left: 50%;
}
.tooltip > .nub {
  border: solid 5px;
  border-color: transparent transparent #333333 transparent;
  display: block;
  height: 0;
  pointer-events: none;
  position: absolute;
  top: -10px;
  width: 0;
  left: 5px;
}
.tooltip > .nub.rtl {
  left: auto;
  right: 5px;
}
.tooltip.radius {
  border-radius: 0.25rem;
}
.tooltip.round {
  border-radius: 62.5rem;
}
.tooltip.round > .nub {
  left: 2rem;
}
.tooltip.opened {
  border-bottom: dotted 1px rgb(2.7391304348, 65.1913043478, 123.2608695652) !important;
  color: #1E90FA !important;
}

.tap-to-close {
  color: #777777;
  display: block;
  font-size: 0.625rem;
  font-weight: normal;
}

@media only screen {
  .tooltip > .nub {
    border-color: transparent transparent #333333 transparent;
    top: -10px;
  }
  .tooltip.tip-top > .nub {
    border-color: #333333 transparent transparent transparent;
    bottom: -10px;
    top: auto;
  }
  .tooltip.tip-left, .tooltip.tip-right {
    float: none !important;
  }
  .tooltip.tip-left > .nub {
    border-color: transparent transparent transparent #333333;
    left: auto;
    margin-top: -5px;
    right: -10px;
    top: 50%;
  }
  .tooltip.tip-right > .nub {
    border-color: transparent #333333 transparent transparent;
    left: -10px;
    margin-top: -5px;
    right: auto;
    top: 50%;
  }
}
meta.foundation-mq-topbar {
  font-family: "/only screen and (min-width:40.0625em)/";
  width: 40.0625em;
}

/* Wrapped around .top-bar to contain to grid width */
.contain-to-grid {
  width: 100%;
  background: #333333;
}
.contain-to-grid .top-bar {
  margin-bottom: 0;
}

.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  left: 0;
}
.fixed.expanded:not(.top-bar) {
  height: auto;
  max-height: 100%;
  overflow-y: auto;
  width: 100%;
}
.fixed.expanded:not(.top-bar) .title-area {
  position: fixed;
  width: 100%;
  z-index: 99;
}
.fixed.expanded:not(.top-bar) .top-bar-section {
  margin-top: 2.8125rem;
  z-index: 98;
}

.top-bar {
  background: #333333;
  height: 2.8125rem;
  line-height: 2.8125rem;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
}
.top-bar ul {
  list-style: none;
  margin-bottom: 0;
}
.top-bar .row {
  max-width: none;
}
.top-bar form,
.top-bar input,
.top-bar select {
  margin-bottom: 0;
}
.top-bar input,
.top-bar select {
  font-size: 0.75rem;
  height: 1.75rem;
  padding-bottom: 0.35rem;
  padding-top: 0.35rem;
}
.top-bar .button, .top-bar button {
  font-size: 0.75rem;
  margin-bottom: 0;
  padding-bottom: 0.4125rem;
  padding-top: 0.4125rem;
}
@media only screen and (max-width: 40em) {
  .top-bar .button, .top-bar button {
    position: relative;
    top: -1px;
  }
}
.top-bar .title-area {
  margin: 0;
  position: relative;
}
.top-bar .name {
  font-size: 16px;
  height: 2.8125rem;
  margin: 0;
}
.top-bar .name h1, .top-bar .name h2, .top-bar .name h3, .top-bar .name h4, .top-bar .name p, .top-bar .name span {
  font-size: 1.0625rem;
  line-height: 2.8125rem;
  margin: 0;
}
.top-bar .name h1 a, .top-bar .name h2 a, .top-bar .name h3 a, .top-bar .name h4 a, .top-bar .name p a, .top-bar .name span a {
  color: #FFFFFF;
  display: block;
  font-weight: normal;
  padding: 0 0.9375rem;
  width: 75%;
}
.top-bar .toggle-topbar {
  position: absolute;
  right: 0;
  top: 0;
}
.top-bar .toggle-topbar a {
  color: #FFFFFF;
  display: block;
  font-size: 0.8125rem;
  font-weight: bold;
  height: 2.8125rem;
  line-height: 2.8125rem;
  padding: 0 0.9375rem;
  position: relative;
  text-transform: uppercase;
}
.top-bar .toggle-topbar.menu-icon {
  margin-top: -16px;
  top: 50%;
}
.top-bar .toggle-topbar.menu-icon a {
  color: #FFFFFF;
  height: 34px;
  line-height: 33px;
  padding: 0 2.5rem 0 0.9375rem;
  position: relative;
}
.top-bar .toggle-topbar.menu-icon a span::after {
  content: "";
  display: block;
  height: 0;
  position: absolute;
  margin-top: -8px;
  top: 50%;
  right: 0.9375rem;
  box-shadow: 0 0 0 1px #FFFFFF, 0 7px 0 1px #FFFFFF, 0 14px 0 1px #FFFFFF;
  width: 16px;
}
.top-bar .toggle-topbar.menu-icon a span:hover:after {
  box-shadow: 0 0 0 1px "", 0 7px 0 1px "", 0 14px 0 1px "";
}
.top-bar.expanded {
  background: transparent;
  height: auto;
}
.top-bar.expanded .title-area {
  background: #333333;
}
.top-bar.expanded .toggle-topbar a {
  color: #888888;
}
.top-bar.expanded .toggle-topbar a span::after {
  box-shadow: 0 0 0 1px #888888, 0 7px 0 1px #888888, 0 14px 0 1px #888888;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .top-bar.expanded .top-bar-section .has-dropdown.moved > .dropdown,
  .top-bar.expanded .top-bar-section .dropdown {
    clip: initial;
  }
  .top-bar.expanded .top-bar-section .has-dropdown:not(.moved) > ul {
    padding: 0;
  }
}

.top-bar-section {
  left: 0;
  position: relative;
  width: auto;
  transition: left 300ms ease-out;
}
.top-bar-section ul {
  display: block;
  font-size: 16px;
  height: auto;
  margin: 0;
  padding: 0;
  width: 100%;
}
.top-bar-section .divider,
.top-bar-section [role=separator] {
  border-top: solid 1px rgb(25.5, 25.5, 25.5);
  clear: both;
  height: 1px;
  width: 100%;
}
.top-bar-section ul li {
  background: #333333;
}
.top-bar-section ul li > a {
  color: #FFFFFF;
  display: block;
  font-family: "Ubuntu", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: normal;
  padding-left: 0.9375rem;
  padding: 12px 0 12px 0.9375rem;
  text-transform: none;
  width: 100%;
}
.top-bar-section ul li > a.button {
  font-size: 0.8125rem;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  background-color: #1E90FA;
  border-color: rgb(4.8695652174, 115.8956521739, 219.1304347826);
  color: #FFFFFF;
}
.top-bar-section ul li > a.button:hover, .top-bar-section ul li > a.button:focus {
  background-color: rgb(4.8695652174, 115.8956521739, 219.1304347826);
}
.top-bar-section ul li > a.button:hover, .top-bar-section ul li > a.button:focus {
  color: #FFFFFF;
}
.top-bar-section ul li > a.button.secondary {
  background-color: #CDCDCD;
  border-color: #a4a4a4;
  color: #333333;
}
.top-bar-section ul li > a.button.secondary:hover, .top-bar-section ul li > a.button.secondary:focus {
  background-color: #a4a4a4;
}
.top-bar-section ul li > a.button.secondary:hover, .top-bar-section ul li > a.button.secondary:focus {
  color: #FFFFFF;
}
.top-bar-section ul li > a.button.success {
  background-color: #ACCF29;
  border-color: rgb(137.6, 165.6, 32.8);
  color: #FFFFFF;
}
.top-bar-section ul li > a.button.success:hover, .top-bar-section ul li > a.button.success:focus {
  background-color: rgb(137.6, 165.6, 32.8);
}
.top-bar-section ul li > a.button.success:hover, .top-bar-section ul li > a.button.success:focus {
  color: #FFFFFF;
}
.top-bar-section ul li > a.button.alert {
  background-color: #EF2323;
  border-color: rgb(204.3389830508, 14.8610169492, 14.8610169492);
  color: #FFFFFF;
}
.top-bar-section ul li > a.button.alert:hover, .top-bar-section ul li > a.button.alert:focus {
  background-color: rgb(204.3389830508, 14.8610169492, 14.8610169492);
}
.top-bar-section ul li > a.button.alert:hover, .top-bar-section ul li > a.button.alert:focus {
  color: #FFFFFF;
}
.top-bar-section ul li > a.button.warning {
  background-color: #F1852A;
  border-color: rgb(212.4370044053, 104.7224669604, 13.9629955947);
  color: #FFFFFF;
}
.top-bar-section ul li > a.button.warning:hover, .top-bar-section ul li > a.button.warning:focus {
  background-color: rgb(212.4370044053, 104.7224669604, 13.9629955947);
}
.top-bar-section ul li > a.button.warning:hover, .top-bar-section ul li > a.button.warning:focus {
  color: #FFFFFF;
}
.top-bar-section ul li > a.button.info {
  background-color: #8fc8fd;
  border-color: rgb(65.1894736842, 161.7894736842, 251.6105263158);
  color: #333333;
}
.top-bar-section ul li > a.button.info:hover, .top-bar-section ul li > a.button.info:focus {
  background-color: rgb(65.1894736842, 161.7894736842, 251.6105263158);
}
.top-bar-section ul li > a.button.info:hover, .top-bar-section ul li > a.button.info:focus {
  color: #FFFFFF;
}
.top-bar-section ul li > button {
  font-size: 0.8125rem;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  background-color: #1E90FA;
  border-color: rgb(4.8695652174, 115.8956521739, 219.1304347826);
  color: #FFFFFF;
}
.top-bar-section ul li > button:hover, .top-bar-section ul li > button:focus {
  background-color: rgb(4.8695652174, 115.8956521739, 219.1304347826);
}
.top-bar-section ul li > button:hover, .top-bar-section ul li > button:focus {
  color: #FFFFFF;
}
.top-bar-section ul li > button.secondary {
  background-color: #CDCDCD;
  border-color: #a4a4a4;
  color: #333333;
}
.top-bar-section ul li > button.secondary:hover, .top-bar-section ul li > button.secondary:focus {
  background-color: #a4a4a4;
}
.top-bar-section ul li > button.secondary:hover, .top-bar-section ul li > button.secondary:focus {
  color: #FFFFFF;
}
.top-bar-section ul li > button.success {
  background-color: #ACCF29;
  border-color: rgb(137.6, 165.6, 32.8);
  color: #FFFFFF;
}
.top-bar-section ul li > button.success:hover, .top-bar-section ul li > button.success:focus {
  background-color: rgb(137.6, 165.6, 32.8);
}
.top-bar-section ul li > button.success:hover, .top-bar-section ul li > button.success:focus {
  color: #FFFFFF;
}
.top-bar-section ul li > button.alert {
  background-color: #EF2323;
  border-color: rgb(204.3389830508, 14.8610169492, 14.8610169492);
  color: #FFFFFF;
}
.top-bar-section ul li > button.alert:hover, .top-bar-section ul li > button.alert:focus {
  background-color: rgb(204.3389830508, 14.8610169492, 14.8610169492);
}
.top-bar-section ul li > button.alert:hover, .top-bar-section ul li > button.alert:focus {
  color: #FFFFFF;
}
.top-bar-section ul li > button.warning {
  background-color: #F1852A;
  border-color: rgb(212.4370044053, 104.7224669604, 13.9629955947);
  color: #FFFFFF;
}
.top-bar-section ul li > button.warning:hover, .top-bar-section ul li > button.warning:focus {
  background-color: rgb(212.4370044053, 104.7224669604, 13.9629955947);
}
.top-bar-section ul li > button.warning:hover, .top-bar-section ul li > button.warning:focus {
  color: #FFFFFF;
}
.top-bar-section ul li > button.info {
  background-color: #8fc8fd;
  border-color: rgb(65.1894736842, 161.7894736842, 251.6105263158);
  color: #333333;
}
.top-bar-section ul li > button.info:hover, .top-bar-section ul li > button.info:focus {
  background-color: rgb(65.1894736842, 161.7894736842, 251.6105263158);
}
.top-bar-section ul li > button.info:hover, .top-bar-section ul li > button.info:focus {
  color: #FFFFFF;
}
.top-bar-section ul li:hover:not(.has-form) > a {
  background-color: #555555;
  color: #FFFFFF;
  background: #222222;
}
.top-bar-section ul li.active > a {
  background: #1E90FA;
  color: #FFFFFF;
}
.top-bar-section ul li.active > a:hover {
  background: rgb(5.2347826087, 124.587826087, 235.5652173913);
  color: #FFFFFF;
}
.top-bar-section .has-form {
  padding: 0.9375rem;
}
.top-bar-section .has-dropdown {
  position: relative;
}
.top-bar-section .has-dropdown > a:after {
  border: inset 5px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.4);
  border-left-style: solid;
  margin-right: 0.9375rem;
  margin-top: -4.5px;
  position: absolute;
  top: 50%;
  right: 0;
}
.top-bar-section .has-dropdown.moved {
  position: static;
}
.top-bar-section .has-dropdown.moved > .dropdown {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto;
  display: block;
  position: absolute !important;
  width: 100%;
}
.top-bar-section .has-dropdown.moved > a:after {
  display: none;
}
.top-bar-section .dropdown {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  display: block;
  padding: 0;
  position: absolute;
  top: 0;
  z-index: 99;
  left: 100%;
}
.top-bar-section .dropdown li {
  height: auto;
  width: 100%;
}
.top-bar-section .dropdown li a {
  font-weight: normal;
  padding: 8px 0.9375rem;
}
.top-bar-section .dropdown li a.parent-link {
  font-weight: normal;
}
.top-bar-section .dropdown li.title h5, .top-bar-section .dropdown li.parent-link {
  margin-bottom: 0;
  margin-top: 0;
  font-size: 1.125rem;
}
.top-bar-section .dropdown li.title h5 a, .top-bar-section .dropdown li.parent-link a {
  color: #FFFFFF;
  display: block;
}
.top-bar-section .dropdown li.title h5 a:hover, .top-bar-section .dropdown li.parent-link a:hover {
  background: none;
}
.top-bar-section .dropdown li.has-form {
  padding: 8px 0.9375rem;
}
.top-bar-section .dropdown li .button,
.top-bar-section .dropdown li button {
  top: auto;
}
.top-bar-section .dropdown label {
  color: #777777;
  font-size: 0.625rem;
  font-weight: bold;
  margin-bottom: 0;
  padding: 8px 0.9375rem 2px;
  text-transform: uppercase;
}

.js-generated {
  display: block;
}

@media only screen and (min-width:40.0625em) {
  .top-bar {
    background: #333333;
    overflow: visible;
  }
  .top-bar:before, .top-bar:after {
    content: " ";
    display: table;
  }
  .top-bar:after {
    clear: both;
  }
  .top-bar .toggle-topbar {
    display: none;
  }
  .top-bar .title-area {
    float: left;
  }
  .top-bar .name h1 a,
  .top-bar .name h2 a,
  .top-bar .name h3 a,
  .top-bar .name h4 a,
  .top-bar .name h5 a,
  .top-bar .name h6 a {
    width: auto;
  }
  .top-bar input,
  .top-bar select,
  .top-bar .button,
  .top-bar button {
    font-size: 0.875rem;
    height: 1.75rem;
    position: relative;
    top: 0.53125rem;
  }
  .top-bar .has-form > .button,
  .top-bar .has-form > button {
    font-size: 0.875rem;
    height: 1.75rem;
    position: relative;
    top: 0.53125rem;
  }
  .top-bar.expanded {
    background: #333333;
  }
  .contain-to-grid .top-bar {
    margin: 0 auto;
    margin-bottom: 0;
    max-width: 75rem;
  }
  .top-bar-section {
    transition: none 0 0;
    left: 0 !important;
  }
  .top-bar-section ul {
    display: inline;
    height: auto !important;
    width: auto;
  }
  .top-bar-section ul li {
    float: left;
  }
  .top-bar-section ul li .js-generated {
    display: none;
  }
  .top-bar-section li.hover > a:not(.button) {
    background-color: #555555;
    background: #222222;
    color: #FFFFFF;
  }
  .top-bar-section li:not(.has-form) a:not(.button) {
    background: #333333;
    line-height: 2.8125rem;
    padding: 0 0.9375rem;
  }
  .top-bar-section li:not(.has-form) a:not(.button):hover {
    background-color: #555555;
    background: #222222;
  }
  .top-bar-section li.active:not(.has-form) a:not(.button) {
    background: #1E90FA;
    color: #FFFFFF;
    line-height: 2.8125rem;
    padding: 0 0.9375rem;
  }
  .top-bar-section li.active:not(.has-form) a:not(.button):hover {
    background: rgb(5.2347826087, 124.587826087, 235.5652173913);
    color: #FFFFFF;
  }
  .top-bar-section .has-dropdown > a {
    padding-right: 2.1875rem !important;
  }
  .top-bar-section .has-dropdown > a:after {
    border: inset 5px;
    content: "";
    display: block;
    height: 0;
    width: 0;
    border-color: rgba(255, 255, 255, 0.4) transparent transparent transparent;
    border-top-style: solid;
    margin-top: -2.5px;
    top: 1.40625rem;
  }
  .top-bar-section .has-dropdown.moved {
    position: relative;
  }
  .top-bar-section .has-dropdown.moved > .dropdown {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    display: block;
  }
  .top-bar-section .has-dropdown.hover > .dropdown, .top-bar-section .has-dropdown.not-click:hover > .dropdown {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    display: block;
    position: absolute !important;
  }
  .top-bar-section .has-dropdown > a:focus + .dropdown {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    display: block;
    position: absolute !important;
  }
  .top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after {
    border: none;
    content: "»";
    top: 0.1875rem;
    right: 5px;
  }
  .top-bar-section .dropdown {
    left: 0;
    background: transparent;
    min-width: 100%;
    top: auto;
  }
  .top-bar-section .dropdown li a {
    background: #333333;
    color: #FFFFFF;
    line-height: 2.8125rem;
    padding: 12px 0.9375rem;
    white-space: nowrap;
  }
  .top-bar-section .dropdown li:not(.has-form):not(.active) > a:not(.button) {
    background: #333333;
    color: #FFFFFF;
  }
  .top-bar-section .dropdown li:not(.has-form):not(.active):hover > a:not(.button) {
    background-color: #555555;
    color: #FFFFFF;
    background: #222222;
  }
  .top-bar-section .dropdown li label {
    background: #333333;
    white-space: nowrap;
  }
  .top-bar-section .dropdown li .dropdown {
    left: 100%;
    top: 0;
  }
  .top-bar-section > ul > .divider,
  .top-bar-section > ul > [role=separator] {
    border-right: solid 1px rgb(77.52, 77.52, 77.52);
    border-bottom: none;
    border-top: none;
    clear: none;
    height: 2.8125rem;
    width: 0;
  }
  .top-bar-section .has-form {
    background: #333333;
    height: 2.8125rem;
    padding: 0 0.9375rem;
  }
  .top-bar-section .right li .dropdown {
    left: auto;
    right: 0;
  }
  .top-bar-section .right li .dropdown li .dropdown {
    right: 100%;
  }
  .top-bar-section .left li .dropdown {
    right: auto;
    left: 0;
  }
  .top-bar-section .left li .dropdown li .dropdown {
    left: 100%;
  }
  .no-js .top-bar-section ul li:hover > a {
    background-color: #555555;
    background: #222222;
    color: #FFFFFF;
  }
  .no-js .top-bar-section ul li:active > a {
    background: #1E90FA;
    color: #FFFFFF;
  }
  .no-js .top-bar-section .has-dropdown:hover > .dropdown {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    display: block;
    position: absolute !important;
  }
  .no-js .top-bar-section .has-dropdown > a:focus + .dropdown {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    display: block;
    position: absolute !important;
  }
}
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-justify {
  text-align: justify !important;
}

@media only screen and (max-width: 40em) {
  .small-only-text-left {
    text-align: left !important;
  }
  .small-only-text-right {
    text-align: right !important;
  }
  .small-only-text-center {
    text-align: center !important;
  }
  .small-only-text-justify {
    text-align: justify !important;
  }
}
@media only screen {
  .small-text-left {
    text-align: left !important;
  }
  .small-text-right {
    text-align: right !important;
  }
  .small-text-center {
    text-align: center !important;
  }
  .small-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width:40.0625em) and (max-width:64em) {
  .medium-only-text-left {
    text-align: left !important;
  }
  .medium-only-text-right {
    text-align: right !important;
  }
  .medium-only-text-center {
    text-align: center !important;
  }
  .medium-only-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width:40.0625em) {
  .medium-text-left {
    text-align: left !important;
  }
  .medium-text-right {
    text-align: right !important;
  }
  .medium-text-center {
    text-align: center !important;
  }
  .medium-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width:64.0625em) and (max-width:90em) {
  .large-only-text-left {
    text-align: left !important;
  }
  .large-only-text-right {
    text-align: right !important;
  }
  .large-only-text-center {
    text-align: center !important;
  }
  .large-only-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width:64.0625em) {
  .large-text-left {
    text-align: left !important;
  }
  .large-text-right {
    text-align: right !important;
  }
  .large-text-center {
    text-align: center !important;
  }
  .large-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width:90.0625em) and (max-width:120em) {
  .xlarge-only-text-left {
    text-align: left !important;
  }
  .xlarge-only-text-right {
    text-align: right !important;
  }
  .xlarge-only-text-center {
    text-align: center !important;
  }
  .xlarge-only-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width:90.0625em) {
  .xlarge-text-left {
    text-align: left !important;
  }
  .xlarge-text-right {
    text-align: right !important;
  }
  .xlarge-text-center {
    text-align: center !important;
  }
  .xlarge-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width:120.0625em) and (max-width:6249999.9375em) {
  .xxlarge-only-text-left {
    text-align: left !important;
  }
  .xxlarge-only-text-right {
    text-align: right !important;
  }
  .xxlarge-only-text-center {
    text-align: center !important;
  }
  .xxlarge-only-text-justify {
    text-align: justify !important;
  }
}
@media only screen and (min-width:120.0625em) {
  .xxlarge-text-left {
    text-align: left !important;
  }
  .xxlarge-text-right {
    text-align: right !important;
  }
  .xxlarge-text-center {
    text-align: center !important;
  }
  .xxlarge-text-justify {
    text-align: justify !important;
  }
}
/* Typography resets */
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

/* Default Link Styles */
a {
  color: #1E90FA;
  line-height: inherit;
  text-decoration: none;
}
a:hover, a:focus {
  color: rgb(5.2347826087, 124.587826087, 235.5652173913);
}
a img {
  border: none;
}

/* Default paragraph styles */
p {
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  text-rendering: optimizeLegibility;
}
p.lead {
  font-size: 1.21875rem;
  line-height: 1.6;
}
p aside {
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.35;
}

/* Default header styles */
h1, h2, h3, h4, h5, h6 {
  color: #222222;
  font-family: "Ubuntu", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  margin-top: 0.2rem;
  text-rendering: optimizeLegibility;
}
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  color: rgb(111.35, 111.35, 111.35);
  font-size: 70%;
  line-height: 0;
}

h1 {
  font-size: 2.125rem;
}

h2 {
  font-size: 1.6875rem;
}

h3 {
  font-size: 1.375rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

.subheader {
  line-height: 1.4;
  color: rgb(111.35, 111.35, 111.35);
  font-weight: normal;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
}

hr {
  border: solid #DDDDDD;
  border-width: 1px 0 0;
  clear: both;
  height: 0;
  margin: 1.25rem 0 1.1875rem;
}

/* Helpful Typography Defaults */
em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 70%;
  line-height: inherit;
}

code {
  background-color: #f0f0f0;
  border-color: #d8d8d8;
  border-style: solid;
  border-width: 1px;
  color: #333333;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  padding: 0.125rem 0.3125rem 0.0625rem;
}

/* Lists */
ul,
ol,
dl {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.6;
  list-style-position: outside;
  margin-bottom: 1.25rem;
}

ul {
  margin-left: 1.1rem;
}

/* Unordered Lists */
ul li ul,
ul li ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}
ul.square li ul, ul.circle li ul, ul.disc li ul {
  list-style: inherit;
}
ul.square {
  list-style-type: square;
  margin-left: 1.1rem;
}
ul.circle {
  list-style-type: circle;
  margin-left: 1.1rem;
}
ul.disc {
  list-style-type: disc;
  margin-left: 1.1rem;
}

/* Ordered Lists */
ol {
  margin-left: 1.4rem;
}
ol li ul,
ol li ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}

.no-bullet {
  list-style-type: none;
  margin-left: 0;
}
.no-bullet li ul,
.no-bullet li ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
  list-style: none;
}

/* Definition Lists */
dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold;
}
dl dd {
  margin-bottom: 0.75rem;
}

/* Abbreviations */
abbr,
acronym {
  text-transform: uppercase;
  font-size: 90%;
  color: #252525;
  cursor: help;
}

abbr {
  text-transform: none;
}
abbr[title] {
  border-bottom: 1px dotted #DDDDDD;
}

/* Blockquotes */
blockquote {
  margin: 0 0 1.25rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #DDDDDD;
}
blockquote cite {
  display: block;
  font-size: 0.8125rem;
  color: rgb(84.83, 84.83, 84.83);
}
blockquote cite:before {
  content: "— ";
}
blockquote cite a,
blockquote cite a:visited {
  color: rgb(84.83, 84.83, 84.83);
}

blockquote,
blockquote p {
  line-height: 1.6;
  color: rgb(111.35, 111.35, 111.35);
}

/* Microformats */
.vcard {
  display: inline-block;
  margin: 0 0 1.25rem 0;
  border: 1px solid #DDDDDD;
  padding: 0.625rem 0.75rem;
}
.vcard li {
  margin: 0;
  display: block;
}
.vcard .fn {
  font-weight: bold;
  font-size: 0.9375rem;
}

.vevent .summary {
  font-weight: bold;
}
.vevent abbr {
  cursor: default;
  text-decoration: none;
  font-weight: bold;
  border: none;
  padding: 0 0.0625rem;
}

@media only screen and (min-width:40.0625em) {
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
  }
  h1 {
    font-size: 2.75rem;
  }
  h2 {
    font-size: 2.3125rem;
  }
  h3 {
    font-size: 1.6875rem;
  }
  h4 {
    font-size: 1.4375rem;
  }
  h5 {
    font-size: 1.125rem;
  }
  h6 {
    font-size: 1rem;
  }
}
/*
 * Print styles.
 *
 * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
 * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
*/
@media print {
  * {
    background: transparent !important;
    color: #000000 !important; /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group; /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.34in;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/* small displays */
@media only screen {
  .show-for-small-only, .show-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important;
  }
  .hide-for-small-only, .hide-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important;
  }
  .visible-for-small-only, .visible-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .hidden-for-small-only, .hidden-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
  table.show-for-small-only, table.show-for-small-up, table.show-for-small, table.show-for-small-down, table.hide-for-medium-only, table.hide-for-medium-up, table.hide-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important;
  }
  thead.show-for-small-only, thead.show-for-small-up, thead.show-for-small, thead.show-for-small-down, thead.hide-for-medium-only, thead.hide-for-medium-up, thead.hide-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.show-for-small-only, tbody.show-for-small-up, tbody.show-for-small, tbody.show-for-small-down, tbody.hide-for-medium-only, tbody.hide-for-medium-up, tbody.hide-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.show-for-small-only, tr.show-for-small-up, tr.show-for-small, tr.show-for-small-down, tr.hide-for-medium-only, tr.hide-for-medium-up, tr.hide-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row;
  }
  th.show-for-small-only, td.show-for-small-only, th.show-for-small-up, td.show-for-small-up, th.show-for-small, td.show-for-small, th.show-for-small-down, td.show-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.hide-for-medium-up, td.hide-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
/* medium displays */
@media only screen and (min-width:40.0625em) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important;
  }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important;
  }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.show-for-medium-only, table.show-for-medium-up, table.show-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important;
  }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.show-for-medium-only, thead.show-for-medium-up, thead.show-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.show-for-medium-only, tbody.show-for-medium-up, tbody.show-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.show-for-medium-only, tr.show-for-medium-up, tr.show-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row;
  }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.show-for-medium-only, td.show-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.show-for-medium, td.show-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
/* large displays */
@media only screen and (min-width:64.0625em) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important;
  }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important;
  }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.show-for-large-only, table.show-for-large-up, table.show-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important;
  }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.show-for-large-only, thead.show-for-large-up, thead.show-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.show-for-large-only, tbody.show-for-large-up, tbody.show-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.show-for-large-only, tr.show-for-large-up, tr.show-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row;
  }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.show-for-large-only, td.show-for-large-only, th.show-for-large-up, td.show-for-large-up, th.show-for-large, td.show-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
/* xlarge displays */
@media only screen and (min-width:90.0625em) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important;
  }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important;
  }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.show-for-xlarge-only, table.show-for-xlarge-up, table.show-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important;
  }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.show-for-xlarge-only, thead.show-for-xlarge-up, thead.show-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.show-for-xlarge-only, tbody.show-for-xlarge-up, tbody.show-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.show-for-xlarge-only, tr.show-for-xlarge-up, tr.show-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row;
  }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.show-for-xlarge-only, td.show-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.show-for-xlarge, td.show-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
/* xxlarge displays */
@media only screen and (min-width:120.0625em) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .hide-for-xlarge-only, .show-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important;
  }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .show-for-xlarge-only, .hide-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important;
  }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .hidden-for-xlarge-only, .visible-for-xlarge-up, .hidden-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .visible-for-xlarge-only, .hidden-for-xlarge-up, .visible-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.hide-for-xlarge-only, table.show-for-xlarge-up, table.hide-for-xlarge, table.hide-for-xlarge-down, table.show-for-xxlarge-only, table.show-for-xxlarge-up, table.show-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important;
  }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.hide-for-xlarge-only, thead.show-for-xlarge-up, thead.hide-for-xlarge, thead.hide-for-xlarge-down, thead.show-for-xxlarge-only, thead.show-for-xxlarge-up, thead.show-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.hide-for-xlarge-only, tbody.show-for-xlarge-up, tbody.hide-for-xlarge, tbody.hide-for-xlarge-down, tbody.show-for-xxlarge-only, tbody.show-for-xxlarge-up, tbody.show-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.hide-for-xlarge-only, tr.show-for-xlarge-up, tr.hide-for-xlarge, tr.hide-for-xlarge-down, tr.show-for-xxlarge-only, tr.show-for-xxlarge-up, tr.show-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row;
  }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.hide-for-xlarge-down, td.hide-for-xlarge-down, th.show-for-xxlarge-only, td.show-for-xxlarge-only, th.show-for-xxlarge-up, td.show-for-xxlarge-up, th.show-for-xxlarge, td.show-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
/* Orientation targeting */
.show-for-landscape,
.hide-for-portrait {
  display: inherit !important;
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}

/* Specific visibility for tables */
table.hide-for-landscape, table.show-for-portrait {
  display: table !important;
}

thead.hide-for-landscape, thead.show-for-portrait {
  display: table-header-group !important;
}

tbody.hide-for-landscape, tbody.show-for-portrait {
  display: table-row-group !important;
}

tr.hide-for-landscape, tr.show-for-portrait {
  display: table-row !important;
}

td.hide-for-landscape, td.show-for-portrait,
th.hide-for-landscape,
th.show-for-portrait {
  display: table-cell !important;
}

@media only screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: inherit !important;
  }
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
  /* Specific visibility for tables */
  table.show-for-landscape, table.hide-for-portrait {
    display: table !important;
  }
  thead.show-for-landscape, thead.hide-for-portrait {
    display: table-header-group !important;
  }
  tbody.show-for-landscape, tbody.hide-for-portrait {
    display: table-row-group !important;
  }
  tr.show-for-landscape, tr.hide-for-portrait {
    display: table-row !important;
  }
  td.show-for-landscape, td.hide-for-portrait,
  th.show-for-landscape,
  th.hide-for-portrait {
    display: table-cell !important;
  }
}
@media only screen and (orientation: portrait) {
  .show-for-portrait,
  .hide-for-landscape {
    display: inherit !important;
  }
  .hide-for-portrait,
  .show-for-landscape {
    display: none !important;
  }
  /* Specific visibility for tables */
  table.show-for-portrait, table.hide-for-landscape {
    display: table !important;
  }
  thead.show-for-portrait, thead.hide-for-landscape {
    display: table-header-group !important;
  }
  tbody.show-for-portrait, tbody.hide-for-landscape {
    display: table-row-group !important;
  }
  tr.show-for-portrait, tr.hide-for-landscape {
    display: table-row !important;
  }
  td.show-for-portrait, td.hide-for-landscape,
  th.show-for-portrait,
  th.hide-for-landscape {
    display: table-cell !important;
  }
}
/* Touch-enabled device targeting */
.show-for-touch {
  display: none !important;
}

.hide-for-touch {
  display: inherit !important;
}

.touch .show-for-touch {
  display: inherit !important;
}

.touch .hide-for-touch {
  display: none !important;
}

/* Specific visibility for tables */
table.hide-for-touch {
  display: table !important;
}

.touch table.show-for-touch {
  display: table !important;
}

thead.hide-for-touch {
  display: table-header-group !important;
}

.touch thead.show-for-touch {
  display: table-header-group !important;
}

tbody.hide-for-touch {
  display: table-row-group !important;
}

.touch tbody.show-for-touch {
  display: table-row-group !important;
}

tr.hide-for-touch {
  display: table-row !important;
}

.touch tr.show-for-touch {
  display: table-row !important;
}

td.hide-for-touch {
  display: table-cell !important;
}

.touch td.show-for-touch {
  display: table-cell !important;
}

th.hide-for-touch {
  display: table-cell !important;
}

.touch th.show-for-touch {
  display: table-cell !important;
}

/* Screen reader-specific classes */
.show-for-sr {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.show-on-focus {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}
.show-on-focus:focus, .show-on-focus:active {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto;
}

/* Print visibility */
.print-only,
.show-for-print {
  display: none !important;
}

@media print {
  .print-only,
  .show-for-print {
    display: block !important;
  }
  .hide-on-print,
  .hide-for-print {
    display: none !important;
  }
  table.show-for-print {
    display: table !important;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print {
    display: table-cell !important;
  }
  th.show-for-print {
    display: table-cell !important;
  }
}
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/**
 * * Input styles
 * */
body input,
body textarea {
  border-radius: 4px;
  border: 1px solid #ccc;
}
body input[type=file] {
  border: none;
}

/**
 * * Table styles
 * */
table.style-a {
  width: 100%;
  border: 0;
}
table.style-a thead {
  background: none;
}
table.style-a tr {
  background: none;
}
table.style-a tr th {
  background: none;
  padding: 1rem 0;
  text-transform: uppercase;
  font-weight: 700;
}
table.style-a tr td {
  background: none;
  border-top: 1px solid #eee;
}

table.style-b {
  border: none;
}
table.style-b thead {
  background: #fff;
}
table.style-b thead th {
  padding: 0.5625rem 0.625rem;
}

table.style-c {
  border: none;
  background: none;
  margin: 0;
}
table.style-c tr {
  background: none;
}
table.style-c td, table.style-c th {
  padding: 0.2rem 0.33rem;
}

/**
 * * Panels
 * */
.panel.success {
  background: rgb(238.9419354839, 246.3370967742, 211.2629032258);
}

/**
 * * Button styles
 * */
button,
.button {
  font-weight: 700;
  transition: all 0.5s;
  border-radius: 0.25rem;
  outline: 0;
  color: #fff;
}
button.square,
.button.square {
  border-radius: 0;
}
button.shadow,
.button.shadow {
  box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.3);
}
button.shadow:hover,
.button.shadow:hover {
  box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.5);
}
button:hover, button:focus,
.button:hover,
.button:focus {
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.2);
}
button:active,
.button:active {
  box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.3);
}
button.prefix, button.postfix,
.button.prefix,
.button.postfix {
  line-height: normal;
}

/**
 * * Button font color fixes
 * */
button,
.button {
  color: #FFFFFF;
}
button.primary,
.button.primary {
  color: #FFFFFF;
}
button.secondary,
.button.secondary {
  color: #FFFFFF;
}
button.success,
.button.success {
  color: #FFFFFF;
}
button.warning,
.button.warning {
  color: #FFFFFF;
}
button.alert,
.button.alert {
  color: #FFFFFF;
}
button.info,
.button.info {
  color: #FFFFFF;
}

/**
 * * Button sizing
 * */
button.mini,
.button.mini {
  font-weight: 400;
  font-size: 0.6875rem;
  padding: 0.25rem 0.75rem 0.3rem;
}
button.mini.ghost,
.button.mini.ghost {
  padding: 0.125rem 0.625rem 0.175rem !important;
}
button.small,
.button.small {
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1.3rem;
}
button.small.ghost,
.button.small.ghost {
  padding: 0.375rem 1.175rem !important;
}
button.medium,
.button.medium {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
}
button.medium.ghost,
.button.medium.ghost {
  padding: 0.625rem 1.375rem !important;
}
button.large,
.button.large {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1rem 2rem;
}
button.large.ghost,
.button.large.ghost {
  padding: 0.875rem 1.875rem !important;
}

/**
 * * Ghost Buttons
 * */
.button.ghost,
button.ghost {
  box-shadow: none;
  border: 0.125rem solid #1E90FA;
  background: rgb(250.5, 252.78, 254.9);
  color: #333;
}
.button.ghost:hover,
button.ghost:hover {
  color: #555;
  background-color: rgb(198.75, 227.25, 253.75);
}
.button.ghost:focus, .button.ghost:focus,
button.ghost:focus,
button.ghost:focus {
  color: #555;
}
.button.ghost.primary,
button.ghost.primary {
  border-color: #1E90FA;
  background-color: rgb(250.5, 252.78, 254.9);
}
.button.ghost.primary:hover,
button.ghost.primary:hover {
  background-color: rgb(198.75, 227.25, 253.75);
}
.button.ghost.secondary,
button.ghost.secondary {
  border-color: #CDCDCD;
  background-color: #fefefe;
}
.button.ghost.secondary:hover,
button.ghost.secondary:hover {
  background-color: rgb(247.5, 247.5, 247.5);
}
.button.ghost.success,
button.ghost.success {
  border-color: #ACCF29;
  background-color: rgb(253.3941935484, 254.1337096774, 250.6262903226);
}
.button.ghost.success:hover,
button.ghost.success:hover {
  background-color: rgb(242.9564516129, 248.5028225806, 222.1971774194);
}
.button.ghost.warning,
button.ghost.warning {
  border-color: #F1852A;
  background-color: rgb(254.02, 246.46, 240.09);
}
.button.ghost.warning:hover,
button.ghost.warning:hover {
  background-color: rgb(252.2, 230.6, 212.4);
}
.button.ghost.alert,
button.ghost.alert {
  border-color: #EF2323;
  background-color: rgb(253.4, 233, 233);
}
.button.ghost.alert:hover,
button.ghost.alert:hover {
  color: #111;
  background-color: rgb(251.8, 211, 211);
}
.button.ghost.info,
button.ghost.info {
  border-color: #8fc8fd;
  background-color: rgb(252.76, 253.9, 254.96);
}
.button.ghost.info:hover,
button.ghost.info:hover {
  background-color: rgb(238.2, 246.75, 254.7);
}
.button.ghost[disabled]:hover,
button.ghost[disabled]:hover {
  color: #555;
  background-color: unset;
}

.floating {
  float: left;
  -webkit-animation-name: Floatingx;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-name: Floating;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;
  margin-left: 30px;
  margin-top: 5px;
}
.product-pricing-ctrl {
  opacity: 0;
}
.product-pricing-ctrl.initialized {
  transition: opacity 1000ms ease-in;
  opacity: 1;
}
.product-pricing-ctrl h3 {
  font-weight: 400;
  border-bottom: 1px solid #CCC;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.product-pricing-ctrl h3.your-offer {
  margin-top: 2rem;
  text-align: center;
  color: #111;
  border: none;
  font-size: 1.6rem;
}
.product-pricing-ctrl h3.your-offer strong {
  color: #ACCF29;
  font-size: 2.5rem;
}
.product-pricing-ctrl h3.your-offer hr {
  margin: 1.25rem 0 1rem;
}
.product-pricing-ctrl h5 {
  margin: 0 0 1rem;
  font-size: 1.75rem;
}
.product-pricing-ctrl > div {
  min-height: 20rem;
}
.product-pricing-ctrl .filterable-mode-on .filter-wrap {
  display: block;
}
.product-pricing-ctrl .filterable-mode-on .answers {
  max-height: 50vh;
  overflow-y: scroll;
}
@media only screen and (max-width: 40em) {
  .product-pricing-ctrl .filterable-mode-on .answers {
    max-height: 90vh;
  }
}
.product-pricing-ctrl .filterable-mode-on .answers::-webkit-scrollbar {
  -webkit-appearance: none;
}
.product-pricing-ctrl .filterable-mode-on .answers::-webkit-scrollbar:vertical {
  width: 11px;
}
.product-pricing-ctrl .filterable-mode-on .answers::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 2px solid white;
  background-color: rgba(0, 0, 0, 0.5);
}
.product-pricing-ctrl .filterable-mode-on .answers::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 8px;
}
.product-pricing-ctrl .filter-wrap {
  display: none;
  margin-top: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.product-pricing-ctrl .filter-wrap i {
  position: absolute;
  top: 7px;
  left: 11px;
  color: #92b714;
}
.product-pricing-ctrl .filter-wrap input {
  border: none;
  padding-left: 30px;
  margin: 0;
  background: #f9ffe6;
}
.product-pricing-ctrl .answers {
  list-style-type: none;
  margin: 2.5% 0 5%;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
}
.product-pricing-ctrl .answers * {
  cursor: pointer;
}
.product-pricing-ctrl .answers > div {
  cursor: pointer;
  padding: 0.9rem 3.33% 0.9rem 3.25rem;
  position: relative;
  border-top: 1px dotted #ccc;
  margin: 0;
  font-size: 1.15rem;
  transition: all 0.2s;
}
.product-pricing-ctrl .answers > div .selected-indicator {
  display: inline-block;
  margin: 0;
  position: absolute;
  top: 1.05rem;
  left: 1.25rem;
}
.product-pricing-ctrl .answers > div .selected-indicator path {
  fill: #777;
}
.product-pricing-ctrl .answers > div:focus, .product-pricing-ctrl .answers > div:hover {
  background: #fafafa;
  outline: 0;
  box-shadow: inset 1px 2px 2px rgba(0, 0, 0, 0.1);
}
.product-pricing-ctrl .answers > div:focus .selected-indicator path, .product-pricing-ctrl .answers > div:hover .selected-indicator path {
  fill: #333;
}
.product-pricing-ctrl .answers > div.selected {
  background: rgb(238.9419354839, 246.3370967742, 211.2629032258);
  box-shadow: inset 1px 2px 2px rgba(0, 0, 0, 0.1);
}
.product-pricing-ctrl .answers > div.selected .selected-indicator path {
  fill: #333;
}
.product-pricing-ctrl .answers > div.has-extra-img {
  padding-right: 5rem;
}
.product-pricing-ctrl .answers > div.first {
  border: none;
}
.product-pricing-ctrl .answers .extra-txt {
  width: 100%;
  font-size: 0.8rem;
  color: #999;
  display: inline-block;
}
.product-pricing-ctrl .answers .extra-img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 6rem;
  margin-right: 1rem;
}
@media only screen and (max-width: 375px) {
  .product-pricing-ctrl .answers .extra-img {
    display: none;
  }
}
.product-pricing-ctrl .offer hr {
  border-color: #eee;
  border-style: dotted;
}
.product-pricing-ctrl .offer button {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  text-align: center;
}
.product-pricing-ctrl .offer button.success {
  width: 62.5%;
}
.product-pricing-ctrl .offer button.secondary {
  width: 30%;
  color: #888;
  background: #eee;
  font-weight: 400;
}
.product-pricing-ctrl .offer button.secondary:hover {
  background: #ccc;
}
@media only screen and (min-width:40.0625em) and (max-width:64em) {
  .product-pricing-ctrl .offer button.success {
    width: 55%;
  }
  .product-pricing-ctrl .offer button.secondary {
    width: 35%;
  }
}
@media only screen and (min-width:64.0625em) and (max-width:90em) {
  .product-pricing-ctrl .offer button.success {
    width: 42.5%;
  }
  .product-pricing-ctrl .offer button.secondary {
    width: 42.5%;
  }
}
.product-pricing-ctrl .offer-loading {
  height: 25rem;
  position: relative;
}
.product-pricing-ctrl .offer-loading span {
  width: 100%;
  text-align: center;
  display: inline-block;
  margin-top: 2rem;
  color: #444;
}
.product-pricing-ctrl .guarantees {
  color: #777;
  font-size: 1rem;
}
.product-pricing-ctrl .guarantees svg {
  width: 2rem;
  height: 2rem;
  fill: #ACCF29;
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}
.product-pricing-ctrl .guarantees hr {
  margin: 2rem 0;
}
.product-pricing-ctrl .guarantees .columns {
  padding-top: 0;
}
.product-pricing-ctrl .guarantees .guarantee-padding {
  padding: 0;
  padding-top: 0rem !important;
  padding-bottom: 1rem !important;
}
.product-pricing-ctrl .guarantees .guarantee-padding div:first-child {
  width: 100%;
  max-width: 72px;
  display: inline-block;
  text-align: center;
}
@media only screen and (max-width: 40em) {
  .product-pricing-ctrl .guarantees .guarantee-padding div:first-child {
    width: 16%;
    max-width: 16%;
  }
}
.product-pricing-ctrl .guarantees .guarantee-padding div:nth-child(2) {
  width: 80%;
  display: inline-block;
  vertical-align: middle;
}
.product-pricing-ctrl .guarantees .guarantee-padding div:nth-child(2) strong {
  font-size: 1.2rem;
}
.product-pricing-ctrl a.button {
  border-radius: 0.25rem;
}
.product-pricing-ctrl .question-tip {
  cursor: pointer;
  cursor: help;
  position: relative;
  width: 100%;
  display: inline-block;
}
.product-pricing-ctrl .question-tip span {
  border-bottom: #ccc 1px dotted;
  font-weight: 700;
  cursor: pointer;
  cursor: help;
}
.product-pricing-ctrl .question-tip.bad-esn {
  font-weight: 500;
  color: #999;
  font-size: 0.75rem;
}
.product-pricing-ctrl .question-tip .tip {
  border: 1px solid #ddd;
  display: none;
  position: absolute;
  top: 0;
  left: -1px;
  background: #f6f6f6;
  box-shadow: 3px 3px 2px 0 #7A7A7A;
  padding: 1.5rem 2rem;
  z-index: 999;
  font-weight: 500;
}
.product-pricing-ctrl .question-tip .tip h4 {
  font-weight: bold;
  margin-bottom: 1rem;
}
.product-pricing-ctrl .question-tip .tip h4 .fi-info {
  margin-right: 7px;
}
.product-pricing-ctrl .question-tip .tip strong {
  color: #ACCF29;
  margin-bottom: 0.666rem;
  display: inline-block;
  font-size: 1.25rem;
}
.product-pricing-ctrl .question-tip .tip.bad-esn {
  top: auto;
  bottom: 0;
  color: #000;
}
.product-pricing-ctrl .question-tip .tip.bad-esn p:last-child {
  margin: 0;
}
.product-pricing-ctrl .answer-message-box {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0.9rem 1.4rem 0.8rem;
  background: #fff;
  margin-bottom: 1.5rem;
}
.product-pricing-ctrl .answer-message-box p {
  margin-bottom: 0.5rem;
}
.product-pricing-ctrl .answer-message-box *:last-child {
  margin-bottom: 0;
}

#product-pricing-modal {
  max-width: 500px;
}
#product-pricing-modal .product-pricing-ctrl .offer,
#product-pricing-modal .product-pricing-ctrl .pricing-form-final-offer {
  margin-top: 1rem;
}

section.shipping-label-ctrl {
  width: auto;
  display: inline-block;
  margin: 0 0 1rem;
}

.button.shipping-label-btn {
  padding: 1rem 1.6rem !important;
  font-size: 1rem;
  color: #444;
  width: 12rem;
  margin: 0 0.5rem;
}
.button.shipping-label-btn object {
  height: 45px;
  opacity: 0.8;
  max-width: 90px;
}
.button.shipping-label-btn object.logo-ups {
  height: 46px;
  max-width: 55px;
}
.button.shipping-label-btn object.logo-usps {
  height: 30px;
  margin: 8px 0;
  max-width: 115px;
}
.button.shipping-label-btn object.logo-fedex {
  height: 24px;
  margin: 11px 0;
  max-width: 80px;
}
.button.shipping-label-btn:hover, .button.shipping-label-btn:focus, .button.shipping-label-btn:active {
  color: #111;
}

.button.hazmat-label-btn {
  padding: 1rem 1.6rem !important;
  font-size: 1rem;
  color: #444;
  width: 12rem;
  margin: 0 0.5rem;
}
.button.hazmat-label-btn object {
  height: 85px;
  opacity: 0.8;
  max-width: 110px;
}
.button.hazmat-label-btn object.logo-ups {
  height: 46px;
  max-width: 55px;
}
.button.hazmat-label-btn object.logo-usps {
  height: 30px;
  margin: 8px 0;
  max-width: 115px;
}
.button.hazmat-label-btn object.logo-fedex {
  height: 24px;
  margin: 11px 0;
  max-width: 80px;
}
.button.hazmat-label-btn:hover, .button.hazmat-label-btn:focus, .button.hazmat-label-btn:active {
  color: #111;
}

.panel .panel.box-request {
  border-width: 1px;
  border-color: #d8d8d8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  padding: 1.25rem;
  background: #fef6f0;
  color: #333;
  border: 0.125rem solid #F1852A;
  border-radius: 0.25rem;
}

.offer-view-totals-table td {
  font-size: 1rem;
}
.offer-view-totals-table .title {
  padding-left: 0;
}
.offer-view-totals-table .amount {
  text-align: right;
}

.expedited-processing-badge {
  background: #F1852A;
  color: #fff !important;
  font-size: 0.8rem;
  padding: 0.25rem 1rem 0.25rem 0.7rem;
  border-radius: 5px;
  display: inline-block;
  vertical-align: middle;
}
.expedited-processing-badge i, .expedited-processing-badge span {
  vertical-align: middle;
  color: #fff !important;
}
.expedited-processing-badge.heading {
  padding: 0.25rem 1rem 0.3rem 0.7rem;
  margin-top: 15px;
  float: right;
}
.expedited-processing-badge.heading > * {
  color: #fff !important;
  font-size: 1rem !important;
}
.expedited-processing-badge.icon-only {
  padding: 0.2rem 0.4rem;
  font-size: 0.7rem;
}
.expedited-processing-badge.icon-only span {
  display: none;
}
.expedited-processing-badge.icon-only.offer-index {
  margin: 0 0 0 3px;
  position: relative;
  top: -2px;
}
.expedited-processing-badge.icon-only.pay-offers {
  font-size: 0.6rem;
  padding: 0.2rem 0.4rem;
  line-height: 0.9rem;
  margin-left: 0.25rem;
  position: relative;
  top: -3px;
}

.recommended-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #1E90FA;
}

.copy-text-badge {
  background-color: #CDCDCD;
  border-color: #a4a4a4;
  color: #333333 !important;
  font-size: 0.6rem;
  padding: 0.2rem 0.4rem;
  line-height: 0.9rem;
  margin-left: 0.25rem;
  position: relative;
  top: -3px;
  border-radius: 5px;
  display: inline-block;
  vertical-align: middle;
}

.highlighted-row {
  background-color: #e1e1e1 !important;
  transition: background-color 0.5s;
}

.blurred-row {
  opacity: 0.5;
  transition: opacity 0.5s;
}

@media only screen and (min-width:40.0625em) {
  .ship-label-modal.downloading {
    width: 90%;
    max-width: 30rem;
  }
  .ship-label-modal.downloading.label-preview {
    width: 70%;
    max-width: 60rem;
  }
}
.ship-label-modal .download-label .little-loader {
  margin-top: -3px;
}
.ship-label-modal .download-label .downloading-box iframe {
  width: 100%;
  height: 500px;
  height: 60vh;
  border: 0;
}
.ship-label-modal .download-label .download-options {
  margin: -0.5rem 0;
}
.ship-label-modal .download-label .download-options a {
  display: inline-block;
  padding: 1rem;
  margin: 0.5rem 0;
  border: 1px solid #ddd;
  width: 100%;
  transition: all 1s;
}
.ship-label-modal .download-label .download-options a strong {
  transition: all 1s;
  font-size: 1.05rem;
  width: 100%;
  display: inline-block;
  padding-bottom: 0.25rem;
}
.ship-label-modal .download-label .download-options a span {
  transition: all 1s;
  color: #888;
  font-size: 0.9rem;
  display: inline-block;
  line-height: 1.3rem;
}
.ship-label-modal .download-label .download-options a span > span {
  font-weight: bold;
}
@media only screen and (min-width:40.0625em) {
  .ship-label-modal .download-label .download-options a span > span {
    display: none;
  }
}
.ship-label-modal .download-label .download-options a:hover {
  background: rgb(210, 232.8, 254);
}
.ship-label-modal .download-label .download-options a:hover strong {
  color: rgb(4.2608695652, 101.4086956522, 191.7391304348);
}
.ship-label-modal .download-label .download-options a:hover span {
  color: #666;
}
.ship-label-modal .download-label label {
  font-size: 0.8rem;
  font-style: italic;
}

.shipping-label-grid-ctrl hr {
  margin: 0.33rem 0;
}
.shipping-label-grid-ctrl .labels-col .disabled {
  opacity: 0.3;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.clear {
  clear: both;
}

.click-through {
  pointer-events: none;
}

.wow {
  visibility: hidden;
}

.printable-image {
  page-break-before: auto;
  page-break-after: auto;
  page-break-inside: avoid;
  display: block;
}

.white-color {
  color: #fff;
}

.black-color {
  color: #333;
}

.black-color-force {
  color: #333 !important;
}

@keyframes barberpole {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 30px;
  }
}
html,
body {
  font-display: auto;
  background: #fff;
  height: auto;
  -webkit-font-smoothing: antialiased;
}

a {
  transition: all 0.1s linear 0s;
}

small {
  font-size: 70%;
}

svg {
  max-width: 100%;
  max-height: 100%;
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  line-height: inherit;
}

.alert-box.alert h1, .alert-box.alert h2, .alert-box.alert h3, .alert-box.alert h4, .alert-box.alert h5, .alert-box.alert h6 {
  color: #fff;
}

select {
  font-size: 0.95rem;
}
select.select-wrap {
  white-space: normal !important;
  height: auto !important;
  overflow: auto !important;
}

select.small,
input[type=text].small,
input.small {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  height: 30px;
}

.md-scroll-mask {
  display: none !important;
}

md-autocomplete {
  -webkit-appearance: none;
  margin: 0 0 1rem 0;
}
md-autocomplete md-autocomplete-wrap {
  box-shadow: none !important;
}
md-autocomplete md-autocomplete-wrap input {
  -webkit-appearance: none;
}
md-autocomplete md-autocomplete-wrap input:hover {
  background-color: rgb(254.86, 253.78, 252.87) !important;
  border-color: rgb(244.5, 163.5, 95.25) !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 1px rgb(248, 194, 148.5) !important;
}
md-autocomplete md-autocomplete-wrap input:focus {
  background-color: rgb(254.58, 251.34, 248.61) !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 3px #F1852A !important;
  border-color: #F1852A !important;
}
md-autocomplete md-autocomplete-wrap button {
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}
md-autocomplete md-progress-linear {
  position: absolute;
  bottom: -1px;
  left: 1px;
  right: 41px;
  width: auto;
}
md-autocomplete md-progress-linear .md-container {
  background-color: rgb(248, 194, 148.5);
}
md-autocomplete md-progress-linear .md-bar {
  background-color: #F1852A;
}

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

.md-virtual-repeat-container.md-autocomplete-suggestions-container {
  margin-top: 1px;
}

fieldset {
  margin: 1.125rem 0;
}

textarea.has-margin {
  margin-bottom: 1rem;
}

.floating.notices-box {
  position: absolute;
  top: 1.2rem;
  left: 0px;
  z-index: 100;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

body.modal-open {
  overflow: hidden;
}

.reveal-modal {
  position: fixed;
  outline: 0 !important;
  top: 10vh !important;
  min-height: 10vh !important;
  max-height: 80vh !important;
  left: 0 !important;
  right: 0 !important;
  overflow-y: auto;
}
@media only screen and (min-width:40.0625em) {
  .reveal-modal {
    min-height: auto !important;
    left: 10vw !important;
    right: 10vw !important;
  }
}
@media only screen and (max-width: 40em) {
  .reveal-modal {
    top: 0 !important;
    max-height: 100vh !important;
    height: 100vh !important;
    border: none !important;
    border-radius: 0 !important;
  }
}

.opacity-50 {
  opacity: 0.5;
}

.money {
  color: rgb(137.6, 165.6, 32.8);
}

.money-red {
  color: rgb(204.3389830508, 14.8610169492, 14.8610169492);
}

.line-through-color {
  color: #666;
}

.tight-col {
  white-space: nowrap;
  width: 1px;
}

.bold {
  font-weight: 700;
}

.thin {
  font-weight: 300;
}

.pad-less-col {
  padding: 0 !important;
}

.no-margin {
  margin: 0 !important;
}

.small-top-margin {
  margin-top: 0.5rem !important;
}

.top-margin {
  margin-top: 1rem !important;
}

.small-bottom-margin {
  margin-bottom: 0.5rem !important;
}

.no-bottom-margin {
  margin-bottom: 0 !important;
}

.no-top-margin {
  margin-top: 0 !important;
}

.no-border {
  border: none !important;
}

.small-bottom-margin {
  margin-bottom: 0.5rem !important;
}

.small-left-margin {
  margin-left: 0.5rem !important;
}

.small-right-margin {
  margin-right: 0.5rem !important;
}

.no-padding {
  padding: 0 !important;
}

.top-pad {
  padding-top: 0.25rem;
  display: inline-block;
}

.nowrap {
  white-space: nowrap;
}

.yeswrap {
  white-space: normal;
}

.align-top {
  vertical-align: top;
}

.align-middle {
  vertical-align: middle;
}

.inline-block {
  display: inline-block;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-size-1-1 {
  font-size: 1.1rem;
}

.font-size-1 {
  font-size: 1rem;
}

.font-size-0-9 {
  font-size: 0.9rem;
}

.font-size-0-8 {
  font-size: 0.8rem;
}

.font-size-0-7 {
  font-size: 0.7rem;
}

.font-size-0-6 {
  font-size: 0.6rem;
}

.fullwidth,
.full-width {
  width: 100%;
}

.table-align-top {
  vertical-align: top;
}
.table-align-top td {
  vertical-align: top;
}

.table-align-middle {
  vertical-align: middle;
}
.table-align-middle td {
  vertical-align: middle;
}

.table-coupon-bonus {
  width: 100%;
  border: none;
}
.table-coupon-bonus .tr-border-top {
  border-top: 1px solid #333;
}
.table-coupon-bonus .td-padding-top {
  padding-top: 1.25rem;
}

hr.half {
  margin: 0.5rem 0;
}

.nav-divider {
  padding: 0rem 0;
}
.nav-divider hr {
  margin: 0;
  border: solid #696969;
  border-width: 1px 0 0;
}

hr.coupon-subtotal {
  width: 50%;
  margin: 0 auto;
  border-color: #CCC !important;
  border-style: solid !important;
}

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

.primary-color {
  color: #1E90FA !important;
}

.secondary-color {
  color: #CDCDCD !important;
}

.success-color {
  color: #ACCF29 !important;
}

.info-color {
  color: #8fc8fd !important;
}

.warning-color {
  color: #F1852A !important;
}

.alert-color {
  color: #EF2323 !important;
}

.grey-color {
  color: #777 !important;
}

.alert-box {
  font-size: 1.1rem;
  margin: 1rem 0;
}
.alert-box.warning h1, .alert-box.warning h2, .alert-box.warning h3, .alert-box.warning h4, .alert-box.warning h5, .alert-box.warning h6, .alert-box.success h1, .alert-box.success h2, .alert-box.success h3, .alert-box.success h4, .alert-box.success h5, .alert-box.success h6, .alert-box.primary h1, .alert-box.primary h2, .alert-box.primary h3, .alert-box.primary h4, .alert-box.primary h5, .alert-box.primary h6 {
  color: #fff;
  font-weight: 700;
}
.alert-box .mail-link {
  color: #2f56f4;
  text-decoration: underline;
}

.alert-box.no-bg {
  background-color: transparent !important;
  border-color: transparent !important;
}

#itsWorthMore span.label.status-label {
  background: #f4f4f4;
  border-radius: 0.25rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #333;
  font-size: 0.8rem;
  font-weight: normal;
  overflow: hidden;
  padding: 0.42rem 2rem 0.44rem 0.8rem;
  position: relative;
  text-transform: uppercase;
  width: 11rem;
}
#itsWorthMore span.label.status-label > span.dot {
  background: #CDCDCD;
  border-left: 2px solid rgba(0, 0, 0, 0.2);
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 1.5rem;
}
#itsWorthMore span.label.status-label.primary > span.dot {
  background: #1E90FA;
}
#itsWorthMore span.label.status-label.secondary > span.dot {
  background: #CDCDCD;
}
#itsWorthMore span.label.status-label.info > span.dot {
  background: #8fc8fd;
}
#itsWorthMore span.label.status-label.warning > span.dot {
  background: #F1852A;
}
#itsWorthMore span.label.status-label.alert > span.dot {
  background: #EF2323;
}
#itsWorthMore span.label.status-label.success > span.dot {
  background: #ACCF29;
}

.bin-item {
  border: 1px solid #ccc;
  border-radius: 0.25rem;
}

.pagination-wrap {
  text-align: left;
  font-size: 1rem;
}
@media only screen and (min-width:64.0625em) {
  .pagination-wrap .totals {
    text-align: right;
  }
}
.pagination-wrap ul.pagination li a, .pagination-wrap ul.pagination li span, .pagination-wrap ul.pagination li button {
  margin: 0px;
  border-radius: 3px;
  transition: background-color 300ms ease-out;
  background: none;
  color: #000;
  display: block;
  font-size: 1rem;
  font-weight: normal;
  line-height: inherit;
  padding: 0.0625rem 0.625rem 0.0625rem;
}
.pagination-wrap ul.pagination li.active a, .pagination-wrap ul.pagination li.active span, .pagination-wrap ul.pagination li.active button {
  background: #f3f3f3;
  color: #999;
}
.pagination-wrap ul.pagination li.disabled a, .pagination-wrap ul.pagination li.disabled span, .pagination-wrap ul.pagination li.disabled button {
  color: #999;
}

.sortable-link i {
  color: black;
}

.no-results {
  text-align: center;
  margin: 2rem 0 4rem;
}

[ng-click],
[data-check-on-click] {
  cursor: pointer;
  outline: 0;
}

[ng-cloak] {
  display: none;
}

.little-loader {
  display: inline-block;
  height: 16px;
  width: 16px;
  background: transparent url("../..//static/images/little-loader.gif") center center no-repeat;
  padding: 0px;
  margin: 0px;
}

body .btn-loading {
  position: relative;
  cursor: wait;
  opacity: 0.5;
}
body .btn-loading:before {
  content: "";
  display: block;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 30px 30px;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.15) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.15) 75%, transparent 75%, transparent);
  animation: barberpole 0.8s linear infinite;
}
body .btn-loading.round:before {
  border-radius: 1000px;
}

.is-loading,
.is-processing {
  position: relative;
}
.is-loading:after,
.is-processing:after {
  display: block;
  content: " ";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.666;
  background: #fff;
  cursor: wait;
  z-index: 99999999;
}

.is-processing:after {
  background-size: 30px 30px;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.15) 25%, transparent 15%, transparent 50%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.15) 75%, transparent 75%, transparent);
  animation: barberpole 0.8s linear infinite;
  opacity: 0.3;
}

#login-modal h2 {
  text-align: center;
}

@font-face {
  font-family: "SF Pro Text";
  src: url(data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAABRMABEAAAAAIawAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHUE9TAAATFAAAALsAAAHIbUB2PEdTVUIAABPQAAAAZQAAAIxKSyvpT1MvMgAACjgAAABNAAAAYHLeeipic2xuAAAUOAAAABMAAABI/ykCnmNtYXAAAAqIAAAArAAAATzUgYTCY3Z0IAAAEagAAACGAAAA/h4jsglmcGdtAAALNAAABcMAAAviP64gqWdhc3AAABMMAAAACAAAAAgAAAAQZ2x5ZgAAAYAAAAfMAAAMDN+ERypoZWFkAAAJlAAAADYAAAA2FZUeyWhoZWEAAAoYAAAAIAAAACQQagbMaG10eAAACcwAAABMAAAATFWqCFBsb2NhAAAJbAAAACgAAAAoG5oe821heHAAAAlMAAAAIAAAACABaQyMbmFtZQAAEjAAAADFAAABhhtRNi1wb3N0AAAS+AAAABMAAAAg/tsAmnByZXAAABD4AAAArgAAAMdYpaDHeJzVVm1QVOcVPu/HvcvytXvdvbvoooG9sGtKQGVZKCXoIhGVxUJipCy7iEQsEhH50GD4GBVWg6KTmcRak6owdWS0DqBNNJlMWhs/8kOnsTZNmTo1an+YjvVHbSft1LDQc++yBC12+rezn+85573vc855zjkvUCgCEFYKx0EHMVDkPZNeVuGRgQMQDq8ApVu8AqOENJESG8oppy0RpSZvJSU+TzxAtB4foJMkSYy1piWzZKYQFyH4y/3B0M3d96j+IdWHWn9L3r9BdozvEo4/quJHQ8foK0CgfeKWEBA+hVSoD5+fCpTh04UmEDgTeCMwRvxASJsXOAe/SAC2A+JRnrQjgJjY+imrDkB0JgLJSXNtssloiNFDKknVxZrTBLvDQd1Zs7KzXZnzqFXJoIpdFGWzxeLKzM7OccUzJhx6+LPKylMPD7VdH6iNvy2/+pPq7o/r6n7RXX2k3nzbUHvs18rGKyRhZIQkfLpx5Z4PGit6Vuz5+tTJr/cUtL20aaTrBQwTNE/c4pfRt0yoCvuWAowDZ9CkBZE0Ilbqxzijb4QIfhCE7QK6Zn/SjOKK8vURow4BPdNnKOYMxSjGzkkzueZRFbk7y+F0OhzurMX0Cces1nlUNouigp43f6kPHKypPPBi8M2PLn/o7fvktcaP9r0o3Iwp6365Yndxx4H+gx+W9/7r9MDfDpDgCxtycms9qzfa0zMu9q871pyf33jYv7TG7a4pWLUu2WnfdLRh39XNG3+JEH848Re+lJdDFCiw2JMHVBAFKjZhHARKhBodpoT70eN2L4gi82NeO1gJAXtSos0qG+Ki9QKHKBIVhQkiiFqXnEFNrniqQnZnqamyWGQ5WdZcpf7SjmKROlhh28fXrbsudR25295x993Df9g2NsFW7iyvCbL+oh1r1uwoCr1Rc2BV79jw8MT+4D9Oe2PX7S/B3FDYML6Or+WrwQAuEuM9k4jZiX6OEDGRCECLbdpCF174wurvANJMYBw9IqJfR0Sx3RuFTmkpafJqudQTSjtpiS2c7oypHTpdi1fbBv9914L/ZVfr47s8aVMbOMo4rX7qRuSNz+exSUYCCzKedSY/M9sqm40uyaXXgYEYojH0qWEeOSIVYcLwO11aZbjdSphBkXRYXW6XhKyitYHg8uXBQKC7sLC7uvfa9tg/xvds3vNj46Lh5r6rmxuv9Xl31z0jfdbxp6s/GNjcMFBRMdCA36FDJfuq8pa/3nDDt/aNvx8f/OfeBeV5w9+c7zpfq1bPIPKlVLgPFmg6xwgjpNh7xo7xsQJAszfSFtq9AqeUNk0F3fqtBg2pb0o9s6aVYkw8cSiwgEUxp2APS0jDiEiuScpJipQVjoY0+IU0/1TH1pP+0baWinaPcD90MlBXfX5XqIDu6w4u63opFERm9SD4t0U8DEzw6iRkAXOlUf519egWLyfhrhppuQwNsH2tf0w5k1xtuT7PLCwViIvhJsGExzDELGuY2fRawcQM/H5T6uLUyJsXfHOBjzs8DqfH4fA48c//GVqNE6QLOcFgWRhrrEYG+hhAVUZ8Edm0ZRhONK5VGGwSxuCocP+RRWXcEWRcLnYwGRpUxoHKOCs+EGEz8BOiuvUfbFOFM5BxZs23bJNBVkxTbJPDbJtOtiPXjfN/2nH+0ujWttJtHl4w5K/7/GJoCe3r6SnsXBPqmey49YjXADZIV/vT1FmYQPDz8BBUq90qG22SLVzl4uQEnB56Z6Za9HgwljzdOHCvs/Or/mNfdXbe699/+PB+/Mi9obMj47294yNnQ70Xrvz87JUrZ9+7jBiOjB/iP8I+aoYUeMcTLREuxBDCaXG4ac7FtgN+JlKAdq+OcK4h7PDi0Ns61fGSETmGSrVUB/dMhmjzNDXzqdu1wFotMoF5iXKKJcVoiI9Df83ErA2UST+xezkVDLIWcNMTrY7e6Lu6pfHa3q1n0qTR68ZF5zMD3UVF3X5/z4rlQb5679jQUGhvTXnooXD6/ar6sYBvsLX1hK9ysKXlRCWyJ2/iET0tlEECBDzRsYTROIJTuzjMk0SVXy1qXohPRCpqzNDGYRNH756ubuU466Mlc6oiSUZdrA2HPaJXJLPakXPkyYYsKW7Xn0cfPCgum223zslL2v524dCQUDb+4FzoN2tKGX1PEPO662ndOTzmLWRNJi/AjKksBzbFco2h2skQUMneBFMsj6hQqFE6oAZfLa5pmtbpmkmWm8EcYTlBjOH54cai0+C7JZ55XZp/ovPcxdEtr3X3qSU/VLXh81/RS6FtwZ1v7aRdiLcAQHQgXgMs/SBOj+AomQyqAW9+TD09gvZxSat6AVRRGMBgkkxhFERhino/NYVfomP8i9t3pTu3xn9385Lxzmd3pIsqCmYf+5IXjH3ClqgfHBaETfxVeCQaIBe+D1HnivPtQBcirfCWFc9l8zxmRXbp1NuKeucK31qcGTRyFXNlLqZOVapdz7JzFtMclY/8qFTkW+tkSubCpGfz89OodUFq8oqX3fNzXUvS05fmfC9lUZnXmV78XGFz30pnkSc3wZq3rCxmzopSJSaaUHdy4qpyJ1vAD+oSl+TS2RlF1c8X1RdnyIQV1OYs9H3XlGAyzTFlV+YUnLpQ3TK87XmzzSzPlXclZc6lzKjPb3bYs5JI3Kz81n8DmAOACAABAAAAEwBqAAcAAAAAAAIALgA+AHcAAACpC+IAAAAAAAAAAAAAAEEArwEmAX0CTgKqAwEDWAOHA98EIQSmBPoFUgWVBZUGBgABAAAAAQAAhOuEOl8PPPUAAQgAAAAAANaoccYAAAAA1w1hff4i/eoKqAikAAAAAwACAAAAAAAACAAAYwIwAAAFjwBFBc0AeQU1AHAEqABlBPoAZAThAKUCFgCCAhYAggIjAKUEywCbBM8AZQT7AJsDDAA6BM4AkQZoAEACAAAAB0ABAnicY2BkYGCf90+IgYHb9J/S30Ku5QxAERQgDACBlAVKeJxjYGZ5xPiFgZWBgdWY5QwDA8NMCM10hmEWUy+Qz8DGAAeMDEjAMSDAB0gp/PjPPu+fEAMD+zzGdwoMjPNBciyOrItBcgzMANLgDugAAAB4nHXPTQrCQAwF4OdPFbSIPztXXfQi0iN4hlKEUlxY6lUU1F7BGyh4EL1Fd883M3Fp4CMNGZIUwBDAQFKE71RVT/mlPPF1DBctQrgqMe7dxvQlM27e1riZuYmkkJ2MpDRuTyV7mcpBaplJY+ZaGQVYAB0DLLXhqLzWC3dxomsybc61pdTEGk0SdST9zb9eoV6lPdbjh08+eGfLG6+88MzTOx6v/B/+iS+yhS92eJytVmlz01YUlbzFSchSstCiLk+8OE3tJ5NSCAZMCJJlF9zF2VoJSivFTrov0DLDb9CvuTLtDP3GT+u5km0MSdoZppmM7nnvHb27X5k0JUjb91xfiPYzbXa7TYXdex5dNmjND45EtO9RphT+XdSKWrcrDwzTJM0nzZGNvqZrTmBbpCsSwZFFGSV6gp53KLd6r7+mTzlu16WC65mULfk79z1TmkbkCep0sLXlG4JqjGq+L+KUHfZoDVuDlaB1Pl9n5vOOJ2BNFAqa6ngBdgSfTTHaYLQRGIHv+wbpFd+XpHW8Q9+3KKsE7smVQliWdzoe5aVNBWnDD5/0wKKckrBL9OL8gS34hC02Ugv4SYXA7VK2bOLQEZGIoCBez5fg5LYXdIxwx/ekb/qCtnY9nBns2kC/RXlFE06lr2XSSBWwlLZExKUdUubgiPQurKB82aIJJdjUaaf7LKcdCL6BtgKfKUEjMbWo+hPTmuPaZXMU+0n1ci6m0lv0Ckxw4Hcg3EiGnJckXprBMSVhwMihlciODBupiulTXqcVvKUZL1wbf+mMShzqT09lkWxDmn7ZtGhGxZmMS72wYdGsAlEIOuPc5dcBpO3TDK92sJrByqI5XDOfhEQgAl3opVknEFEgaBZBs2hetfe8ONdr+Cs0cyifWPSGam977d100zCxv5Dsn1WxNufse/HcnEN6aNNchWsWlWzHZ/gxgwfpy8hEttTxYg4evLUj5JfVlk2J14bYSM/5FbQC7/jwpAX7W9h9OVWnJDDWtAWJaDmkbfZ1XU9ytaC0WMu4ex7NSVu4NI3im5IoOFsEUP/X/LyuzWq2HQXx2UKFHleMCwjTInxbqFi0pGKd5TLizPKcirMs31RxjuVbKs6zPK/iAktDxRMs31ZxkeU7Kp5k+YGSw7hDNSIsRZX0B9wgFpXHDpdHhw/Tw8rY4ero8FF6+K7SaKbyGv69B//ehV0C/rE04R/LC/CPpYR/LFfgH8sS/GO5Cv9Yvg//WK7BP5ZKiXpSppaC2vlAOMht4CSpROsprtWqIqtCFrrwIhqgJU7JogxrkifivzIM9n59lFp9mS6W47y+5HoYZOzgh+OROX58SYkrib0fgae7x5WgO09Uzvva8p8a/zU2ZS2+pC/Bo8vwHwafbC+aIqxZdEVVz9Ut2vgvKgq4C/pVpERbLomqaHHjI5R3oqglW5gUHr4QGKyYBhu6vrQI/TVMqGU0F/4TCk06lcOoKoWoR7jr2otjUU3voBzuBEtQwLNia9t7mhFZYTzNrGbP+zbPzyJGsUzYsonOdV5tw4BnWPq5yDhBT1LWCXs4zjihARzw/Hr1nRAmYarLJnIooaEJvyASLbjvBCUynZQ5DAfEPo+Cyh+7FTeyR6XECDw76YR8oQspv84xENjJrw5iIOsIzY1km4poHiGassXKOFv1JGTswCCi2p5XFXV8XdniwaZgW4YhL5SwujP+IU8TdVIFDzIjuYxvDixwhqkJ+Ev/qovDVG5iHlQ5ak0M9bpfjav6Ihrw1mi7M7699TL7RM5tRbXKiZfaiq5VIijmYoG1xzlIS5WqoDqjChtGl4tLotSraJL0ugaGBub/a5Ri6/+qPjaf50tdYoSM5dv0Bza6HIyh/03235SDAAz8GLncgstLaXPilwH6cKFKl9GLH5+yfwczV19coCvAdxVdhWhz1FzEVTTxGRzG6RPF5UhtwE9VH3MG4DMAncHnqq8nOx2AZGebOS7ADnMY7DKHwR5zGOwz5zbAF8xh8CVzGHjMYeAzxwG4xxwG95nD4CvmMHjAnCbA18xh8A1zGATMYRAyxwY4YA6DLnMY9JjD4FDR9VGYj3hBm0DfJugW0HdJPWGxhcX3im6M2D/wImH/mCBm/5Qgpv6sqD6i/sKLhPprgpj6W4KY+lDRzRH1ES8S6u8JYuofCWLqY/V0MpcZ/vCyK1Q8pOxK58nwm2L9Aw8nY10AeJxj8N7BcCIoYiMjY1/kBsadHAwcDMkFGxnYnbZXpYW5GTGwMWiBeA58uRyxbL5slhzq7NIsbBxQwXK2VJZQFmc2A1ZFJrAgr9N+6QbxBuEGvgYuBnYGoHZOoKiw034GByQIFmVOcdmowtgRGLHBoSMCzFMD8XZxNDAwsjh0JIeABSOBwIEvnyOezZ/NmkOTXZaFjUdrB+P/1g0svRuZGFw2s6awMbi4AADrlS9DAAB4nGNgIBncBcJjDMdYShgY2Of9E2KZ+P8xiAaL72fYz7qYgYHFkYHh3zSQKOux/3dZwv6//leKrob1FYvj/3cIVaz/gere/esBq9sNhFMZpjL9Y3z+X/CfAkiMWZDx+3+mf5zI8mwHWFcyXWZ8BBJju8y6k+kI42ls9iC7hk0c4R4AmMtWvAAAeJyNj08LAVEUxX/DIGVtPQtbGv+iZmWjLNQUzcKWCTWMDPKVfBMfxodwzDwiKb3ePeeed+7tPKDEjDyWXQYC3YxbVNVlPEeFyPA8PmfDbWpcDS/gcDO8iGNVuEhp4dKkS92wnrQBO52IUHzEljmNVI10HPasWbLiQJJ2oTAUnlQXck4YSvelxMKp1LO84/R1zZHND4fz4fHUu8rUUF0IQ2XzXnn7yuvSUW0L/9kXpBkTdbF+9L37sSPb8Jyvv8/fASPuNJwAAAB4nGNgZgCDfzcYZjFgAQA4VwJ0AAABAAH//wAPeJyNUDEOwjAMPCcF2lQChPoAHsDICxBiYmRkQYiJqkPFAH9jZGIF8RIWxGAuKVI7dGhOsZ3zObINAeCwwBZ2uVpvkO0vZY5pvjsVmCFiFqrwqjqWRmxgj4eyQNa0TEq4EZLg46AEvRHjq2Uic6QE9Ko34q5ntB59tfMtyo8+O2sfXZW+A/b3bbzf1fzdav++ns4E+L2kGIfNWAyrTfLfHvoE6AdETJ0LuRFZIeNrPZvQOsauqvoB5z0tQgB4nGNgZGBg4GKIYihhYHZx8wlhEEmuLMphkMtJLMljUGJgAcoy/P/PAAPMjlGuCgxizkEhCgxyIUHeCgxqYHlGqDpGEAtMMzEw5+Qn5zCIIJNARYxgzAKlOYCYDawLyAYAAaIWnAAAAHicY2BkgAKmef81GMgGAGutAckA) format("woff");
}
.social-separator {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #dfdfdf;
  line-height: 0.1em;
  margin: 0.625rem 0 1.25rem;
}

.social-separator span {
  background: #fff;
  font-size: 0.875rem;
  font-weight: normal;
  padding: 0 0.625rem;
}

.btn-social,
.btn-social-checkout {
  border-radius: 0.25rem;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
  font-size: 14px;
  text-align: center;
  width: 100%;
  display: block;
}

.btn-social {
  font-size: 1.2rem;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1rem;
}

.btn-social-checkout {
  font-size: 1rem;
  padding: 0.2rem 1rem;
  margin-bottom: 0.5rem;
}

.btn-social-apple-bg {
  font-family: "SF Pro Text";
  color: #fff !important;
  background-color: #000;
}

.btn-social-facebook-bg {
  color: #fff !important;
  background-color: #1778F2;
}

.btn-social-google-bg {
  color: #666 !important;
  background-color: #eee;
}

.btn-social-svg {
  margin-bottom: 3px;
}

.login-form .forgot {
  color: #aaa;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  float: left;
}
.login-form .forgot:hover {
  color: #555;
}
.login-form span {
  padding: 0 1rem;
  color: #555;
  font-style: italic;
}
.login-form span a {
  color: #888;
}

select[multiple] {
  background-image: none !important;
}

.address-multiline .button {
  margin: 0;
  padding: 0.25rem 0.5rem 0.25rem;
  line-height: 1;
}
.address-multiline .label {
  margin: 0.2rem 0;
}
.address-multiline .phone-num,
.address-multiline .email-add {
  background-color: #ebebeb !important;
}

#address-form-ctrl button {
  margin: 0;
}

[data-click-toggle] {
  cursor: pointer;
}

.click-toggle-target {
  display: none;
}

.custom-product-answers .descriptive-pricing span {
  white-space: normal !important;
}

.descriptive-pricing {
  margin: 0;
}
.descriptive-pricing tr:nth-of-type(even) {
  background: #fbfbfb;
}
.descriptive-pricing td, .descriptive-pricing th {
  padding: 0.3rem 0.5rem;
}
.descriptive-pricing span {
  border: 1px solid #ccc;
  background: #f1f1f1;
  font-weight: 600;
  font-size: 0.7rem;
  color: #444;
  border-bottom: 1px dotted #999;
  padding: 2px 5px;
  white-space: nowrap;
}

.bulk-contact-form fieldset,
.itad-contact-form fieldset,
.custom-quote fieldset,
.main-in-repair-form fieldset {
  background: #eee;
}
.bulk-contact-form legend,
.itad-contact-form legend,
.custom-quote legend,
.main-in-repair-form legend {
  background: #333;
  color: #fff;
  padding: 4px;
  border-radius: 5px;
}
.bulk-contact-form em,
.itad-contact-form em,
.custom-quote em,
.main-in-repair-form em {
  font-size: 11px;
}
.bulk-contact-form .custom-tabs,
.itad-contact-form .custom-tabs,
.custom-quote .custom-tabs,
.main-in-repair-form .custom-tabs {
  background: #eee;
  border: 1px solid #c0c0c0;
  border-radius: 0 !important;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  text-align: center;
}
.bulk-contact-form .custom-tabs .tab-text,
.itad-contact-form .custom-tabs .tab-text,
.custom-quote .custom-tabs .tab-text,
.main-in-repair-form .custom-tabs .tab-text {
  list-style: none;
  margin-bottom: 8px !important;
  padding-bottom: 8px;
  border-bottom: 1px solid #c0c0c0;
  position: relative;
  font-weight: 500;
  font-size: 0.9rem;
}
.bulk-contact-form .custom-tabs .tab-error,
.itad-contact-form .custom-tabs .tab-error,
.custom-quote .custom-tabs .tab-error,
.main-in-repair-form .custom-tabs .tab-error {
  list-style: none;
  margin-top: 8px !important;
  position: relative;
  font-weight: 500;
  font-size: 0.9rem;
}
.bulk-contact-form .custom-tabs .tab-title,
.itad-contact-form .custom-tabs .tab-title,
.custom-quote .custom-tabs .tab-title,
.main-in-repair-form .custom-tabs .tab-title {
  float: none !important;
  width: 49% !important;
  display: inline-block !important;
}
@media only screen and (max-width: 40em) {
  .bulk-contact-form .custom-tabs .tab-title,
  .itad-contact-form .custom-tabs .tab-title,
  .custom-quote .custom-tabs .tab-title,
  .main-in-repair-form .custom-tabs .tab-title {
    width: 98% !important;
    margin-bottom: 8px !important;
  }
}
.bulk-contact-form .custom-tabs .tab-title a,
.itad-contact-form .custom-tabs .tab-title a,
.custom-quote .custom-tabs .tab-title a,
.main-in-repair-form .custom-tabs .tab-title a {
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1.3rem;
  border-radius: 0.25rem;
  margin-right: 5px;
  background-color: #e1e1e1;
  color: #222222;
}
.bulk-contact-form .custom-tabs .tab-title a:hover,
.itad-contact-form .custom-tabs .tab-title a:hover,
.custom-quote .custom-tabs .tab-title a:hover,
.main-in-repair-form .custom-tabs .tab-title a:hover {
  background-color: #1E90FA !important;
  border-color: #0574db;
  color: #ffffff;
}
.bulk-contact-form .custom-tabs .tab-title.active a,
.itad-contact-form .custom-tabs .tab-title.active a,
.custom-quote .custom-tabs .tab-title.active a,
.main-in-repair-form .custom-tabs .tab-title.active a {
  background-color: #1E90FA !important;
  border-color: #0574db;
  color: #ffffff;
}
.bulk-contact-form .tabs-content .content,
.itad-contact-form .tabs-content .content,
.custom-quote .tabs-content .content,
.main-in-repair-form .tabs-content .content {
  padding: 0 !important;
}
.bulk-contact-form .block-wrap,
.itad-contact-form .block-wrap,
.custom-quote .block-wrap,
.main-in-repair-form .block-wrap {
  border: 1px solid #ddd;
  background: #fff;
}
.bulk-contact-form .question,
.itad-contact-form .question,
.custom-quote .question,
.main-in-repair-form .question {
  transition: all 250ms;
  position: relative;
  padding: 0.6rem 0.7rem 0.7rem 3rem;
  border-bottom: #ddd 1px solid;
}
.bulk-contact-form .question:hover,
.itad-contact-form .question:hover,
.custom-quote .question:hover,
.main-in-repair-form .question:hover {
  color: #1E90FA;
  cursor: pointer;
}
.bulk-contact-form .question span,
.itad-contact-form .question span,
.custom-quote .question span,
.main-in-repair-form .question span {
  top: -0.3rem;
  left: 0.9rem;
  transition: color 250ms;
  position: absolute;
  font-size: 2rem;
  color: #1E90FA;
}
.bulk-contact-form .question span::after,
.itad-contact-form .question span::after,
.custom-quote .question span::after,
.main-in-repair-form .question span::after {
  content: "☐";
}
.bulk-contact-form .answer,
.itad-contact-form .answer,
.custom-quote .answer,
.main-in-repair-form .answer {
  background: #333;
  color: #fff;
  overflow-y: hidden;
  max-height: 0px;
  transition: all 250ms;
}
.bulk-contact-form .answer .answer-wrap,
.itad-contact-form .answer .answer-wrap,
.custom-quote .answer .answer-wrap,
.main-in-repair-form .answer .answer-wrap {
  padding: 1rem;
}
.bulk-contact-form .answer .answer-wrap *:last-child,
.itad-contact-form .answer .answer-wrap *:last-child,
.custom-quote .answer .answer-wrap *:last-child,
.main-in-repair-form .answer .answer-wrap *:last-child {
  margin-bottom: 0;
}
.bulk-contact-form .block.opened .answer,
.itad-contact-form .block.opened .answer,
.custom-quote .block.opened .answer,
.main-in-repair-form .block.opened .answer {
  max-height: 100rem;
}
.bulk-contact-form .block.opened .question,
.itad-contact-form .block.opened .question,
.custom-quote .block.opened .question,
.main-in-repair-form .block.opened .question {
  border-bottom: #F1852A 1px solid;
}
.bulk-contact-form .block.opened .question span,
.itad-contact-form .block.opened .question span,
.custom-quote .block.opened .question span,
.main-in-repair-form .block.opened .question span {
  color: #F1852A;
}
.bulk-contact-form .block.opened .question span::after,
.itad-contact-form .block.opened .question span::after,
.custom-quote .block.opened .question span::after,
.main-in-repair-form .block.opened .question span::after {
  content: "☑";
}
.bulk-contact-form .block.opened .question:hover,
.itad-contact-form .block.opened .question:hover,
.custom-quote .block.opened .question:hover,
.main-in-repair-form .block.opened .question:hover {
  color: #F1852A;
  border-color: #F1852A;
}

.coupon-suggestion-text {
  cursor: pointer;
}

.cq-remove-button {
  background: red;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  padding: 5px;
  margin-top: -31px;
  margin-right: -2px;
  font-size: 11px;
  text-transform: uppercase;
  transition: all 250ms;
}
.cq-remove-button:hover {
  background: #ce0000;
}

.attr-remove-button {
  background: #222;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  padding: 1px 5px;
  font-size: 11px;
  text-transform: uppercase;
  transition: all 250ms;
}
.attr-remove-button:hover {
  background: #888;
}

.attr-remove-button-evals {
  background: #222;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  padding: 1px 5px;
  margin-top: 5px;
  margin-right: 5px;
  font-size: 11px;
  text-transform: uppercase;
  transition: all 250ms;
}
.attr-remove-button-evals:hover {
  background: #888;
}

.diagnostic-attribute {
  display: block;
  margin-top: -8px;
}

.display-inline-block {
  display: inline-block;
}

.vertical-align-top {
  vertical-align: top;
}

.vertical-align-middle {
  vertical-align: middle;
}

.vertical-align-bottom {
  vertical-align: bottom;
}

.condition-select {
  margin: 0 0 1rem 0;
}

md-autocomplete.md-autocomplete-existing md-autocomplete-wrap input {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  height: 2.3125rem !important;
  line-height: 2.3125rem !important;
  margin: 0 0 1rem 0 !important;
  padding: 0.5rem !important;
}

.history-table .changes .change {
  float: left;
  margin: 0.25rem 1%;
}
.history-table .changes .change table {
  background: #eee;
  border: 1px solid #ccc;
  padding: 0;
  margin: 0;
}
.history-table .changes .change td {
  padding: 0.3rem 0.5rem;
  text-overflow: ellipsis;
}
.history-table .changes .change .field {
  background: #fafafa;
  border-right: 1px solid #ccc;
  color: #555;
}
.history-table .changes .change .from {
  border-right: 1px solid #ccc;
  background: #ffecec;
  word-break: break-word;
}
.history-table .changes .change .to {
  background: #e4fde3;
  word-break: break-word;
}
.history-table .changes.expanded .change {
  width: 100%;
  margin: 0.25rem 0;
  display: block !important;
}
@media only screen and (min-width:64.0625em) {
  .history-table .changes.expanded .change {
    width: 49%;
    margin: 0.25rem 1% 0.25rem 0;
  }
  .history-table .changes.expanded .change.one-col {
    width: 100%;
    margin: 0.25rem 1%;
  }
}
.history-table .changes.expanded .change.more {
  display: none !important;
}
.history-table h4 {
  margin: 0.25rem 0 0.25rem;
  font-size: 1rem;
  background: #f5f5f5;
  padding: 0.2rem 0.6rem;
}
.history-table h4 > span {
  float: right;
}
.history-table .pagination-wrap ul,
.history-table .pagination-wrap p {
  margin-bottom: 0;
}

.check-device-apis-ctrl .panel {
  font-size: 0.8rem;
  line-height: 1rem;
  padding: 0.5rem;
  margin: 0.5rem 0 0;
}
.check-device-apis-ctrl .error {
  background: #fff;
  color: #EF2323;
  float: right;
  max-width: 300px;
  text-align: right;
  margin: 0.5rem 0 0;
  padding: 0;
}
.check-device-apis-ctrl .error-msg {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 1rem;
  margin-top: -1px;
  padding: 0.375rem 0.5625rem 0.5625rem;
  background: #EF2323;
  color: #FFFFFF;
}
.check-device-apis-ctrl button {
  margin: 0;
}
.check-device-apis-ctrl hr {
  margin: 0.5rem 0;
}
.check-device-apis-ctrl md-progress-linear {
  margin: 0.5rem 0 !important;
}

img.image-left {
  float: left;
  padding: 0.5rem 1rem 0.5rem 0;
}
img.image-right {
  float: right;
  padding: 0.5rem 0rem 0.5rem 1rem;
}

.youtube-responsive-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.youtube-responsive-container iframe, .youtube-responsive-container object, .youtube-responsive-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tabs {
  overflow: hidden;
  background: #eee;
  color: #222;
  border-radius: 6px;
  margin-bottom: 5px;
}

.product-pricing > div > ul.tabs {
  border-radius: 0;
  background: #fff;
}

.tab-title.active > a {
  background-color: #777 !important;
}

.tab-title.active > a > span.pricing-icon {
  color: #fff !important;
}
.tab-title.active > a > span.pricing-icon:hover {
  color: #9e9e9e !important;
}

section.about-page.top-block p {
  max-width: 650px;
}
section.about-page blockquote {
  border: 0;
  text-align: center;
  font-size: 2rem;
  color: #A6A6A6;
  line-height: 1.2;
  padding: 2rem 0;
}
section.about-page img.image-right {
  margin: 0 0 0 2rem;
}
section.about-page img.image-left {
  margin: 0 2rem 0 0;
}
section.about-page img.bordered {
  border-radius: 5px;
  padding: 0;
  max-height: 285px;
  box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 40em) {
  section.about-page img.bordered {
    margin: 0 auto 1rem;
    display: block;
  }
}
@media only screen and (min-width:64.0625em) {
  section.about-page img {
    max-width: 45%;
  }
}
@media only screen and (min-width:40.0625em) and (max-width:64em) {
  section.about-page img {
    max-width: 60%;
  }
}
@media only screen and (max-width: 40em) {
  section.about-page img {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    float: none;
    margin: 0.5rem auto;
  }
}
section.about-page p {
  color: #666;
  font-weight: 300;
  line-height: 1.8;
}
section.about-page h2 {
  margin: 0.5rem 0 1.5rem;
}
section.about-page h3 {
  margin: 2rem 0 1rem;
}
section.about-page .complimentary-services {
  margin: 1rem 0 5rem;
}
section.about-page .complimentary-services li {
  max-width: 475px;
  color: #666;
  font-weight: 300;
  line-height: 1.8;
  padding: 0 0 0 2rem;
  position: relative;
  margin: 0.5rem 0;
}
section.about-page .complimentary-services li span {
  color: #ACCF29;
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 3rem;
  line-height: 1rem;
  height: 1rem;
}

.account-page .settings {
  padding-top: 1rem;
}
.account-page .settings .password-container {
  position: relative;
  display: block;
}
.account-page .settings .password-container input {
  padding-right: 40px;
}
.account-page .settings .password-container .toggle-password {
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.3rem;
  transition: color 0.2s ease-in-out;
}
.account-page .settings .password-container .is-selected {
  color: #F1852A;
}
.account-page .sign-out-block {
  margin-bottom: 3rem;
}
.account-page .alert-box {
  margin: 2rem -0.9375rem 0;
}
.account-page .account-nav {
  padding: 0;
  border: 1px solid #ccc;
  margin-top: 2rem;
  margin-bottom: 2rem;
  overflow: hidden;
}
.account-page .account-nav ul {
  list-style-type: none;
  float: left;
  margin: 0;
  overflow: hidden;
  width: 100%;
}
.account-page .account-nav ul.pending-quotes li {
  width: 20%;
}
.account-page .account-nav ul li {
  float: left;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
  width: 25%;
  white-space: nowrap;
}
.account-page .account-nav ul li.active {
  background: #ddd;
}
.account-page .account-nav ul li a {
  width: 100%;
  padding: 1rem 0;
  border-right: 1px solid #ccc;
  float: left;
  white-space: nowrap;
  color: #333;
  font-size: 0.9rem;
  text-align: center;
}
.account-page .account-nav ul li a:hover {
  font-weight: 700;
  background: #eee;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.05);
}
.account-page .account-nav ul li a:active, .account-page .account-nav ul li a:focus {
  background: #eee;
  box-shadow: inset 3px 3px 5px rgba(100, 100, 100, 0.125);
}
@media only screen and (min-width:40.0625em) {
  .account-page .account-nav ul li a {
    font-size: 1rem;
  }
  .account-page .account-nav ul li a > span {
    display: inline !important;
  }
}
@media only screen and (min-width:64.0625em) {
  .account-page .account-nav ul li a {
    font-size: 1.1rem;
  }
}
.account-page .account-nav ul li:last-child a {
  border: 0;
}
.account-page .old-price {
  color: #888;
  font-weight: 700;
}
.account-page .offer-items h5,
.account-page .offer-items .button {
  margin: 0;
}
.account-page .offer-items h5 {
  font-weight: 400;
  line-height: 60px;
  font-size: 1.5rem;
  margin-left: 1rem;
}
.account-page .offer-items .item-message {
  width: 100%;
  max-width: 500px;
  margin: 0.5rem 0 0;
  padding: 0.5rem 1rem;
  float: left;
  font-size: 0.9rem;
}
.account-page .offer-items .item-message p {
  font-size: 0.9rem;
}
.account-page .offer-items .item-message li {
  font-size: 0.9rem;
}
.account-page .offer-items .adjustment-box {
  text-align: center;
  background: rgb(253.6, 242.8, 233.7);
  border: 1px solid rgb(248, 194, 148.5);
}
.account-page .offer-items .adjustment-box p {
  margin: 0;
}
.account-page .offer-items .adjustment-box p.reasons, .account-page .offer-items .adjustment-box p.approve-deny {
  margin-top: 0.5rem;
}
.account-page .offer-items .adjustment-box ul {
  margin-bottom: 0;
  text-align: left;
}
.account-page .offer-items .adjustment-box .label {
  font-weight: 700;
}
.account-page .offer-items .return-box, .account-page .offer-items .locked-box {
  background: rgb(253.4, 233, 233);
  border: 1px dotted #f79191;
}
.account-page .offer-items .recycled-box, .account-page .offer-items .queued-box {
  background: rgb(232.5, 243.9, 254.5);
  border: 1px dotted rgb(142.5, 199.5, 252.5);
}
.account-page .offer-items .approved-box {
  background: rgb(246.9709677419, 250.6685483871, 233.1314516129);
  border: 1px dotted rgb(190.7677419355, 220.3483870968, 80.0516129032);
}
.account-page .cancel-confirmation-message p {
  max-width: 600px;
  margin: 1rem auto 1.5rem;
}
.account-page .offer-listing {
  width: 100%;
  background: none;
  border: none;
  margin: 0;
}
.account-page .offer-listing .offer-number {
  font-weight: bold;
  color: #555;
  text-decoration: none;
}
.account-page .offer-listing small {
  font-size: 0.85rem;
  line-height: 1.25rem;
}
.account-page .offer-listing.show-for-small-only .offer-number, .account-page .offer-listing.show-for-small-only .money {
  font-size: 1.3rem;
}
.account-page .offer-listing.show-for-small-only .status-label {
  margin-top: 0.25rem;
}
.account-page .offer-listing.show-for-medium-up .offer-number {
  border-bottom: 1px solid #ccc;
}
.account-page .offer-listing.show-for-medium-up .offer-number, .account-page .offer-listing.show-for-medium-up .money {
  font-size: 1.2rem;
}
.account-page .offer-status-section small {
  font-size: 0.9rem;
}
.account-page .shipping-warning {
  text-align: center;
  padding-bottom: 1rem;
}
.account-page .shipping-warning .label {
  width: 100%;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
}
.account-page .address-listing {
  margin: -0.5rem -0.5rem 1rem;
}
.account-page .address-listing .panel {
  padding: 0.75rem 1.25rem;
  margin: 0;
}
.account-page .address-listing input {
  margin: 0 0.5rem 0 0;
}
.account-page .address-listing label {
  padding: 0.3rem 0 0;
}
.account-page .address-listing li {
  padding: 0.5rem;
}
.account-page .show-default-label {
  position: relative;
}
.account-page .show-default-label .little-loader {
  display: none;
  position: absolute;
  left: -0.15rem;
  top: 0.55rem;
  opacity: 0.5;
}
.account-page .offer-item-quantity {
  width: 2.5rem;
  text-align: center;
  margin: -1px 0 0 0;
  display: inline-block;
  padding: 0.2rem;
  height: auto;
}

.shipping-instructions .shipping-instructions-icon {
  text-align: center;
}
.shipping-instructions .shipping-instructions-icon svg {
  max-width: 100px;
  max-height: 110px;
}

.final-checklist {
  margin: 3rem 0 5rem;
}
@media only screen and (min-width:40.0625em) {
  .final-checklist .left,
  .final-checklist .right {
    width: 45%;
  }
  .final-checklist .columns {
    padding: 1rem 0 0;
  }
}
.final-checklist ul {
  margin: 0;
  list-style-type: none;
}
.final-checklist ul li {
  padding-left: 1.5rem;
  position: relative;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.4rem;
  margin: 0.5rem 0;
}
.final-checklist ul li i {
  position: absolute;
  left: 0;
  top: 0;
  color: #F1852A;
}
.final-checklist .row {
  position: relative;
}
.final-checklist .divider {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  border-left: 2px solid #FD9326;
  margin-left: -1px;
  display: none;
}
@media only screen and (min-width:40.0625em) {
  .final-checklist .divider {
    display: block;
  }
}
.final-checklist .divider .up, .final-checklist .divider .down {
  position: absolute;
  margin-left: -7px;
  left: 50%;
  top: 0;
  height: 7px;
  width: 12px;
  max-width: 12px;
  margin-top: -2px;
}
.final-checklist .divider .down {
  top: auto;
  bottom: 0;
  margin-top: 0;
  margin-bottom: -2px;
}
.final-checklist .youre-ready {
  margin-top: 2rem;
  text-align: center;
}
.final-checklist .youre-ready p {
  color: #F1852A;
  font-size: 1.5rem;
}
.final-checklist .youre-ready svg {
  height: 5rem;
}
.final-checklist h2 {
  text-align: center;
  margin: 0 0 2.5rem;
}
.final-checklist h4 {
  margin: 0.5rem 0 1rem;
}

table.style-b.offer-items-table {
  width: 100%;
  border: 1px solid #eee;
  border-collapse: separate;
}
table.style-b.offer-items-table td {
  border-top: 1px solid #eee;
}
table.style-b.offer-items-table th {
  background: #f1f1f1;
}
table.style-b.offer-items-table td > strong {
  font-size: 1.1rem;
  line-height: 1.1rem;
  width: 100%;
  color: #333;
}
table.style-b.offer-items-table td > strong.money {
  color: rgb(137.6, 165.6, 32.8);
}
table.style-b.offer-items-table h4.item-title {
  font-weight: bold;
  font-size: 1.2rem;
  border-bottom: 1px dotted #ccc;
  display: block;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  color: #444;
  line-height: 1.75rem;
}
table.style-b.offer-items-table .style-c td {
  border: none;
}
table.style-b.offer-items-table .incorrect-box {
  border-bottom: 1px dotted #ccc;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
table.style-b.offer-items-table .edit-item {
  float: right;
}
table.style-b.offer-items-table .edit-item ul {
  float: right;
  line-height: 0;
}
@media only screen and (max-width: 40em) {
  table.style-b.offer-items-table h4.item-title {
    border: none;
    padding: 0;
    margin: 0 0 0.5rem 0;
  }
  table.style-b.offer-items-table .price-details {
    width: 100%;
    border-top: 1px dotted #ccc;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
  }
  table.style-b.offer-items-table .edit-item {
    width: 100%;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }
}

.blog-page .featured-post {
  margin-bottom: 3rem;
}
.blog-page .featured-post .featured-label {
  background: #ACCF29;
  padding: 0.33rem 1rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.blog-page .blog-categories {
  text-align: center;
  max-width: 900px;
  margin: 1rem auto 2rem;
  border-bottom: 1px solid #DDDDDD;
}
.blog-page .blog-categories li {
  float: none;
  display: inline-block;
  margin: 0.5rem 0.75rem;
}
.blog-page .blog-categories a {
  text-transform: uppercase;
  color: #111;
  font-size: 0.9rem;
  font-weight: 700;
}
.blog-page .blog-categories a.active {
  color: #F1852A;
}
.blog-page .blog-categories a:hover {
  color: #ACCF29;
}
.blog-page .post-heading {
  font-weight: 500;
  font-size: 1.15rem;
  text-align: left;
  margin-top: 1rem;
}
.blog-page .post-heading a {
  color: #ACCF29;
}
.blog-page .post-image {
  margin: 2rem auto 1rem;
}
.blog-page .post-content h1, .blog-page .post-content h2, .blog-page .post-content h3, .blog-page .post-content h4, .blog-page .post-content h5, .blog-page .post-content h6 {
  font-weight: bold;
}
.blog-page .post-content h1 {
  font-size: 1.8rem;
}
.blog-page .post-content h2 {
  font-size: 1.6rem;
}
.blog-page .post-content h3 {
  font-size: 1.3rem;
}
.blog-page .post-content h4 {
  font-size: 1.2rem;
}
.blog-page .post-content h5 {
  font-size: 1.1rem;
}
.blog-page .post-content h6 {
  font-size: 1rem;
}
.blog-page .listing-grid li {
  padding: 1%;
}
.blog-page time {
  display: block;
  margin: 0 0 0.25rem;
  color: #999;
}
.blog-page .pagination {
  display: inline-block;
  margin: 0.5rem 0 1.5rem;
}
.blog-page .none {
  padding: 2rem 0 3rem;
}
.blog-page .image-zoom {
  overflow: hidden;
}
.blog-page .blog-home-tiles {
  background: #fff;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s ease-in-out;
}
.blog-page .blog-home-tiles img {
  transform: scale(1.2);
  transition: transform 0.2s ease-in-out;
}
.blog-page .blog-home-tiles:hover {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}
.blog-page .blog-home-tiles:hover img {
  transform: scale(1.3);
}
.blog-page .featured-img {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 15px;
}
.blog-page .content-excerpt {
  margin-top: 0;
  height: 145px;
  overflow-y: scroll;
}
.blog-page .read-more {
  padding-top: 16px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #ddd;
  margin-top: 5px;
}

body.bulk-trade-in.no-webp .hero {
  background-image: url(../..//static/images/bulk/hero-min.jpg);
}
body.bulk-trade-in .hero {
  background: #717171 url(../..//static/images/bulk/hero-min.jpg.webp) no-repeat center bottom;
  background-size: cover;
}
body.bulk-trade-in .hero:before {
  opacity: 0.7;
}
body.bulk-trade-in .hero h1 {
  margin-top: 2.5rem;
}
body.bulk-trade-in .hero .top-pad {
  padding-top: 4.5vh !important;
}
body.bulk-trade-in .floating.notices-box {
  top: -10px;
}
body.bulk-trade-in .floating.notices-box .alert-box.success {
  font-size: 1rem;
  padding: 0.4rem 1rem;
}
body.bulk-trade-in .r2-margin {
  margin-top: -16px;
  margin-bottom: 16px;
}

body.mail-in-repairs-trade-in.no-webp .hero {
  background-image: url(../..//static/images/mail-in-repair/hero-min.jpg);
}
body.mail-in-repairs-trade-in .hero {
  background: #717171 url(../..//static/images/mail-in-repair/hero-min.jpg.webp) no-repeat center bottom;
  background-size: cover;
}
body.mail-in-repairs-trade-in .hero:before {
  opacity: 0.7;
}
body.mail-in-repairs-trade-in .hero h1 {
  margin-top: 6.5rem;
}
body.mail-in-repairs-trade-in .hero .top-pad {
  padding-top: 4.5vh !important;
}
body.mail-in-repairs-trade-in .floating.notices-box {
  top: -10px;
}
body.mail-in-repairs-trade-in .floating.notices-box .alert-box.success {
  font-size: 1rem;
  padding: 0.4rem 1rem;
}
body.mail-in-repairs-trade-in .r2-margin {
  margin-top: -16px;
  margin-bottom: 16px;
}

.cart-form {
  padding-top: 1rem;
}
.cart-form fieldset {
  padding: 0 1rem;
  margin: 1rem 0;
  overflow-x: auto;
  overflow-y: scroll;
  background: #f9f9f9;
  border-top: 1px solid #DDDDDD;
}
.cart-form .row {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.cart-form h6 {
  font-size: 1.15rem;
  margin-bottom: 0;
}
.cart-form .breadrcrumb {
  margin-bottom: 0.5rem;
  display: inline-block;
  color: #555;
}
.cart-form table .image-col {
  width: 6rem;
  padding-left: 0px;
  padding-right: 0px;
}
.cart-form table input {
  width: 3rem;
  display: inline-block;
}
.cart-form table .wrap {
  padding: 1rem 0.25rem;
  float: left;
}
.cart-form table .wrap strong {
  color: #222;
}
.cart-form table .wrap.qty {
  text-align: center;
}
.cart-form table .product-attributes {
  list-style-type: none;
  margin: 0.1rem 0 0.5rem;
  color: #888;
  font-size: 0.85rem;
}
.cart-form table .price-col {
  font-weight: normal;
  color: #000;
  font-size: 1rem;
}
.cart-form table .small-price {
  margin-top: 0.5rem;
}
@media only screen and (min-width:64.0625em) {
  .cart-form .sidebar-column {
    width: 24%;
    margin: 0 0 0 1%;
  }
}
.cart-form .sidebar {
  padding: 0 2rem;
  margin-bottom: 2.5rem;
  background: #fff;
  text-align: center;
}
@media only screen and (min-width:64.0625em) {
  .cart-form .sidebar {
    border-radius: 4px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
  }
}
.cart-form .sidebar .offer-link {
  color: #333;
  border-bottom: 1px dotted #666;
  font-weight: 700;
}
.cart-form .sidebar p {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: #666;
  font-size: 0.8rem;
}
.cart-form .sidebar table {
  margin-bottom: 0.5rem;
}
.cart-form .sidebar td {
  padding: 1rem 0;
}
.cart-form .sidebar .shipping-row td {
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #888;
}
.cart-form .sidebar .empty-cart-btn {
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  padding: 0.375rem 1.175rem !important;
  color: #333 !important;
  border-color: #CDCDCD;
  background-color: #fefefe;
  line-height: 1.3125rem;
  margin-top: 0.9375rem;
}
.cart-form .sidebar .button {
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.5rem;
  color: #FFF;
}
.cart-form .sidebar .button.secondary {
  background: #CDCDCD;
}
.cart-form .sidebar .button.secondary:hover {
  background-color: #BBB;
}
.cart-form .sidebar .button.guest {
  margin-bottom: 0.5rem;
}
.cart-form .sidebar.add-cart-item {
  max-width: 360px;
  margin: 0 auto 2.5rem;
  padding-top: 1rem;
}
.cart-form .sidebar.add-cart-item p {
  color: #333;
  text-transform: none;
}
.cart-form .sidebar.add-cart-item .button {
  color: #333;
  font-size: 1rem;
  width: 100%;
}
.cart-form .items {
  padding-top: 2rem;
}
@media only screen and (min-width:64.0625em) {
  .cart-form .items {
    padding-top: 0;
    padding-right: 2.5rem;
  }
}
@media only screen and (max-width: 40em) {
  .cart-form .items > .button {
    width: 100%;
  }
}
.cart-form .items .remove-button {
  background: #F6F6F6;
  color: #666;
}
.cart-form .items .remove-button:hover, .cart-form .items .remove-button:focus, .cart-form .items .remove-button:active {
  background: #EEE;
  color: #333;
}
.cart-form .trade-in-details {
  padding: 0 2rem;
  background: #fff;
  text-align: center;
}
@media only screen and (min-width:64.0625em) and (max-width:90em) {
  .cart-form .trade-in-details {
    padding: 0;
  }
}
.cart-form .trade-in-details .mr-t {
  margin-top: 0.5rem;
}
.cart-form .trade-in-details .mr-b {
  margin-bottom: 0.5rem;
}

.checkout-page {
  padding: 2rem 0 4rem;
}
.checkout-page > .row {
  padding: 0 1%;
}
.checkout-page .main-col {
  background: #fff;
  border-radius: 6px;
  padding: 0;
}
.checkout-page .sidebar {
  padding: 0 0 0.25rem;
  background: #fff;
  border-radius: 6px;
  margin-top: 2rem;
}
.checkout-page .sidebar h3 {
  padding: 1rem 1.5rem;
}
@media only screen and (min-width:64.0625em) {
  .checkout-page .sidebar {
    width: 31%;
    margin-left: 2.333%;
    margin-top: 0;
  }
}
.checkout-page .sidebar a.edit-link {
  color: #888;
  font-weight: normal;
}
.checkout-page .sidebar ul.product-attributes {
  margin: 0 1rem 0 0;
}
.checkout-page .sidebar h6.product-name {
  margin: 0;
}
.checkout-page .sidebar .product-attributes {
  list-style-type: none;
  font-size: 0.8rem;
  padding: 0;
  margin-left: 0;
  color: #888;
}
.checkout-page .sidebar h6 {
  margin: 0 0 0.1rem;
}
.checkout-page .sidebar h6 span {
  color: #555;
}
.checkout-page .sidebar .image-col {
  width: 27.5%;
}
.checkout-page .sidebar .image-col img {
  min-width: 40%;
}
.checkout-page .sidebar table.style-a tr td {
  border: none;
}
.checkout-page .social-login hr {
  margin: 0.5rem 0;
}
.checkout-page .social-login p {
  margin: 0 0 0.25rem;
  color: #444;
}
.checkout-page input[type=checkbox] {
  margin-bottom: 0;
}
.checkout-page .gift-card-bonus {
  display: none;
}

#checkout-ctrl .accordion .heading {
  color: #222222;
  display: block;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 0.875rem;
  padding: 1rem 1.5rem;
  cursor: default;
  outline: 0 !important;
  font-weight: 700;
  text-transform: uppercase;
  border-top: 1px solid #eee;
  transition: background-color 0.1s linear 0s;
}
#checkout-ctrl .accordion .heading span {
  font-weight: normal;
  color: #888;
}
#checkout-ctrl .accordion .heading .edit {
  display: none;
}
#checkout-ctrl .accordion .heading.active:hover {
  background: #ebf5ff;
  cursor: pointer;
}
#checkout-ctrl .accordion .heading.active:hover .edit {
  display: block;
  float: right;
  font-size: 1rem;
}
#checkout-ctrl .accordion .accordion-navigation:first-child .heading {
  border-top: none;
  border-radius: 6px 6px 0 0;
}
#checkout-ctrl .accordion .accordion-navigation .content fieldset {
  margin-bottom: 1rem;
}
#checkout-ctrl .accordion .accordion-navigation .content.active {
  padding: 1rem 1.5rem;
}
#checkout-ctrl .select-address select {
  height: auto;
  white-space: normal;
}
#checkout-ctrl .shipping-method fieldset > span {
  white-space: nowrap;
}
#checkout-ctrl .shipping-method fieldset > span label {
  font-weight: bold;
}
#checkout-ctrl .shipping-method input.error {
  margin-bottom: 1rem;
}
#checkout-ctrl .guest-animate {
  transition: opacity 1s;
}
#checkout-ctrl .guest {
  opacity: 0.4;
  cursor: pointer;
}
#checkout-ctrl .guest:hover {
  opacity: 0.66;
}
#checkout-ctrl .how-would-you-like-to {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  align-content: flex-end;
  flex-wrap: wrap;
  margin-top: -10px;
}
#checkout-ctrl .how-would-you-like-to div, #checkout-ctrl .how-would-you-like-to button {
  margin-right: 0.3rem;
}
#checkout-ctrl .how-would-you-like-to button {
  margin-top: 10px;
}
#checkout-ctrl .gift-card-bonus-text {
  margin-bottom: -10px;
}
#checkout-ctrl .option-btn-group button {
  padding-left: 30px !important;
  position: relative;
  text-align: left;
  width: 100%;
  border-width: 2px;
}
#checkout-ctrl .option-btn-group button.yes {
  border-radius: 0.25rem 0.25rem 0 0;
  border-bottom-width: 1px;
}
#checkout-ctrl .option-btn-group button.no {
  border-radius: 0 0 0.25rem 0.25rem;
  border-top-width: 1px;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width:64.0625em) {
  #checkout-ctrl .option-btn-group button.yes,
  #checkout-ctrl .option-btn-group button.no {
    border-top-width: 2px;
    border-bottom-width: 2px;
    margin-bottom: 0;
    float: left;
  }
  #checkout-ctrl .option-btn-group button.yes {
    width: 20rem;
    border-radius: 0.25rem 0 0 0.25rem;
    border-right-width: 1px;
  }
  #checkout-ctrl .option-btn-group button.no {
    width: 10rem;
    border-radius: 0 0.25rem 0.25rem 0;
    border-left-width: 1px;
  }
}
#checkout-ctrl .option-btn-group .selected-indicator {
  width: 14px;
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 14px;
}
#checkout-ctrl .option-btn-group .selected-indicator span {
  width: 100%;
  display: inline-block;
}
#checkout-ctrl .option-btn-group.singles button {
  border-width: 2px !important;
  border-radius: 0.25rem !important;
}
@media only screen and (min-width:64.0625em) {
  #checkout-ctrl .option-btn-group.singles button.yes,
  #checkout-ctrl .option-btn-group.singles button.no {
    width: auto;
    margin-right: 0.5rem;
  }
}

.checkout-items {
  overflow: hidden;
  padding: 0;
}
.checkout-items hr {
  margin: 0.333rem 0;
  border-color: #EEEEEE;
}
.checkout-items .row {
  padding: 1rem 1.5rem;
}
.checkout-items .row.top {
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 0.75rem;
}
.checkout-items .row.bottom {
  padding: 0 1.75rem;
}
.checkout-items table.style-a {
  margin-bottom: 0.5rem;
}
.checkout-items table.style-a .payout td {
  color: #ACCF29;
}
.checkout-items .insured {
  display: none;
}
.checkout-items .not-insured {
  display: table-row;
}

.empty-cart-message {
  text-align: center;
  font-weight: 400;
  padding: 5rem 0;
}
.empty-cart-message h5 {
  font-size: 1.33rem;
  font-weight: 300;
  margin: 0 0 1.5rem;
}
.empty-cart-message .panel {
  padding: 2rem 1.5rem 1rem;
  margin-top: 1rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}
.empty-cart-message p.or {
  font-size: 0.8rem;
  margin: 0 0 0.5rem;
}

#terms-and-conditions-link {
  max-height: 80vh;
  overflow-y: auto;
}
@media only screen and (min-width:40.0625em) {
  #terms-and-conditions-link {
    top: 10vh !important;
  }
}

.insurance-message {
  margin-top: 15px;
}
.insurance-message p {
  font-size: 0.8rem !important;
  font-weight: 600 !important;
}

body.custom-quote.no-webp .hero {
  background-image: url(../..//static/images/custom-quote/hero.jpg);
}
body.custom-quote .hero {
  background: #717171 url(../..//static/images/custom-quote/hero.jpg) no-repeat center center;
  background-size: cover;
}
body.custom-quote .hero:before {
  opacity: 0.8;
}
body.custom-quote .hero h1 {
  margin-top: 4.5rem;
}
@media only screen and (min-width:40.0625em) {
  body.custom-quote .widget.three-steps h3 {
    margin: 1.5625rem auto;
  }
}
body.custom-quote .what-we-buy {
  text-align: center;
}
body.custom-quote .what-we-buy h3 {
  color: #555;
  font-weight: 300;
  font-size: 2.25rem;
}
body.custom-quote .what-we-buy td {
  font-size: 1.2rem;
  line-height: 1.6;
  padding: 1.5rem;
}
body.custom-quote .what-we-buy .h3-i {
  font-size: 2.5rem;
  vertical-align: middle;
}
body.custom-quote .what-we-buy .dont-underline {
  text-decoration: underline;
}
body.custom-quote .floating.notices-box {
  top: -10px;
}
body.custom-quote .floating.notices-box .alert-box.success {
  font-size: 1rem;
  padding: 0.4rem 1rem;
}

/**
 * * Header navigation
 * */
nav.top-nav {
  line-height: 4.5rem;
  font-size: 0.85rem;
  position: absolute;
  font-weight: 500;
  width: 100%;
  margin: 0;
  top: 0rem;
  left: 0;
  z-index: 1000;
  background: #333;
  color: #fff;
}
nav.top-nav a.logo {
  height: 4.5rem;
  line-height: 4.35rem;
  float: left;
  margin-left: 5%;
}
@media only screen and (min-width:40.0625em) {
  nav.top-nav a.logo {
    margin-left: 1.5rem;
  }
}
nav.top-nav a.logo img {
  height: 3rem;
}
nav.top-nav .christmas-logo {
  position: relative;
}
nav.top-nav .christmas-logo img:last-of-type {
  position: absolute;
  top: 5px;
  right: -35%;
  transform: translateX(-50%) rotate(-10deg);
  z-index: 2;
  width: 41px;
  height: auto;
}
nav.top-nav ul {
  list-style-type: none;
}
nav.top-nav .row > ul {
  float: right;
  margin: 0;
}
nav.top-nav .row > ul > li:not(.cart):hover:after {
  content: " ";
  bottom: 0px;
  left: 0px;
  width: 100%;
  position: absolute;
}
nav.top-nav .row > ul li {
  position: relative;
  white-space: nowrap;
  float: left;
  transition: all 0.1s linear 0s;
}
nav.top-nav .row > ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin: 0px;
  background: #333;
  color: #fff;
}
nav.top-nav .row > ul li ul li {
  width: 100%;
}
nav.top-nav .row > ul li ul li a {
  line-height: 3rem;
  width: 100%;
}
nav.top-nav .row > ul li:hover {
  background: #222;
  color: #CCC;
}
@media only screen and (min-width:40.0625em) {
  nav.top-nav .row > ul li:hover ul {
    display: block;
  }
}
nav.top-nav .row > ul li.trade-in > ul a {
  padding: 0 1.25rem 0 3rem;
  position: relative;
}
nav.top-nav .row > ul li.trade-in svg {
  height: 27px;
  width: 27px;
  position: absolute;
  left: 11px;
  top: 50%;
  margin-top: -12px;
}
nav.top-nav .row > ul li.trade-in svg * {
  stroke: #FFF !important;
}
nav.top-nav .row > ul li.trade-in svg *.fill-path {
  fill: #FFF !important;
  stroke: none !important;
}
nav.top-nav .row > ul li.nav-bb {
  border-bottom: 1px solid #555;
}
nav.top-nav .row > ul li.nav-bt {
  border-top: 1px solid #555;
}
nav.top-nav .row > ul li.account a {
  color: #BBB;
}
nav.top-nav .row > ul li.account a:hover {
  color: #1E90FA;
}
nav.top-nav .row > ul li.account span.account-head {
  display: inline-block;
}
nav.top-nav .row > ul li.account span.account-head svg {
  margin-bottom: -1px;
  margin-right: 5px;
  height: 0.8rem;
  width: 0.8rem;
}
nav.top-nav .row > ul li.account span.account-head svg * {
  transition: all 0.1s;
  stroke: #BBB;
}
nav.top-nav .row > ul li.account span.account-arrow {
  display: none;
}
@media only screen and (min-width:64.0625em) {
  nav.top-nav .row > ul li.account span.account-arrow {
    display: inline-block;
  }
}
nav.top-nav .row > ul li.account span.account-arrow svg {
  margin-bottom: -3px;
  margin-left: 1px;
  height: 1rem;
  width: 1rem;
}
nav.top-nav .row > ul li.account span.account-arrow svg path {
  transition: all 0.1s;
  fill: #BBB;
}
nav.top-nav .row > ul li.account a:hover span.account-head svg * {
  stroke: #1E90FA;
}
nav.top-nav .row > ul li.account a:hover span.account-arrow svg path {
  fill: #1E90FA;
}
nav.top-nav .row > ul li.cart .box {
  height: 2rem;
  width: 2rem;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  display: none;
}
@media only screen and (min-width:64.0625em) {
  nav.top-nav .row > ul li.cart .box {
    display: block;
  }
}
nav.top-nav .row > ul li.cart .box span {
  transition: all 0.1s;
  font-size: 0.8rem;
  color: #ACCF29;
  font-weight: 700;
  top: 1.5rem;
  left: 0.5125rem;
  position: absolute;
  text-align: center;
  line-height: 0.8rem;
  width: 1rem;
}
nav.top-nav .row > ul li.cart .box rect {
  stroke: #fff;
  transition: all 0.1s;
}
@media only screen and (min-width:64.0625em) {
  nav.top-nav .row > ul li.cart a {
    padding-left: 4rem;
  }
}
nav.top-nav .row > ul li.cart a:hover {
  color: #ACCF29;
}
nav.top-nav .row > ul li.cart a:hover .box span {
  color: #F1852A;
}
nav.top-nav .row > ul li.cart a:hover .box rect {
  stroke: #ACCF29;
}
nav.top-nav .row > ul a {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  line-height: 4.5rem;
  padding: 0 1.25rem;
  display: inline-block;
  font-weight: 700;
}
nav.top-nav .row > ul a:hover {
  color: #1E90FA;
}
nav.top-nav .hamburger {
  transition: all 0.1s linear 0s;
  outline: 0;
  font-size: 1.5rem;
  padding: 0 2rem;
  float: right;
  line-height: 4.5rem;
}
nav.top-nav .hamburger:hover {
  cursor: pointer;
  background: #2A2A2A;
}
@media only screen and (max-width: 64em) {
  nav.top-nav .hamburger.nav-open {
    background: #1A1A1A;
  }
  nav.top-nav .hamburger.nav-open + ul.links {
    display: block !important;
    position: absolute;
    background: #333;
    right: 0;
    top: 4.5rem;
  }
  nav.top-nav .hamburger.nav-open + ul.links li {
    float: none;
  }
  nav.top-nav .hamburger.nav-open + ul.links li a {
    line-height: 3rem;
  }
  nav.top-nav .hamburger.nav-open + ul.links li ul {
    display: none !important;
  }
}

@media only screen and (max-width: 64em) {
  .nav-search:hover {
    background: #333 !important;
  }
}
.nav-search button.toggle-nav-search.show-for-large-up {
  float: left;
  width: auto;
  margin-right: 1rem;
  line-height: 0;
  margin-top: 19px;
}
.nav-search button.toggle-nav-search.show-for-medium-down {
  position: absolute;
  padding: 2px 10px 0px 10px;
  top: 0;
  right: 20px;
  border-radius: 0px;
  height: 37px;
}

.widget.search-form-nav {
  width: 750px;
  float: left;
  height: 50px;
  margin-top: 16px;
  margin-left: 20px;
  margin-right: 20px;
}
@media only screen and (max-width: 64em) {
  .widget.search-form-nav {
    width: 250px;
    float: none;
    margin-bottom: 13px;
  }
}
.widget.search-form-nav input {
  margin-bottom: 0;
  height: auto;
  padding: 11px;
  border-radius: 0.25rem;
}
@media only screen and (max-width: 64em) {
  .widget.search-form-nav input {
    padding-right: 37px;
  }
}
.widget.search-form-nav .no-results-nav {
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 0;
  height: 0;
}
.widget.search-form-nav .no-results-nav .msg-nav {
  display: none;
  font-size: 1rem;
  background: #fff;
  width: 100%;
  padding: 15px;
  text-align: left;
  margin: 0;
  margin-top: 1px;
  border-radius: 0.25rem;
  color: #333;
  white-space: break-spaces;
  letter-spacing: 1px;
  box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.1);
}

.logged-in-as {
  position: fixed;
  right: 0;
  bottom: 0;
  background: rgb(221.25, 238.35, 254.25);
  border: 2px solid rgb(41.25, 149.55, 250.25);
  border-bottom: 0;
  font-size: 0.85rem;
  z-index: 999999;
  padding: 0.4rem 0.66rem 0.3rem;
  margin-right: 2%;
  border-radius: 0.25rem 0.25rem 0 0;
}
.logged-in-as a {
  margin: 0 0 0 0.5rem;
  color: #EF2323;
}

body.no-webp .hero {
  background-image: url(../..//static/images/home/hero-min.jpg);
}

.hero {
  position: relative;
  background: #717171 url(../..//static/images/home/hero-min.jpg.webp) no-repeat center center;
  background-size: cover;
  text-align: center;
}
.hero > .row {
  margin-top: -4.5rem;
  padding-top: 4.5rem;
}
.hero .top-pad, .hero .bot-pad {
  padding-top: 12%;
  padding-top: 0vh;
  width: 100%;
  max-height: 30rem;
  max-height: 40vh;
}
.hero .top-pad {
  padding-top: 10%;
  padding-top: 0vh;
}
@media only screen and (min-width:40.0625em) {
  .hero .top-pad, .hero .bot-pad {
    padding-top: 16%;
    padding-top: 0vh;
  }
}
@media only screen and (min-width:64.0625em) {
  .hero .top-pad, .hero .bot-pad {
    padding-top: 20%;
    padding-top: 0vh;
  }
}
.hero .mention-text {
  margin-top: 0px;
  margin-bottom: 25px;
  font-weight: 700;
}
.hero .mention-logo {
  width: 85px;
  margin-top: 20px;
  margin-bottom: 25px;
}
.hero h1 {
  padding: 0 1rem;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 300;
  margin: 0.2rem auto 0.5rem;
  max-width: 25rem;
}
@media only screen and (min-width:40.0625em) {
  .hero h1 {
    font-size: 3.25rem;
    max-width: none;
  }
}
.hero h1 strong {
  font-weight: 700;
  text-transform: uppercase;
}
.hero h1 span {
  text-transform: uppercase;
  color: #ACCF29;
}
.hero h2 {
  padding: 1rem 1rem 1rem;
  font-size: 1.25rem;
  color: #d4d4d4;
}
@media only screen and (min-width:40.0625em) {
  .hero h2 {
    font-size: 1.5rem;
  }
}
.hero .button {
  color: #344707;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem 1.05rem;
  margin-top: 1rem;
}
.hero .button:hover {
  color: #344707;
}
.hero .columns {
  position: relative;
}
.hero .columns .down {
  background: url(../..//static/images/home/arrow-down.png) no-repeat center center;
  color: #fff;
  position: absolute;
  bottom: 5%;
  left: 50%;
  margin-left: -23px;
  width: 46px;
  height: 24px;
}
.hero:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: " ";
  background: #222;
  opacity: 0.9;
}

body.no-webp .hero-drop {
  background-image: url(../..//static/images/home/hero-min.jpg);
}

.hero-drop {
  position: relative;
  background: #717171 url(../..//static/images/home/hero-min.jpg.webp) no-repeat center center;
  background-size: cover;
}
.hero-drop .center {
  width: 100%;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-drop .sell {
  height: 500px;
  background: rgba(51, 51, 51, 0.9);
  padding: 0;
  text-align: center;
}
@media only screen and (min-width:40.0625em) {
  .hero-drop .sell {
    height: 580px;
  }
}
.hero-drop .sell h1 {
  padding: 0 1rem;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 300;
  margin: 0.2rem auto 0.5rem;
}
@media only screen and (min-width:40.0625em) {
  .hero-drop .sell h1 {
    font-size: 3.25rem;
  }
}
.hero-drop .sell h1 strong {
  font-weight: 700;
  text-transform: uppercase;
}
.hero-drop .sell h1 span {
  text-transform: uppercase;
  color: #ACCF29;
}
.hero-drop .sell h2 {
  padding: 1rem 1rem 1rem;
  font-size: 1.25rem;
  color: #d4d4d4;
}
@media only screen and (min-width:40.0625em) {
  .hero-drop .sell h2 {
    font-size: 1.5rem;
  }
}
.hero-drop .sell .button {
  color: #344707;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem 1.05rem;
  margin-top: 1rem;
}
.hero-drop .sell .button:hover {
  color: #344707;
}
.hero-drop .buy {
  height: 500px;
  background: rgba(107, 109, 100, 0.9);
  padding: 0;
  text-align: center;
}
@media only screen and (min-width:40.0625em) {
  .hero-drop .buy {
    height: 580px;
  }
}
.hero-drop .buy h2 {
  padding: 0 1rem;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 300;
  margin: 0.2rem auto 0.5rem;
}
@media only screen and (min-width:40.0625em) {
  .hero-drop .buy h2 {
    font-size: 3.25rem;
  }
}
.hero-drop .buy h2 strong {
  font-weight: 700;
  text-transform: uppercase;
}
.hero-drop .buy h2 span {
  text-transform: uppercase;
  color: #ACCF29;
}
.hero-drop .buy h3 {
  padding: 1rem 1rem 1rem;
  font-size: 1.25rem;
  color: #d4d4d4;
}
@media only screen and (min-width:40.0625em) {
  .hero-drop .buy h3 {
    font-size: 1.5rem;
  }
}
.hero-drop .buy .button {
  color: #344707;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem 1.05rem;
  margin-top: 1rem;
}
.hero-drop .buy .button:hover {
  color: #344707;
}

.r2-margin {
  margin-top: 16px;
  margin-bottom: 16px;
}

body.itad.no-webp .hero {
  background-image: url(../..//static/images/itad/hero-min.jpg);
}
body.itad .hero {
  background: #717171 url(../..//static/images/itad/hero-min.jpg) no-repeat center center;
  background-size: cover;
}
body.itad .hero:before {
  opacity: 0.4;
}
body.itad .hero h1 {
  margin-top: 8.5rem;
}
body.itad .hero .top-pad {
  padding-top: 4.5vh !important;
}
body.itad .floating.notices-box {
  top: -10px;
}
body.itad .floating.notices-box .alert-box.success {
  font-size: 1rem;
  padding: 0.4rem 1rem;
}

.sell-category-view.heading {
  padding: 2rem 0 1rem;
}
.sell-category-view.grid {
  padding: 1rem 0;
}
.sell-category-view .empty {
  color: #AAA;
  margin-top: 3rem;
  padding: 0 5%;
  max-width: 40rem;
  margin: 3rem auto 4rem;
}
.sell-category-view h2 {
  font-size: 1.25rem;
  margin: 1rem 0 0;
  color: #777;
}
.sell-category-view small {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}
.sell-category-view small a {
  color: #999;
  border-bottom: #ddd dotted 1px;
  padding-bottom: 2px;
}
.sell-category-view ul {
  padding: 1rem;
}
@media only screen and (max-width: 40em) {
  .sell-category-view ul {
    padding: 1rem 0;
  }
}
.sell-category-view ul li {
  padding: 1rem;
}
@media only screen and (max-width: 40em) {
  .sell-category-view ul li {
    padding: 0.5rem;
  }
  .sell-category-view ul li span.success-color {
    font-size: 0.8rem;
  }
}
.sell-category-view ul li .box {
  color: #222;
  background: #fff;
  border-radius: 5px;
  border: 1px #ccc solid;
  display: inline-block;
  width: 100%;
  padding: 1.5rem 0;
  transition: all 0.1s linear 0s;
}
.sell-category-view ul li .box img {
  margin-bottom: 0.75rem;
}
.sell-category-view ul li .box:hover {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.sell-product-view .promise {
  margin: 1rem auto 0;
  width: 96%;
  max-width: 500px;
  text-align: left;
  box-shadow: 0px 13px 62px 0px rgba(139, 141, 152, 0.15);
  padding: 15px;
}
.sell-product-view .promise strong {
  font-size: 1.1rem;
  color: #ACCF29;
}
.sell-product-view .promise a {
  color: #ACCF29;
}
.sell-product-view .promise p {
  font-size: 0.95rem;
  color: #333;
}
.sell-product-view .promise img {
  margin: 0 1rem 3rem 0;
}
.sell-product-view .crumbs {
  padding: 1rem;
}
.sell-product-view .crumbs a {
  color: #999;
}
.sell-product-view .pricing-form-wrap {
  padding: 3rem 1rem;
}
@media only screen and (max-width: 40em) {
  .sell-product-view .pricing-form-wrap {
    padding: 1px 1rem 3rem 1rem;
  }
}
.sell-product-view .pricing-form-wrap > .row {
  background: #fff;
}
.sell-product-view .pricing-form-wrap > .row .columns {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.sell-product-view .pricing-form-wrap > .row .prod-column {
  text-align: center;
}
.sell-product-view .pricing-form-wrap > .row .prod-column p {
  padding: 1rem 2rem;
  margin: 0;
}
.sell-product-view .pricing-form-wrap > .row .prod-column .trade-in {
  color: #888;
  font-weight: 500;
  margin: 0;
  font-size: 1.1rem;
}
.sell-product-view .pricing-form-wrap > .row .prod-column .trade-in strong {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}
@media only screen and (max-width: 40em) {
  .sell-product-view .pricing-form-wrap > .row .prod-column {
    padding: 2rem 8% 0;
  }
}
.sell-product-view .pricing-form-wrap > .row .calc-column {
  border-left: #F1F1F1 1px solid;
  padding: 2rem 5%;
}
@media only screen and (max-width: 40em) {
  .sell-product-view .pricing-form-wrap > .row .calc-column {
    padding-top: 1rem;
    border: none;
  }
}
.sell-product-view .discontinued {
  margin: 6rem 0 0;
  color: #555;
  text-align: center;
  padding: 1rem 1.25rem;
  border: 0.125rem solid #777;
  border-radius: 0.25rem;
  background: #f4f4f4;
}
.sell-product-view .discontinued strong {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
}
.sell-product-view .discontinued p {
  font-size: 0.85rem;
  margin: 0;
}
@media only screen and (min-width:40.0625em) and (max-width:64em) {
  .sell-product-view .discontinued {
    margin: 3rem 0 0;
  }
}
@media only screen and (max-width: 40em) {
  .sell-product-view .discontinued {
    margin: 1rem 0;
  }
}

@media only screen and (min-width:40.0625em) and (max-width:64em) {
  .sell-tag-strong {
    display: block;
  }
}
@media only screen and (max-width: 40em) {
  .sell-tag-strong {
    display: block;
  }
}

.sell-tag {
  background: #e2e2e2;
  padding: 0.3rem 0.8rem;
  border-radius: 0.25em;
  border: 1px solid #c7c7c7;
  font-size: 0.8rem;
  color: #170c0c;
  display: inline-block;
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}

.support-questions h2 {
  font-size: 1.45rem;
  margin: 1.5rem 0 0.75rem;
  font-weight: 400;
  border-bottom: 1px dashed #ccc;
  padding: 0 0 0.5rem;
}
.support-questions h3 {
  margin: 0.5rem 0;
  font-size: 1.25rem;
  color: #F1852A;
}
.support-questions h3 a {
  color: #F1852A;
}

.widget.blog {
  background-color: #f1f1f1;
}
.widget.blog h3 {
  font-size: 2.25rem;
  font-weight: 300;
}
.widget.blog h4 {
  font-weight: 500;
  font-size: 1.15rem;
  text-align: left;
  margin-top: 1rem;
}
.widget.blog h4 a {
  color: #ACCF29;
}
.widget.blog p {
  font-size: 0.95rem;
  color: #444;
  margin: 0;
  text-align: left;
}
.widget.blog li {
  text-align: center;
  padding-bottom: 0;
  padding: 3%;
}
.widget.blog.home {
  padding-bottom: 6rem;
  border-bottom: 1px solid #ddd;
}
.widget.blog .image-zoom {
  overflow: hidden;
}
.widget.blog .blog-home-tiles {
  background: #fff;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s ease-in-out;
}
.widget.blog .blog-home-tiles img {
  transform: scale(1.2);
  transition: transform 0.2s ease-in-out;
}
.widget.blog .blog-home-tiles:hover {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}
.widget.blog .blog-home-tiles:hover img {
  transform: scale(1.3);
}
.widget.blog .content-excerpt {
  margin-top: 0;
  height: 125px;
  overflow-y: scroll;
  text-align: left;
}
.widget.blog .read-more {
  padding-top: 16px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #ddd;
  margin-top: 5px;
  text-align: left;
}

.widget.buy {
  background-color: #808587;
  color: #fff;
  padding: 8% 0 9%;
  text-align: center;
}
.widget.buy p,
.widget.buy h2 {
  font-weight: 300;
  color: #fff;
  font-size: 2.25rem;
}
.widget.buy p {
  font-size: 1.5rem;
}
.widget.buy a {
  transition: opacity 0.1s linear 0s;
}
.widget.buy a:hover {
  opacity: 0.8;
}

.faq-block.widget {
  padding: 2rem 0 3rem;
}
.faq-block .block-wrap {
  border: 1px solid #ddd;
  margin-top: 2rem;
  box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.3);
}
.faq-block .question {
  transition: all 250ms;
  position: relative;
  padding: 1rem 1rem 1rem 3.125rem;
  border-bottom: #ddd 1px solid;
}
.faq-block .question:hover {
  color: #1E90FA;
  cursor: pointer;
}
.faq-block .question span {
  top: 0.3rem;
  left: 1.2rem;
  transition: color 250ms;
  position: absolute;
  font-size: 2rem;
  transform: rotate(-90deg);
  color: #1E90FA;
}
.faq-block .answer {
  background: #eee;
  overflow-y: hidden;
  max-height: 0px;
  transition: all 500ms;
}
.faq-block .answer .answer-wrap {
  padding: 1rem;
}
.faq-block .answer .answer-wrap *:last-child {
  margin-bottom: 0;
}
.faq-block .block.opened .answer {
  max-height: 100rem;
  overflow-y: auto;
}
.faq-block .block.opened .question {
  border-bottom: #F1852A 1px solid;
}
.faq-block .block.opened .question span {
  left: 1.6rem;
  transform: rotate(90deg);
  color: #F1852A;
}
.faq-block .block.opened .question:hover {
  color: #F1852A;
  border-color: #F1852A;
}

.widget.newsletter {
  margin: 0px auto;
}
.widget.newsletter input {
  font-size: 0.9rem;
  font-weight: 300;
  padding: 1rem;
  margin: 0;
  border: none;
  border-radius: 0.25rem 0 0 0.25rem;
  height: auto;
  padding: 0.75rem 1rem;
}
.widget.newsletter input.button {
  background: #ACCF29;
  text-transform: uppercase;
  border-radius: 0 0.25rem 0.25rem 0;
  font-weight: 700;
}
.widget.newsletter input.button:hover {
  color: #fff;
}
.widget.newsletter span {
  padding: 1rem 0 0;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1rem;
}
.widget.newsletter span.success, .widget.newsletter span.alert {
  display: none;
  float: left;
  padding: 0.33rem 0.75rem 0.3rem;
  margin-top: 1rem;
  border-radius: 2px;
  font-weight: 500;
  white-space: normal;
  text-align: left;
}
.widget.newsletter span.success {
  color: #111;
}
.widget.newsletter.newsletter-is-loading {
  opacity: 0.7;
}
.widget.newsletter.newsletter-is-loading * {
  cursor: wait !important;
}

.widget.product-content-blocks {
  background: #fff;
  border-bottom: 1px #CDCDCD solid;
  padding: 4.5rem 3.33% 4rem;
}
.widget.product-content-blocks hr {
  width: 2rem;
  margin: 1rem 0;
  background: #ACCF29;
  height: 0.2rem;
  border: none;
}
.widget.product-content-blocks p {
  font-weight: 300;
}
.widget.product-content-blocks a {
  font-weight: 500;
}
.widget.product-content-blocks h4 {
  font-weight: 500;
  margin-top: 3rem;
}
@media only screen and (min-width:40.0625em) {
  .widget.product-content-blocks h4 {
    margin-top: 0;
  }
}

.content-block-alignment {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
}

.content-block-space {
  margin-top: 3rem;
}

.widget.reviews {
  padding-bottom: 0;
  border-bottom: 1px solid #ddd;
}
.widget.reviews .review-quote {
  background: #eee;
  padding: 18px 15px;
  border: 1px solid #ddd;
  border-radius: 0.25em;
  position: relative;
  font-size: 21px;
}
.widget.reviews .review-quote::before {
  content: "";
  position: absolute;
  left: 40px;
  bottom: -52px;
  border-right: 52px solid transparent;
  border-top: 52px solid #ddd;
}
.widget.reviews .review-quote::after {
  content: "";
  position: absolute;
  left: 41px;
  bottom: -50px;
  border-right: 50px solid transparent;
  border-top: 50px solid #eee;
}
.widget.reviews .siema {
  margin: 25px 25px 0;
}
.widget.reviews .button-wrap {
  width: 100%;
  margin: 0 auto;
  margin-top: 30px;
  text-align: center;
}
.widget.reviews .slider {
  display: none;
}
.widget.reviews.show-good .slider.good-slider, .widget.reviews.show-bad .slider.bad-slider {
  display: block;
}
.widget.reviews .meta-wrap {
  margin-top: 55px;
  text-align: left;
}
.widget.reviews .author {
  font-size: 18px;
  font-weight: 700;
  color: #f8951d;
}
.widget.reviews .offer-num {
  font-size: 15px;
  color: #666;
}
.widget.reviews .button {
  width: 200px;
  font-size: 1.2rem;
  padding: 0.55rem 1.5rem;
  cursor: pointer;
  background-color: #eee !important;
  color: #333 !important;
  border-bottom: 3px solid #999 !important;
  margin: 0 10px 20px;
  display: inline-block;
}
.widget.reviews.show-good .button.good, .widget.reviews.show-bad .button.bad {
  width: 200px;
  font-size: 1.2rem;
  padding: 0.55rem 1.5rem;
  cursor: pointer;
  background-color: #accf29 !important;
  color: #fff !important;
  border-bottom: 3px solid #7b951d !important;
}
.widget.reviews .slide {
  margin: 0 25px;
}
.widget.reviews .slider {
  position: relative;
}
.widget.reviews .slide-control {
  top: 0;
  position: absolute;
  z-index: 100;
  font-size: 40px;
  display: inline-block;
  cursor: pointer;
  padding: 5px 10px;
  opacity: 0.3;
  transition: opacity 100ms;
}
.widget.reviews .slide-control:hover {
  opacity: 0.5;
}
.widget.reviews .slide-control.slide-next {
  left: 0;
}
.widget.reviews .slide-control.slide-prev {
  right: 0;
}

.widget.sell h2,
.widget.sell .sell-page-title {
  font-size: 2.25rem;
  text-align: center;
  font-weight: 500;
}
.widget.sell .sell-page-title {
  margin-bottom: 0.5rem;
  margin-top: 0.2rem;
}
.widget.sell p {
  font-size: 1.25rem;
  text-align: center;
  color: #666;
}
.widget.sell .category-link {
  position: relative;
  float: left;
  width: 100%;
  display: inline-block;
  padding: 2rem 10%;
}
@media only screen and (min-width:40.0625em) and (max-width:64em) {
  .widget.sell .category-link {
    padding: 25% 15%;
  }
}
.widget.sell .category-link h4 {
  color: #333;
  font-weight: 500;
  transition: opacity 0.1s linear 0s;
}
.widget.sell .category-link .category-image {
  margin: 0px auto;
  position: relative;
  width: 120px;
  height: 120px;
  max-width: 100%;
}
.widget.sell .category-link .category-image * {
  cursor: pointer;
}
.widget.sell .category-link .category-image svg {
  height: auto;
  width: 100%;
  margin: 0 auto;
}
.widget.sell .category-link .category-image svg.macbook-svg {
  margin-top: 1rem;
}
.widget.sell .category-link .category-image svg * {
  stroke: #AAA !important;
}
.widget.sell .category-link .category-image svg *.fill-path {
  fill: #AAA !important;
  stroke: none !important;
}
.widget.sell .category-link:hover h4 {
  color: #ACCF29;
}
.widget.sell .category-link:hover .category-image svg * {
  stroke: #ACCF29 !important;
}
.widget.sell .category-link:hover .category-image svg *.fill-path {
  fill: #ACCF29 !important;
  stroke: none !important;
}
.widget.sell h4 {
  font-size: 1.25rem;
  font-weight: 300;
  text-align: center;
  margin: 1rem 0 0;
  color: #888;
}
@media only screen and (min-width:40.0625em) and (max-width:64em) {
  .widget.sell h4 {
    font-size: 1rem;
  }
}
.widget.sell ul {
  background: #fbfbfb;
  border: #ccc 1px solid;
}
@media only screen and (min-width:40.0625em) {
  .widget.sell ul {
    margin: 0 1rem;
  }
}
.widget.sell li {
  border-color: #4F5354;
  padding: 0;
  transition: all 0.1s linear 0s;
}
.widget.sell li:hover {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
  background: #fbfbfb;
}
.widget.sell li.last {
  border-bottom: 1px solid #ccc;
  display: none;
  width: 1px;
  box-shadow: none !important;
  background: transparent !important;
}
@media only screen and (min-width:40.0625em) and (max-width:64em) {
  .widget.sell li.last {
    display: block;
  }
}
.widget.sell .search-form {
  max-width: 50rem;
  margin: 0 auto 0;
}
@media only screen and (min-width:40.0625em) {
  .widget.sell .search-form {
    padding: 0 1rem;
  }
}
.widget.sell .sell-icon-margin {
  margin-top: 1rem;
}
.widget.sell.home {
  padding-bottom: 6rem;
  border-bottom: 1px solid #ddd;
}

.search-tag-model-text {
  font-size: 0.6875rem;
}

.search-tag-text {
  font-size: 0.9375rem;
}

.search-term-match {
  background-color: rgb(255, 239, 95);
  padding: 0.2rem 0.1rem;
}

.search-results-div {
  margin: 0 1.5rem;
}

.search-results-text-light-grey .search-results-text {
  background: #f1f1f1 !important;
}

.search-results-text {
  padding: 0 0.4rem 0 0;
  background: #fff;
  color: #777;
}

.search-results-hr {
  margin: 0 !important;
  margin-top: -0.6875rem !important;
}

.input-div-container {
  position: relative;
}

.icon-div-container {
  position: absolute;
  right: 10px;
  top: calc(50% - 10px);
}

.clear-div-container {
  position: absolute;
  right: 10px;
  top: calc(50% - 15px);
  cursor: pointer;
}
.clear-div-container i {
  color: #777;
  font-size: 1.3rem;
}

.search-loader {
  position: relative;
  height: 20px;
  width: 20px;
  display: inline-block;
  animation: around 5s infinite;
}

@keyframes around {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.search-loader::after,
.search-loader::before {
  content: "";
  background: white;
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-width: 2px;
  border-color: #1E90FA #1E90FA transparent transparent;
  border-style: solid;
  border-radius: 20px;
  box-sizing: border-box;
  top: 0;
  left: 0;
  animation: around 0.7s ease-in-out infinite;
}

.search-loader::after {
  animation: around 0.7s ease-in-out 0.1s infinite;
  background: transparent;
}

.widget.search-form input {
  border: 1px solid #bbb;
  height: auto;
  padding: 11px;
  border-radius: 0.25rem;
  margin: 0;
  font-size: 1rem;
}
.widget.search-form .no-results {
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 0;
  height: 0;
}
.widget.search-form .no-results .msg {
  display: none;
  background: #fff;
  width: 100%;
  padding: 15px;
  text-align: left;
  margin: 0;
  margin-top: -25px;
  border-radius: 0.25rem;
  color: #333;
  white-space: break-spaces;
  letter-spacing: 1px;
  box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.1);
}

.widget.three-steps {
  text-align: center;
}
.widget.three-steps li {
  padding: 0 2%;
}
.widget.three-steps h3 {
  font-size: 1.35rem;
  font-weight: 500;
  color: #333;
}
.widget.three-steps h3 strong {
  font-weight: 700;
}
@media only screen and (max-width: 40em) {
  .widget.three-steps h3 {
    margin: 4% auto 3%;
  }
}
@media only screen and (min-width:40.0625em) {
  .widget.three-steps h3 {
    margin: 9% auto;
  }
}
.widget.three-steps h3.get-cash {
  margin: 0 auto 2% auto;
  color: #555;
  font-weight: 300;
  font-size: 2.25rem;
}
.widget.three-steps h3.get-cash strong {
  font-weight: 500;
  color: #ACCF29;
}
.widget.three-steps p {
  max-width: 25rem;
  margin: 0 auto;
}
.widget.three-steps .border-box {
  border: none;
  padding: 5%;
}
@media only screen and (max-width: 40em) {
  .widget.three-steps .border-box {
    padding: 0px 10%;
  }
}
@media only screen and (min-width:64.0625em) and (max-width:90em) {
  .widget.three-steps .border-box {
    padding: 10%;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
}
.widget.three-steps div.img svg {
  max-height: 5rem;
  margin-top: 2rem;
  color: #ACCF29;
}
.widget.three-steps.home {
  border-bottom: 1px solid #ddd;
  padding-bottom: 6rem;
}

.widget.why-sell ul {
  margin: 0;
  list-style-type: none;
  padding: 1rem 0 0.5rem 0;
}
.widget.why-sell li {
  background: #fff url(../..//static/images/widgets/why-sell/check.png) left center no-repeat;
  min-height: 26px;
  padding: 0 0 0 2.5rem;
  line-height: 2.3rem;
  font-size: 0.9rem;
  color: #555;
}

.widget.why-use-us {
  text-align: center;
  overflow: visible;
}
.widget.why-use-us .heading {
  margin: 1% auto 5%;
  text-align: center;
  color: #2d3030;
}
.widget.why-use-us .heading h3 {
  font-size: 2.25rem;
  font-weight: 300;
}
@media only screen and (max-width: 40em) {
  .widget.why-use-us .heading h3 {
    font-size: 1.25rem;
  }
}
.widget.why-use-us .heading p {
  font-size: 1.25rem;
  text-align: center;
  color: #666;
}
@media only screen and (max-width: 40em) {
  .widget.why-use-us .heading p {
    font-size: 1rem;
  }
}
.widget.why-use-us ul {
  overflow: visible;
}
@media only screen and (min-width:40.0625em) {
  .widget.why-use-us ul {
    padding: 10px 3% 10px;
  }
}
.widget.why-use-us ul li {
  text-align: center;
  padding: 3% 1% 3% 1%;
  transition: all 0.1s linear 0s;
}
.widget.why-use-us ul li:hover {
  background: #eee;
}
@media only screen and (min-width:40.0625em) {
  .widget.why-use-us ul li:hover {
    background: #f9f9f9;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
  }
}
@media only screen and (max-width: 40em) {
  .widget.why-use-us ul li {
    padding: 0% 1% 0% 1%;
  }
}
.widget.why-use-us ul li div {
  width: 100%;
}
.widget.why-use-us ul h5 {
  font-size: 1.5rem;
}
@media only screen and (max-width: 40em) {
  .widget.why-use-us ul h5 {
    font-size: 1.2rem;
  }
}
.widget.why-use-us ul p {
  font-size: 0.9rem;
  color: #666;
}
.widget.why-use-us .border-box {
  border-color: #CCC;
}
.widget.why-use-us .border-box p {
  margin: 0;
}
.widget.why-use-us .border-box li {
  border-color: #CCC;
}
.widget.why-use-us div.img {
  background: center center no-repeat;
  width: 100%;
  height: 125px;
}
@media only screen and (max-width: 40em) {
  .widget.why-use-us div.img.shrink-img {
    background-size: 75px;
    height: 100px;
    margin: 0;
  }
}
.widget.why-use-us div.img.fast-money {
  height: 64px;
  margin: 2rem 0;
}
@media only screen and (max-width: 40em) {
  .widget.why-use-us div.img.fast-money {
    background-size: 75px;
    height: 100px;
    margin: 0;
  }
}
@media only screen and (max-width: 40em) {
  .widget.why-use-us div.img {
    background-size: 115px;
    height: 100px;
  }
}
.widget.why-use-us .as-seen-on {
  padding-top: 1.5625rem;
}
@media only screen and (max-width: 40em) {
  .widget.why-use-us .as-seen-on {
    margin-bottom: 1.5625rem;
  }
  .widget.why-use-us .as-seen-on a img {
    width: 50px;
    height: 50px;
  }
}
.widget.why-use-us .why-use-us-bbb {
  display: flex;
  align-items: center !important;
}
.widget.why-use-us .why-use-us-bbb div {
  display: flex;
  justify-content: center !important;
}

.autocomplete-suggestions {
  text-align: left;
  cursor: default;
  border: 1px solid #ccc;
  border-top: 0;
  background: #fff;
  box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.1);
  /* core styles should not be changed */
  position: absolute;
  display: none;
  z-index: 9999;
  max-height: 254px;
  overflow: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}

.autocomplete-suggestion {
  position: relative;
  padding: 0 0.6em;
  line-height: 23px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.02em;
  color: #333;
}

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

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

/**
 * * Global Styles
 * */
body {
  padding-top: 4.5rem;
  background: #fff;
}
body.empty {
  padding-top: 0;
}

section.white,
.section.white {
  background-color: #FFF;
}
section.light-grey,
.section.light-grey {
  background-color: #F1F1F1;
}
section.widget, section.margin, section.content, section.padded-content,
.section.widget,
.section.margin,
.section.content,
.section.padded-content {
  padding: 5rem 0 6rem;
}
section.login-content,
.section.login-content {
  padding: 1rem 0 3rem;
}
section.top-block,
.section.top-block {
  margin: 0 0 3rem;
  padding: 4rem 0.5rem 4.5rem;
  background: #444;
}
section.top-block h1,
.section.top-block h1 {
  color: #fff;
  margin-top: 0;
}
section.top-block p,
.section.top-block p {
  color: #dedede;
  max-width: 900px;
  margin: 0 auto;
}
section.no-top-padding,
.section.no-top-padding {
  padding-top: 0;
}
section.no-bottom-padding,
.section.no-bottom-padding {
  padding-bottom: 0;
}

h1.main-header {
  font-size: 3rem;
}

h2.main-header {
  font-size: 2rem;
}

.covid-size {
  font-size: 2.3rem !important;
}

.main-header {
  text-align: center;
  border-bottom: 1px solid #DFDFDF;
  padding: 2.1rem 0 2.25rem;
  margin: 0 0 2rem;
  position: relative;
  color: #111;
  line-height: 1;
}
.main-header a {
  color: #111;
}
.main-header.light-grey:after {
  position: absolute;
  bottom: -2.0625rem;
  left: 0;
  content: " ";
  width: 100%;
  height: 2rem;
  display: block;
  background: #F1F1F1;
}
.main-header small {
  font-size: 1.33rem;
}

h2.cap-style, h3.cap-style, h4.cap-style {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  margin: 0;
  line-height: 1.6;
}

.message-banner {
  width: 100%;
  position: fixed;
  top: 0;
  height: 45px;
  background: #accf29;
  color: #344707;
  line-height: 1;
  padding: 14px;
  font-size: 1rem;
  z-index: 1001;
}
.message-banner strong {
  font-size: 0.9rem;
}
.message-banner:hover {
  background: #8aa621;
  color: #344707;
}
@media only screen and (max-width: 40em) {
  .message-banner {
    padding: 0.4375rem;
  }
}

nav.top-nav-message-banner {
  top: 45px;
}

body.body-message-banner {
  padding-top: 7.3em;
}

fieldset {
  padding: 0.5rem 1rem;
}
fieldset legend {
  font-size: 0.875rem;
  text-transform: uppercase;
}

.panel {
  overflow: hidden;
  background: #fff;
  border: none;
}
@media only screen and (min-width:40.0625em) {
  .panel {
    border-radius: 5px;
  }
}
.panel .panel {
  border: 1px solid #ccc;
  border-radius: 0;
}
.panel .panel-heading {
  margin: -1.25rem -1.25rem 1.25rem;
  padding: 1rem 1.25rem;
}
@media only screen and (min-width:40.0625em) {
  .panel.half-left {
    margin-right: 1%;
    width: 49%;
  }
}
@media only screen and (min-width:40.0625em) {
  .panel.half-right {
    margin-left: 1%;
    width: 49%;
  }
}

.panel-heading {
  font-size: 0.9rem;
  border-bottom: 1px solid #eee;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem 0;
  background: #f8f8f8;
}
.panel-heading .button.mini {
  margin: -0.2rem -0.2rem 0 0.7rem;
}

.border-box {
  float: left;
}

@media only screen and (max-width: 40em) {
  .border-box {
    border: none;
    padding: 1% 3%;
    width: 100%;
  }
}
@media only screen and (max-width: 40em) {
  [class*=block-grid-] li.sm-l {
    border-left: 1px solid #ccc;
  }
  [class*=block-grid-] li.sm-r {
    border-right: 1px solid #ccc;
  }
  [class*=block-grid-] li.sm-b {
    border-bottom: 1px solid #ccc;
  }
  [class*=block-grid-] li.sm-t {
    border-top: 1px solid #ccc;
  }
}
@media only screen and (min-width:40.0625em) and (max-width:64em) {
  [class*=block-grid-] li {
    padding: 4%;
  }
  [class*=block-grid-] li.md-l {
    border-left: 1px solid #ccc;
  }
  [class*=block-grid-] li.md-r {
    border-right: 1px solid #ccc;
  }
  [class*=block-grid-] li.md-b {
    border-bottom: 1px solid #ccc;
  }
}
@media only screen and (min-width:64.0625em) {
  [class*=block-grid-] li {
    padding: 4%;
  }
  [class*=block-grid-] li.lg-l {
    border-left: 1px solid #ccc;
  }
  [class*=block-grid-] li.lg-r {
    border-right: 1px solid #ccc;
  }
  [class*=block-grid-] li.lg-t {
    border-top: 1px solid #ccc;
  }
  [class*=block-grid-] li.lg-b {
    border-bottom: 1px solid #ccc;
  }
}

.autocomplete-suggestions {
  max-height: 400px !important;
  border-radius: 0.25rem;
}

.autocomplete-suggestion {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #f0f0f0;
  white-space: break-spaces;
  transition: 0.1s background-color ease-in-out;
}

.sell-search-img {
  display: inline-block;
  width: 60px;
  height: 60px;
  margin: 0;
  padding: 5px;
  vertical-align: middle;
}
@media only screen and (max-width: 40em) {
  .sell-search-img {
    width: 55px;
    height: 55px;
  }
}

.sell-search-product {
  width: 35%;
  display: inline-block;
  color: #222222;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  margin-top: -2px;
  padding: 5px;
  vertical-align: middle;
}
@media only screen and (max-width: 40em) {
  .sell-search-product {
    width: calc(100% - 55px);
    font-size: 1rem;
    word-wrap: break-word;
  }
}

.sell-search-price {
  float: right;
  display: inline-block;
  margin-top: 8px;
  margin-right: 1em;
  padding: 5px;
  vertical-align: middle;
}
@media only screen and (max-width: 40em) {
  .sell-search-price {
    display: none;
  }
}
.sell-search-price .pre-text {
  display: inline-block;
  color: #accf29;
  margin-bottom: 3px;
  line-height: 1.125rem;
  font-size: 1.15rem;
}
.sell-search-price .price {
  display: inline-block;
  color: #accf29;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.8125rem;
  font-size: 1.5rem;
}

footer.footer {
  background: #323031;
  padding: 2.5rem 0 0;
  color: #fff;
  font-size: 0.75rem;
}
footer.footer a {
  font-size: 0.75rem;
  color: #ccc;
  font-weight: 300;
}
footer.footer a:hover {
  opacity: 0.6;
}
footer.footer a.social {
  padding-left: 1.75rem;
  background: transparent center left no-repeat;
}
footer.footer a.social.insta {
  background-image: url(../..//static/images/social/instagram.png);
}
footer.footer a.social.fb {
  background-image: url(../..//static/images/social/facebook.png);
}
footer.footer a.social.yt {
  background-image: url(../..//static/images/social/youtube.png);
}
footer.footer a.social.x {
  background-image: url(../..//static/images/social/x.png);
}
@media only screen and (min-width:40.0625em) and (max-width:64em) {
  footer.footer ul,
  footer.footer h6 {
    padding-left: 3rem;
  }
}
footer.footer h6 {
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 0.75rem;
}
footer.footer ul {
  margin: 0;
}
footer.footer li {
  text-transform: uppercase;
  padding: 0;
  list-style-type: none;
  margin-bottom: 0.5rem;
}
footer.footer li span {
  font-size: 0.75rem;
  font-weight: 600;
}
@media only screen and (max-width: 40em) {
  footer.footer a {
    font-size: 1rem;
  }
  footer.footer h6 {
    font-size: 1.5rem;
    margin: 0.6rem;
    font-weight: 600;
  }
  footer.footer li {
    font-size: 1.25rem;
    margin-bottom: 0;
  }
  footer.footer li a,
  footer.footer li span {
    width: 100%;
    padding: 0.6rem;
    font-size: 1rem;
    float: left;
  }
  footer.footer li a.social,
  footer.footer li span.social {
    background-position: 1rem center;
    padding-left: 3rem;
  }
  footer.footer li a:hover,
  footer.footer li a.social:hover {
    background-color: #333;
  }
}
footer.footer .widget.newsletter {
  margin-top: 3rem;
}
@media only screen and (min-width:64.0625em) {
  footer.footer .widget.newsletter {
    margin-top: 0rem;
  }
}
footer.footer .subscribe hr {
  border-color: #474747;
}
footer.footer .subscribe .spacer {
  padding: 0 0.5rem 0 0.6rem;
}
@media only screen and (max-width: 40em) {
  footer.footer .subscribe {
    font-size: 1rem;
  }
  footer.footer .subscribe .widget.newsletter {
    margin-top: 0;
  }
  footer.footer .subscribe .widget.newsletter span {
    font-size: 1rem;
  }
  footer.footer .subscribe .form-wrap {
    padding: 1rem;
  }
}
footer.footer .bottom {
  margin-top: 1.75rem;
  background: #404040;
  padding: 1.5rem 0;
}
footer.footer .bottom a {
  color: #bbb;
  border-bottom: 1px dotted #888;
}
footer.footer .bottom p, footer.footer .bottom a {
  color: #eee;
  font-size: 0.8rem;
  font-weight: 300;
}
footer.footer .bottom p {
  margin-bottom: 0.5rem;
}
footer.footer .bottom p + p {
  margin: 0;
}
@media only screen and (max-width: 40em) {
  footer.footer .bottom {
    text-align: center;
    padding: 3rem 0;
    margin-top: 3rem;
  }
  footer.footer .bottom p, footer.footer .bottom a {
    font-size: 1rem;
  }
  footer.footer .bottom p {
    margin-bottom: 2rem;
  }
}
footer.footer .heap-badge {
  text-align: right;
}
footer.footer .heap-badge img {
  margin: -11px 0;
}
@media only screen and (max-width: 40em) {
  footer.footer .heap-badge {
    text-align: center;
  }
  footer.footer .heap-badge img {
    margin: 1rem 0 0 0;
  }
}

/**
 * * Two-Factor Authentication
 * */
.two-factor-fieldset {
  border-radius: 0.25rem;
  background: #eee;
}
.two-factor-fieldset .icon-size {
  font-size: 2rem;
}
.two-factor-fieldset .label-size {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 1rem;
}
.two-factor-fieldset .size-0-8 {
  font-size: 0.8rem;
}
.two-factor-fieldset .margin-b-0-5 {
  margin-bottom: 0.5rem;
}
.two-factor-fieldset input {
  font-size: 1rem !important;
}
.two-factor-fieldset .two-factor-text-label {
  margin: 0 0 1rem 1.5rem;
  display: block;
}
.two-factor-fieldset .security-keys-list {
  font-size: 0.9rem;
  padding: 0.3rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.two-factor-fieldset .delete-button-right {
  margin-left: auto;
}

/**
 * * Account
 * */
.veriff-root {
  margin: 0 auto;
}
