/*!
Theme Name: Shepherds Friendly
Author: SF Marketing Dept
Description: Custom Wordpress theme for the Shepherds Friendly Society website
Version: 0.0.1
*/
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/

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

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

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

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

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

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

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

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

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

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

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

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

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

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

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

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

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

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

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

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

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

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

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

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

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

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

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

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

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

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

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

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

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

h1 {
  margin: .67em 0;
  font-size: 2em;
}

mark {
  color: #000;
  background: #ff0;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  height: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace,monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

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

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid silver;
}

legend {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: 700;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td,
th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

@media print {
  *,
  :after,
  :before {
    color: #000!important;
    text-shadow: none!important;
    background: 0 0!important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  blockquote,
  pre {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  img,
  tr {
    page-break-inside: avoid;
  }

  img {
    max-width: 100%!important;
  }

  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .navbar {
    display: none;
  }

  .btn>.caret,
  .dropup>.btn>.caret {
    border-top-color: #000!important;
  }

  .label {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse!important;
  }

  .table td,
  .table th {
    background-color: #fff!important;
  }

  .table-bordered td,
  .table-bordered th {
    border: 1px solid #ddd!important;
  }
}

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url(../fonts/glyphicons-halflings-regular.eot);
  src: url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');
}

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.glyphicon-asterisk:before {
  content: "\002a";
}

.glyphicon-plus:before {
  content: "\002b";
}

.glyphicon-eur:before,
.glyphicon-euro:before {
  content: "\20ac";
}

.glyphicon-minus:before {
  content: "\2212";
}

.glyphicon-cloud:before {
  content: "\2601";
}

.glyphicon-envelope:before {
  content: "\2709";
}

.glyphicon-pencil:before {
  content: "\270f";
}

.glyphicon-glass:before {
  content: "\e001";
}

.glyphicon-music:before {
  content: "\e002";
}

.glyphicon-search:before {
  content: "\e003";
}

.glyphicon-heart:before {
  content: "\e005";
}

.glyphicon-star:before {
  content: "\e006";
}

.glyphicon-star-empty:before {
  content: "\e007";
}

.glyphicon-user:before {
  content: "\e008";
}

.glyphicon-film:before {
  content: "\e009";
}

.glyphicon-th-large:before {
  content: "\e010";
}

.glyphicon-th:before {
  content: "\e011";
}

.glyphicon-th-list:before {
  content: "\e012";
}

.glyphicon-ok:before {
  content: "\e013";
}

.glyphicon-remove:before {
  content: "\e014";
}

.glyphicon-zoom-in:before {
  content: "\e015";
}

.glyphicon-zoom-out:before {
  content: "\e016";
}

.glyphicon-off:before {
  content: "\e017";
}

.glyphicon-signal:before {
  content: "\e018";
}

.glyphicon-cog:before {
  content: "\e019";
}

.glyphicon-trash:before {
  content: "\e020";
}

.glyphicon-home:before {
  content: "\e021";
}

.glyphicon-file:before {
  content: "\e022";
}

.glyphicon-time:before {
  content: "\e023";
}

.glyphicon-road:before {
  content: "\e024";
}

.glyphicon-download-alt:before {
  content: "\e025";
}

.glyphicon-download:before {
  content: "\e026";
}

.glyphicon-upload:before {
  content: "\e027";
}

.glyphicon-inbox:before {
  content: "\e028";
}

.glyphicon-play-circle:before {
  content: "\e029";
}

.glyphicon-repeat:before {
  content: "\e030";
}

.glyphicon-refresh:before {
  content: "\e031";
}

.glyphicon-list-alt:before {
  content: "\e032";
}

.glyphicon-lock:before {
  content: "\e033";
}

.glyphicon-flag:before {
  content: "\e034";
}

.glyphicon-headphones:before {
  content: "\e035";
}

.glyphicon-volume-off:before {
  content: "\e036";
}

.glyphicon-volume-down:before {
  content: "\e037";
}

.glyphicon-volume-up:before {
  content: "\e038";
}

.glyphicon-qrcode:before {
  content: "\e039";
}

.glyphicon-barcode:before {
  content: "\e040";
}

.glyphicon-tag:before {
  content: "\e041";
}

.glyphicon-tags:before {
  content: "\e042";
}

.glyphicon-book:before {
  content: "\e043";
}

.glyphicon-bookmark:before {
  content: "\e044";
}

.glyphicon-print:before {
  content: "\e045";
}

.glyphicon-camera:before {
  content: "\e046";
}

.glyphicon-font:before {
  content: "\e047";
}

.glyphicon-bold:before {
  content: "\e048";
}

.glyphicon-italic:before {
  content: "\e049";
}

.glyphicon-text-height:before {
  content: "\e050";
}

.glyphicon-text-width:before {
  content: "\e051";
}

.glyphicon-align-left:before {
  content: "\e052";
}

.glyphicon-align-center:before {
  content: "\e053";
}

.glyphicon-align-right:before {
  content: "\e054";
}

.glyphicon-align-justify:before {
  content: "\e055";
}

.glyphicon-list:before {
  content: "\e056";
}

.glyphicon-indent-left:before {
  content: "\e057";
}

.glyphicon-indent-right:before {
  content: "\e058";
}

.glyphicon-facetime-video:before {
  content: "\e059";
}

.glyphicon-picture:before {
  content: "\e060";
}

.glyphicon-map-marker:before {
  content: "\e062";
}

.glyphicon-adjust:before {
  content: "\e063";
}

.glyphicon-tint:before {
  content: "\e064";
}

.glyphicon-edit:before {
  content: "\e065";
}

.glyphicon-share:before {
  content: "\e066";
}

.glyphicon-check:before {
  content: "\e067";
}

.glyphicon-move:before {
  content: "\e068";
}

.glyphicon-step-backward:before {
  content: "\e069";
}

.glyphicon-fast-backward:before {
  content: "\e070";
}

.glyphicon-backward:before {
  content: "\e071";
}

.glyphicon-play:before {
  content: "\e072";
}

.glyphicon-pause:before {
  content: "\e073";
}

.glyphicon-stop:before {
  content: "\e074";
}

.glyphicon-forward:before {
  content: "\e075";
}

.glyphicon-fast-forward:before {
  content: "\e076";
}

.glyphicon-step-forward:before {
  content: "\e077";
}

.glyphicon-eject:before {
  content: "\e078";
}

.glyphicon-chevron-left:before {
  content: "\e079";
}

.glyphicon-chevron-right:before {
  content: "\e080";
}

.glyphicon-plus-sign:before {
  content: "\e081";
}

.glyphicon-minus-sign:before {
  content: "\e082";
}

.glyphicon-remove-sign:before {
  content: "\e083";
}

.glyphicon-ok-sign:before {
  content: "\e084";
}

.glyphicon-question-sign:before {
  content: "\e085";
}

.glyphicon-info-sign:before {
  content: "\e086";
}

.glyphicon-screenshot:before {
  content: "\e087";
}

.glyphicon-remove-circle:before {
  content: "\e088";
}

.glyphicon-ok-circle:before {
  content: "\e089";
}

.glyphicon-ban-circle:before {
  content: "\e090";
}

.glyphicon-arrow-left:before {
  content: "\e091";
}

.glyphicon-arrow-right:before {
  content: "\e092";
}

.glyphicon-arrow-up:before {
  content: "\e093";
}

.glyphicon-arrow-down:before {
  content: "\e094";
}

.glyphicon-share-alt:before {
  content: "\e095";
}

.glyphicon-resize-full:before {
  content: "\e096";
}

.glyphicon-resize-small:before {
  content: "\e097";
}

.glyphicon-exclamation-sign:before {
  content: "\e101";
}

.glyphicon-gift:before {
  content: "\e102";
}

.glyphicon-leaf:before {
  content: "\e103";
}

.glyphicon-fire:before {
  content: "\e104";
}

.glyphicon-eye-open:before {
  content: "\e105";
}

.glyphicon-eye-close:before {
  content: "\e106";
}

.glyphicon-warning-sign:before {
  content: "\e107";
}

.glyphicon-plane:before {
  content: "\e108";
}

.glyphicon-calendar:before {
  content: "\e109";
}

.glyphicon-random:before {
  content: "\e110";
}

.glyphicon-comment:before {
  content: "\e111";
}

.glyphicon-magnet:before {
  content: "\e112";
}

.glyphicon-chevron-up:before {
  content: "\e113";
}

.glyphicon-chevron-down:before {
  content: "\e114";
}

.glyphicon-retweet:before {
  content: "\e115";
}

.glyphicon-shopping-cart:before {
  content: "\e116";
}

.glyphicon-folder-close:before {
  content: "\e117";
}

.glyphicon-folder-open:before {
  content: "\e118";
}

.glyphicon-resize-vertical:before {
  content: "\e119";
}

.glyphicon-resize-horizontal:before {
  content: "\e120";
}

.glyphicon-hdd:before {
  content: "\e121";
}

.glyphicon-bullhorn:before {
  content: "\e122";
}

.glyphicon-bell:before {
  content: "\e123";
}

.glyphicon-certificate:before {
  content: "\e124";
}

.glyphicon-thumbs-up:before {
  content: "\e125";
}

.glyphicon-thumbs-down:before {
  content: "\e126";
}

.glyphicon-hand-right:before {
  content: "\e127";
}

.glyphicon-hand-left:before {
  content: "\e128";
}

.glyphicon-hand-up:before {
  content: "\e129";
}

.glyphicon-hand-down:before {
  content: "\e130";
}

.glyphicon-circle-arrow-right:before {
  content: "\e131";
}

.glyphicon-circle-arrow-left:before {
  content: "\e132";
}

.glyphicon-circle-arrow-up:before {
  content: "\e133";
}

.glyphicon-circle-arrow-down:before {
  content: "\e134";
}

.glyphicon-globe:before {
  content: "\e135";
}

.glyphicon-wrench:before {
  content: "\e136";
}

.glyphicon-tasks:before {
  content: "\e137";
}

.glyphicon-filter:before {
  content: "\e138";
}

.glyphicon-briefcase:before {
  content: "\e139";
}

.glyphicon-fullscreen:before {
  content: "\e140";
}

.glyphicon-dashboard:before {
  content: "\e141";
}

.glyphicon-paperclip:before {
  content: "\e142";
}

.glyphicon-heart-empty:before {
  content: "\e143";
}

.glyphicon-link:before {
  content: "\e144";
}

.glyphicon-phone:before {
  content: "\e145";
}

.glyphicon-pushpin:before {
  content: "\e146";
}

.glyphicon-usd:before {
  content: "\e148";
}

.glyphicon-gbp:before {
  content: "\e149";
}

.glyphicon-sort:before {
  content: "\e150";
}

.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

.glyphicon-sort-by-order:before {
  content: "\e153";
}

.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

.glyphicon-sort-by-attributes:before {
  content: "\e155";
}

.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

.glyphicon-unchecked:before {
  content: "\e157";
}

.glyphicon-expand:before {
  content: "\e158";
}

.glyphicon-collapse-down:before {
  content: "\e159";
}

.glyphicon-collapse-up:before {
  content: "\e160";
}

.glyphicon-log-in:before {
  content: "\e161";
}

.glyphicon-flash:before {
  content: "\e162";
}

.glyphicon-log-out:before {
  content: "\e163";
}

.glyphicon-new-window:before {
  content: "\e164";
}

.glyphicon-record:before {
  content: "\e165";
}

.glyphicon-save:before {
  content: "\e166";
}

.glyphicon-open:before {
  content: "\e167";
}

.glyphicon-saved:before {
  content: "\e168";
}

.glyphicon-import:before {
  content: "\e169";
}

.glyphicon-export:before {
  content: "\e170";
}

.glyphicon-send:before {
  content: "\e171";
}

.glyphicon-floppy-disk:before {
  content: "\e172";
}

.glyphicon-floppy-saved:before {
  content: "\e173";
}

.glyphicon-floppy-remove:before {
  content: "\e174";
}

.glyphicon-floppy-save:before {
  content: "\e175";
}

.glyphicon-floppy-open:before {
  content: "\e176";
}

.glyphicon-credit-card:before {
  content: "\e177";
}

.glyphicon-transfer:before {
  content: "\e178";
}

.glyphicon-cutlery:before {
  content: "\e179";
}

.glyphicon-header:before {
  content: "\e180";
}

.glyphicon-compressed:before {
  content: "\e181";
}

.glyphicon-earphone:before {
  content: "\e182";
}

.glyphicon-phone-alt:before {
  content: "\e183";
}

.glyphicon-tower:before {
  content: "\e184";
}

.glyphicon-stats:before {
  content: "\e185";
}

.glyphicon-sd-video:before {
  content: "\e186";
}

.glyphicon-hd-video:before {
  content: "\e187";
}

.glyphicon-subtitles:before {
  content: "\e188";
}

.glyphicon-sound-stereo:before {
  content: "\e189";
}

.glyphicon-sound-dolby:before {
  content: "\e190";
}

.glyphicon-sound-5-1:before {
  content: "\e191";
}

.glyphicon-sound-6-1:before {
  content: "\e192";
}

.glyphicon-sound-7-1:before {
  content: "\e193";
}

.glyphicon-copyright-mark:before {
  content: "\e194";
}

.glyphicon-registration-mark:before {
  content: "\e195";
}

.glyphicon-cloud-download:before {
  content: "\e197";
}

.glyphicon-cloud-upload:before {
  content: "\e198";
}

.glyphicon-tree-conifer:before {
  content: "\e199";
}

.glyphicon-tree-deciduous:before {
  content: "\e200";
}

.glyphicon-cd:before {
  content: "\e201";
}

.glyphicon-save-file:before {
  content: "\e202";
}

.glyphicon-open-file:before {
  content: "\e203";
}

.glyphicon-level-up:before {
  content: "\e204";
}

.glyphicon-copy:before {
  content: "\e205";
}

.glyphicon-paste:before {
  content: "\e206";
}

.glyphicon-alert:before {
  content: "\e209";
}

.glyphicon-equalizer:before {
  content: "\e210";
}

.glyphicon-king:before {
  content: "\e211";
}

.glyphicon-queen:before {
  content: "\e212";
}

.glyphicon-pawn:before {
  content: "\e213";
}

.glyphicon-bishop:before {
  content: "\e214";
}

.glyphicon-knight:before {
  content: "\e215";
}

.glyphicon-baby-formula:before {
  content: "\e216";
}

.glyphicon-tent:before {
  content: "\26fa";
}

.glyphicon-blackboard:before {
  content: "\e218";
}

.glyphicon-bed:before {
  content: "\e219";
}

.glyphicon-apple:before {
  content: "\f8ff";
}

.glyphicon-erase:before {
  content: "\e221";
}

.glyphicon-hourglass:before {
  content: "\231b";
}

.glyphicon-lamp:before {
  content: "\e223";
}

.glyphicon-duplicate:before {
  content: "\e224";
}

.glyphicon-piggy-bank:before {
  content: "\e225";
}

.glyphicon-scissors:before {
  content: "\e226";
}

.glyphicon-bitcoin:before {
  content: "\e227";
}

.glyphicon-btc:before {
  content: "\e227";
}

.glyphicon-xbt:before {
  content: "\e227";
}

.glyphicon-yen:before {
  content: "\00a5";
}

.glyphicon-jpy:before {
  content: "\00a5";
}

.glyphicon-ruble:before {
  content: "\20bd";
}

.glyphicon-rub:before {
  content: "\20bd";
}

.glyphicon-scale:before {
  content: "\e230";
}

.glyphicon-ice-lolly:before {
  content: "\e231";
}

.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}

.glyphicon-education:before {
  content: "\e233";
}

.glyphicon-option-horizontal:before {
  content: "\e234";
}

.glyphicon-option-vertical:before {
  content: "\e235";
}

.glyphicon-menu-hamburger:before {
  content: "\e236";
}

.glyphicon-modal-window:before {
  content: "\e237";
}

.glyphicon-oil:before {
  content: "\e238";
}

.glyphicon-grain:before {
  content: "\e239";
}

.glyphicon-sunglasses:before {
  content: "\e240";
}

.glyphicon-text-size:before {
  content: "\e241";
}

.glyphicon-text-color:before {
  content: "\e242";
}

.glyphicon-text-background:before {
  content: "\e243";
}

.glyphicon-object-align-top:before {
  content: "\e244";
}

.glyphicon-object-align-bottom:before {
  content: "\e245";
}

.glyphicon-object-align-horizontal:before {
  content: "\e246";
}

.glyphicon-object-align-left:before {
  content: "\e247";
}

.glyphicon-object-align-vertical:before {
  content: "\e248";
}

.glyphicon-object-align-right:before {
  content: "\e249";
}

.glyphicon-triangle-right:before {
  content: "\e250";
}

.glyphicon-triangle-left:before {
  content: "\e251";
}

.glyphicon-triangle-bottom:before {
  content: "\e252";
}

.glyphicon-triangle-top:before {
  content: "\e253";
}

.glyphicon-console:before {
  content: "\e254";
}

.glyphicon-superscript:before {
  content: "\e255";
}

.glyphicon-subscript:before {
  content: "\e256";
}

.glyphicon-menu-left:before {
  content: "\e257";
}

.glyphicon-menu-right:before {
  content: "\e258";
}

.glyphicon-menu-down:before {
  content: "\e259";
}

.glyphicon-menu-up:before {
  content: "\e260";
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #337ab7;
  text-decoration: none;
}

a:focus,
a:hover {
  color: #23527c;
  text-decoration: underline;
}

a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img,
.img-responsive,
.thumbnail a>img,
.thumbnail>img {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

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

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

[role=button] {
  cursor: pointer;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
  font-weight: 400;
  line-height: 1;
  color: #777;
}

.h1,
.h2,
.h3,
h1,
h2,
h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small {
  font-size: 65%;
}

.h4,
.h5,
.h6,
h4,
h5,
h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
  font-size: 75%;
}

.h1,
h1 {
  font-size: 36px;
}

.h2,
h2 {
  font-size: 30px;
}

.h3,
h3 {
  font-size: 24px;
}

.h4,
h4 {
  font-size: 18px;
}

.h5,
h5 {
  font-size: 14px;
}

.h6,
h6 {
  font-size: 12px;
}

p {
  margin: 0 0 10px;
}

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

@media (min-width:768px) {
  .lead {
    font-size: 21px;
  }
}

.small,
small {
  font-size: 85%;
}

.mark,
mark {
  padding: .2em;
  background-color: #fcf8e3;
}

.text-left {
  text-align: left;
}

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

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

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

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

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

.text-muted {
  color: #777;
}

.text-primary {
  color: #337ab7;
}

a.text-primary:focus,
a.text-primary:hover {
  color: #286090;
}

.text-success {
  color: #3c763d;
}

a.text-success:focus,
a.text-success:hover {
  color: #2b542c;
}

.text-info {
  color: #31708f;
}

a.text-info:focus,
a.text-info:hover {
  color: #245269;
}

.text-warning {
  color: #8a6d3b;
}

a.text-warning:focus,
a.text-warning:hover {
  color: #66512c;
}

.text-danger {
  color: #a94442;
}

a.text-danger:focus,
a.text-danger:hover {
  color: #843534;
}

.bg-primary {
  color: #fff;
  background-color: #337ab7;
}

a.bg-primary:focus,
a.bg-primary:hover {
  background-color: #286090;
}

.bg-success {
  background-color: #dff0d8;
}

a.bg-success:focus,
a.bg-success:hover {
  background-color: #c1e2b3;
}

.bg-info {
  background-color: #d9edf7;
}

a.bg-info:focus,
a.bg-info:hover {
  background-color: #afd9ee;
}

.bg-warning {
  background-color: #fcf8e3;
}

a.bg-warning:focus,
a.bg-warning:hover {
  background-color: #f7ecb5;
}

.bg-danger {
  background-color: #f2dede;
}

a.bg-danger:focus,
a.bg-danger:hover {
  background-color: #e4b9b9;
}

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee;
}

ol,
ul {
  margin-top: 0;
  margin-bottom: 10px;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  margin-left: -5px;
  list-style: none;
}

.list-inline>li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

dl {
  margin-top: 0;
  margin-bottom: 20px;
}

dd,
dt {
  line-height: 1.42857143;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

@media (min-width:768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dl-horizontal dd {
    margin-left: 180px;
  }
}

abbr[data-original-title],
abbr[title] {
  cursor: help;
  border-bottom: 1px dotted #777;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}

blockquote ol:last-child,
blockquote p:last-child,
blockquote ul:last-child {
  margin-bottom: 0;
}

blockquote .small,
blockquote footer,
blockquote small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777;
}

blockquote .small:before,
blockquote footer:before,
blockquote small:before {
  content: '\2014 \00A0';
}

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eee;
  border-left: 0;
}

.blockquote-reverse .small:before,
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
blockquote.pull-right .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before {
  content: '';
}

.blockquote-reverse .small:after,
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
blockquote.pull-right .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after {
  content: '\00A0 \2014';
}

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}

code,
kbd,
pre,
samp {
  font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
  -webkit-box-shadow: none;
  box-shadow: none;
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}

pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width:768px) {
  .container {
    width: 750px;
  }
}

@media (min-width:992px) {
  .container {
    width: 970px;
  }
}

@media (min-width:1200px) {
  .container {
    width: 1170px;
  }
}

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  float: left;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-pull-11 {
  right: 91.66666667%;
}

.col-xs-pull-10 {
  right: 83.33333333%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-8 {
  right: 66.66666667%;
}

.col-xs-pull-7 {
  right: 58.33333333%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-5 {
  right: 41.66666667%;
}

.col-xs-pull-4 {
  right: 33.33333333%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-2 {
  right: 16.66666667%;
}

.col-xs-pull-1 {
  right: 8.33333333%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-push-11 {
  left: 91.66666667%;
}

.col-xs-push-10 {
  left: 83.33333333%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-8 {
  left: 66.66666667%;
}

.col-xs-push-7 {
  left: 58.33333333%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-5 {
  left: 41.66666667%;
}

.col-xs-push-4 {
  left: 33.33333333%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-2 {
  left: 16.66666667%;
}

.col-xs-push-1 {
  left: 8.33333333%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

@media (min-width:768px) {
  .col-sm-1,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9 {
    float: left;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-11 {
    width: 91.66666667%;
  }

  .col-sm-10 {
    width: 83.33333333%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-8 {
    width: 66.66666667%;
  }

  .col-sm-7 {
    width: 58.33333333%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-5 {
    width: 41.66666667%;
  }

  .col-sm-4 {
    width: 33.33333333%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-2 {
    width: 16.66666667%;
  }

  .col-sm-1 {
    width: 8.33333333%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-pull-11 {
    right: 91.66666667%;
  }

  .col-sm-pull-10 {
    right: 83.33333333%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-8 {
    right: 66.66666667%;
  }

  .col-sm-pull-7 {
    right: 58.33333333%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-5 {
    right: 41.66666667%;
  }

  .col-sm-pull-4 {
    right: 33.33333333%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-2 {
    right: 16.66666667%;
  }

  .col-sm-pull-1 {
    right: 8.33333333%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-push-11 {
    left: 91.66666667%;
  }

  .col-sm-push-10 {
    left: 83.33333333%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-8 {
    left: 66.66666667%;
  }

  .col-sm-push-7 {
    left: 58.33333333%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-5 {
    left: 41.66666667%;
  }

  .col-sm-push-4 {
    left: 33.33333333%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-2 {
    left: 16.66666667%;
  }

  .col-sm-push-1 {
    left: 8.33333333%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-0 {
    margin-left: 0;
  }
}

@media (min-width:992px) {
  .col-md-1,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9 {
    float: left;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-11 {
    width: 91.66666667%;
  }

  .col-md-10 {
    width: 83.33333333%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-8 {
    width: 66.66666667%;
  }

  .col-md-7 {
    width: 58.33333333%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-5 {
    width: 41.66666667%;
  }

  .col-md-4 {
    width: 33.33333333%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-2 {
    width: 16.66666667%;
  }

  .col-md-1 {
    width: 8.33333333%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-pull-11 {
    right: 91.66666667%;
  }

  .col-md-pull-10 {
    right: 83.33333333%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-8 {
    right: 66.66666667%;
  }

  .col-md-pull-7 {
    right: 58.33333333%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-5 {
    right: 41.66666667%;
  }

  .col-md-pull-4 {
    right: 33.33333333%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-2 {
    right: 16.66666667%;
  }

  .col-md-pull-1 {
    right: 8.33333333%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-push-11 {
    left: 91.66666667%;
  }

  .col-md-push-10 {
    left: 83.33333333%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-8 {
    left: 66.66666667%;
  }

  .col-md-push-7 {
    left: 58.33333333%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-5 {
    left: 41.66666667%;
  }

  .col-md-push-4 {
    left: 33.33333333%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-2 {
    left: 16.66666667%;
  }

  .col-md-push-1 {
    left: 8.33333333%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-0 {
    margin-left: 0;
  }
}

@media (min-width:1200px) {
  .col-lg-1,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9 {
    float: left;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-11 {
    width: 91.66666667%;
  }

  .col-lg-10 {
    width: 83.33333333%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-8 {
    width: 66.66666667%;
  }

  .col-lg-7 {
    width: 58.33333333%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-5 {
    width: 41.66666667%;
  }

  .col-lg-4 {
    width: 33.33333333%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-2 {
    width: 16.66666667%;
  }

  .col-lg-1 {
    width: 8.33333333%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-pull-11 {
    right: 91.66666667%;
  }

  .col-lg-pull-10 {
    right: 83.33333333%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-8 {
    right: 66.66666667%;
  }

  .col-lg-pull-7 {
    right: 58.33333333%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-5 {
    right: 41.66666667%;
  }

  .col-lg-pull-4 {
    right: 33.33333333%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-2 {
    right: 16.66666667%;
  }

  .col-lg-pull-1 {
    right: 8.33333333%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-push-11 {
    left: 91.66666667%;
  }

  .col-lg-push-10 {
    left: 83.33333333%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-8 {
    left: 66.66666667%;
  }

  .col-lg-push-7 {
    left: 58.33333333%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-5 {
    left: 41.66666667%;
  }

  .col-lg-push-4 {
    left: 33.33333333%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-2 {
    left: 16.66666667%;
  }

  .col-lg-push-1 {
    left: 8.33333333%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-0 {
    margin-left: 0;
  }
}

table {
  background-color: transparent;
}

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
  text-align: left;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

.table>thead>tr>th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

.table>caption+thead>tr:first-child>td,
.table>caption+thead>tr:first-child>th,
.table>colgroup+thead>tr:first-child>td,
.table>colgroup+thead>tr:first-child>th,
.table>thead:first-child>tr:first-child>td,
.table>thead:first-child>tr:first-child>th {
  border-top: 0;
}

.table>tbody+tbody {
  border-top: 2px solid #ddd;
}

.table .table {
  background-color: #fff;
}

.table-condensed>tbody>tr>td,
.table-condensed>tbody>tr>th,
.table-condensed>tfoot>tr>td,
.table-condensed>tfoot>tr>th,
.table-condensed>thead>tr>td,
.table-condensed>thead>tr>th {
  padding: 5px;
}

.table-bordered {
  border: 1px solid #ddd;
}

.table-bordered>tbody>tr>td,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>td,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
  border: 1px solid #ddd;
}

.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
  border-bottom-width: 2px;
}

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

.table-hover>tbody>tr:hover {
  background-color: #f5f5f5;
}

table col[class*=col-] {
  position: static;
  display: table-column;
  float: none;
}

table td[class*=col-],
table th[class*=col-] {
  position: static;
  display: table-cell;
  float: none;
}

.table>tbody>tr.active>td,
.table>tbody>tr.active>th,
.table>tbody>tr>td.active,
.table>tbody>tr>th.active,
.table>tfoot>tr.active>td,
.table>tfoot>tr.active>th,
.table>tfoot>tr>td.active,
.table>tfoot>tr>th.active,
.table>thead>tr.active>td,
.table>thead>tr.active>th,
.table>thead>tr>td.active,
.table>thead>tr>th.active {
  background-color: #f5f5f5;
}

.table-hover>tbody>tr.active:hover>td,
.table-hover>tbody>tr.active:hover>th,
.table-hover>tbody>tr:hover>.active,
.table-hover>tbody>tr>td.active:hover,
.table-hover>tbody>tr>th.active:hover {
  background-color: #e8e8e8;
}

.table>tbody>tr.success>td,
.table>tbody>tr.success>th,
.table>tbody>tr>td.success,
.table>tbody>tr>th.success,
.table>tfoot>tr.success>td,
.table>tfoot>tr.success>th,
.table>tfoot>tr>td.success,
.table>tfoot>tr>th.success,
.table>thead>tr.success>td,
.table>thead>tr.success>th,
.table>thead>tr>td.success,
.table>thead>tr>th.success {
  background-color: #dff0d8;
}

.table-hover>tbody>tr.success:hover>td,
.table-hover>tbody>tr.success:hover>th,
.table-hover>tbody>tr:hover>.success,
.table-hover>tbody>tr>td.success:hover,
.table-hover>tbody>tr>th.success:hover {
  background-color: #d0e9c6;
}

.table>tbody>tr.info>td,
.table>tbody>tr.info>th,
.table>tbody>tr>td.info,
.table>tbody>tr>th.info,
.table>tfoot>tr.info>td,
.table>tfoot>tr.info>th,
.table>tfoot>tr>td.info,
.table>tfoot>tr>th.info,
.table>thead>tr.info>td,
.table>thead>tr.info>th,
.table>thead>tr>td.info,
.table>thead>tr>th.info {
  background-color: #d9edf7;
}

.table-hover>tbody>tr.info:hover>td,
.table-hover>tbody>tr.info:hover>th,
.table-hover>tbody>tr:hover>.info,
.table-hover>tbody>tr>td.info:hover,
.table-hover>tbody>tr>th.info:hover {
  background-color: #c4e3f3;
}

.table>tbody>tr.warning>td,
.table>tbody>tr.warning>th,
.table>tbody>tr>td.warning,
.table>tbody>tr>th.warning,
.table>tfoot>tr.warning>td,
.table>tfoot>tr.warning>th,
.table>tfoot>tr>td.warning,
.table>tfoot>tr>th.warning,
.table>thead>tr.warning>td,
.table>thead>tr.warning>th,
.table>thead>tr>td.warning,
.table>thead>tr>th.warning {
  background-color: #fcf8e3;
}

.table-hover>tbody>tr.warning:hover>td,
.table-hover>tbody>tr.warning:hover>th,
.table-hover>tbody>tr:hover>.warning,
.table-hover>tbody>tr>td.warning:hover,
.table-hover>tbody>tr>th.warning:hover {
  background-color: #faf2cc;
}

.table>tbody>tr.danger>td,
.table>tbody>tr.danger>th,
.table>tbody>tr>td.danger,
.table>tbody>tr>th.danger,
.table>tfoot>tr.danger>td,
.table>tfoot>tr.danger>th,
.table>tfoot>tr>td.danger,
.table>tfoot>tr>th.danger,
.table>thead>tr.danger>td,
.table>thead>tr.danger>th,
.table>thead>tr>td.danger,
.table>thead>tr>th.danger {
  background-color: #f2dede;
}

.table-hover>tbody>tr.danger:hover>td,
.table-hover>tbody>tr.danger:hover>th,
.table-hover>tbody>tr:hover>.danger,
.table-hover>tbody>tr>td.danger:hover,
.table-hover>tbody>tr>th.danger:hover {
  background-color: #ebcccc;
}

.table-responsive {
  min-height: .01%;
  overflow-x: auto;
}

@media screen and (max-width:767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }

  .table-responsive>.table {
    margin-bottom: 0;
  }

  .table-responsive>.table>tbody>tr>td,
  .table-responsive>.table>tbody>tr>th,
  .table-responsive>.table>tfoot>tr>td,
  .table-responsive>.table>tfoot>tr>th,
  .table-responsive>.table>thead>tr>td,
  .table-responsive>.table>thead>tr>th {
    white-space: nowrap;
  }

  .table-responsive>.table-bordered {
    border: 0;
  }

  .table-responsive>.table-bordered>tbody>tr>td:first-child,
  .table-responsive>.table-bordered>tbody>tr>th:first-child,
  .table-responsive>.table-bordered>tfoot>tr>td:first-child,
  .table-responsive>.table-bordered>tfoot>tr>th:first-child,
  .table-responsive>.table-bordered>thead>tr>td:first-child,
  .table-responsive>.table-bordered>thead>tr>th:first-child {
    border-left: 0;
  }

  .table-responsive>.table-bordered>tbody>tr>td:last-child,
  .table-responsive>.table-bordered>tbody>tr>th:last-child,
  .table-responsive>.table-bordered>tfoot>tr>td:last-child,
  .table-responsive>.table-bordered>tfoot>tr>th:last-child,
  .table-responsive>.table-bordered>thead>tr>td:last-child,
  .table-responsive>.table-bordered>thead>tr>th:last-child {
    border-right: 0;
  }

  .table-responsive>.table-bordered>tbody>tr:last-child>td,
  .table-responsive>.table-bordered>tbody>tr:last-child>th,
  .table-responsive>.table-bordered>tfoot>tr:last-child>td,
  .table-responsive>.table-bordered>tfoot>tr:last-child>th {
    border-bottom: 0;
  }
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}

input[type=search] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input[type=checkbox],
input[type=radio] {
  margin: 4px 0 0;
  margin-top: 1px\9;
  line-height: normal;
}

input[type=file] {
  display: block;
}

input[type=range] {
  display: block;
  width: 100%;
}

select[multiple],
select[size] {
  height: auto;
}

input[type=file]:focus,
input[type=checkbox]:focus,
input[type=radio]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}

.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #999;
}

.form-control::-webkit-input-placeholder {
  color: #999;
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}

.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}

textarea.form-control {
  height: auto;
}

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

@media screen and (-webkit-min-device-pixel-ratio:0) {
  input[type=date].form-control,
  input[type=time].form-control,
  input[type=datetime-local].form-control,
  input[type=month].form-control {
    line-height: 34px;
  }

  .input-group-sm input[type=date],
  .input-group-sm input[type=time],
  .input-group-sm input[type=datetime-local],
  .input-group-sm input[type=month],
  input[type=date].input-sm,
  input[type=time].input-sm,
  input[type=datetime-local].input-sm,
  input[type=month].input-sm {
    line-height: 30px;
  }

  .input-group-lg input[type=date],
  .input-group-lg input[type=time],
  .input-group-lg input[type=datetime-local],
  .input-group-lg input[type=month],
  input[type=date].input-lg,
  input[type=time].input-lg,
  input[type=datetime-local].input-lg,
  input[type=month].input-lg {
    line-height: 46px;
  }
}

.form-group {
  margin-bottom: 15px;
}

.checkbox,
.radio {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.checkbox label,
.radio label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox],
.radio input[type=radio],
.radio-inline input[type=radio] {
  position: absolute;
  margin-top: 4px\9;
  margin-left: -20px;
}

.checkbox+.checkbox,
.radio+.radio {
  margin-top: -5px;
}

.checkbox-inline,
.radio-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  vertical-align: middle;
  cursor: pointer;
}

.checkbox-inline+.checkbox-inline,
.radio-inline+.radio-inline {
  margin-top: 0;
  margin-left: 10px;
}

fieldset[disabled] input[type=checkbox],
fieldset[disabled] input[type=radio],
input[type=checkbox].disabled,
input[type=checkbox][disabled],
input[type=radio].disabled,
input[type=radio][disabled] {
  cursor: not-allowed;
}

.checkbox-inline.disabled,
.radio-inline.disabled,
fieldset[disabled] .checkbox-inline,
fieldset[disabled] .radio-inline {
  cursor: not-allowed;
}

.checkbox.disabled label,
.radio.disabled label,
fieldset[disabled] .checkbox label,
fieldset[disabled] .radio label {
  cursor: not-allowed;
}

.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}

.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}

.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-sm {
  height: 30px;
  line-height: 30px;
}

select[multiple].input-sm,
textarea.input-sm {
  height: auto;
}

.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}

.form-group-sm select[multiple].form-control,
.form-group-sm textarea.form-control {
  height: auto;
}

.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

select.input-lg {
  height: 46px;
  line-height: 46px;
}

select[multiple].input-lg,
textarea.input-lg {
  height: auto;
}

.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}

.form-group-lg select[multiple].form-control,
.form-group-lg textarea.form-control {
  height: auto;
}

.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

.has-feedback {
  position: relative;
}

.has-feedback .form-control {
  padding-right: 42.5px;
}

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}

.form-group-lg .form-control+.form-control-feedback,
.input-group-lg+.form-control-feedback,
.input-lg+.form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

.form-group-sm .form-control+.form-control-feedback,
.input-group-sm+.form-control-feedback,
.input-sm+.form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.has-success .checkbox,
.has-success .checkbox-inline,
.has-success .control-label,
.has-success .help-block,
.has-success .radio,
.has-success .radio-inline,
.has-success.checkbox label,
.has-success.checkbox-inline label,
.has-success.radio label,
.has-success.radio-inline label {
  color: #3c763d;
}

.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;
}

.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}

.has-success .form-control-feedback {
  color: #3c763d;
}

.has-warning .checkbox,
.has-warning .checkbox-inline,
.has-warning .control-label,
.has-warning .help-block,
.has-warning .radio,
.has-warning .radio-inline,
.has-warning.checkbox label,
.has-warning.checkbox-inline label,
.has-warning.radio label,
.has-warning.radio-inline label {
  color: #8a6d3b;
}

.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;
}

.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}

.has-warning .form-control-feedback {
  color: #8a6d3b;
}

.has-error .checkbox,
.has-error .checkbox-inline,
.has-error .control-label,
.has-error .help-block,
.has-error .radio,
.has-error .radio-inline,
.has-error.checkbox label,
.has-error.checkbox-inline label,
.has-error.radio label,
.has-error.radio-inline label {
  color: #a94442;
}

.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;
}

.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}

.has-error .form-control-feedback {
  color: #a94442;
}

.has-feedback label~.form-control-feedback {
  top: 25px;
}

.has-feedback label.sr-only~.form-control-feedback {
  top: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width:768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .form-control-static {
    display: inline-block;
  }

  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }

  .form-inline .input-group .form-control,
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn {
    width: auto;
  }

  .form-inline .input-group>.form-control {
    width: 100%;
  }

  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .checkbox,
  .form-inline .radio {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .checkbox label,
  .form-inline .radio label {
    padding-left: 0;
  }

  .form-inline .checkbox input[type=checkbox],
  .form-inline .radio input[type=radio] {
    position: relative;
    margin-left: 0;
  }

  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

.form-horizontal .checkbox,
.form-horizontal .checkbox-inline,
.form-horizontal .radio,
.form-horizontal .radio-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}

.form-horizontal .checkbox,
.form-horizontal .radio {
  min-height: 27px;
}

.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width:768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}

.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}

@media (min-width:768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}

@media (min-width:768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}

.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn.focus,
.btn:focus,
.btn:hover {
  color: #333;
  text-decoration: none;
}

.btn.active,
.btn:active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
  box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: .65;
}

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}

.btn-default.focus,
.btn-default:focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}

.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.btn-default.active,
.btn-default:active,
.open>.dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.btn-default.active.focus,
.btn-default.active:focus,
.btn-default.active:hover,
.btn-default:active.focus,
.btn-default:active:focus,
.btn-default:active:hover,
.open>.dropdown-toggle.btn-default.focus,
.open>.dropdown-toggle.btn-default:focus,
.open>.dropdown-toggle.btn-default:hover {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}

.btn-default.active,
.btn-default:active,
.open>.dropdown-toggle.btn-default {
  background-image: none;
}

.btn-default.disabled.focus,
.btn-default.disabled:focus,
.btn-default.disabled:hover,
.btn-default[disabled].focus,
.btn-default[disabled]:focus,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default.focus,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default:hover {
  background-color: #fff;
  border-color: #ccc;
}

.btn-default .badge {
  color: #fff;
  background-color: #333;
}

.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}

.btn-primary.focus,
.btn-primary:focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}

.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}

.btn-primary.active,
.btn-primary:active,
.open>.dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open>.dropdown-toggle.btn-primary.focus,
.open>.dropdown-toggle.btn-primary:focus,
.open>.dropdown-toggle.btn-primary:hover {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}

.btn-primary.active,
.btn-primary:active,
.open>.dropdown-toggle.btn-primary {
  background-image: none;
}

.btn-primary.disabled.focus,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled].focus,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
  background-color: #337ab7;
  border-color: #2e6da4;
}

.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success.focus,
.btn-success:focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}

.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}

.btn-success.active,
.btn-success:active,
.open>.dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}

.btn-success.active.focus,
.btn-success.active:focus,
.btn-success.active:hover,
.btn-success:active.focus,
.btn-success:active:focus,
.btn-success:active:hover,
.open>.dropdown-toggle.btn-success.focus,
.open>.dropdown-toggle.btn-success:focus,
.open>.dropdown-toggle.btn-success:hover {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}

.btn-success.active,
.btn-success:active,
.open>.dropdown-toggle.btn-success {
  background-image: none;
}

.btn-success.disabled.focus,
.btn-success.disabled:focus,
.btn-success.disabled:hover,
.btn-success[disabled].focus,
.btn-success[disabled]:focus,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success.focus,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success:hover {
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-info.focus,
.btn-info:focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}

.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}

.btn-info.active,
.btn-info:active,
.open>.dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}

.btn-info.active.focus,
.btn-info.active:focus,
.btn-info.active:hover,
.btn-info:active.focus,
.btn-info:active:focus,
.btn-info:active:hover,
.open>.dropdown-toggle.btn-info.focus,
.open>.dropdown-toggle.btn-info:focus,
.open>.dropdown-toggle.btn-info:hover {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}

.btn-info.active,
.btn-info:active,
.open>.dropdown-toggle.btn-info {
  background-image: none;
}

.btn-info.disabled.focus,
.btn-info.disabled:focus,
.btn-info.disabled:hover,
.btn-info[disabled].focus,
.btn-info[disabled]:focus,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info.focus,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info:hover {
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning.focus,
.btn-warning:focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}

.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}

.btn-warning.active,
.btn-warning:active,
.open>.dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}

.btn-warning.active.focus,
.btn-warning.active:focus,
.btn-warning.active:hover,
.btn-warning:active.focus,
.btn-warning:active:focus,
.btn-warning:active:hover,
.open>.dropdown-toggle.btn-warning.focus,
.open>.dropdown-toggle.btn-warning:focus,
.open>.dropdown-toggle.btn-warning:hover {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}

.btn-warning.active,
.btn-warning:active,
.open>.dropdown-toggle.btn-warning {
  background-image: none;
}

.btn-warning.disabled.focus,
.btn-warning.disabled:focus,
.btn-warning.disabled:hover,
.btn-warning[disabled].focus,
.btn-warning[disabled]:focus,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning.focus,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning:hover {
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger.focus,
.btn-danger:focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}

.btn-danger.active,
.btn-danger:active,
.open>.dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}

.btn-danger.active.focus,
.btn-danger.active:focus,
.btn-danger.active:hover,
.btn-danger:active.focus,
.btn-danger:active:focus,
.btn-danger:active:hover,
.open>.dropdown-toggle.btn-danger.focus,
.open>.dropdown-toggle.btn-danger:focus,
.open>.dropdown-toggle.btn-danger:hover {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}

.btn-danger.active,
.btn-danger:active,
.open>.dropdown-toggle.btn-danger {
  background-image: none;
}

.btn-danger.disabled.focus,
.btn-danger.disabled:focus,
.btn-danger.disabled:hover,
.btn-danger[disabled].focus,
.btn-danger[disabled]:focus,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger.focus,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger:hover {
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

.btn-link {
  font-weight: 400;
  color: #337ab7;
  border-radius: 0;
}

.btn-link,
.btn-link.active,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-link,
.btn-link:active,
.btn-link:focus,
.btn-link:hover {
  border-color: transparent;
}

.btn-link:focus,
.btn-link:hover {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}

.btn-link[disabled]:focus,
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:focus,
fieldset[disabled] .btn-link:hover {
  color: #777;
  text-decoration: none;
}

.btn-group-lg>.btn,
.btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

.btn-group-sm>.btn,
.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-group-xs>.btn,
.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block+.btn-block {
  margin-top: 5px;
}

input[type=button].btn-block,
input[type=reset].btn-block,
input[type=submit].btn-block {
  width: 100%;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
  -o-transition: opacity .15s linear;
  transition: opacity .15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .35s;
  -o-transition-duration: .35s;
  transition-duration: .35s;
  -webkit-transition-property: height,visibility;
  -o-transition-property: height,visibility;
  transition-property: height,visibility;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid\9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropdown,
.dropup {
  position: relative;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
  box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.dropdown-menu>li>a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}

.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:focus,
.dropdown-menu>.active>a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}

.dropdown-menu>.disabled>a,
.dropdown-menu>.disabled>a:focus,
.dropdown-menu>.disabled>a:hover {
  color: #777;
}

.dropdown-menu>.disabled>a:focus,
.dropdown-menu>.disabled>a:hover {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.open>.dropdown-menu {
  display: block;
}

.open>a {
  outline: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap;
}

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}

.pull-right>.dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid\9;
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

@media (min-width:768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }

  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.btn-group-vertical>.btn,
.btn-group>.btn {
  position: relative;
  float: left;
}

.btn-group-vertical>.btn.active,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn:focus,
.btn-group-vertical>.btn:hover,
.btn-group>.btn.active,
.btn-group>.btn:active,
.btn-group>.btn:focus,
.btn-group>.btn:hover {
  z-index: 2;
}

.btn-group .btn+.btn,
.btn-group .btn+.btn-group,
.btn-group .btn-group+.btn,
.btn-group .btn-group+.btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  margin-left: -5px;
}

.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}

.btn-toolbar>.btn,
.btn-toolbar>.btn-group,
.btn-toolbar>.input-group {
  margin-left: 5px;
}

.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

.btn-group>.btn:first-child {
  margin-left: 0;
}

.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group>.btn:last-child:not(:first-child),
.btn-group>.dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group>.btn-group {
  float: left;
}

.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn {
  border-radius: 0;
}

.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,
.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

.btn-group>.btn+.dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}

.btn-group>.btn-lg+.dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
  box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}

.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn .caret {
  margin-left: 0;
}

.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}

.btn-group-vertical>.btn,
.btn-group-vertical>.btn-group,
.btn-group-vertical>.btn-group>.btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}

.btn-group-vertical>.btn-group>.btn {
  float: none;
}

.btn-group-vertical>.btn+.btn,
.btn-group-vertical>.btn+.btn-group,
.btn-group-vertical>.btn-group+.btn,
.btn-group-vertical>.btn-group+.btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical>.btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.btn-group-vertical>.btn:first-child:not(:last-child) {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical>.btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn {
  border-radius: 0;
}

.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,
.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}

.btn-group-justified>.btn,
.btn-group-justified>.btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}

.btn-group-justified>.btn-group .btn {
  width: 100%;
}

.btn-group-justified>.btn-group .dropdown-menu {
  left: auto;
}

[data-toggle=buttons]>.btn input[type=checkbox],
[data-toggle=buttons]>.btn input[type=radio],
[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],
[data-toggle=buttons]>.btn-group>.btn input[type=radio] {
  position: absolute;
  clip: rect(0,0,0,0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

.input-group[class*=col-] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}

.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.input-group .form-control:focus {
  z-index: 3;
}

.input-group-lg>.form-control,
.input-group-lg>.input-group-addon,
.input-group-lg>.input-group-btn>.btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

select.input-group-lg>.form-control,
select.input-group-lg>.input-group-addon,
select.input-group-lg>.input-group-btn>.btn {
  height: 46px;
  line-height: 46px;
}

select[multiple].input-group-lg>.form-control,
select[multiple].input-group-lg>.input-group-addon,
select[multiple].input-group-lg>.input-group-btn>.btn,
textarea.input-group-lg>.form-control,
textarea.input-group-lg>.input-group-addon,
textarea.input-group-lg>.input-group-btn>.btn {
  height: auto;
}

.input-group-sm>.form-control,
.input-group-sm>.input-group-addon,
.input-group-sm>.input-group-btn>.btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-group-sm>.form-control,
select.input-group-sm>.input-group-addon,
select.input-group-sm>.input-group-btn>.btn {
  height: 30px;
  line-height: 30px;
}

select[multiple].input-group-sm>.form-control,
select[multiple].input-group-sm>.input-group-addon,
select[multiple].input-group-sm>.input-group-btn>.btn,
textarea.input-group-sm>.form-control,
textarea.input-group-sm>.input-group-addon,
textarea.input-group-sm>.input-group-btn>.btn {
  height: auto;
}

.input-group .form-control,
.input-group-addon,
.input-group-btn {
  display: table-cell;
}

.input-group .form-control:not(:first-child):not(:last-child),
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}

.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}

.input-group-addon input[type=checkbox],
.input-group-addon input[type=radio] {
  margin-top: 0;
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child>.btn,
.input-group-btn:first-child>.btn-group>.btn,
.input-group-btn:first-child>.dropdown-toggle,
.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,
.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-addon:first-child {
  border-right: 0;
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,
.input-group-btn:first-child>.btn:not(:first-child),
.input-group-btn:last-child>.btn,
.input-group-btn:last-child>.btn-group>.btn,
.input-group-btn:last-child>.dropdown-toggle {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-addon:last-child {
  border-left: 0;
}

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

.input-group-btn>.btn {
  position: relative;
}

.input-group-btn>.btn+.btn {
  margin-left: -1px;
}

.input-group-btn>.btn:active,
.input-group-btn>.btn:focus,
.input-group-btn>.btn:hover {
  z-index: 2;
}

.input-group-btn:first-child>.btn,
.input-group-btn:first-child>.btn-group {
  margin-right: -1px;
}

.input-group-btn:last-child>.btn,
.input-group-btn:last-child>.btn-group {
  z-index: 2;
  margin-left: -1px;
}

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav>li {
  position: relative;
  display: block;
}

.nav>li>a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

.nav>li>a:focus,
.nav>li>a:hover {
  text-decoration: none;
  background-color: #eee;
}

.nav>li.disabled>a {
  color: #777;
}

.nav>li.disabled>a:focus,
.nav>li.disabled>a:hover {
  color: #777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}

.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover {
  background-color: #eee;
  border-color: #337ab7;
}

.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.nav>li>a>img {
  max-width: none;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}

.nav-tabs>li {
  float: left;
  margin-bottom: -1px;
}

.nav-tabs>li>a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

.nav-tabs>li>a:hover {
  border-color: #eee #eee #ddd;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
  color: #555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}

.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}

.nav-tabs.nav-justified>li {
  float: none;
}

.nav-tabs.nav-justified>li>a {
  margin-bottom: 5px;
  text-align: center;
}

.nav-tabs.nav-justified>.dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width:768px) {
  .nav-tabs.nav-justified>li {
    display: table-cell;
    width: 1%;
  }

  .nav-tabs.nav-justified>li>a {
    margin-bottom: 0;
  }
}

.nav-tabs.nav-justified>li>a {
  margin-right: 0;
  border-radius: 4px;
}

.nav-tabs.nav-justified>.active>a,
.nav-tabs.nav-justified>.active>a:focus,
.nav-tabs.nav-justified>.active>a:hover {
  border: 1px solid #ddd;
}

@media (min-width:768px) {
  .nav-tabs.nav-justified>li>a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }

  .nav-tabs.nav-justified>.active>a,
  .nav-tabs.nav-justified>.active>a:focus,
  .nav-tabs.nav-justified>.active>a:hover {
    border-bottom-color: #fff;
  }
}

.nav-pills>li {
  float: left;
}

.nav-pills>li>a {
  border-radius: 4px;
}

.nav-pills>li+li {
  margin-left: 2px;
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:focus,
.nav-pills>li.active>a:hover {
  color: #fff;
  background-color: #337ab7;
}

.nav-stacked>li {
  float: none;
}

.nav-stacked>li+li {
  margin-top: 2px;
  margin-left: 0;
}

.nav-justified {
  width: 100%;
}

.nav-justified>li {
  float: none;
}

.nav-justified>li>a {
  margin-bottom: 5px;
  text-align: center;
}

.nav-justified>.dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width:768px) {
  .nav-justified>li {
    display: table-cell;
    width: 1%;
  }

  .nav-justified>li>a {
    margin-bottom: 0;
  }
}

.nav-tabs-justified {
  border-bottom: 0;
}

.nav-tabs-justified>li>a {
  margin-right: 0;
  border-radius: 4px;
}

.nav-tabs-justified>.active>a,
.nav-tabs-justified>.active>a:focus,
.nav-tabs-justified>.active>a:hover {
  border: 1px solid #ddd;
}

@media (min-width:768px) {
  .nav-tabs-justified>li>a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }

  .nav-tabs-justified>.active>a,
  .nav-tabs-justified>.active>a:focus,
  .nav-tabs-justified>.active>a:hover {
    border-bottom-color: #fff;
  }
}

.tab-content>.tab-pane {
  display: none;
}

.tab-content>.active {
  display: block;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

@media (min-width:768px) {
  .navbar {
    border-radius: 4px;
  }
}

@media (min-width:768px) {
  .navbar-header {
    float: left;
  }
}

.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}

.navbar-collapse.in {
  overflow-y: auto;
}

@media (min-width:768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .navbar-collapse.collapse {
    display: block!important;
    height: auto!important;
    padding-bottom: 0;
    overflow: visible!important;
  }

  .navbar-collapse.in {
    overflow-y: visible;
  }

  .navbar-fixed-bottom .navbar-collapse,
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}

.navbar-fixed-bottom .navbar-collapse,
.navbar-fixed-top .navbar-collapse {
  max-height: 340px;
}

@media (max-device-width:480px) and (orientation:landscape) {
  .navbar-fixed-bottom .navbar-collapse,
  .navbar-fixed-top .navbar-collapse {
    max-height: 200px;
  }
}

.container-fluid>.navbar-collapse,
.container-fluid>.navbar-header,
.container>.navbar-collapse,
.container>.navbar-header {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width:768px) {
  .container-fluid>.navbar-collapse,
  .container-fluid>.navbar-header,
  .container>.navbar-collapse,
  .container>.navbar-header {
    margin-right: 0;
    margin-left: 0;
  }
}

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}

@media (min-width:768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}

.navbar-fixed-bottom,
.navbar-fixed-top {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

@media (min-width:768px) {
  .navbar-fixed-bottom,
  .navbar-fixed-top {
    border-radius: 0;
  }
}

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}

.navbar-brand:focus,
.navbar-brand:hover {
  text-decoration: none;
}

.navbar-brand>img {
  display: block;
}

@media (min-width:768px) {
  .navbar>.container .navbar-brand,
  .navbar>.container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.navbar-toggle:focus {
  outline: 0;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

.navbar-toggle .icon-bar+.icon-bar {
  margin-top: 4px;
}

@media (min-width:768px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-nav {
  margin: 7.5px -15px;
}

.navbar-nav>li>a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

@media (max-width:767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .navbar-nav .open .dropdown-menu .dropdown-header,
  .navbar-nav .open .dropdown-menu>li>a {
    padding: 5px 15px 5px 25px;
  }

  .navbar-nav .open .dropdown-menu>li>a {
    line-height: 20px;
  }

  .navbar-nav .open .dropdown-menu>li>a:focus,
  .navbar-nav .open .dropdown-menu>li>a:hover {
    background-image: none;
  }
}

@media (min-width:768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }

  .navbar-nav>li {
    float: left;
  }

  .navbar-nav>li>a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.navbar-form {
  padding: 10px 15px;
  margin-top: 8px;
  margin-right: -15px;
  margin-bottom: 8px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);
}

@media (min-width:768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .navbar-form .form-control-static {
    display: inline-block;
  }

  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }

  .navbar-form .input-group .form-control,
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn {
    width: auto;
  }

  .navbar-form .input-group>.form-control {
    width: 100%;
  }

  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }

  .navbar-form .checkbox,
  .navbar-form .radio {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .navbar-form .checkbox label,
  .navbar-form .radio label {
    padding-left: 0;
  }

  .navbar-form .checkbox input[type=checkbox],
  .navbar-form .radio input[type=radio] {
    position: relative;
    margin-left: 0;
  }

  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}

@media (max-width:767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }

  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}

@media (min-width:768px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.navbar-nav>li>.dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}

.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}

.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}

@media (min-width:768px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}

@media (min-width:768px) {
  .navbar-left {
    float: left!important;
  }

  .navbar-right {
    float: right!important;
    margin-right: -15px;
  }

  .navbar-right~.navbar-right {
    margin-right: 0;
  }
}

.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}

.navbar-default .navbar-brand {
  color: #777;
}

.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:hover {
  color: #5e5e5e;
  background-color: transparent;
}

.navbar-default .navbar-text {
  color: #777;
}

.navbar-default .navbar-nav>li>a {
  color: #777;
}

.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
  color: #333;
  background-color: transparent;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
  color: #555;
  background-color: #e7e7e7;
}

.navbar-default .navbar-nav>.disabled>a,
.navbar-default .navbar-nav>.disabled>a:focus,
.navbar-default .navbar-nav>.disabled>a:hover {
  color: #ccc;
  background-color: transparent;
}

.navbar-default .navbar-toggle {
  border-color: #ddd;
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
  background-color: #ddd;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
  color: #555;
  background-color: #e7e7e7;
}

@media (max-width:767px) {
  .navbar-default .navbar-nav .open .dropdown-menu>li>a {
    color: #777;
  }

  .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,
  .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover {
    color: #333;
    background-color: transparent;
  }

  .navbar-default .navbar-nav .open .dropdown-menu>.active>a,
  .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,
  .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover {
    color: #555;
    background-color: #e7e7e7;
  }

  .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,
  .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,
  .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover {
    color: #ccc;
    background-color: transparent;
  }
}

.navbar-default .navbar-link {
  color: #777;
}

.navbar-default .navbar-link:hover {
  color: #333;
}

.navbar-default .btn-link {
  color: #777;
}

.navbar-default .btn-link:focus,
.navbar-default .btn-link:hover {
  color: #333;
}

.navbar-default .btn-link[disabled]:focus,
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:focus,
fieldset[disabled] .navbar-default .btn-link:hover {
  color: #ccc;
}

.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}

.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}

.navbar-inverse .navbar-brand:focus,
.navbar-inverse .navbar-brand:hover {
  color: #fff;
  background-color: transparent;
}

.navbar-inverse .navbar-text {
  color: #9d9d9d;
}

.navbar-inverse .navbar-nav>li>a {
  color: #9d9d9d;
}

.navbar-inverse .navbar-nav>li>a:focus,
.navbar-inverse .navbar-nav>li>a:hover {
  color: #fff;
  background-color: transparent;
}

.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:focus,
.navbar-inverse .navbar-nav>.active>a:hover {
  color: #fff;
  background-color: #080808;
}

.navbar-inverse .navbar-nav>.disabled>a,
.navbar-inverse .navbar-nav>.disabled>a:focus,
.navbar-inverse .navbar-nav>.disabled>a:hover {
  color: #444;
  background-color: transparent;
}

.navbar-inverse .navbar-toggle {
  border-color: #333;
}

.navbar-inverse .navbar-toggle:focus,
.navbar-inverse .navbar-toggle:hover {
  background-color: #333;
}

.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}

.navbar-inverse .navbar-nav>.open>a,
.navbar-inverse .navbar-nav>.open>a:focus,
.navbar-inverse .navbar-nav>.open>a:hover {
  color: #fff;
  background-color: #080808;
}

@media (max-width:767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header {
    border-color: #080808;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
    color: #9d9d9d;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,
  .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover {
    color: #fff;
    background-color: transparent;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,
  .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,
  .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover {
    color: #fff;
    background-color: #080808;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,
  .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,
  .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover {
    color: #444;
    background-color: transparent;
  }
}

.navbar-inverse .navbar-link {
  color: #9d9d9d;
}

.navbar-inverse .navbar-link:hover {
  color: #fff;
}

.navbar-inverse .btn-link {
  color: #9d9d9d;
}

.navbar-inverse .btn-link:focus,
.navbar-inverse .btn-link:hover {
  color: #fff;
}

.navbar-inverse .btn-link[disabled]:focus,
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:focus,
fieldset[disabled] .navbar-inverse .btn-link:hover {
  color: #444;
}

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.breadcrumb>li {
  display: inline-block;
}

.breadcrumb>li+li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}

.breadcrumb>.active {
  color: #777;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

.pagination>li {
  display: inline;
}

.pagination>li>a,
.pagination>li>span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
  z-index: 2;
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}

.pagination>.disabled>a,
.pagination>.disabled>a:focus,
.pagination>.disabled>a:hover,
.pagination>.disabled>span,
.pagination>.disabled>span:focus,
.pagination>.disabled>span:hover {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.pagination-lg>li>a,
.pagination-lg>li>span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

.pagination-lg>li:first-child>a,
.pagination-lg>li:first-child>span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.pagination-lg>li:last-child>a,
.pagination-lg>li:last-child>span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pagination-sm>li>a,
.pagination-sm>li>span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.pagination-sm>li:first-child>a,
.pagination-sm>li:first-child>span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.pagination-sm>li:last-child>a,
.pagination-sm>li:last-child>span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}

.pager li {
  display: inline;
}

.pager li>a,
.pager li>span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

.pager li>a:focus,
.pager li>a:hover {
  text-decoration: none;
  background-color: #eee;
}

.pager .next>a,
.pager .next>span {
  float: right;
}

.pager .previous>a,
.pager .previous>span {
  float: left;
}

.pager .disabled>a,
.pager .disabled>a:focus,
.pager .disabled>a:hover,
.pager .disabled>span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
}

.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}

a.label:focus,
a.label:hover {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.label:empty {
  display: none;
}

.btn .label {
  position: relative;
  top: -1px;
}

.label-default {
  background-color: #777;
}

.label-default[href]:focus,
.label-default[href]:hover {
  background-color: #5e5e5e;
}

.label-primary {
  background-color: #337ab7;
}

.label-primary[href]:focus,
.label-primary[href]:hover {
  background-color: #286090;
}

.label-success {
  background-color: #5cb85c;
}

.label-success[href]:focus,
.label-success[href]:hover {
  background-color: #449d44;
}

.label-info {
  background-color: #5bc0de;
}

.label-info[href]:focus,
.label-info[href]:hover {
  background-color: #31b0d5;
}

.label-warning {
  background-color: #f0ad4e;
}

.label-warning[href]:focus,
.label-warning[href]:hover {
  background-color: #ec971f;
}

.label-danger {
  background-color: #d9534f;
}

.label-danger[href]:focus,
.label-danger[href]:hover {
  background-color: #c9302c;
}

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777;
  border-radius: 10px;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.btn-group-xs>.btn .badge,
.btn-xs .badge {
  top: 0;
  padding: 1px 5px;
}

a.badge:focus,
a.badge:hover {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.list-group-item.active>.badge,
.nav-pills>.active>a>.badge {
  color: #337ab7;
  background-color: #fff;
}

.list-group-item>.badge {
  float: right;
}

.list-group-item>.badge+.badge {
  margin-right: 5px;
}

.nav-pills>li>a>.badge {
  margin-left: 3px;
}

.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eee;
}

.jumbotron .h1,
.jumbotron h1 {
  color: inherit;
}

.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}

.jumbotron>hr {
  border-top-color: #d5d5d5;
}

.container .jumbotron,
.container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}

.jumbotron .container {
  max-width: 100%;
}

@media screen and (min-width:768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }

  .jumbotron .h1,
  .jumbotron h1 {
    font-size: 63px;
  }
}

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border .2s ease-in-out;
  -o-transition: border .2s ease-in-out;
  transition: border .2s ease-in-out;
}

.thumbnail a>img,
.thumbnail>img {
  margin-right: auto;
  margin-left: auto;
}

a.thumbnail.active,
a.thumbnail:focus,
a.thumbnail:hover {
  border-color: #337ab7;
}

.thumbnail .caption {
  padding: 9px;
  color: #333;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert h4 {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link {
  font-weight: 700;
}

.alert>p,
.alert>ul {
  margin-bottom: 0;
}

.alert>p+p {
  margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.alert-warning hr {
  border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.alert-danger hr {
  border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
  color: #843534;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}

.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
  -webkit-transition: width .6s ease;
  -o-transition: width .6s ease;
  transition: width .6s ease;
}

.progress-bar-striped,
.progress-striped .progress-bar {
  background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  -webkit-background-size: 40px 40px;
  background-size: 40px 40px;
}

.progress-bar.active,
.progress.active .progress-bar {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

.progress-bar-success {
  background-color: #5cb85c;
}

.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
}

.progress-bar-info {
  background-color: #5bc0de;
}

.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
}

.progress-bar-warning {
  background-color: #f0ad4e;
}

.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
}

.progress-bar-danger {
  background-color: #d9534f;
}

.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
}

.media {
  margin-top: 15px;
}

.media:first-child {
  margin-top: 0;
}

.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}

.media-body {
  width: 10000px;
}

.media-object {
  display: block;
}

.media-object.img-thumbnail {
  max-width: none;
}

.media-right,
.media>.pull-right {
  padding-left: 10px;
}

.media-left,
.media>.pull-left {
  padding-right: 10px;
}

.media-body,
.media-left,
.media-right {
  display: table-cell;
  vertical-align: top;
}

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

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

.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.media-list {
  padding-left: 0;
  list-style: none;
}

.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

a.list-group-item,
button.list-group-item {
  color: #555;
}

a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}

a.list-group-item:focus,
a.list-group-item:hover,
button.list-group-item:focus,
button.list-group-item:hover {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}

button.list-group-item {
  width: 100%;
  text-align: left;
}

.list-group-item.disabled,
.list-group-item.disabled:focus,
.list-group-item.disabled:hover {
  color: #777;
  cursor: not-allowed;
  background-color: #eee;
}

.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading {
  color: inherit;
}

.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text {
  color: #777;
}

.list-group-item.active,
.list-group-item.active:focus,
.list-group-item.active:hover {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading>.small,
.list-group-item.active .list-group-item-heading>small,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading>.small,
.list-group-item.active:focus .list-group-item-heading>small,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading>.small,
.list-group-item.active:hover .list-group-item-heading>small {
  color: inherit;
}

.list-group-item.active .list-group-item-text,
.list-group-item.active:focus .list-group-item-text,
.list-group-item.active:hover .list-group-item-text {
  color: #c7ddef;
}

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}

a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}

a.list-group-item-success:focus,
a.list-group-item-success:hover,
button.list-group-item-success:focus,
button.list-group-item-success:hover {
  color: #3c763d;
  background-color: #d0e9c6;
}

a.list-group-item-success.active,
a.list-group-item-success.active:focus,
a.list-group-item-success.active:hover,
button.list-group-item-success.active,
button.list-group-item-success.active:focus,
button.list-group-item-success.active:hover {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}

a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}

a.list-group-item-info:focus,
a.list-group-item-info:hover,
button.list-group-item-info:focus,
button.list-group-item-info:hover {
  color: #31708f;
  background-color: #c4e3f3;
}

a.list-group-item-info.active,
a.list-group-item-info.active:focus,
a.list-group-item-info.active:hover,
button.list-group-item-info.active,
button.list-group-item-info.active:focus,
button.list-group-item-info.active:hover {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}

a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}

a.list-group-item-warning:focus,
a.list-group-item-warning:hover,
button.list-group-item-warning:focus,
button.list-group-item-warning:hover {
  color: #8a6d3b;
  background-color: #faf2cc;
}

a.list-group-item-warning.active,
a.list-group-item-warning.active:focus,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active,
button.list-group-item-warning.active:focus,
button.list-group-item-warning.active:hover {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}

a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}

a.list-group-item-danger:focus,
a.list-group-item-danger:hover,
button.list-group-item-danger:focus,
button.list-group-item-danger:hover {
  color: #a94442;
  background-color: #ebcccc;
}

a.list-group-item-danger.active,
a.list-group-item-danger.active:focus,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active,
button.list-group-item-danger.active:focus,
button.list-group-item-danger.active:hover {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
  box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

.panel-body {
  padding: 15px;
}

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel-heading>.dropdown .dropdown-toggle {
  color: inherit;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}

.panel-title>.small,
.panel-title>.small>a,
.panel-title>a,
.panel-title>small,
.panel-title>small>a {
  color: inherit;
}

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel>.list-group,
.panel>.panel-collapse>.list-group {
  margin-bottom: 0;
}

.panel>.list-group .list-group-item,
.panel>.panel-collapse>.list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}

.panel>.list-group:first-child .list-group-item:first-child,
.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel>.list-group:last-child .list-group-item:last-child,
.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.panel-heading+.list-group .list-group-item:first-child {
  border-top-width: 0;
}

.list-group+.panel-footer {
  border-top-width: 0;
}

.panel>.panel-collapse>.table,
.panel>.table,
.panel>.table-responsive>.table {
  margin-bottom: 0;
}

.panel>.panel-collapse>.table caption,
.panel>.table caption,
.panel>.table-responsive>.table caption {
  padding-right: 15px;
  padding-left: 15px;
}

.panel>.table-responsive:first-child>.table:first-child,
.panel>.table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child,
.panel>.table:first-child>thead:first-child>tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,
.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,
.panel>.table:first-child>thead:first-child>tr:first-child th:first-child {
  border-top-left-radius: 3px;
}

.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,
.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,
.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,
.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,
.panel>.table:first-child>thead:first-child>tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

.panel>.table-responsive:last-child>.table:last-child,
.panel>.table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,
.panel>.table:last-child>tbody:last-child>tr:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,
.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,
.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}

.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,
.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,
.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}

.panel>.panel-body+.table,
.panel>.panel-body+.table-responsive,
.panel>.table+.panel-body,
.panel>.table-responsive+.panel-body {
  border-top: 1px solid #ddd;
}

.panel>.table>tbody:first-child>tr:first-child td,
.panel>.table>tbody:first-child>tr:first-child th {
  border-top: 0;
}

.panel>.table-bordered,
.panel>.table-responsive>.table-bordered {
  border: 0;
}

.panel>.table-bordered>tbody>tr>td:first-child,
.panel>.table-bordered>tbody>tr>th:first-child,
.panel>.table-bordered>tfoot>tr>td:first-child,
.panel>.table-bordered>tfoot>tr>th:first-child,
.panel>.table-bordered>thead>tr>td:first-child,
.panel>.table-bordered>thead>tr>th:first-child,
.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,
.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,
.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,
.panel>.table-responsive>.table-bordered>thead>tr>th:first-child {
  border-left: 0;
}

.panel>.table-bordered>tbody>tr>td:last-child,
.panel>.table-bordered>tbody>tr>th:last-child,
.panel>.table-bordered>tfoot>tr>td:last-child,
.panel>.table-bordered>tfoot>tr>th:last-child,
.panel>.table-bordered>thead>tr>td:last-child,
.panel>.table-bordered>thead>tr>th:last-child,
.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,
.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,
.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,
.panel>.table-responsive>.table-bordered>thead>tr>th:last-child {
  border-right: 0;
}

.panel>.table-bordered>tbody>tr:first-child>td,
.panel>.table-bordered>tbody>tr:first-child>th,
.panel>.table-bordered>thead>tr:first-child>td,
.panel>.table-bordered>thead>tr:first-child>th,
.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,
.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,
.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,
.panel>.table-responsive>.table-bordered>thead>tr:first-child>th {
  border-bottom: 0;
}

.panel>.table-bordered>tbody>tr:last-child>td,
.panel>.table-bordered>tbody>tr:last-child>th,
.panel>.table-bordered>tfoot>tr:last-child>td,
.panel>.table-bordered>tfoot>tr:last-child>th,
.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,
.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,
.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,
.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th {
  border-bottom: 0;
}

.panel>.table-responsive {
  margin-bottom: 0;
  border: 0;
}

.panel-group {
  margin-bottom: 20px;
}

.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}

.panel-group .panel+.panel {
  margin-top: 5px;
}

.panel-group .panel-heading {
  border-bottom: 0;
}

.panel-group .panel-heading+.panel-collapse>.list-group,
.panel-group .panel-heading+.panel-collapse>.panel-body {
  border-top: 1px solid #ddd;
}

.panel-group .panel-footer {
  border-top: 0;
}

.panel-group .panel-footer+.panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

.panel-default {
  border-color: #ddd;
}

.panel-default>.panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
  border-top-color: #ddd;
}

.panel-default>.panel-heading .badge {
  color: #f5f5f5;
  background-color: #333;
}

.panel-default>.panel-footer+.panel-collapse>.panel-body {
  border-bottom-color: #ddd;
}

.panel-primary {
  border-color: #337ab7;
}

.panel-primary>.panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

.panel-primary>.panel-heading+.panel-collapse>.panel-body {
  border-top-color: #337ab7;
}

.panel-primary>.panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}

.panel-primary>.panel-footer+.panel-collapse>.panel-body {
  border-bottom-color: #337ab7;
}

.panel-success {
  border-color: #d6e9c6;
}

.panel-success>.panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.panel-success>.panel-heading+.panel-collapse>.panel-body {
  border-top-color: #d6e9c6;
}

.panel-success>.panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}

.panel-success>.panel-footer+.panel-collapse>.panel-body {
  border-bottom-color: #d6e9c6;
}

.panel-info {
  border-color: #bce8f1;
}

.panel-info>.panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.panel-info>.panel-heading+.panel-collapse>.panel-body {
  border-top-color: #bce8f1;
}

.panel-info>.panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}

.panel-info>.panel-footer+.panel-collapse>.panel-body {
  border-bottom-color: #bce8f1;
}

.panel-warning {
  border-color: #faebcc;
}

.panel-warning>.panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.panel-warning>.panel-heading+.panel-collapse>.panel-body {
  border-top-color: #faebcc;
}

.panel-warning>.panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}

.panel-warning>.panel-footer+.panel-collapse>.panel-body {
  border-bottom-color: #faebcc;
}

.panel-danger {
  border-color: #ebccd1;
}

.panel-danger>.panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.panel-danger>.panel-heading+.panel-collapse>.panel-body {
  border-top-color: #ebccd1;
}

.panel-danger>.panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}

.panel-danger>.panel-footer+.panel-collapse>.panel-body {
  border-bottom-color: #ebccd1;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
  padding-bottom: 75%;
}

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
}

.well blockquote {
  border-color: #ddd;
  border-color: rgba(0,0,0,.15);
}

.well-lg {
  padding: 24px;
  border-radius: 6px;
}

.well-sm {
  padding: 9px;
  border-radius: 3px;
}

.close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}

.close:focus,
.close:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}

button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
  -o-transition: -o-transform .3s ease-out;
  transition: transform .3s ease-out;
  -webkit-transform: translate(0,-25%);
  -ms-transform: translate(0,-25%);
  -o-transform: translate(0,-25%);
  transform: translate(0,-25%);
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0,0);
  -ms-transform: translate(0,0);
  -o-transform: translate(0,0);
  transform: translate(0,0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
  box-shadow: 0 3px 9px rgba(0,0,0,.5);
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.42857143;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer .btn+.btn {
  margin-bottom: 0;
  margin-left: 5px;
}

.modal-footer .btn-group .btn+.btn {
  margin-left: -1px;
}

.modal-footer .btn-block+.btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width:768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
  }

  .modal-sm {
    width: 300px;
  }
}

@media (min-width:992px) {
  .modal-lg {
    width: 900px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  filter: alpha(opacity=0);
  opacity: 0;
  line-break: auto;
}

.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9;
}

.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}

.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}

.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
  box-shadow: 0 5px 10px rgba(0,0,0,.2);
  line-break: auto;
}

.popover.top {
  margin-top: -10px;
}

.popover.right {
  margin-left: 10px;
}

.popover.bottom {
  margin-top: 10px;
}

.popover.left {
  margin-left: -10px;
}

.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

.popover-content {
  padding: 9px 14px;
}

.popover>.arrow,
.popover>.arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover>.arrow {
  border-width: 11px;
}

.popover>.arrow:after {
  content: "";
  border-width: 10px;
}

.popover.top>.arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0,0,0,.25);
  border-bottom-width: 0;
}

.popover.top>.arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}

.popover.right>.arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0,0,0,.25);
  border-left-width: 0;
}

.popover.right>.arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}

.popover.bottom>.arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0,0,0,.25);
}

.popover.bottom>.arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}

.popover.left>.arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0,0,0,.25);
}

.popover.left>.arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner>.item {
  position: relative;
  display: none;
  -webkit-transition: .6s ease-in-out left;
  -o-transition: .6s ease-in-out left;
  transition: .6s ease-in-out left;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
  line-height: 1;
}

@media all and (transform-3d),(-webkit-transform-3d) {
  .carousel-inner>.item {
    -webkit-transition: -webkit-transform .6s ease-in-out;
    -o-transition: -o-transform .6s ease-in-out;
    transition: transform .6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }

  .carousel-inner>.item.active.right,
  .carousel-inner>.item.next {
    left: 0;
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
  }

  .carousel-inner>.item.active.left,
  .carousel-inner>.item.prev {
    left: 0;
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0);
  }

  .carousel-inner>.item.active,
  .carousel-inner>.item.next.left,
  .carousel-inner>.item.prev.right {
    left: 0;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }
}

.carousel-inner>.active,
.carousel-inner>.next,
.carousel-inner>.prev {
  display: block;
}

.carousel-inner>.active {
  left: 0;
}

.carousel-inner>.next,
.carousel-inner>.prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel-inner>.next {
  left: 100%;
}

.carousel-inner>.prev {
  left: -100%;
}

.carousel-inner>.next.left,
.carousel-inner>.prev.right {
  left: 0;
}

.carousel-inner>.active.left {
  left: -100%;
}

.carousel-inner>.active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
  background-color: rgba(0,0,0,0);
  filter: alpha(opacity=50);
  opacity: .5;
}

.carousel-control.left {
  background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
  background-image: -o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
  background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));
  background-image: linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}

.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
  background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
  background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));
  background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}

.carousel-control:focus,
.carousel-control:hover {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: .9;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
  left: 50%;
  margin-left: -10px;
}

.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
  right: 50%;
  margin-right: -10px;
}

.carousel-control .icon-next,
.carousel-control .icon-prev {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}

.carousel-control .icon-prev:before {
  content: '\2039';
}

.carousel-control .icon-next:before {
  content: '\203a';
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000\9;
  background-color: rgba(0,0,0,0);
  border: 1px solid #fff;
  border-radius: 10px;
}

.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
}

.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width:768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next,
  .carousel-control .icon-prev {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }

  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }

  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }

  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }

  .carousel-indicators {
    bottom: 20px;
  }
}

.btn-group-vertical>.btn-group:after,
.btn-group-vertical>.btn-group:before,
.btn-toolbar:after,
.btn-toolbar:before,
.clearfix:after,
.clearfix:before,
.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before,
.dl-horizontal dd:after,
.dl-horizontal dd:before,
.form-horizontal .form-group:after,
.form-horizontal .form-group:before,
.modal-footer:after,
.modal-footer:before,
.modal-header:after,
.modal-header:before,
.nav:after,
.nav:before,
.navbar-collapse:after,
.navbar-collapse:before,
.navbar-header:after,
.navbar-header:before,
.navbar:after,
.navbar:before,
.pager:after,
.pager:before,
.panel-body:after,
.panel-body:before,
.row:after,
.row:before {
  display: table;
  content: " ";
}

.btn-group-vertical>.btn-group:after,
.btn-toolbar:after,
.clearfix:after,
.container-fluid:after,
.container:after,
.dl-horizontal dd:after,
.form-horizontal .form-group:after,
.modal-footer:after,
.modal-header:after,
.nav:after,
.navbar-collapse:after,
.navbar-header:after,
.navbar:after,
.pager:after,
.panel-body:after,
.row:after {
  clear: both;
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.pull-right {
  float: right!important;
}

.pull-left {
  float: left!important;
}

.hide {
  display: none!important;
}

.show {
  display: block!important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none!important;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}

.visible-lg,
.visible-md,
.visible-sm,
.visible-xs {
  display: none!important;
}

.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block {
  display: none!important;
}

@media (max-width:767px) {
  .visible-xs {
    display: block!important;
  }

  table.visible-xs {
    display: table!important;
  }

  tr.visible-xs {
    display: table-row!important;
  }

  td.visible-xs,
  th.visible-xs {
    display: table-cell!important;
  }
}

@media (max-width:767px) {
  .visible-xs-block {
    display: block!important;
  }
}

@media (max-width:767px) {
  .visible-xs-inline {
    display: inline!important;
  }
}

@media (max-width:767px) {
  .visible-xs-inline-block {
    display: inline-block!important;
  }
}

@media (min-width:768px) and (max-width:991px) {
  .visible-sm {
    display: block!important;
  }

  table.visible-sm {
    display: table!important;
  }

  tr.visible-sm {
    display: table-row!important;
  }

  td.visible-sm,
  th.visible-sm {
    display: table-cell!important;
  }
}

@media (min-width:768px) and (max-width:991px) {
  .visible-sm-block {
    display: block!important;
  }
}

@media (min-width:768px) and (max-width:991px) {
  .visible-sm-inline {
    display: inline!important;
  }
}

@media (min-width:768px) and (max-width:991px) {
  .visible-sm-inline-block {
    display: inline-block!important;
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .visible-md {
    display: block!important;
  }

  table.visible-md {
    display: table!important;
  }

  tr.visible-md {
    display: table-row!important;
  }

  td.visible-md,
  th.visible-md {
    display: table-cell!important;
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .visible-md-block {
    display: block!important;
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .visible-md-inline {
    display: inline!important;
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .visible-md-inline-block {
    display: inline-block!important;
  }
}

@media (min-width:1200px) {
  .visible-lg {
    display: block!important;
  }

  table.visible-lg {
    display: table!important;
  }

  tr.visible-lg {
    display: table-row!important;
  }

  td.visible-lg,
  th.visible-lg {
    display: table-cell!important;
  }
}

@media (min-width:1200px) {
  .visible-lg-block {
    display: block!important;
  }
}

@media (min-width:1200px) {
  .visible-lg-inline {
    display: inline!important;
  }
}

@media (min-width:1200px) {
  .visible-lg-inline-block {
    display: inline-block!important;
  }
}

@media (max-width:767px) {
  .hidden-xs {
    display: none!important;
  }
}

@media (min-width:768px) and (max-width:991px) {
  .hidden-sm {
    display: none!important;
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .hidden-md {
    display: none!important;
  }
}

@media (min-width:1200px) {
  .hidden-lg {
    display: none!important;
  }
}

.visible-print {
  display: none!important;
}

@media print {
  .visible-print {
    display: block!important;
  }

  table.visible-print {
    display: table!important;
  }

  tr.visible-print {
    display: table-row!important;
  }

  td.visible-print,
  th.visible-print {
    display: table-cell!important;
  }
}

.visible-print-block {
  display: none!important;
}

@media print {
  .visible-print-block {
    display: block!important;
  }
}

.visible-print-inline {
  display: none!important;
}

@media print {
  .visible-print-inline {
    display: inline!important;
  }
}

.visible-print-inline-block {
  display: none!important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block!important;
  }
}

@media print {
  .hidden-print {
    display: none!important;
  }
}

/*# sourceMappingURL=bootstrap.min.css.map */
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -moz-animation: bounce 2s normal forwards;
  -webkit-animation: bounce 2s normal forwards;
  animation: bounce 2s normal forwards;
}
.banner__content {
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.banner__content hgroup {
  text-align: center;
  font-family: 'Brandon Text', 'Arial';
  margin-top: 60px;
}

.banner__content hgroup h1,
.banner__content hgroup h2 {
  font-family: inherit;
  color: #fff;
}

.banner__content hgroup h1 {
  padding-bottom: 6px;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 36px;
}

@media (min-width: 567px) {
  .banner__content hgroup h1 {
    font-size: 58px;
  }
}

.banner__content hgroup h2 {
  display: inline-block;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  border-top: 4px solid #fff;
  padding-top: 5px;
}

.fscs-banner {
  background-color: #e5f7fb;
}

.fscs-banner__content {
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.fscs-banner__content span {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.fscs-banner__content img {
  padding: 20px 0 0 0;
  max-height: 120px;
}

.fscs-banner__content .jmmContentTitle {
  margin: 20px 0 0 0;
}

.fscs-banner__content h4 {
  font-family: 'Brandon Text', 'Arial';
  font-size: 26px;
  color: #13487a;
  text-align: center;
  font-weight: 500;
  max-width: 75%;
  padding: 40px 20px;
}

main.bond-product {
  padding: 30px 0 0 0;
}

.bond-product p {
  font-family: 'Brandon Text', 'Arial';
  font-size: 18px;
  color: #13487a;
  text-align: center;
}

.bond-product__features {
  background-color: #ccf0f7;
  padding: 20px;
  margin: 25px 0 0 0;
}

.bond-product__features__content {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
}

.bond-product__features ul {
  max-width: 900px;
  margin: 0 auto;
}

.bond-product__features li {
  font-family: 'Brandon Text', 'Arial';
  font-size: 18px;
  color: #13487a;
  flex: 2;
}

@media (min-width: 567px) {
  .fscs-banner__content img {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .banner__content hgroup {
    text-align: left;
  }

  .bond-product__features li {
    min-width: 360px;
  }
}

.bond-product__features li:not(:nth-child(even)) {
  margin-right: 40px;
}

.bond-product .jmmMoreInfo p {
  text-align: left;
}

.details-panel {
  padding: 20px;
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.details-panel--grey {
  background-color: #f2f2f2;
}

.details-panel--blue {
  background-color: #ccf0f7;
}

.details-panel h4,
.details-panel p {
  text-align: left;
}

p.details-panel__intro {
  font-family: 'Brandon Text';
  font-size: 18px;
  line-height: 1.4;
  color: #13487a;
  margin-bottom: 20px;
}

.details-panel__row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.details-panel__row p {
  margin: 0 0 0 20px;
}

.details-panel__row p a {
  flex: 8;
  font-size: 22px;
  color: #13487a;
  text-decoration: none;
  font-weight: 600;
}

.details-panel__download p a {
  font-size: 18px;
}

.details-panel__row a[href^="mailto"] {
  font-size: 14px;
}

.details-panel .btn {
  margin-top: 20px;
}

div[_ngcontent-c2] label[_ngcontent-c2] ul[_ngcontent-c2] {
  max-width: 940px;
  width: 500px;
  min-width: 300px;
}

@media (min-width: 567px) {
  .details-panel__row a[href^="mailto"] {
    font-size: 22px;
  }
}

@media (min-width: 992px) {
  .bond-product__features ul {
    max-width: 450px;
  }
}

@media (min-width: 767px) and (max-width: 992px) {
  .details-panel__row a[href^="mailto"] {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  div[_ngcontent-c2] label[_ngcontent-c2] ul[_ngcontent-c2] {
    width: 300px;
  }
}
/*! nouislider - 8.3.0 - 2016-02-14 17:37:20 */

.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
  direction: ltr;
}

.noUi-base {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.noUi-origin {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
}

.noUi-handle {
  position: relative;
  z-index: 1;
}

.noUi-stacking .noUi-handle {
  z-index: 10;
}

.noUi-state-tap .noUi-origin {
  -webkit-transition: left .3s,top .3s;
  transition: left .3s,top .3s;
}

.noUi-state-drag * {
  cursor: inherit!important;
}

.noUi-base,
.noUi-handle {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  left: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  left: -6px;
  top: -17px;
}

.noUi-background {
  background: #FAFAFA;
  box-shadow: inset 0 1px 1px #f0f0f0;
}

.noUi-connect {
  background: #3FB8AF;
  box-shadow: inset 0 0 3px rgba(51,51,51,.45);
  -webkit-transition: background 450ms;
  transition: background 450ms;
}

.noUi-origin {
  border-radius: 2px;
}

.noUi-target {
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB;
}

.noUi-target.noUi-connect {
  box-shadow: inset 0 0 3px rgba(51,51,51,.45),0 3px 6px -5px #BBB;
}

.noUi-draggable {
  cursor: w-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: n-resize;
}

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB;
}

.noUi-active {
  box-shadow: inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB;
}

.noUi-handle:after,
.noUi-handle:before {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:after,
.noUi-vertical .noUi-handle:before {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

[disabled] .noUi-connect,
[disabled].noUi-connect {
  background: #B8B8B8;
}

[disabled] .noUi-handle,
[disabled].noUi-origin {
  cursor: not-allowed;
}

.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

.noUi-value {
  width: 40px;
  position: absolute;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-large,
.noUi-marker-sub {
  background: #AAA;
}

.noUi-pips-horizontal {
  padding: 10px 0;
  height: 50px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  margin-left: -20px;
  padding-top: 20px;
}

.noUi-value-horizontal.noUi-value-sub {
  padding-top: 15px;
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  width: 15px;
  margin-left: 20px;
  margin-top: -5px;
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  padding: 5px;
  text-align: center;
}

.noUi-horizontal .noUi-handle-lower .noUi-tooltip {
  top: -32px;
}

.noUi-horizontal .noUi-handle-upper .noUi-tooltip {
  bottom: -32px;
}

.noUi-vertical .noUi-handle-lower .noUi-tooltip {
  left: 120%;
}

.noUi-vertical .noUi-handle-upper .noUi-tooltip {
  right: 120%;
}
::-moz-selection {
  text-shadow: none;
  background: #fed136;
}

::selection {
  text-shadow: none;
  background: #fed136;
}

img::selection {
  background: 0 0;
}

img::-moz-selection {
  background: 0 0;
}

img.bonus-plan-bonus-chart {
  margin-right: 0;
}

body,
html {
  overflow-x: hidden;
}

@media (min-width: 992px) {
  img.bonus-plan-bonus-chart {
    margin-right: 20px;
  }
}

@media (max-width: 1023px) {
  .navbar-fixed-top {
    position: relative;
    top: auto;
  }
}

body {
  webkit-tap-highlight-color: #fed136;
}

p {
  font-family: 'Brandon Text';
  font-size: 14px;
}

strong {
  font-size: 16px;
}

h1,
h2,
h3,
h4 {
  margin-top: 0px;
}

h4.sub-title {
  font-size: 22px;
  color: #13487a;
  font-weight: 600;
}

.labelError {
  color: red !important;
  font-weight: bold !important;
}

ul li,
table,
ol li {
  color: #183e7a;
}

ul,
ol {
  margin-bottom: 20px;
}

.noPad {
  padding: 0px !important;
}

.noPadLeft {
  padding-left: 0px !important;
}

.noMargin {
  margin: 0px !important;
}

.noMarginBtm {
  margin-bottom: 0px !important;
}

.noMarginTop {
  margin-top: 0px !important;
}

.noPadTop {
  padding-top: 0px !important;
}

.hidden {
  display: none !important;
}

.marginBtm10 {
  margin-bottom: 10px !important;
}

.marginBtm15 {
  margin-bottom: 15px !important;
}

.marginBtm20 {
  margin-bottom: 20px !important;
}

.marginBtm30 {
  margin-bottom: 30px !important;
}

.marginTop30 {
  margin-top: 30px !important;
}

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

.italic {
  font-style: italic !important;
}

.underline {
  text-decoration: underline !important;
}

.noUnderline {
  text-decoration: none !important;
}

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

.centerImg {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.headerIcon {
  display: inline-block;
  width: 100%;
}

.white {
  color: #fff !important;
}

.red {
  color: #e30613 !important;
}

.black-friday-red {
  color: #e30513 !important;
}

.yellow {
  color: #fabc51 !important;
}

.green {
  color: #98c662 !important;
}

.aqua {
  color: #00b2d7 !important;
}

.purple {
  color: #a04591 !important;
}

.dark-blue {
  color: #13487a !important;
}

.bg-primary {
  background-color: #13487a;
}

.table>thead>tr>th.border-none {
  border: none;
}

.table>caption {
  font-size: 22px;
  color: #13487a;
  font-weight: 600;
}

.light-blue {
  color: #00b2d7 !important;
}

.dropDownLink {
  color: #13487a !important;
  display: block;
  margin-bottom: 10px;
}

.dropDownLink:hover {
  color: #13487a !important;
  text-decoration: underline !important;
}

.clickableIcon {
  cursor: pointer;
  pointer-events: all;
}

.linkPointer {
  cursor: pointer;
}

.aboutLabel {
  font-size: 14px;
  font-weight: normal;
}

.boardRow {
  margin-top: 20px;
  margin-bottom: 20px;
}

.boardTitle {
  font-size: 32px;
  color: #00b2d7;
  margin-bottom: 30px;
}



.alert {
  border-radius: 0px;
}

.showAllLink {
  text-align: center;
  color: #183e7a;
  margin-top: -10px;
}

.headerLinkNoStyle {
  color: #fff !important;
}

.mobileBtn {
  background-color: #93c01f;
  color: #fff;
  border-radius: 0px !important;
  margin-top: 0px;
  padding: 5px;
}

.mobileBtn:hover {
  color: #FFF;
  background-color: #82a91e;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.greenLink {
  color: #98c662;
}

.greenLink:hover {
  color: #98c662;
}

.articleSubheader {
  color: #13487a;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}

.doubleLove2Shop {
  display: none;
}

#colourBlocks {
  padding: 0px;
}

.colourBlockPurple {
  width: 20%;
  float: left;
  background-color: #a04591;
  height: 15px;
}

.colourBlockBlue {
  width: 20%;
  float: left;
  background-color: #00b2d7;
  height: 15px;
}

.colourBlockGreen {
  width: 20%;
  float: left;
  background-color: #93c01f;
  height: 15px;
}

.colourBlockYellow {
  width: 20%;
  float: left;
  background-color: #fabc51;
  height: 15px;
}

.colourBlockRed {
  width: 20%;
  float: left;
  background-color: #e44353;
  height: 15px;
}

.pointer {
  cursor: pointer;
}

.sf-cookies-consent a,
.sf-cookies-consent button {
  font-weight: 700;
}

.sf-cookies-consent button#catapultCookie {
  background: transparent;
  transition: 0.1s ease-in;
  border: 2px solid #183e7a;
  padding: 6px 15px;
  margin: 0;
}

.sf-cookies-consent button#catapultCookie:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.sf-cookies-consent a {
  text-decoration: underline;
}

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) and (max-width : 375px) {
  .sidebarPhoneNumberNumber {
    font-weight: bold;
    font-size: 45px;
  }
}

/* Nexus 4 Portrait */

@media only screen and  (min-width : 384px) and (max-width : 384px) {
  img.img-responsive.animated.fadeInDown {
    max-width: 80%;
  }
}

/* Nexus 6 Portrait */

@media only screen and  (min-width : 412px) and (max-width : 412px) {
  img.img-responsive.animated.fadeInDown {
    max-width: 80%;
  }
}

/* iPhone 6 + Portrait */

@media only screen and  (min-width : 414px) and (max-width : 414px) {
  .sidebarPhoneNumberNumber {
    font-weight: bold;
    font-size: 45px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width : 480px) {
  .sidebarPhoneNumberNumber {
    font-weight: bold;
    font-size: 45px;
  }

  img.img-responsive.animated.fadeInDown {
    max-width: 50%;
  }

  .sidebarNoPadLeft {
    padding-left: 8px!important;
  }
}

/* iPhone 6+ Landscape */

@media (min-width:736px) {
  img.img-responsive.animated.fadeInDown {
    max-width: 45%;
  }
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  img.img-responsive.animated.fadeInDown {
    max-width: 100%;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  .sidebarPhoneNumberNumber {
    font-weight: bold;
    font-size: 36px;
  }

  .noPadMD {
    padding: 0px !important;
  }

  .applySidebarBox {
    margin-top: 0px;
  }

  .fa-stack {
    line-height: 2.4em !important;
  }

  .sidebarNoPad {
    padding: 0!important;
  }

  .sidebarNoPadLeft {
    padding-left: 0!important;
  }

  .applySidebarBox {
    max-width: 360px;
  }

  .sidebarDownloadContent {
    margin-top: 40px !important;
    margin-bottom: 30px;
  }

  .downloadIcon {
    width: 70%;
  }

  .sectionSpacer {
    height: 5px;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width : 1200px) {
  .sidebarPhoneNumberNumber {
    font-weight: bold;
    font-size: 45px;
  }

  .sectionSpacer {
    height: 5px;
  }
}
#mobileMenu {
  /*padding: 65px 0px 30px 0px;*/
  padding: 0px 0px 25px 0px;
}

.mobileMenu {
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}

.NW20-mobileMenu {
  background-color: #ffffff;
  border-color: #ffffff;
}

.mobileNavbarBrand {
  float: left;
  height: 0px;
  font-size: 18px;
  line-height: 20px;
}

.mobileNavbarBrand img {
  max-height: 110px;
  max-width: initial !important;
}

.navbar-default .navbar-toggle {
  border-color: #f2f2f2;
}

.navbar-default .navbar-toggle:hover {
  background-color: #f2f2f2;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #13487a;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border: 0px;
  border-color: transparent;
}

.mobileMenuLogo {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: -65px;
  margin-bottom: -65px;
}

.mobileMenuContact {
  margin-top: 30px;
}

.mobileMenuTwitter,
.mobileMenuFacebook,
.mobileMenuLinkedin {
  width: 10%;
  height: 10%;
  margin: 10px 0px;
  display: inline-block;
  float: left;
}

.mobileMenuFacebook {
  margin-left: 5px;
  margin-right: 5px;
}

.mobileMenuTel {
  font-family: 'Brandon Text';
  color: #00b2d7;
  font-size: 21px;
  line-height: 1;
  font-weight: 700;
  float: right;
  margin-top: 13px;
  margin-bottom: 0px;
  margin-right: 0px;
}

.mobileMenuTelApp {
  font-family: 'Brandon Text';
  color: #00b2d7;
  font-size: 21px;
  line-height: 1;
  font-weight: 700;
  float: right;
  text-align: right;
  margin-top: 13px;
  margin-bottom: 0px;
  margin-right: 0px;
}

.NW20-mobileMenuTelApp {
  margin-top: 0px;
}

.page-id-2751 .NW20-mobileMenuTelApp,
.page-id-60275 .NW20-mobileMenuTelApp,
.page-id-28381 .NW20-mobileMenuTelApp,
.page-id-11626 .NW20-mobileMenuTelApp,
.page-id-claims .NW20-mobileMenuTelApp,
.page-id-60279 .NW20-mobileMenuTelApp,
.page-id-11262 .NW20-mobileMenuTelApp {
  width: 60%;
}

.page-id-claims .NW20-mobileMenuTelApp {
  width: 50%;
}

/*html #wpadminbar {
    height: 46px;
    min-width: 300px;
    display: none;
}*/

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) and (max-width : 375px) {
  .mobileMenuLogo {
    width: 40%;
  }
}

/* iPhone 6 + Portrait */

@media only screen and  (min-width : 414px) and (max-width : 414px) {
  .mobileMenuLogo {
    width: 40%;
  }
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  .mobileMenuTel {
    margin-right: 20px;
  }

  .navbar-header {
    padding: 0;
  }
}
#news-bar .row {
  display: flex;
  flex-direction: column;
}

#news-bar p {
  padding: 20px 60px 0;
  text-align: center;
  color: #13487a;
}

#news-bar span {
  word-break: break-word;
}

#news-bar .blue-banner {
  position: relative;
}

#news-bar .smallOutlineCtaBtn,
.smallOutlineBlueCtaBtn {
  color: #13487a;
  border-color: #13487a;
  max-width: 100px;
  display: block;
  margin: 0 auto 20px;
}

.topRow {
  background-color: #f2f2f2;
  height: 50px;
  width: 100%;
}

.NW20-topRow {
  background-color: #ffffff;
  height: 50px;
  width: 100%;
}

.topRowList {
  padding-left: 0px;
}

.topRowList li {
  list-style-type: none;
  display: inline-block;
}

.topRowList p {
  font-family: "Brandon Text", Helvetica, Arial, sans-serif;
  color: #173e7a;
}

.desktopMenuCallUsNumber {
  color: #00b2d7 !important;
  font-weight: bold;
  font-family: "Brandon Text", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 38px;
  letter-spacing: -2px;
}

.desktopMenuList {
  list-style-type: none;
  float: right;
  min-width: 400px;
  margin-top: -5px;
  height: 35px;
}

.desktopMenuList li {
  display: inline-block;
  padding-left: 7px;
}

.desktopPageMenu {
  margin-top: 10px;
  width: 80%;
  float: right;
  position: relative;
  top: -100px;
  margin-bottom: -100px;
}

.mobileSMIcon {
  max-width: 28px;
}

.desktopPageMenuContainer {
  position: relative;
  top: -86px;
  margin-bottom: -86px;
}

.desktopProductMenuContainer {
  position: relative;
  top: -50px;
  margin-bottom: -50px;
}

.link_text {
  font-family: "Brandon Text", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

.menu-desktoppagemenu-container ul li {
  display: inline-block;
  padding-right: 20px;
  font-family: "Brandon Text", Helvetica, Arial, sans-serif;
}

.menu-desktoppagemenu-container ul li a {
  color: #173e7a !important;
}

.menu-desktoppagemenu-container {
  display: inline-block;
  width: 100%;
}

#search {
  list-style-type: none;
  display: inline-block;
  float: right;
  position: relative;
  top: -10px;
  width: 180px;
}

#searchBox {
  border: 0px;
  border-bottom: 1px solid #173e7a;
  font-family: "Brandon Text", Arial, sans-serif !important;
}

.searchBoxIcon {
  color: #173e7a;
}

::-webkit-input-placeholder {
  color: #173e7a;
}

:-moz-placeholder {
  color: #173e7a;
}

::-moz-placeholder {
  color: #173e7a;
}

:-ms-input-placeholder {
  color: #173e7a;
}

.searchform {
  position: relative;
  top: -50px;
  margin-bottom: -50px;
  width: 400px;
  float: right;
}

.menuClaim,
.menuClaim:hover {
  background-color: #FFF;
  height: 204px;
  margin-bottom: -30px;
}

.menuDropClaimTitle {
  display: block;
  font-family: 'Brandon Text';
  line-height: 1.2;
  font-size: 20px;
  color: #13487a !important;
}

.menuDropFuneralTitle {
  display: block;
  font-family: 'Brandon Text';
  line-height: 1.2;
  font-size: 18px;
  color: #13487a !important;
  position: relative;
  top: -20px;
}

.menuDropClaim {
  display: block;
  font-family: 'Brandon Text';
  text-align: center;
  font-size: 118px;
  line-height: 1.2;
  margin-bottom: 20px;
  height: 120px;
  margin-bottom: -12px;
  position: relative;
  top: -190px;
}

.menuDropFuneral {
  display: block;
  font-family: 'Brandon Text';
  text-align: center;
  font-size: 118px;
  line-height: 1.2;
  margin-bottom: 20px;
  height: 120px;
  margin-bottom: -22px;
  position: relative;
  top: -192px;
}

.menuDropClaimText {
  font-family: 'Brandon Text';
  color: #13487a !important;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: -120px;
  display: block;
}

p.menuDropClaimTitle.center {
  position: relative;
  top: -25px;
}

#menu-item-9764 {
  background-color: #00bfdf;
  color: #FFF;
  padding: 5px 10px;
  float: right;
  top: -26px;
  position: relative;
}

#menu-item-9764:hover {
  background-color: #00acc8;
  color: #FFF;
}

#menu-item-9764 a {
  color: #FFF !important;
  text-decoration: none !important;
}

#menu-item-41056,
#menu-item-41114 {
  background-color: #00bfdf;
  color: #FFF;
  padding: 5px 10px;
  float: right;
  position: relative;
  top: -5px;
}

#menu-item-41056:hover,
#menu-item-41114:hover {
  background-color: #00acc8;
  color: #FFF;
}

#menu-item-41056 a,
#menu-item-41114 a {
  color: #FFF !important;
  text-decoration: none !important;
}

/* Nokia Lumia Landscape */

@media (min-width:533px) and (max-width : 533px) {
  #scMasterMenu {
    margin-bottom: 170px;
  }
}

/* iPhone 5 Landscape */

@media (min-width:568px) {
  #scMasterMenu {
    margin-bottom: 170px;
  }
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  #scMasterMenu {
    margin-bottom: 480px;
  }

  #news-bar p {
    padding: 20px;
  }

  #news-bar .row {
    flex-direction: row;
  }

  #news-bar .smallOutlineCtaBtn {
    margin: auto;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  ul#menu-desktoppagemenu-1 {
    padding-left: 0px;
  }

  ul#menu-desktoppagemenu {
    padding-left: 0px;
  }

  .desktopPageMenuContainer {
    position: relative;
    top: -145px !important;
    margin-bottom: -145px !important;
  }

  .desktopProductMenuContainer {
    position: relative;
    top: -100px;
    margin-bottom: -100px;
  }

  .menuDropTitle {
    font-family: 'Brandon Text';
    line-height: 1.2;
    font-size: 18px;
  }

  .menuDropText {
    font-family: 'Brandon Text';
    color: #13487a !important;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 20px;
    display: block;
    min-height: 110px;
  }

  .menuDropText2 {
    font-family: 'Brandon Text';
    color: #13487a !important;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 20px;
    display: block;
    min-height: 135px;
  }

  .purpleMenuHR {
    margin-top: 15px;
    margin-bottom: 15px;
    border: 0;
    border-top: 2px solid #a04591;
  }

  .aquaMenuHR {
    margin-top: 15px;
    margin-bottom: 15px;
    border: 0;
    border-top: 2px solid #00b2d7;
  }

  .greenMenuHR {
    margin-top: 15px;
    margin-bottom: 15px;
    border: 0;
    border-top: 2px solid #93c01f;
  }

  .yellowMenuHR {
    margin-top: 15px;
    margin-bottom: 15px;
    border: 0;
    border-top: 2px solid #fabc51;
  }

  ul#mega_main_menu_ul > li > ul.mega_dropdown > li > a.item_link > span.link_content > span.link_text > span.link_text_title {
    display: none !important;
  }

  #desktopMenu {
    padding: 0px;
    margin-bottom: 140px;
  }

  .desktopMenuSocialMediaIcons {
    margin-left: 100px;
  }

  .desktopMenuCallUs {
    padding-left: 263px;
  }

  .desktopPageMenuContainer {
    position: relative;
    top: -110px;
    margin-bottom: -110px;
  }

  .desktopMenuList {
    padding-left: 70px;
  }

  .menu-desktoppagemenu-container ul li a {
    font-size: 14px;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width : 1200px) {
  ul#menu-desktoppagemenu-1,
  ul#menu-desktoppagemenu {
    padding-left: 0px;
  }

  .desktopPageMenuContainer {
    position: relative;
    top: -95px !important;
    margin-bottom: -95px !important;
  }

  .desktopProductMenuContainer {
    top: -50px;
    margin-bottom: -50px;
  }

  .desktopMenuSocialMediaIcons {
    margin-left: 200px;
  }

  .desktopMenuCallUs {
    padding-left: 363px;
  }

  .desktopPageMenuContainer {
    position: relative;
    top: -86px;
    margin-bottom: -86px;
  }

  .menu-desktoppagemenu-container ul li a {
    font-size: 16px;
  }

  #menu-item-9764 {
    top: -5px;
  }
}

@media only screen and (min-width : 1200px) {
  #scMasterMenu {
    margin-bottom: 465px;
  }
}
footer {
  padding: 0px;
}

#mobileFooterContact {
  padding: 40px 0px;
  background-color: #e5f7fb;
}

.mobileFooterContactTitle {
  text-align: left;
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 18px;
  float: left;
  margin-bottom: 0px;
  line-height: 1;
}

.mobileFooterContactDetails {
  line-height: 1.4;
  text-align: left;
  font-family: 'Brandon Text';
  color: #00b2d7;
  font-size: 18px;
  float: left;
}

.mobileFooterVisitIcon,
.mobileFooterCallIcon,
.mobileFooterEmailIcon {
  width: 70%;
  height: 70%;
  margin-bottom: 30px;
}

.mobileFooterPostIcon {
  width: 65%;
  height: 65%;
}

#footerSlogan {
  padding: 40px 0px;
  background-color: #13487a;
}

.footerSlogan {
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0px;
}

#footerLegal {
  padding: 40px 20px;
}

.footerLegal {
  text-align: center;
  font-family: 'Brandon Text';
  color: #89a3bc;
  font-size: 16px;
  margin-bottom: 0px;
}

#footerLogos {
  padding-top: 30px;
}

.footerLogo1,
.footerLogo4 {
  max-width: 80%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footerLogo1,
.footerLogo2 {
  margin-bottom: 30px;
}

.footerLogo2,
.footerLogo3 {
  max-width: 60%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footerLogo4 {
  margin-top: 15px;
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  #footerContact {
    padding: 40px 0px;
    background-color: #e5f7fb;
  }

  .footerUsefulLinksTitle {
    color: #13487a;
    font-family: 'Brandon Text';
    font-size: 20px;
  }

  .footerUsefulLinks {
    display: block;
    color: #00b2d7;
    font-family: 'Brandon Text';
    font-size: 18px;
  }

  .footerDetailsTitle {
    color: #13487a;
    font-family: 'Brandon Text';
    font-size: 20px;
    margin-bottom: 0px;
  }

  .footerSocialMediaTitle {
    color: #13487a;
    font-family: 'Brandon Text';
    font-size: 20px;
    margin-bottom: 10px;
    margin-left: 62px;
  }

  .footerDetails {
    color: #00b2d7;
    font-family: 'Brandon Text';
    font-size: 18px;
  }

  .footerVisitIcon {
    display: inline-block;
    width: 15%;
    float: left;
    margin-right: 20px;
    margin-top: 7px;
    margin-left: 20px;
  }

  .footerCallRow {
    margin: 30px 0px;
  }

  .footerCallIcon {
    display: inline-block;
    width: 15%;
    float: left;
    margin-right: 20px;
    margin-top: 4px;
    margin-left: 20px;
  }

  .footerEmailIcon {
    display: inline-block;
    width: 15%;
    float: left;
    margin-right: 20px;
    margin-left: 20px;
  }

  .footerPostIcon {
    display: inline-block;
    width: 14%;
    float: left;
    margin-top: 6px;
    margin-right: 20px;
    margin-bottom: 50px;
  }

  .footerPostRow {
    margin-bottom: 23px;
  }

  .footerTwitterIcon {
    margin-left: 62px;
    width: 15%;
  }

  .footerFacebookIcon {
    margin: 0px 15px;
    width: 15%;
  }

  .footerLinkedinIcon {
    width: 15%;
  }

  .footerLogo1,
  .footerLogo2,
  .footerLogo3 {
    margin-bottom: 0px;
  }

  .footerLogo1,
  .footerLogo2 {
    margin-top: 10px;
  }

  .footerLogo4 {
    margin-top: 20px;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  .footerLogo4 {
    margin-top: 20px;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width : 1200px) {
  .footerSocialMediaTitle {
    margin-left: 70px;
  }

  .footerTwitterIcon {
    margin-left: 70px;
  }

  .footerLogo1,
  .footerLogo4 {
    max-width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
  }

  .footerLogo2,
  .footerLogo3 {
    max-width: 60%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .footerLogo2 {
    margin-top: 25px;
  }

  #footerLogos {
    padding-top: 30px;
  }

  .footerLogo4 {
    margin-top: 30px;
  }
}
.homeHeaderTitle {
  text-align: center;
  font-family: 'Brandon Text';
  font-size: 40px;
  color: #FFF;
  line-height: 1;
  margin-bottom: 0px;
  margin-top: 120px;
}

.homeHeaderTitleBold {
  text-align: center;
  font-family: 'Brandon Text';
  font-size: 72px;
  color: #FFF;
  font-weight: bold;
  line-height: 1;
}

.yourMutualHR {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 0;
  border-top: 2px solid #FFFFFF;
}

#conditionalContentUnison {
  display: none;
}

#conditionalContentUsdaw {
  display: none;
}

.smallGreenCtaBtn {
  background-color: #00BD13;
  color: #fff;
  border-radius: 3px !important;
  margin-top: 0px;
  padding: 10px;
}

.smallGreenCtaBtn:hover {
  color: #FFF;
  background-color: #28CB38;
}

.smallOutlineCtaBtn {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 3px !important;
  margin-top: 0px;
  margin-left: 10px;
  padding: 9px;
}

.smallOutlineCtaBtn:hover {
  color: #1B3D7A;
  background-color: #fff;
}

#homeCarousel {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/family-on-beach.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 285px;
  margin-top: -45px;
  padding: 0px 0px 0px 0px;
}

#homeCarouselShort {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/junior-isa-banner-short.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 250px;
  margin-top: -45px;
  padding: 90px 0px 0px 0px;
}

#homeCarousel hr,
#homeCarouselShort hr {
  border-top: 5px solid #eee;
  width: 90%;
  margin: auto;
}

.homeHR {
  border-top: 3px solid #eee;
  width: 90%;
  margin: auto;
}

#homeCarousel .homeHeaderTitle {
  text-align: center;
  font-family: 'Brandon Text';
  font-size: 18px;
  color: #FFF;
  line-height: 1.1;
  margin-bottom: 0px;
  margin-top: 10px;
}

#homeCarousel .homeHeaderTitleBold {
  text-align: center;
  font-family: 'Brandon Text';
  font-size: 32px;
  color: #FFF;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 15px;
  padding-top: 80px;
}

#yourMutualCarousel {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/family-on-beach.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 210px;
  margin-top: -45px;
  padding: 65px 0px 0px 0px;
}

#pageCarousel {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/family-on-beach.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 200px;
  margin-top: -45px;
  padding: 90px 0px 0px 0px;
}

#pageCarousel .homeHeaderTitleBold {
  text-align: center;
  font-family: 'Brandon Text';
  font-size: 32px;
  color: #FFF;
  font-weight: bold;
  line-height: 1;
}

.fourOhFourCarousel {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/fourOhFour.jpg) !important;
}

#intermediaryCarousel {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/ifa-login-banner.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 460px;
  margin-top: -45px;
  padding: 90px 0px 0px 0px;
}

#intermediaryCarousel h2 {
  color: #13487a;
  font-family: 'Brandon Text';
}

.established {
  font-size: 20px;
  font-family: 'Brandon Text';
  color: #13487a;
  margin: 10px 0 0;
}

.homeHeaderEst {
  font-family: 'Brandon Text';
  color: #FFF;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 0px;
}

#homeProducts {
  padding: 40px 0px;
}

.productsIntroTitle {
  color: #183e7a;
  font-family: 'Brandon Text';
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 40px;
}

.homeProductIcons {
  width: 25%;
  height: 25%;
  margin-bottom: 10px;
}

.homeProductBox {
  height: 130px;
  background-color: #183e7a;
  padding: 10px;
  margin-bottom: 20px;
}

.homeProductBoxContent {
  height: 130px;
  margin-bottom: 20px;
}

.homeProductBoxContentAlternative {
  height: 345px;
  background-color: #183e7a;
  padding: 20px;
  margin-bottom: 25px;
}

.homeProductBoxContentAlternative p {
  color: #fff;
}

.homeProductBoxText {
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 14px;
  line-height: 1.4;
}

.homeProductBoxImg {
  margin-bottom: 40px;
}

.homeProductBonusTitle,
.homeProductJuniorIsaTitle {
  position: relative;
  bottom: 72px;
  left: 10px;
  font-size: 20px;
  font-family: 'Brandon Text';
  color: #FFF;
  margin-bottom: 0px;
  margin-right: 20px;
}

.homeProductIsaTitle,
.homeProductCtfTitle,
.homeProductSipTitle {
  position: relative;
  bottom: 88px;
  left: 10px;
  font-size: 20px;
  font-family: 'Brandon Text';
  color: #FFF;
  margin-bottom: 0px;
  margin-right: 20px;
  line-height: 1;
}

.homeProductOver50Title {
  position: relative;
  bottom: 108px;
  left: 10px;
  font-size: 20px;
  font-family: 'Brandon Text';
  color: #FFF;
  margin-bottom: 0px;
  margin-right: 11px;
  line-height: 1;
}

.homeProductYspTitle,
.homeProductUspTitle {
  position: relative;
  bottom: 108px;
  left: 10px;
  font-size: 20px;
  font-family: 'Brandon Text';
  color: #FFF;
  margin-bottom: 0px;
  margin-right: 11px;
  line-height: 1;
}

.homeProductSimpleProtectionTitle {
  position: relative;
  bottom: 108px;
  left: 10px;
  font-size: 20px;
  font-family: 'Brandon Text';
  color: #FFF;
  margin-bottom: 0px;
  margin-right: 10px;
  line-height: 1;
}

.homepageHoverLink:hover {
  text-decoration: none;
}

.homeYourMutualTitle {
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 20px;
  font-weight: bold;
  line-height: 1 !important;
  text-align: left;
}

.moneyAgeSquare {
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 20px;
  line-height: 1.1;
  text-align: left;
}

.homeYourMutualTitleEU {
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 20px;
  font-weight: bold;
  line-height: 1 !important;
  text-align: left;
}

.homeYourMutualHR {
  border-top: 2px solid #EEE;
  margin-bottom: 10px;
  margin-top: 10px;
}

.yourProtectionTitle {
  color: #98c662;
  font-family: 'Brandon Text';
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
}

.yourProtectionHR {
  border-top: 3px solid #98c662;
}

.yourInsuranceTitle {
  color: #fabc51;
  font-family: 'Brandon Text';
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
}

.yourInsuranceHR {
  border-top: 3px solid #fabc51;
}

.productsMoreInfo {
  color: #183e7a;
  font-family: 'Brandon Text';
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
}

#modernMutual {
  padding: 40px 0px;
  background-color: #e5f7fb;
}

.modernMutualTitle {
  color: #00b2d7;
  font-family: 'Brandon Text';
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.modernMutualText {
  color: #183e7a;
  font-family: 'Brandon Text';
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
}

.modernMutualBtn {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 40px;
  background-color: #13487a;
  border-radius: 0px;
  border: 0px;
  padding: 15px 25px;
  color: #FFF;
}

.modernMutualBtn:hover {
  background-color: #183e7a;
  color: #FFF;
}

#homeNews {
  padding: 40px 0px;
}

.homeNewsTitle {
  color: #00b2d7;
  font-family: 'Brandon Text';
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.homeNewsArticleDate {
  font-family: 'Brandon Text';
  color: #183e7a;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}

.homeNewsArticleTitle1 {
  font-family: 'Brandon Text';
  font-size: 24px;
  color: #e44353;
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: center;
  display: block;
}

.homeNewsArticleTitle1:hover {
  color: #cb2637;
}

.homeNewsArticleTitle2 {
  font-family: 'Brandon Text';
  font-size: 24px;
  color: #93c01f;
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: center;
  display: block;
}

.homeNewsArticleTitle2:hover {
  color: #82a91e;
}

.homeNewsArticleTitle3 {
  font-family: 'Brandon Text';
  font-size: 24px;
  color: #00b2d7;
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: center;
  display: block;
}

.homeNewsArticleTitle3:hover {
  color: #0d91ad;
}

.homeNewsArticleIntro {
  color: #183e7a;
  font-family: 'Brandon Text';
  font-size: 16px;
  line-height: 1.4;
  margin: 30px 0px;
  text-align: center;
}

.homeNewsArticleButton1 {
  display: block;
  background-color: #e44353;
  border-radius: 0px;
  border: 0px;
  padding: 15px 45px;
  color: #FFF;
  font-size: 18px;
}

.homeNewsArticleButton1:hover {
  background-color: #cb2637;
  color: #FFF;
}

.homeNewsArticleButton2 {
  display: block;
  background-color: #93c01f;
  border-radius: 0px;
  border: 0px;
  padding: 15px 45px;
  color: #FFF;
  font-size: 18px;
}

.homeNewsArticleButton2:hover {
  background-color: #82a91e;
  color: #FFF;
}

.homeNewsArticleButton3 {
  display: block;
  background-color: #00b2d7;
  border-radius: 0px;
  border: 0px;
  padding: 15px 45px;
  color: #FFF;
  font-size: 18px;
}

.homeNewsArticleButton3:hover {
  background-color: #0d91ad;
  color: #FFF;
}

.homeNewsArticleButton1,
.homeNewsArticleButton2 {
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.homeNewsArticleButton3 {
  margin-left: auto;
  margin-right: auto;
}

.homeNewsArticleButton1:hover,
.homeNewsArticleButton2:hover,
.homeNewsArticleButton3:hover {
  color: #FFF;
  text-decoration: none !important;
}

.newsArticleContent {
  background-color: #b2e8f3;
  padding: 30px;
}

.newsArticleContent p {
  font-family: 'Brandon Text';
}

#reviewWidgetBanner {
  padding-top: 15px;
  background-color: #fff;
}

#reviewWidgetBannerProduct {
  padding-top: 10px;
  background-color: #fff;
  margin-bottom: 15px;
}

.marginTopChange {
  margin-top: -25px;
}

.imgListWrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 10%;
}

.img-alignment {
  width: calc(100% / 3);
  height: 200px;
  margin: 32px 0;
  display: block;
  position: relative;
}

.img-alignment > img {
  max-height: 100%;
  max-width: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0 20px;
}

.home-message {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 16px 0;
  align-items: center;
}

.NW20-home-message {
  display: flex;
  justify-content: space-around;
  width: 80%;
  margin: 0 auto;
  padding: 16px 0;
  align-items: center;
}

.home-message p {
  font-family: "Brandon Text", Arial;
  font-size: 22px;
  font-weight: 400;
  color: #13487a;
  text-align: center;
}

.home-message img {
  max-height: 120px;
  padding: 0 20px;
}

.NW20-home-message .NW20-fscsLogo,
.NW20-home-message .NW20-shield-icon {
  display: none;
}

.NW20-home-message .NW20-arrow-icon {
  padding: 0px 10px 0px 0px;
}

@media only screen and (max-width: 767px) {
  .imgListWrapper {
    margin: 0;
  }

  .home-message {
    padding: 16px;
    font-size: 18px;
  }

  .home-message img {
    max-height: 100px;
  }

  .img-alignment {
    width: 50%;
  }
}

@media only screen and (max-width : 375px) {
  .img-alignment {
    width: 100%;
  }

  .home-message {
    flex-direction: column;
  }

  .home-message img {
    max-height: 120px;
    padding: 20px;
  }
}

/* Custom, iPhone Retina */

@media only screen and (min-width : 320px) {
  .homepageBannerHeaderSection {
    margin-top: 60px;
  }
}

/* Galaxy S4 Portrait */

@media only screen and  (min-width : 360px) and (max-width : 360px) {
  .homepageBannerHeaderSection {
    margin-top: 75px;
  }

  .homepageBannerHeaderText {
    font-size: 40px;
  }

  #homeCarousel .homeHeaderTitleBold {
    padding-top: 95px;
  }

  .homeProductBoxContent {
    height: 150px;
  }

  .homeProductBox {
    height: 150px;
  }

  .homeProductYspTitle,
  .homeProductUspTitle,
  .homeProductOver50Title {
    bottom: 88px;
  }

  .homeProductSimpleProtectionTitle {
    bottom: 108px;
  }
}

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) and (max-width : 375px) {
  .homepageBannerHeaderSection {
    margin-top: 85px;
  }

  .homepageBannerHeaderText {
    font-size: 42px;
  }

  .homeProductBoxContent {
    height: 160px;
    margin-bottom: 20px;
  }

  .homeProductBox {
    height: 160px;
  }

  .homeProductYspTitle,
  .homeProductUspTitle,
  .homeProductSimpleProtectionTitle,
  .homeProductOver50Title {
    bottom: 88px;
  }

  #homeCarousel .homeHeaderTitleBold {
    padding-top: 95px;
  }
}

/* Nexus 4 Portrait */

@media only screen and  (min-width : 384px) and (max-width : 384px) {
  .homepageBannerHeaderText {
    font-size: 42px;
  }

  .homeProductBox {
    height: 162px;
    margin-bottom: 20px;
  }

  .homeProductBoxContent {
    height: 162px;
    margin-bottom: 20px;
  }

  .homeProductYspTitle,
  .homeProductUspTitle,
  .homeProductOver50Title,
  .homeProductSimpleProtectionTitle {
    position: relative;
    bottom: 88px;
    left: 10px;
  }

  .homeProductBonusTitle,
  .homeProductJuniorIsaTitle {
    position: relative;
    bottom: 69px;
    left: 10px;
  }
}

/* Nexus 6 Portrait */

@media only screen and  (min-width : 412px) and (max-width : 412px) {
  .homeProductBox {
    height: 176px;
    margin-bottom: 20px;
  }

  .homeProductBoxContent {
    height: 176px;
    margin-bottom: 20px;
  }

  .homeProductYspTitle,
  .homeProductUspTitle,
  .homeProductOver50Title,
  .homeProductSimpleProtectionTitle {
    position: relative;
    bottom: 88px;
    left: 10px;
  }

  .homeProductBonusTitle,
  .homeProductJuniorIsaTitle {
    position: relative;
    bottom: 69px;
    left: 10px;
  }

  .homepageBannerHeaderSection {
    margin-top: 85px;
  }
}

/* iPhone 6 + Portrait */

@media only screen and  (min-width : 414px) and (max-width : 414px) {
  .homepageBannerHeaderSection {
    margin-top: 95px;
  }

  .homepageBannerHeaderText {
    font-size: 45px;
  }

  .homeProductBoxContent {
    height: 180px;
    margin-bottom: 20px;
  }

  .homeProductBox {
    height: 180px;
  }

  .homeProductYspTitle,
  .homeProductUspTitle,
  .homeProductSimpleProtectionTitle,
  .homeProductOver50Title {
    bottom: 88px;
  }

  #homeCarousel .homeHeaderTitleBold {
    padding-top: 110px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width : 480px) {
  #homeCarousel {
    min-height: 215px;
    margin-top: -45px;
    padding: 0px 0px 0px 0px;
  }

  #homeCarousel .homeHeaderTitleBold {
    padding-top: 50px;
  }

  .homeProductBoxContent,
  .homeProductBox {
    height: 210px;
  }

  .homeProductBox {
    padding: 15px;
  }

  .homeProductIsaTitle,
  .homeProductCtfTitle {
    bottom: 115px;
    left: 15px;
    font-size: 32px;
  }

  .homeProductBonusTitle,
  .homeProductJuniorIsaTitle {
    bottom: 90px;
    left: 15px;
    font-size: 32px;
  }

  .homeProductUspTitle {
    bottom: 147px;
    left: 15px;
    font-size: 32px;
    margin-right: 30px;
  }

  .homeProductYspTitle {
    bottom: 147px;
    left: 15px;
    font-size: 32px;
    margin-right: 30px;
  }

  .homeProductSimpleProtectionTitle {
    bottom: 147px;
    left: 15px;
    font-size: 32px;
    margin-right: 30px;
  }

  .homeProductOver50Title {
    bottom: 147px;
    left: 15px;
    font-size: 32px;
    margin-right: 31px;
  }

  .homeYourMutualTitle,
  .yourProtectionTitle,
  .yourInsuranceTitle {
    font-size: 32px;
  }

  .moneyAgeSquare {
    font-size: 32px;
    line-height: 1.1;
  }

  .homeYourMutualTitleEU {
    font-size: 30px;
  }

  .mobileBtn {
    margin-top: 10px;
    padding: 10px;
  }
}

/* Nokia Lumia Landscape */

@media (min-width:533px) and (max-width : 533px) {
  .homeProductBoxContent,
  .homeProductBox {
    height: 240px;
  }

  .homeProductBonusTitle,
  .homeProductJuniorIsaTitle {
    bottom: 85px;
    left: 15px;
    font-size: 32px;
  }

  .homeProductYspTitle,
  .homeProductUspTitle,
  .homeProductOver50Title {
    bottom: 115px;
    left: 15px;
    font-size: 32px;
    margin-right: 30px;
  }
}

/* iPhone 5 Landscape */

@media (min-width:568px) {
  .homeProductBoxContent,
  .homeProductBox {
    height: 255px;
    margin-bottom: 30px;
  }

  .homeProductBonusTitle,
  .homeProductJuniorIsaTitle {
    bottom: 85px;
    left: 15px;
    font-size: 32px;
  }

  .homeProductIsaTitle,
  .homeProductYspTitle,
  .homeProductUspTitle,
  .homeProductUspTitle,
  .homeProductCtfTitle {
    bottom: 115px;
    left: 15px;
    font-size: 32px;
  }

  .homeProductSimpleProtectionTitle {
    bottom: 147px;
    left: 15px;
    font-size: 32px;
    margin-right: 30px;
  }

  .homeProductOver50Title {
    bottom: 115px;
    left: 15px;
    font-size: 32px;
    margin-right: 31px;
  }

  #isaProductBanner {
    min-height: 245px;
    padding: 0px 0px 0px 0px;
  }
}

/* Galaxy S4 Landscape */

@media (min-width:640px) {
  .homepageBannerHeaderSection {
    margin-top: 85px;
  }

  .homeProductBoxContent,
  .homeProductBox {
    height: 290px;
    margin-bottom: 30px;
  }
}

/* iPhone 6 Landscape */

@media (min-width:667px) {
  .homeProductBoxContent,
  .homeProductBox {
    height: 305px;
    margin-bottom: 30px;
  }

  .homeProductSimpleProtectionTitle,
  .homeProductOver50Title {
    bottom: 115px;
  }
}

/* Nexus 6 Landscape */

@media (min-width:732px) {
  .homeProductBoxContent,
  .homeProductBox {
    height: 336px;
    margin-bottom: 30px;
  }
}

/* iPhone 6+ Landscape */

@media (min-width:736px) {
  .homeProductBoxContent,
  .homeProductBox {
    height: 340px;
    margin-bottom: 30px;
  }
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  .homepageBannerHeaderSection {
    margin-top: 125px;
  }

  .homepageBannerHeaderText {
    font-size: 42px;
  }

  #homeCarousel {
    min-height: 385px;
    margin-top: -45px;
    padding: 0px 0px 0px 0px;
  }

  #homeCarousel .homeHeaderTitleBold {
    font-size: 72px;
    padding-top: 70px;
  }

  #homeCarousel .homeHeaderTitle {
    font-size: 35px;
    line-height: 1.1;
    margin-top: 5px;
  }

  #homeCarousel hr,
  #homeCarouselShort hr,
  #yourMutualCarousel hr {
    width: 710px;
    border-top: 5px solid #eee;
  }

  .homeHeaderEst {
    text-align: right;
    margin-right: 10px;
  }

  .homeProductBoxContent,
  .homeProductBox {
    height: 220px;
  }

  .homeProductBoxContentAlternative {
    height: 220px;
    padding: 10px;
    margin-bottom: 20px;
  }

  .homeYourMutualTitle,
  .yourProtectionTitle,
  .yourInsuranceTitle {
    font-size: 28px;
  }

  .moneyAgeSquare {
    font-size: 28px;
    line-height: 1.1;
  }

  .homeYourMutualTitleEU {
    font-size: 20px;
  }

  .homeProductYspTitle,
  .homeProductUspTitle,
  .homeProductSimpleProtectionTitle,
  .homeProductOver50Title {
    bottom: 147px;
    left: 15px;
    font-size: 32px;
  }

  .homeProductIcons {
    width: 15%;
    height: 10%;
    margin-bottom: 10px;
  }

  .homeNewsArticleTitle1,
  .homeNewsArticleTitle2,
  .homeNewsArticleTitle3,
  .homeNewsArticleDate,
  .homeNewsArticleIntro {
    text-align: left;
  }

  .homeNewsArticleTitle1,
  .homeNewsArticleTitle2,
  .homeNewsArticleTitle3 {
    min-height: 10px;
  }

  .homeNewsArticleIntro {
    min-height: 10px;
  }

  .homeNewsArticleButton1,
  .homeNewsArticleButton2,
  .homeNewsArticleButton3 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .NW20-home-message .NW20-fscsLogo,
  .NW20-home-message .NW20-shield-icon {
    display: block;
  }

  .NW20-home-message .NW20-arrow-icon {
    padding: 0px 10px 0px 0px;
  }
}

/* Apple iPad's and BlackBerry PlayBook */

@media only screen and (min-width : 992px) and (max-width : 1024px) {
  .homepageBannerHeaderSection {
    margin-top: 100px;
  }

  .homepageBannerHeaderText {
    font-size: 55px;
    margin-bottom: 20px;
  }

  .homepageBannerMinorTitleText {
    margin-bottom: 20px;
  }

  .homepageBannerSubTitle {
    margin-bottom: 20px;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  #homeCarousel .homeHeaderTitleBold {
    font-size: 64px;
    padding-top: 95px;
  }

  .established {
    font-size: 20px;
    font-family: 'Brandon Text';
    color: #13487a;
  }

  .homeHeaderEst {
    margin-right: 65px;
  }

  .homeYourMutualTitle,
  .yourProtectionTitle,
  .yourInsuranceTitle {
    font-size: 24px;
  }

  .homeYourMutualTitleEU {
    font-size: 24px;
  }

  .homeProductBox {
    height: 212.5px;
    margin-bottom: 30px;
  }

  .homeProductBoxContent {
    height: 212.5px;
    margin-bottom: 30px;
  }

  .homeProductBoxImg {
    min-height: 212.5px;
    margin-bottom: 0px;
  }

  .homeProductBoxContentAlternative {
    min-height: 212.5px;
    max-height: 212.5px;
  }

  .homeProductIsaTitle,
  .homeProductCtfTitle,
  .homeProductYspTitle {
    bottom: 70px;
    left: 10px;
    margin-bottom: 0px;
    margin-right: 20px;
  }

  .homeProductBonusTitle,
  .homeProductJuniorIsaTitle {
    bottom: 40px;
    left: 10px;
    margin-bottom: 0px;
    margin-right: 20px;
  }

  .homeProductUspTitle,
  .homeProductOver50Title,
  .homeProductSimpleProtectionTitle {
    position: relative;
    bottom: 102px;
    left: 10px;
    margin-bottom: 0px;
    margin-right: 20px;
  }

  .productsMoreInfo {
    margin-top: 10px;
  }

  .homeProductBoxContentAlternative {
    min-height: 212.5px;
    max-height: 212.5px;
    padding: 10px;
  }

  .showAlternative {
    position: relative;
    top: 0px;
    margin-bottom: 0px;
  }

  .homeProductBoxContentAlternative p {
    font-family: 'Brandon Text';
    margin-bottom: 10px !important;
    line-height: 1.5;
  }

  .moneyAgeSquare h4 {
    font-family: 'Brandon Text';
    margin-bottom: 10px !important;
    line-height: 1.2;
    font-size: 26px;
    font-weight: 700;
  }

  .modernMutualTitle {
    margin-bottom: 40px;
  }

  .modernMutualBtn {
    margin-top: 40px;
    margin-bottom: 0px;
  }

  #homeCarousel hr {
    width: 840px;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width : 1200px) {
  #homeCarousel .homeHeaderTitleBold {
    padding-top: 85px;
  }

  .homepageBannerHeaderSection {
    margin-top: 55px;
  }

  .homepageBannerHeaderText {
    font-size: 61px;
    margin-bottom: 20px;
  }

  .homepageBannerMinorTitleText {
    margin-bottom: 20px;
  }

  .homepageBannerSubTitle {
    margin-bottom: 20px;
  }

  #homeCarousel {
    min-height: 370px;
  }

  .homeHeaderEst {
    margin-right: 160px !important;
  }

  .homeProductIcons {
    width: 25%;
    height: 20%;
    margin-bottom: 10px;
  }

  .homeProductBox {
    min-height: 262.5px;
    margin-bottom: 30px;
    padding: 15px;
  }

  .homeProductBoxContent {
    min-height: 262.5px;
    margin-bottom: 30px;
  }

  .homeProductBoxContentAlternative {
    background-color: #183e7a;
    color: #fff;
    min-height: 263px;
    padding: 10px;
  }

  .showAlternative {
    position: relative;
    top: -293px;
    margin-bottom: -263px;
  }

  .homeYourMutualTitle,
  .yourProtectionTitle,
  .yourInsuranceTitle {
    font-size: 32px;
  }

  .moneyAgeSquare {
    font-size: 24px;
    line-height: 1.1;
  }

  .homeYourMutualTitleEU {
    font-size: 30px;
  }

  .homeProductBonusTitle,
  .homeProductJuniorIsaTitle {
    bottom: 45px;
    left: 15px;
    margin-bottom: 0px;
    margin-right: 20px;
  }

  .homeProductIsaTitle,
  .homeProductCtfTitle,
  .homeProductUspTitle,
  .homeProductYspTitle,
  .homeProductSipTitle,
  .homeProductOver50Title {
    bottom: 75px;
    left: 15px;
    margin-bottom: 0px;
    margin-right: 0px;
  }

  .homeProductSimpleProtectionTitle {
    bottom: 75px;
    left: 15px;
    margin-bottom: 0px;
    margin-right: 30px;
  }

  .homeNewsArticleTitle1,
  .homeNewsArticleTitle2,
  .homeNewsArticleTitle3 {
    min-height: 75px;
  }

  .homeNewsArticleIntro {
    min-height: 80px;
  }

  .homeNewsArticleButton1,
  .homeNewsArticleButton2 {
    margin-bottom: 0px;
  }
}


.keyInfoWrapper {
  padding: 10px;
}

.application-page-title {
  text-align: center;
}

.appFormTitle {
  font-family: "Brandon Text";
  font-size: 30px;
  color: #00bae7;
  margin-top: 30px;
  margin-bottom: 30px;
}

.appFormSubtitle {
  font-family: "Brandon Text";
  font-size: 30px;
  color: #00bae7;
  margin-bottom: 30px;
}

.applicationForm {
  /*padding: 40px 0px;*/
  background-color: #e5f7fb;
  background-color: #ccf0f7;
}

.applicationFormPageTitle {
  font-family: "Brandon Text";
  font-size: 30px;
  color: #13487a;
  line-height: 1;
  text-align: center;
  margin-bottom: 0px;
  margin-top: 40px;
}

.aboutApplicationFormPageTitle {
  font-family: "Brandon Text";
  font-size: 30px;
  color: #13487a;
  line-height: 1;
  text-align: center;
  margin-bottom: 5px;
  margin-top: 25px;
}

.appFormDivider {
  border-top: 2px solid #fff;
  margin: 30px 0px;
}

.appFormLabel {
  font-family: "Brandon Text";
  color: #183e7a;
  font-size: 16px;
  font-weight: 400;
}

.appTickBoxPanel {
  background-color: #e5f7fb;
  border: 2px solid #13487a;
  padding: 25px 0px 10px 20px;
  width: 100%;
  margin: 40px 0px 20px 0px;
}

.appFormSelect {
  font-family: "Brandon Text";
  color: #183e7a;
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.appFormInput {
  font-family: "Brandon Text";
  color: #183e7a;
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.appFormAccountLink {
  font-family: "Brandon Text";
  color: #183e7a;
  font-size: 14px;
  font-weight: 400;
  padding-left: 212px;
  padding-top: 15px;
  cursor: pointer;
}

.form_icons input[type="radio"] {
  opacity: 0;
  position: absolute;
  height: 100%;
  cursor: pointer;
}

.form_icons input[type="radio"] + label {
  color: #13487a;
  border: 2px solid #1b3d7a;
  padding: 5px;
  background-color: #ccf0f7;
  border-radius: 5px;
  min-width: 80px;
  text-align: center;
  cursor: pointer;
}

.form_icons input[type="radio"]:checked + label {
  background-color: #1b3d7a;
  color: #fff;
}

.no-select-arrow {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

.form-checkbox > input[type="checkbox"] {
  visibility: hidden;
}

.form-stripe {
  width: 100%;
  min-height: 45px;
  padding-top: 13px;
  padding-left: 11px;
}

.form-checkbox {
  width: 160px;
  height: 60px;
  background: #ccc;
  margin: 0px auto;
  margin-left: 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
}

.form-checkbox:after {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f00d";
  color: #b1b1b1;
  position: absolute;
  right: 24px;
  top: 11px;
  font-size: 39px;
  z-index: 0;
}

.form-checkbox:before {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f00c";
  color: #00b2d7;
  position: absolute;
  left: 20px;
  top: 11px;
  font-size: 39px;
  z-index: 0;
}

.form-checkbox label {
  display: block;
  width: 75px;
  height: 53px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: 1;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  background: #fcfff4;
  background: -webkit-linear-gradient(
    top,
    #fcfff4 0%,
    #dfe5d7 40%,
    #b3bead 100%
  );
  background: -moz-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: -o-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: -ms-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfff4', endColorstr='#b3bead',GradientType=0 );
}

.form-checkbox input[type="checkbox"]:checked + label {
  left: 80px;
}

.checkbox-icon {
  color: #b1b1b1;
  margin-left: 15px;
  margin-top: 6px;
}

.fa-1:before {
  content: "1st";
  font-size: 40px;
  font-family: 'Brandon Text';
}

.fa-8:before {
  content: "8th";
  font-size: 40px;
  font-family: 'Brandon Text';
}

.fa-16:before {
  content: "16th";
  font-size: 40px;
  font-family: 'Brandon Text';
}

.fa-24:before {
  content: "24th";
  font-size: 40px;
  font-family: 'Brandon Text';
}

.fa-number-of-years:before {
  content: "Choose plan length in years";
  font-size: 20px;
  font-family: 'Brandon Text';
}

.fa-end-date:before {
  content: "Choose plan end date";
  font-size: 20px;
  font-family: 'Brandon Text';
}

.fa-yes:before {
  content: "\f00c";
}

.fa-no:before {
  content: "\f00d";
}

.fa-yearly:before {
  content: "Yearly";
  font-size: 20px;
  font-family: 'Brandon Text';
}

.fa-monthly:before {
  content: "Monthly";
  font-size: 20px;
  font-family: 'Brandon Text';
}

.fa-annually:before {
  content: "Annually";
  font-size: 20px;
  font-family: 'Brandon Text';
}

.fa-weekly:before {
  content: "Weekly";
  font-size: 20px;
  font-family: 'Brandon Text';
}

.fa-telephone-interview,
.fa-online-medical-questions {
  font-size: 2em !important;
}

.fa-telephone-interview:before {
  content: "Tele-interview";
  font-size: 20px;
  font-family: 'Brandon Text';
}

.fa-online-medical-questions:before {
  content: "Online medical questions";
  font-size: 20px;
  font-family: 'Brandon Text';
}

#heightMetricButton,
#heightImperialButton {
  font-family: 'Brandon Text';
  color: #13487a;
  border: 2px solid #1b3d7a;
  background-color: #ccf0f7;
  font-size: 20px;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  height: 70px;
}

#sp_application_stage3 .selected {
  font-family: 'Brandon Text';
  background-color: #1b3d7a;
  font-size: 20px;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
}

/* Hover - Sweep To Top */

.hvr-sweep-to-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.hvr-sweep-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #13487a;
  opacity: 0.6;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-sweep-to-top:hover,
.hvr-sweep-to-top:focus,
.hvr-sweep-to-top:active {
  color: white;
}

.hvr-sweep-to-top:hover:before,
.hvr-sweep-to-top:focus:before,
.hvr-sweep-to-top:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.requirements-list {
  list-style-type: none;
  margin: 15px 0 0 0;
  padding: 5px;
}

ul.requirements-list li {
  color: #454e5080;
}

ul.requirements-list li:not(:last-child) {
  padding-bottom: 1rem;
}

li.valid-checklist-item {
  color: #008000 !important;
}

.form-control-feedback-show-hide {
  position: absolute;
  top: 6.9rem;
  right: 1.5rem;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  text-align: center;
}

.form-control-feedback {
  right: 15px;
}

.form-control-feedback-currency {
  right: 0px;
}

.ipSummaryTitle {
  font-family: "Brandon Text";
  font-size: 28px;
  font-weight: 700;
  color: #13487a;
  margin-bottom: 0px;
  text-align: center;
}

.ipSummarySubTitle {
  font-family: "Brandon Text";
  font-size: 18px;
  color: #00bae7;
  margin-bottom: 30px;
}

.ngTooltip {
  position: relative;
}

.ngTooltip:before {
  display: block;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.ngTooltip:before {
  background: rgba(0, 0, 0, 0.75);
  border-radius: 2px;
  color: #fff;
  content: attr(data-title);
  font-size: 14px;
  padding: 6px 10px;
  top: 26px;
  white-space: nowrap;
}

.ngTooltip.expand:before {
  transform: scale3d(0.2, 0.2, 1);
  transition: all 0.2s ease-in-out;
}

.ngTooltip.expand:hover:before {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  top: 50px;
  left: -15px;
  z-index: 999;
}

.sportsAndPastimesControls {
  position: relative;
  left: 40%;
  margin-bottom: 20px;
}

.centerDefaqtoLogoOver50s {
  margin: 0 auto;
  text-align: center;
}

.declarationCheckbox {
  margin-right: 2px !important;
}

.declarationModalContainer {
  top: 5%;
  margin: 0 auto;
}

.declarationModalInnerContainer {
  border-radius: 0;
}

.declarationModalBody {
  padding: 0px 15px;
}

.declarationModalCloseBtn {
  font-size: 32px;
  color: #13487a;
}

.declarationModalGoBackBtn {
  width: inherit !important;
  padding: 6px 12px !important;
  margin: 0px !important;
}

.declarationModalTitle {
  font-family: "Brandon Text";
  font-size: 26px;
  color: #13487a;
}

.declarationBtnContainer {
  margin-top: 50px;
}

.tipLightBlueBox {
  background-color: #dae0ea;
  border-radius: 3px;
  color: #1b3d7a;
  padding: 8px;
  box-shadow: 2px 2px 5px #aaaaaa2b;
  margin-bottom: 16px;
}

.tipLightBlueBox p {
  margin: 0 8px;
  display: inline;
}

.tipLightBlueBox img {
  max-width: 40px;
  height: 15px;
  margin: auto 0;
}

.page-id-2001 .appFormTitle,
.page-id-283 .appFormTitle,
.page-id-60285 .appFormTitle,
.page-id-60281 .appFormTitle,
.page-id-64197 .appFormTitle,
.page-id-64178 .appFormTitle,
.page-id-64910 .appFormTitle,
.page-id-64874 .appFormTitle {
  font-family: "Brandon Text";
  font-size: 24px;
  color: #1b3d7a;
  margin-top: 32px;
}

.page-id-60285 .NW20-appFormTitle,
.page-id-64874 .NW20-appFormTitle,
.page-id-64178 .NW20-appFormTitle {
  font-family: "Brandon Text", "Arial", sans-serif;
  font-size: 32px;
  color: #13243a;
  font-weight: 500;
  margin-top: 32px;
}

.page-id-2001 .appFormDivider,
.page-id-283 .appFormDivider,
.page-id-60285 .appFormDivider,
.page-id-60281 .appFormDivider,
.page-id-64197 .appFormDivider,
.page-id-64178 .appFormDivider,
.page-id-64910 .appFormDivider,
.page-id-64874 .appFormDivider {
  display: none;
}

.page-id-2001 .label,
.page-id-283 .label,
.page-id-60285 .label,
.page-id-60281 .label,
.page-id-64197 .label,
.page-id-64178 .label,
.page-id-64910 .label,
.page-id-64874 .label {
  display: block;
}

.page-id-2001 .form-control,
.page-id-283 .form-control,
.page-id-64197 .form-control,
.page-id-64178 .form-control {
  width: 450px;
  height: 40px;
}

.page-id-60285 .NW20-form-control,
.page-id-60275 .NW20-form-control,
.page-id-60281 .NW20-form-control,
.page-id-64197 .NW20-form-control,
.page-id-64178 .NW20-form-control,
.page-id-64910 .NW20-form-control,
.page-id-64874 .NW20-form-control {
  max-width: 445px;
  height: 43px;
  border: 1px solid #454e50;
  border-radius: 5px;
  font-family: "Brandon Text", Arial, sans-serif;
  font-size: 16px;
  background-color: #ffffff;
}

.NW20-form-control {
  max-width: 445px;
  height: 43px !important;
  border: 1px solid #454e50;
  border-radius: 5px;
  font-family: "Brandon Text", Arial, sans-serif !important;
  font-size: 16px !important;
  background-color: #ffffff;
  color: #454e50 !important;
}

.page-id-60285 .form-control.form-choose--address,
.page-id-64874 .form-control.form-choose--address,
.page-id-60281 .form-control.form-choose--address,
.page-id-64910 .form-control.form-choose--address {
  margin: 1rem 0 2.5rem 0;
}

.form-control.form-choose--address {
  background-color: #e8f0fe;
  margin: 1rem 0 2.5rem 1.5rem;
}

.NW20-form-control.form-choose--address-manual {
  color: #13243a !important;
  font-weight: 600;
}

.signin-cta__container {
  padding: 2rem;
  border-radius: 1rem;
  background-color: #87d0f140;
  margin: 2rem auto;
  max-width: 44.5rem;
  text-align: left;
}

.signin-cta__container--isa {
  padding: unset !important;
  max-width: fit-content;
}

.signin-cta__content {
  color: #000;
  font-size: 1.6rem;
  font-family: "Brandon Text", Arial;
  line-height: 2.8rem;
  text-align: left;
  padding: 0 1.5rem 2.5rem;
  margin: 0;
}

.signin-cta__content:not(:last-child) {
  padding-top: 2.5rem;
}

.signin-cta__container--isa-mobile {
  display: none;
}

.page-id-2001 .signInCTA,
.page-id-283 .signInCTA,
.page-id-60285 .signInCTA,
.page-id-60281 .signInCTA,
.page-id-64197 .signInCTA,
.page-id-64178 .signInCTA,
.page-id-64910 .signInCTA,
.page-id-64874 .signInCTA {
  font-family: "Brandon Text";
  font-size: 16px;
  color: #13487a;
  margin-top: 8px;
  font-weight: 300;
}

.signin-cta__link {
  color: #fff;
  text-decoration: underline;
}

.NW20-signInCTA {
  text-align: left;
}

.page-id-60285 .NW20-signInCTA,
.page-id-60281 .NW20-signInCTA,
.page-id-64197 .NW20-signInCTA,
.page-id-64178 .NW20-signInCTA,
.page-id-64910 .NW20-signInCTA,
.page-id-64874 .NW20-signInCTA {
  font-family: "Brandon Text", Arial, sans-serif;
  font-size: 16px;
  color: #454e50;
  margin-top: 8px;
  font-weight: 400;
}

.page-id-2001 .signInCTA a,
.page-id-283 .signInCTA a,
.page-id-60285 .signInCTA a,
.page-id-60281 .signInCTA a,
.page-id-64197 .signInCTA a,
.page-id-64178 .signInCTA a,
.page-id-64910 .signInCTA a,
.page-id-64874 .signInCTA a {
  color: #13487a;
  text-decoration: underline;
}

.page-id-60285 .NW20-signInCTA a,
.page-id-60281 .NW20-signInCTA a,
.page-id-64197 .NW20-signInCTA a,
.page-id-64178 .NW20-signInCTA a,
.page-id-64910 .NW20-signInCTA a,
.page-id-64874 .NW20-signInCTA a {
  color: #454e50;
  text-decoration: underline;
}

.page-id-2001 .col-md-pull-3,
.page-id-283 .col-md-pull-3,
.page-id-60285 .col-md-pull-3,
.page-id-60281 .col-md-pull-3,
.page-id-64197 .col-md-pull-3,
.page-id-64178 .col-md-pull-3,
.page-id-64910 .col-md-pull-3,
.page-id-64874 .col-md-pull-3 {
  right: auto;
}

.page-id-2001 .col-md-2,
.page-id-283 .col-md-2,
.page-id-60285 .col-md-2,
.page-id-60281 .col-md-2,
.page-id-64197 .col-md-2,
.page-id-64178 .col-md-2,
.page-id-64910 .col-md-2,
.page-id-64874 .col-md-2 {
  width: 100%;
}

.page-id-2001 .col-md-7,
.page-id-283 .col-md-7,
.page-id-60285 .col-md-7,
.page-id-60281 .col-md-7,
.page-id-64197 .col-md-7,
.page-id-64178 .col-md-7,
.page-id-64910 .col-md-7,
.page-id-64874 .col-md-7 {
  width: 100%;
}

.page-id-2001 .appFormLabel,
.page-id-283 .appFormLabel,
.page-id-60285 .appFormLabel,
.page-id-60281 .appFormLabel,
.page-id-64197 .appFormLabel,
.page-id-64178 .appFormLabel,
.page-id-64910 .appFormLabel,
.page-id-64874 .appFormLabel {
  margin-top: 32px;
}

.page-id-2001 .btn-default,
.page-id-283 .btn-default,
.page-id-60285 .btn-default,
.page-id-60281 .btn-default,
.page-id-64197 .btn-default,
.page-id-64178 .btn-default,
.page-id-64910 .btn-default,
.page-id-64874 .btn-default {
  width: 450px;
}

.page-id-60285 .NW20-btn-default,
.page-id-60275 .NW20-btn-default,
.page-id-28381 .NW20-btn-default,
.page-id-11262 .NW20-btn-default,
.page-id-2751 .NW20-btn-default,
.page-id-60281 .NW20-btn-default,
.page-id-64197 .NW20-btn-default,
.page-id-64178 .NW20-btn-default,
.page-id-60279 .NW20-btn-default,
.page-id-64910 .NW20-btn-default,
.page-id-64874 .NW20-btn-default {
  width: 100%;
  height: 43px;
  background-color: #13243a;
  opacity: 1;
  color: #ffffff;
  font-family: "Brandon Text", Arial, sans-serif;
  font-size: 16px;
  border: none;
  border-radius: 30px;
}

.page-id-60285 .NW20-btn-default:focus,
.page-id-60285 .NW20-btn-default:active,
.page-id-60285 .NW20-btn-default:hover,
.page-id-60281 .NW20-btn-default:active,
.page-id-60281 .NW20-btn-default:focus,
.page-id-60281 .NW20-btn-default:hover,
.page-id-64197 .NW20-btn-default:active,
.page-id-64197 .NW20-btn-default:focus,
.page-id-64197 .NW20-btn-default:hover,
.page-id-64178 .NW20-btn-default:active,
.page-id-64178 .NW20-btn-default:focus,
.page-id-64178 .NW20-btn-default:hover,
.page-id-64874 .NW20-btn-default:active,
.page-id-64874 .NW20-btn-default:focus,
.page-id-64874 .NW20-btn-default:hover,
.page-id-64910 .NW20-btn-default:active,
.page-id-64910 .NW20-btn-default:focus,
.page-id-64910 .NW20-btn-default:hover,
.page-id-60275 .NW20-btn-default:focus,
.page-id-60275 .NW20-btn-default:active,
.page-id-60275 .NW20-btn-default:hover,
.page-id-28381 .NW20-btn-default:focus,
.page-id-28381 .NW20-btn-default:active,
.page-id-28381 .NW20-btn-default:hover,
.page-id-11262 .NW20-btn-default:focus,
.page-id-11262 .NW20-btn-default:active,
.page-id-11262 .NW20-btn-default:hover,
.page-id-60279 .NW20-btn-default:focus,
.page-id-60279 .NW20-btn-default:active,
.page-id-60279 .NW20-btn-default:hover,
.page-id-2751 .NW20-btn-default:focus,
.page-id-2751 .NW20-btn-default:active,
.page-id-2751 .NW20-btn-default:hover {
  color: #ffffff;
  background-color: #13243a;
  outline: none;
}

.page-id-2001 .large-address-boxes-width,
.page-id-283 .large-address-boxes-width,
.page-id-60285 .large-address-boxes-width,
.page-id-60281 .large-address-boxes-width,
.page-id-64197 .large-address-boxes-width,
.page-id-64178 .large-address-boxes-width,
.page-id-64910 .large-address-boxes-width,
.page-id-64874 .large-address-boxes-width {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.page-id-60285 .NW20-large-address-boxes-width,
.page-id-60275 .NW20-large-address-boxes-width,
.page-id-28381 .NW20-large-address-boxes-width,
.page-id-11262 .NW20-large-address-boxes-width,
.page-id-2751 .NW20-large-address-boxes-width,
.page-id-60281 .NW20-large-address-boxes-width,
.page-id-64197 .NW20-large-address-boxes-width,
.page-id-64178 .NW20-large-address-boxes-width,
.page-id-60279 .NW20-large-address-boxes-width,
.page-id-64910 .NW20-large-address-boxes-width,
.page-id-64874 .NW20-large-address-boxes-width {
  display: inline-block;
  width: 73%;
  margin-bottom: 10px;
  margin-right: 3px;
}

.page-id-60275 .NW20-large-address-boxes-width,
.page-id-28381 .NW20-large-address-boxes-width,
.page-id-11262 .NW20-large-address-boxes-width,
.page-id-2751 .NW20-large-address-boxes-width,
.page-id-60279 .NW20-large-address-boxes-width {
  margin-left: 15px;
  width: 70%;
}

.page-id-60285 .NW20-large-address-boxes-width .NW20-form-control,
.page-id-60275 .NW20-large-address-boxes-width .NW20-form-control,
.page-id-28381 .NW20-large-address-boxes-width .NW20-form-control,
.page-id-60281 .NW20-large-address-boxes-width .NW20-form-control,
.page-id-64197 .NW20-large-address-boxes-width .NW20-form-control,
.page-id-64178 .NW20-large-address-boxes-width .NW20-form-control,
.page-id-64910 .NW20-large-address-boxes-width .NW20-form-control,
.page-id-64874 .NW20-large-address-boxes-width .NW20-form-control,
.page-id-60279 .NW20-large-address-boxes-width .NW20-form-control {
  width: 100%;
}

.page-id-60285 .NW20-small-address-boxes-width,
.page-id-60275 .NW20-small-address-boxes-width,
.page-id-28381 .NW20-small-address-boxes-width,
.page-id-11262 .NW20-small-address-boxes-width,
.page-id-2751 .NW20-small-address-boxes-width,
.page-id-60281 .NW20-small-address-boxes-width,
.page-id-64197 .NW20-small-address-boxes-width,
.page-id-64178 .NW20-small-address-boxes-width,
.page-id-64910 .NW20-small-address-boxes-width,
.page-id-64874 .NW20-small-address-boxes-width,
.page-id-60279 .NW20-small-address-boxes-width {
  width: 25%;
  display: inline-block;
}

.page-id-60275 .NW20-small-address-boxes-width,
.page-id-28381 .NW20-small-address-boxes-width,
.page-id-11262 .NW20-small-address-boxes-width,
.page-id-2751 .NW20-small-address-boxes-width,
.page-id-60279 .NW20-small-address-boxes-width {
  width: 22%;
}

.page-id-2001 label,
.page-id-283 label,
.page-id-64197 label,
.page-id-64910 label,
.page-id-60285 label,
.page-id-64874 label,
.page-id-64178 label,
.page-id-60281 label {
  margin-bottom: 8px !important;
  margin-top: 32px !important;
}

.page-id-2001 .input-group,
.page-id-283 .input-group,
.page-id-60285 .input-group,
.page-id-60281 .input-group,
.page-id-64197 .input-group,
.page-id-64910 .input-group,
.page-id-64874 .input-group,
.page-id-64178 .input-group {
  width: 450px;
}

.page-id-60285 .NW20-input-group,
.page-id-64874 .NW20-input-group,
.page-id-64178 .NW20-input-group {
  border: 1px solid #454e50;
  border-radius: 5px;
  width: 450px;
}

.page-id-60285 .NW20-input-group .NW20-input-group-addon,
.page-id-64874 .NW20-input-group .NW20-input-group-addon,
.page-id-64178 .NW20-input-group .NW20-input-group-addon {
  background-color: #ffffff;
  border: none;
}

.NW20-input-group .NW20-form-control {
  border: none;
  border-radius: 5px;
}

.input-sign {
  width: 100% !important;
}

.input-group > .form-control:focus {
  box-shadow: unset;
}

.input[type="tel"] {
  background-color: #fff;
}

.input-group:focus-within {
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}

.NW20-input-group {
  border: 1px solid #454e50;
  border-radius: 5px;
  max-width: 445px;
  width: 100%;
}

.NW20-input-group--narrow {
  max-width: 9.5rem;
  margin: auto;
}

.NW20-input-group .NW20-input-group-addon {
  background-color: #ffffff;
  border: none;
}

.NW20-metricImperialBtns {
  margin-top: 10px;
}

.NW20-metricImperialBtns #heightMetricButton,
.NW20-metricImperialBtns #heightImperialButton {
  border: 1.75px solid #454e50;
  background-color: transparent;
  font-family: "Brandon Text", Arial, sans-serif;
  font-weight: 400;
  color: #454e50;
}

#sp_application_stage3 .selected {
  border: 1.75px solid #f7aa00;
  background-color: #f7aa00 !important;
  color: #ffffff !important;
  outline: none;
}

.page-id-60285 .NW20-input-group .NW20-form-control,
.page-id-64874 .NW20-input-group .NW20-form-control,
.page-id-64178 .NW20-input-group .NW20-form-control {
  border: none;
}

.page-id-2001 .form-control-feedback,
.page-id-283 .form-control-feedback,
.page-id-60285 .form-control-feedback,
.page-id-60281 .form-control-feedback,
.page-id-64197 .form-control-feedback,
.page-id-64910 .form-control-feedback,
.page-id-64874 .form-control-feedback,
.page-id-64178 .form-control-feedback {
  left: 200%;
}

.page-id-2001 .form-control-feedback-currency,
.page-id-283 .form-control-feedback-currency,
.page-id-60285 .form-control-feedback-currency,
.page-id-60281 .form-control-feedback-currency,
.page-id-64197 .form-control-feedback-currency,
.page-id-64910 .form-control-feedback-currency,
.page-id-64874 .form-control-feedback-currency,
.page-id-64178 .form-control-feedback-currency {
  left: 85% !important;
}

.page-id-2001 .form-control-feedback-dateofbirth,
.page-id-283 .form-control-feedback-dateofbirth,
.page-id-60285 .form-control-feedback-dateofbirth,
.page-id-60281 .form-control-feedback-dateofbirth,
.page-id-64197 .form-control-feedback-dateofbirth,
.page-id-64910 .form-control-feedback-dateofbirth,
.page-id-64874 .form-control-feedback-dateofbirth,
.page-id-64178 .form-control-feedback-dateofbirth {
  left: 333%;
}

.page-id-2001 .row,
.page-id-60285 .row,
.page-id-60281 .row,
.page-id-64197 .row,
.page-id-64910 .row,
.page-id-64874 .row,
.page-id-64178 .row {
  margin-left: 0;
  margin-right: 0;
}

.page-id-2001 .row div,
.page-id-60285 .row div,
.page-id-60281 .row div,
.page-id-64197 .row div,
.page-id-64910 .row div,
.page-id-64874 .row div,
.page-id-64178 .row div {
  padding-left: 0;
  padding-right: 0;
}

.page-id-2001 .col-md-9,
.page-id-60285 .col-md-9,
.page-id-60281 .col-md-9,
.page-id-64197 .col-md-9,
.page-id-64910 .col-md-9,
.page-id-64874 .col-md-9,
.page-id-64178 .col-md-9 {
  width: 100%;
}

.page-id-2001 #ddlogo,
.page-id-283 #ddlogo,
.page-id-60285 #ddlogo,
.page-id-60281 #ddlogo,
.page-id-64197 #ddlogo,
.page-id-64910 #ddlogo,
.page-id-64874 #ddlogo,
.page-id-64178 #ddlogo {
  width: 88px;
}

.page-id-2001 .form_icons input[type="radio"] + label,
.page-id-283 .form_icons input[type="radio"] + label,
.page-id-64197 .form_icons input[type="radio"] + label,
.page-id-64910 .form_icons input[type="radio"] + label,
.page-id-60285 .form_icons input[type="radio"] + label,
.page-id-64874 .form_icons input[type="radio"] + label,
.page-id-64178 .form_icons input[type="radio"] + label,
.page-id-60281 .form_icons input[type="radio"] + label {
  width: 24%;
  margin-top: 0;
}

.page-id-2001 .form_icons input[type="radio"]:checked + label,
.page-id-283 .form_icons input[type="radio"]:checked + label,
.page-id-60285 .form_icons input[type="radio"]:checked + label,
.page-id-60281 .form_icons input[type="radio"]:checked + label,
.page-id-64197 .form_icons input[type="radio"]:checked + label,
.page-id-64910 .form_icons input[type="radio"]:checked + label,
.page-id-64874 .form_icons input[type="radio"]:checked + label,
.page-id-64178 .form_icons input[type="radio"]:checked + label {
  background-color: #1b3d7a;
  color: #fff;
}

.page-id-60285 .NW20-form_icons input[type="radio"]:checked + label,
.page-id-60275 .NW20-form_icons input[type="radio"]:checked + label,
.page-id-28381 .NW20-form_icons input[type="radio"]:checked + label,
.page-id-11262 .NW20-form_icons input[type="radio"]:checked + label,
.page-id-60279 .NW20-form_icons input[type="radio"]:checked + label,
.page-id-2751 .NW20-form_icons input[type="radio"]:checked + label,
.page-id-60281 .NW20-form_icons input[type="radio"]:checked + label,
.page-id-64197 .NW20-form_icons input[type="radio"]:checked + label,
.page-id-64910 .NW20-form_icons input[type="radio"]:checked + label,
.page-id-64874 .NW20-form_icons input[type="radio"]:checked + label,
.page-id-64178 .NW20-form_icons input[type="radio"]:checked + label {
  background-color: #f7aa00;
  border: 1.75px solid #f7aa00;
  color: #fff;
}

.page-id-2001 .form_icons p,
.page-id-283 .form_icons p,
.page-id-60285 .form_icons p,
.page-id-60281 .form_icons p,
.page-id-64197 .form_icons p,
.page-id-64910 .form_icons p,
.page-id-64874 .form_icons p,
.page-id-64178 .form_icons p {
  font-size: 21px !important;
  font-weight: normal;
}

.page-id-60285 .NW20-form_icons p,
.page-id-60281 .NW20-form_icons p,
.page-id-64197 .NW20-form_icons p,
.page-id-64910 .NW20-form_icons p,
.page-id-64874 .NW20-form_icons p,
.page-id-64178 .NW20-form_icons p {
  font-family: "Brandon Text", Arial, sans-serif;
  font-size: 16px !important;
  font-weight: 400;
}

.page-id-2001 .applicationLogo,
.page-id-283 .applicationLogo,
.page-id-60285 .applicationLogo,
.page-id-60281 .applicationLogo,
.page-id-64197 .applicationLogo,
.page-id-64910 .applicationLogo,
.page-id-64874 .applicationLogo,
.page-id-64178 .applicationLogo {
  width: 114px;
  height: auto;
}

.page-id-60285 .NW20-applicationLogo,
.page-id-60281 .NW20-applicationLogo,
.page-id-64197 .NW20-applicationLogo,
.page-id-64910 .NW20-applicationLogo,
.page-id-64874 .NW20-applicationLogo,
.page-id-64178 .NW20-applicationLogo {
  width: 100%;
  height: auto;
  margin-top: 10px;
}

.NW20-applicationLogo {
  max-width: 100%;
  max-height: 76px;
  margin-top: 10px;
}

.page-id-2001 .aboutApplicationFormPageTitle,
.page-id-283 .aboutApplicationFormPageTitle,
.page-id-60285 .aboutApplicationFormPageTitle,
.page-id-60281 .aboutApplicationFormPageTitle,
.page-id-64197 .aboutApplicationFormPageTitle,
.page-id-64178 .aboutApplicationFormPageTitle,
.page-id-claims .aboutApplicationFormPageTitle,
.page-id-isa .NW20-aboutApplicationFormPageTitle,
.page-id-sustainable-isa .NW20-aboutApplicationFormPageTitle,
.page-id-64910 .aboutApplicationFormPageTitle,
.page-id-64874 .aboutApplicationFormPageTitle,
.page-id-bonds .NW20-aboutApplicationFormPageTitle {
  display: none !important;
}

.page-id-2001 .subReviewTopics,
.page-id-283 .subReviewTopics,
.page-id-60285 .subReviewTopics,
.page-id-60281 .subReviewTopics,
.page-id-64197 .subReviewTopics,
.page-id-64910 .subReviewTopics,
.page-id-64874 .subReviewTopics,
.page-id-64178 .subReviewTopics {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.page-id-60285 .NW20-subReviewTopics,
.page-id-60281 .NW20-subReviewTopics,
.page-id-64197 .NW20-subReviewTopics,
.page-id-64910 .NW20-subReviewTopics,
.page-id-64874 .NW20-subReviewTopics,
.page-id-64178 .NW20-subReviewTopics {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.page-id-2001 .checkboxCommunicationPreferences,
.page-id-283 .checkboxCommunicationPreferences,
.page-id-60285 .checkboxCommunicationPreferences,
.page-id-60281 .checkboxCommunicationPreferences,
.page-id-64197 .checkboxCommunicationPreferences,
.page-id-64910 .checkboxCommunicationPreferences,
.page-id-64874 .checkboxCommunicationPreferences,
.page-id-64178 .checkboxCommunicationPreferences {
  margin-top: 5px;
}

.page-id-60285 .NW20-checkboxCommunicationPreferences,
.page-id-60275 .NW20-checkboxCommunicationPreferences,
.page-id-28381 .NW20-checkboxCommunicationPreferences,
.page-id-11262 .NW20-checkboxCommunicationPreferences,
.page-id-2751 .NW20-checkboxCommunicationPreferences,
.page-id-60281 .NW20-checkboxCommunicationPreferences,
.page-id-64197 .NW20-checkboxCommunicationPreferences,
.page-id-64178 .NW20-checkboxCommunicationPreferences,
.page-id-64910 .NW20-checkboxCommunicationPreferences,
.page-id-64874 .NW20-checkboxCommunicationPreferences,
.page-id-60279 .NW20-checkboxCommunicationPreferences {
  font-family: "Brandon Text", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400 !important;
  color: #454e50;
  margin: 23px 0px 18px 10px !important;
  vertical-align: middle;
}

.NW20-checkboxCommunicationPreferences {
  font-family: "Brandon Text", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400 !important;
  color: #454e50;
  margin: 23px 0px 18px 10px !important;
  vertical-align: middle;
  display: inline-block;
}

.page-id-2001 .help-tip,
.page-id-283 .help-tip,
.page-id-60285 .help-tip,
.page-id-60281 .help-tip,
.page-id-64197 .help-tip,
.page-id-64910 .help-tip,
.page-id-64874 .help-tip,
.page-id-64178 .help-tip {
  position: relative;
  top: -40px;
  left: 94%;
  text-align: center;
  background-color: transparent;
  border-radius: 50%;
  border: 1.5px solid #a7a7a7;
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 20px;
  cursor: default;
  margin-bottom: -30px;
  z-index: 1000;
  -webkit-animation: fadeIn 1s ease-in-out;
  animation: fadeIn 1s ease-in-out;
}

.page-id-2001 label ~ .help-tip,
.page-id-283 label ~ .help-tip,
.page-id-60285 label ~ .help-tip,
.page-id-60281 label ~ .help-tip,
.page-id-64197 label ~ .help-tip,
.page-id-64910 label ~ .help-tip,
.page-id-64874 label ~ .help-tip,
.page-id-64178 label ~ .help-tip {
  top: 25px;
}

.page-id-60285 .NW20-help-tip,
.page-id-60281 .NW20-help-tip,
.page-id-64197 .NW20-help-tip,
.page-id-64178 .NW20-help-tip,
.page-id-2751 .NW20-help-tip,
.page-id-60275 .NW20-help-tip,
.page-id-28381 .NW20-help-tip,
.page-id-60279 .NW20-help-tip,
.page-id-64910 .NW20-help-tip,
.page-id-64874 .NW20-help-tip,
.page-id-11262 .NW20-help-tip {
  position: relative;
  top: 25px;
  left: 94%;
  text-align: center;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #13243a;
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 20px;
  cursor: default;
  margin-bottom: -30px;
  z-index: 1000;
  -webkit-animation: fadeIn 1s ease-in-out;
  animation: fadeIn 1s ease-in-out;
}

.page-id-60285 label ~ .NW20-help-tip,
.page-id-60281 label ~ .NW20-help-tip,
.page-id-64197 label ~ .NW20-help-tip,
.page-id-64178 label ~ .NW20-help-tip,
.page-id-2751 label ~ .NW20-help-tip,
.page-id-60275 label ~ .NW20-help-tip,
.page-id-28381 label ~ .NW20-help-tip,
.page-id-60279 label ~ .NW20-help-tip,
.page-id-64910 label ~ .NW20-help-tip,
.page-id-64874 label ~ .NW20-help-tip,
.page-id-11262 label ~ .NW20-help-tip {
  top: -40px;
}

.page-id-2751 .NW20-help-tip,
.page-id-60275 .NW20-help-tip,
.page-id-28381 .NW20-help-tip,
.page-id-60279 .NW20-help-tip,
.page-id-11262 .NW20-help-tip {
  top: -33px;
}

.page-id-2001 .help-tip:before,
.page-id-283 .help-tip:before,
.page-id-60285 .help-tip:before,
.page-id-60281 .help-tip:before,
.page-id-64197 .help-tip:before,
.page-id-64910 .help-tip:before,
.page-id-64874 .help-tip:before,
.page-id-64178 .help-tip:before {
  content: "?";
  font-family: "Brandon Text";
  font-weight: bold;
  color: #a7a7a7;
}

.page-id-60285 .NW20-help-tip:before,
.page-id-60281 .NW20-help-tip:before,
.page-id-64197 .NW20-help-tip:before,
.page-id-64178 .NW20-help-tip:before,
.page-id-2751 .NW20-help-tip:before,
.page-id-60275 .NW20-help-tip:before,
.page-id-28381 .NW20-help-tip:before,
.page-id-60279 .NW20-help-tip:before,
.page-id-64910 .NW20-help-tip:before,
.page-id-64874 .NW20-help-tip:before,
.page-id-11262 .NW20-help-tip:before {
  content: "?";
  font-family: "Brandon Text", Arial, sans-serif;
  font-weight: bold;
  color: #13243a;
}

.page-id-2001 .help-tip:hover,
.page-id-283 .help-tip:hover,
.page-id-60285 .help-tip:hover,
.page-id-60281 .help-tip:hover,
.page-id-64197 .help-tip:hover,
.page-id-64910 .help-tip:hover,
.page-id-64874 .help-tip:hover,
.page-id-64178 .help-tip:hover {
  color: #1b3d7a;
  border: 1.5px solid #1b3d7a;
}

.page-id-60285 .NW20-help-tip:hover,
.page-id-60281 .NW20-help-tip:hover,
.page-id-64197 .NW20-help-tip:hover,
.page-id-64178 .NW20-help-tip:hover,
.page-id-64910 .NW20-help-tip:hover,
.page-id-64874 .NW20-help-tip:hover,
.page-id-2751 .NW20-help-tip:hover,
.page-id-60275 .NW20-help-tip:hover,
.page-id-28381 .NW20-help-tip:hover,
.page-id-60279 .NW20-help-tip:hover,
.page-id-11262 .NW20-help-tip:hover {
  color: #13243a;
  border: 1px solid #13243a;
}

.page-id-2001 .help-tip:hover p,
.page-id-283 .help-tip:hover p,
.page-id-60285 .help-tip:hover p,
.page-id-60281 .help-tip:hover p,
.page-id-64197 .help-tip:hover p,
.page-id-64178 .help-tip:hover p,
.page-id-64910 .help-tip:hover p,
.page-id-64874 .help-tip:hover p,
.page-id-2751 .help-tip:hover p,
.page-id-60275 .help-tip:hover p,
.page-id-28381 .help-tip:hover p,
.page-id-60279 .help-tip:hover p,
.page-id-11262 .help-tip:hover p {
  display: block;
  transform-origin: 100% 0%;
  z-index: 1000;
  -webkit-animation: fadeIn 0.3s ease-in-out;
  animation: fadeIn 0.3s ease-in-out;
}

.page-id-2001 .help-tip p,
.page-id-283 .help-tip p,
.page-id-60285 .help-tip p,
.page-id-60281 .help-tip p,
.page-id-64197 .help-tip p,
.page-id-64910 .help-tip p,
.page-id-64874 .help-tip p,
.page-id-64178 .help-tip p {
  /* The tooltip */
  display: none;
  text-align: left;
  background-color: #fff;
  padding: 20px;
  width: 300px;
  position: absolute;
  border-radius: 3px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  right: -4px;
  color: #1b3d7a;
  font-size: 13px;
  line-height: 1.4;
  font-family: "Brandon Text";
  font-size: 14px;
  font-weight: 300;
}

.page-id-60285 .NW20-help-tip p,
.page-id-60281 .NW20-help-tip p,
.page-id-64197 .NW20-help-tip p,
.page-id-64178 .NW20-help-tip p,
.page-id-64910 .NW20-help-tip p,
.page-id-64874 .NW20-help-tip p,
.page-id-2751 .NW20-help-tip p,
.page-id-60275 .NW20-help-tip p,
.page-id-28381 .NW20-help-tip p,
.page-id-60279 .NW20-help-tip p,
.page-id-11262 .NW20-help-tip p {
  display: none;
  text-align: left;
  background-color: #fff;
  padding: 20px;
  width: 300px;
  position: absolute;
  border-radius: 3px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  right: -4px;
  color: #13243a;
  font-size: 13px;
  line-height: 1.4;
  font-family: "Brandon Text", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  z-index: 1;
}

.page-id-2001 .help-tip p:before,
.page-id-283 .help-tip p:before,
.page-id-60285 .help-tip p:before,
.page-id-60281 .help-tip p:before,
.page-id-64197 .help-tip p:before,
.page-id-64178 .help-tip p:before,
.page-id-2751 .help-tip p:before,
.page-id-60275 .help-tip p:before,
.page-id-28381 .help-tip p:before,
.page-id-60279 .help-tip p:before,
.page-id-64910 .help-tip p:before,
.page-id-64874 .help-tip p:before,
.page-id-11262 .help-tip p:before {
  /* The pointer of the tooltip */
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-bottom-color: #fff;
  right: 10px;
  top: -12px;
}

.page-id-2001 .help-tip p:after,
.page-id-283 .help-tip p:after,
.page-id-60285 .help-tip p:after,
.page-id-60281 .help-tip p:after,
.page-id-64197 .help-tip p:after,
.page-id-64178 .help-tip p:after,
.page-id-2751 .help-tip p:after,
.page-id-60275 .help-tip p:after,
.page-id-28381 .help-tip p:after,
.page-id-60279 .help-tip p:after,
.page-id-64910 .help-tip p:after,
.page-id-64874 .help-tip p:after,
.page-id-11262 .help-tip p:after {
  /* Prevents the tooltip from being hidden */
  width: 100%;
  height: 40px;
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
}

.page-id-2001 .errorIsaMessage,
.page-id-283 .errorIsaMessage,
.page-id-60285 .errorIsaMessage,
.page-id-60281 .errorIsaMessage,
.page-id-64197 .errorIsaMessage,
.page-id-64910 .errorIsaMessage,
.page-id-64874 .errorIsaMessage,
.page-id-64178 .errorIsaMessage {
  color: red;
  margin-top: 8px;
  min-width: 450px;
  visibility: visible;
}

.page-id-60285 .NW20-errorIsaMessage,
.page-id-60281 .NW20-errorIsaMessage,
.page-id-64197 .NW20-errorIsaMessage,
.page-id-64910 .NW20-errorIsaMessage,
.page-id-64874 .NW20-errorIsaMessage,
.page-id-64178 .NW20-errorIsaMessage {
  position: relative;
  padding: 10px;
  border-radius: 5px;
  background-color: #ba2b2b80;
  border: 2px solid #ba2b2b;
  text-align: left;
  margin-top: 10px;
  font-family: "Brandon Text", Arial, sans-serif;
  color: #ffffff;
  font-size: 16px;
  min-width: 0 !important;
}

.page-id-60285 .NW20-errorIsaMessage:before,
.page-id-60285 .NW20-errorIsaMessage:after,
.page-id-60281 .NW20-errorIsaMessage:before,
.page-id-60281 .NW20-errorIsaMessage:after,
.page-id-64197 .NW20-errorIsaMessage:before,
.page-id-64197 .NW20-errorIsaMessage:after,
.page-id-64178 .NW20-errorIsaMessage:before,
.page-id-64910 .NW20-errorIsaMessage:before,
.page-id-64874 .NW20-errorIsaMessage:before,
.page-id-64910 .NW20-errorIsaMessage:after,
.page-id-64874 .NW20-errorIsaMessage:after,
.page-id-64178 .NW20-errorIsaMessage:after {
  right: 90%;
  top: -11px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.page-id-60285 .NW20-errorIsaMessage:before,
.page-id-60281 .NW20-errorIsaMessage:before,
.page-id-64197 .NW20-errorIsaMessage:before,
.page-id-64910 .NW20-errorIsaMessage:before,
.page-id-64874 .NW20-errorIsaMessage:before,
.page-id-64178 .NW20-errorIsaMessage:before {
  border-color: transparent transparent #ba2b2b transparent;
  border-width: 10px;
  margin-top: -11px;
}

.page-id-60285 .NW20-errorIsaMessage:after,
.page-id-60281 .NW20-errorIsaMessage:after,
.page-id-64197 .NW20-errorIsaMessage:after,
.page-id-64910 .NW20-errorIsaMessage:after,
.page-id-64874 .NW20-errorIsaMessage:after,
.page-id-64178 .NW20-errorIsaMessage:after {
  border-color: transparent transparent #ba2b2b80 transparent;
  border-width: 10px;
  margin-top: -9px;
}

.NW20-radioLongHelpTip {
  width: 100%;
}

.NW20-radioLongHelpTip .NW20-radioLongHelpTipWrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.NW20-radioLongHelpTip .NW20-radioLongHelpTipWrapper .NW20-help-tip {
  top: 0;
  left: auto;
  margin-bottom: 0px;
  min-width: 24px;
}

.outlineExistingISA input[type="radio"] + label {
  color: #13487a;
  border: 1.75px solid #1b3d7a;
  background-color: #ccf0f7;
  width: 24%;
  margin-top: 0;
  cursor: pointer;
}

.outlineExistingISA input[type="radio"]:checked + label {
  background-color: #1b3d7a;
  color: #fff;
}

.page-id-60285 .paymentAmount,
.page-id-60281 .paymentAmount,
.page-id-64197 .paymentAmount,
.page-id-64910 .paymentAmount,
.page-id-64874 .paymentAmount,
.page-id-64178 .paymentAmount {
  width: 397px !important;
}

.page-id-60281 .form-control-feedback .errorIsaMessage,
.page-id-64197 .form-control-feedback .errorIsaMessage,
.page-id-64910 .form-control-feedback .errorIsaMessage,
.page-id-60285 .form-control-feedback .errorIsaMessage,
.page-id-64874 .form-control-feedback .errorIsaMessage,
.page-id-64178 .form-control-feedback .errorIsaMessage {
  display: none;
}

.page-id-60281 td,
.page-id-64197 td,
.page-id-64910 td,
.page-id-60285 td,
.page-id-64874 td,
.page-id-64178 td {
  border-bottom: none;
  border-right: none;
  border-left: none;
}

.form-error-message {
  color: #ff0000;
  padding-top: 10px;
}

.input-prefix {
  font-family: "Brandon Text";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.3157894737;
  min-width: 4.6rem;
  height: 4.3rem;
  padding: 5px !important;
  border-right: 1px solid !important;
  background-color: rgba(245, 246, 246, 1) !important;
  text-align: center;
  white-space: nowrap;
  cursor: default;
}

@media screen and (max-width: 991px) {
  .page-id-2001 .form-control-feedback,
  .page-id-283 .form-control-feedback,
  .page-id-60285 .form-control-feedback,
  .page-id-60281 .form-control-feedback,
  .page-id-64197 .form-control-feedback,
  .page-id-64910 .form-control-feedback,
  .page-id-64874 .form-control-feedback,
  .page-id-64178 .form-control-feedback {
    left: 85%;
  }

  .signin-cta__container--isa {
    display: none;
  }

  .signin-cta__container--isa-mobile {
    display: block;
    padding: unset !important;
  }
}

@media screen and (max-width: 768px) {
  .page-id-2001 .form-control,
  .page-id-283 .form-control,
  .page-id-64197 .form-control,
  .page-id-64178 .form-control {
    width: 343px;
  }

  .page-id-2001 .form-control-feedback-currency,
  .page-id-283 .form-control-feedback-currency,
  .page-id-60285 .form-control-feedback-currency,
  .page-id-60281 .form-control-feedback-currency,
  .page-id-64197 .form-control-feedback-currency,
  .page-id-64910 .form-control-feedback-currency,
  .page-id-64874 .form-control-feedback-currency,
  .page-id-64178 .form-control-feedback-currency {
    left: 85% !important;
  }

  .page-id-2001 .signInCTA,
  .page-id-283 .signInCTA,
  .page-id-60285 .signInCTA,
  .page-id-60281 .signInCTA,
  .page-id-64197 .signInCTA,
  .page-id-64910 .signInCTA,
  .page-id-64874 .signInCTA,
  .page-id-64178 .signInCTA {
    width: 343px;
    margin: 0 auto;
  }

  .page-id-2001 .btn-default,
  .page-id-283 .btn-default,
  .page-id-60285 .btn-default,
  .page-id-60281 .btn-default,
  .page-id-64197 .btn-default,
  .page-id-64910 .btn-default,
  .page-id-64874 .btn-default,
  .page-id-64178 .btn-default {
    width: 343px;
  }

  .page-id-2001 .large-address-boxes-width,
  .page-id-283 .large-address-boxes-width,
  .page-id-60285 .large-address-boxes-width,
  .page-id-60281 .large-address-boxes-width,
  .page-id-64197 .large-address-boxes-width,
  .page-id-64910 .large-address-boxes-width,
  .page-id-64874 .large-address-boxes-width,
  .page-id-64178 .large-address-boxes-width {
    display: block;
    width: 100%;
  }

  .page-id-2001 .input-group,
  .page-id-283 .input-group,
  .page-id-60285 .input-group,
  .page-id-60281 .input-group,
  .page-id-64197 .input-group,
  .page-id-64910 .input-group,
  .page-id-64874 .input-group,
  .page-id-64178 .input-group {
    width: 343px;
  }

  .page-id-2001 .applicationLogo,
  .page-id-283 .applicationLogo,
  .page-id-60285 .applicationLogo,
  .page-id-60281 .applicationLogo,
  .page-id-64197 .applicationLogo,
  .page-id-64910 .applicationLogo,
  .page-id-64874 .applicationLogo,
  .page-id-64178 .applicationLogo {
    width: 88px;
    height: auto;
  }

  .NW20-applicationLogo {
    width: 85%;
    height: auto;
  }

  .page-id-60285 .NW20-applicationLogo,
  .page-id-60275 .NW20-applicationLogo,
  .page-id-28381 .NW20-applicationLogo,
  .page-id-11262 .NW20-applicationLogo,
  .page-id-60279 .NW20-applicationLogo,
  .page-id-2751 .NW20-applicationLogo,
  .page-id-60281 .NW20-applicationLogo,
  .page-id-64197 .NW20-applicationLogo,
  .page-id-64178 .NW20-applicationLogo,
  .page-id-isa .NW20-applicationLogo,
  .page-id-sustainable-isa .NW20-applicationLogo,
  .page-id-claims .NW20-applicationLogo,
  .page-id-64910 .NW20-applicationLogo,
  .page-id-64874 .NW20-applicationLogo,
  .page-id-bonds .NW20-applicationLogo {
    width: 85%;
    height: auto;
  }

  .page-id-2001 .errorIsaMessage,
  .page-id-283 .errorIsaMessage,
  .page-id-60285 .errorIsaMessage,
  .page-id-60281 .errorIsaMessage,
  .page-id-64197 .errorIsaMessage,
  .page-id-64910 .errorIsaMessage,
  .page-id-64874 .errorIsaMessage,
  .page-id-64178 .errorIsaMessage {
    min-width: 365px;
    visibility: visible;
  }

  .page-id-60285 .paymentAmount,
  .page-id-60281 .paymentAmount,
  .page-id-64197 .paymentAmount,
  .page-id-64910 .paymentAmount,
  .page-id-64874 .paymentAmount,
  .page-id-64178 .paymentAmount {
    width: 100% !important;
  }
}

@media screen and (min-width: 320px) {
  .defaqtoLogoMarginTop {
    margin-top: 10px;
    margin-bottom: 35px;
    width: 200px;
  }
}

@media screen and (min-width: 576px) and (max-width: 991px) {
  .defaqtoLogoMarginTop {
    margin-top: 45px;
  }
}

@media only screen and (min-width: 360px) and (max-width: 360px) {
  .applicationFormPageTitle {
    margin-top: 60px;
  }
}

/* iPhone 6 Portrait */

@media only screen and (min-width: 375px) and (max-width: 375px) {
  .applicationFormPageTitle {
    margin-top: 70px;
  }
}

/* iPhone 6 + Portrait */

@media only screen and (min-width: 414px) and (max-width: 414px) {
  .applicationFormPageTitle {
    margin-top: 80px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width: 480px) {
  .applicationProductName {
    text-align: right;
    top: -40px;
    right: -20px;
  }

  .applicationFormPageTitle {
    margin-top: 0px;
  }
}

/* Small mobiles */

@media only screen and (min-width: 320px) and (max-width: 320px) {
  .drop-down-list-padding {
    padding-right: 5px !important;
  }

  .drop-down-box-padding {
    padding: 0 6px !important;
  }

  .align-quote-result {
    vertical-align: middle !important;
  }
}

/* iPhone 5 Landscape */

@media (min-width: 568px) {
  .applicationFormPageTitle {
    text-align: right;
    max-width: 430px;
    float: right;
  }
}

/* Galaxy S4 Landscape */

@media (min-width: 640px) {
  .applicationFormPageTitle {
    text-align: right;
    max-width: 100%;
    float: right;
  }
}

/* Small Devices, Tablets */

@media (min-width: 768px) {
  .signin-cta__container {
    padding: 1rem 2rem;
    margin: 2rem auto 2rem 0;
  }

  .appPdfTextBox {
    display: inline-block !important;
    margin: 0px 0px 0px 10px;
  }

  .appPdfIcon {
    display: inline-block;
    float: left;
    margin: 0px 20px 0px 0px;
  }

  .appPdfTitle,
  .ipSummaryTitle {
    text-align: left;
  }

  .applicationProductName {
    text-align: right;
    top: -40px;
    right: -26px;
    margin-bottom: -35px;
  }

  .quoteResultAmount {
    font-size: 90px;
    text-align: left;
  }

  .needHelp {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }

  .NW20-optionsHeadline {
    min-height: 70px;
  }
}

/* Apple iPad's and BlackBerry PlayBook */

@media only screen and (min-width: 992px) and (max-width: 1024px) {
  .btn-height {
    margin-top: 30px;
  }

  .large-address-boxes-width {
    width: 100%;
  }
}

/* Apple iPad's and BlackBerry PlayBook */

@media only screen and (min-width: 992px) {
  .applicationProductName {
    text-align: right;
    position: relative;
    top: -200px;
    margin-bottom: -200px;
    padding-right: 0px;
  }

  .readCheckbox {
    font-size: 13px;
    text-align: left;
    padding-bottom: 0px;
  }

  .quoteResultAmount {
    text-align: center;
  }

  .appPdfIcon {
    display: inline-block;
    float: left;
    margin-right: 10px;
  }

  .applicationProductName {
    top: -145px;
    margin-bottom: -145px;
    right: 0px;
  }

  .amendBox {
    margin-bottom: 0px !important;
  }

  .applicationFormPageTitle {
    font-size: 36px;
    max-width: 100%;
  }

  .sportsAndPastimesControls {
    display: inline-block;
    position: relative;
    left: 70%;
    top: 50px;
    margin-top: -70px;
    cursor: pointer;
  }

  .defaqtoLogoMarginTop {
    margin-top: 10px;
    width: 260px;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width: 1200px) {
  .applicationProductName {
    top: -132px;
    margin-bottom: -132px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 991px) {
  .error-message {
    position: relative;
    padding: 10px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #ff0000;
    text-align: center;
    margin-bottom: 15px;
  }

  .error-message:after,
  .error-message:before,
  .info-message:after,
  .info-message:before {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
  }

  .error-message:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #fff;
    border-width: 16px;
    margin-left: -30px;
  }

  .error-message:before {
    border-color: rgba(245, 37, 37, 0);
    border-top-color: #f52525;
    border-width: 17px;
    margin-left: -31px;
  }

  .info-message {
    position: relative;
    padding: 10px;
    border-radius: 3px;
    background: #b2e8f3;
    text-align: center;
    margin-bottom: 20px;
    color: #13487a;
  }

  .info-message:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #b2e8f3;
    border-width: 16px;
    margin-left: -30px;
  }

  .sportsAndPastimesControls {
    left: 84%;
  }
}

@media only screen and (min-width: 992px) {
  .error-message {
    position: relative;
    padding: 10px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #ff0000;
    text-align: center;
  }

  .error-message:after,
  .error-message:before,
  .info-message:after,
  .info-message:before {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
  }

  .error-message:after {
    border-color: rgba(255, 255, 255, 0);
    border-right-color: #fff;
    border-width: 10px;
    margin-top: -11px;
  }

  .error-message:before {
    border-color: rgba(245, 37, 37, 0);
    border-right-color: #f52525;
    border-width: 11px;
    margin-top: -12px;
  }

  .info-message {
    position: relative;
    padding: 10px;
    border-radius: 3px;
    background: #b2e8f3;
    text-align: center;
    color: #13487a;
  }

  .info-message:after {
    border-color: rgba(255, 255, 255, 0);
    border-right-color: #b2e8f3;
    border-width: 10px;
    margin-top: -11px;
  }

  .info-message:before {
    border-color: rgba(245, 37, 37, 0);
    border-width: 11px;
    margin-top: -12px;
  }

  .yspAboutAppTitle {
    margin-bottom: 0px;
    margin-top: -145px !important;
  }
}

@media only screen and (min-width: 320px) and (max-width: 1199px) {
  .address-boxes {
    margin-bottom: 10px;
  }

  .address-boxes button {
    width: 100%;
  }

  .drop-down-list-padding {
    padding-right: 5px !important;
  }

  .drop-down-box-padding {
    padding: 0 6px !important;
  }
}

@media only screen and (min-width: 1200px) {
  .yspAboutAppTitle {
    margin-bottom: 0px;
    margin-top: -100px !important;
  }
}
.download-panel__row {
  display: flex;
  flex-wrap: wrap;
}

.download-panel__row span {
  flex: 1;
  min-width: 180px;
  margin: 10px 10px;
}

.numberStack {
  max-width: 30px !important;
}

.tabNumberText {
  font-size: 14px;
  position: relative !important;
  bottom: 2px;
  left: -3px !important;
  max-width: 30px !important;
  margin-right: 0px !important;
}

.tabNumberCircle {
  font-size: 28px !important;
  margin-top: 5px;
  text-align: left !important;
  max-width: 30px !important;
}

#aboutAppIntro {
  padding: 30px 0px;
  background-color: #ccf0f7;
}

#aboutAppIntro p {
  color: #13487a;
}

#aboutAppIntro ul {
  margin-top: 30px;
  padding-left: 15px;
}

#aboutAppIntro li {
  margin-bottom: 15px;
}

.lastLi {
  margin-bottom: 0px !important;
}

#aboutAppIntro .aboutAppTitle {
  font-family: 'Brandon Text';
  font-size: 32px;
  color: #00b2d7;
  margin-bottom: 20px;
}

#aboutAppIntro .aboutAppIntroText {
  font-family: 'Brandon Text';
  font-size: 18px;
  color: #13487a;
  margin-bottom: 30px;
}

#aboutAppContent {
  padding: 40px 0px;
}

#aboutAppIntro .aboutAppSubtitle {
  font-family: 'Brandon Text';
  font-size: 24px;
  color: #00b2d7;
}

.downloadPanel {
  background-color: #f6f6f6;
  padding: 20px;
  width: 100%;
  margin-left: 0px;
  margin-bottom: 20px;
}

.downloadPanelNoWidth {
  background-color: #f6f6f6;
  padding: 20px;
  margin-left: 0px;
  margin-bottom: 40px;
  border-radius: 5px;
}

.footerPDFConfirms {
  padding: 10px;
  background-color: #f6f6f6;
}

.readCheckbox {
  text-align: center;
  padding-bottom: 20px;
}

.appPdfIcon {
  display: block;
  margin: 0px auto 10px auto;
}

.appPdfTextBox {
  display: block;
  margin: 0px auto 0px auto;
}

.appPdfTitle {
  font-family: 'Brandon Text';
  font-size: 16px;
  font-weight: 700;
  color: #13487a;
  margin-bottom: 0px;
  text-align: center;
}

.appPdfDoc {
  color: #13487a;
  text-align: center;
}

.amendBox {
  margin-bottom: 40px;
}

.amendBox > button {
  margin-top: 0px !important;
}

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

#VoucherPanel {
  display: none;
}

/* Galaxy S4 Portrait */

@media only screen and  (min-width : 360px) and (max-width : 360px) {
  .aboutApplicationFormPageTitle {
    margin-top: 40px;
  }
}

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) and (max-width : 375px) {
  .aboutApplicationFormPageTitle {
    margin-top: 40px;
  }
}

/* iPhone 6 + Portrait */

@media only screen and  (min-width : 414px) and (max-width : 414px) {
  .aboutApplicationFormPageTitle {
    margin-top: 60px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width : 480px) {
  .aboutApplicationFormPageTitle {
    margin-top: 0px;
    text-align: right;
    float: right;
    max-width: 85%;
  }

  #aboutAppTitleBox {
    margin-top: -30px;
  }
}

/* iPhone 5 Landscape */

@media (min-width:568px) {
  .aboutApplicationFormPageTitle {
    margin-top: 0px;
    text-align: right;
    float: right;
    max-width: 80%;
    display: block;
  }
}

/* Galaxy S4 Landscape */

@media (min-width:640px) {
  #aboutAppTitleBox {
    margin-top: -30px;
    margin-bottom: 20px;
  }

  .aboutApplicationFormPageTitle {
    float: right;
  }
}

/* iPhone 6 Landscape */

@media (min-width:667px) {
  #aboutAppTitleBox {
    margin-top: -30px;
    margin-bottom: 20px;
  }

  .aboutApplicationFormPageTitle {
    margin-top: 0px;
    float: right;
  }
}

/* iPhone 6+ Landscape */

@media (min-width:736px) {
  .aboutApplicationFormPageTitle {
    margin-top: 0px;
    float: right;
  }
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  .readCheckbox {
    text-align: left;
  }

  #aboutAppTitleBox {
    min-height: 80px;
  }

  .promoCode {
    max-width: 300px;
    margin-top: 30px;
  }

  .appPdfTextBox {
    text-align: left !important;
  }

  .appPdfIcon {
    margin-right: 10px !important;
  }

  .appPdfTitle {
    text-align: left !important;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  #aboutAppTitleBox {
    margin-top: 0px;
    margin-bottom: 40px;
    min-height: 100px;
  }

  .aboutApplicationFormPageTitle {
    font-size: 36px;
    margin-top: 10px;
    max-width: 100%;
  }
}

@media only screen and (min-width : 1200px) {
  #aboutAppTitleBox {
    margin-top: 0px;
    margin-bottom: 0px;
    min-height: 130px;
  }

  .aboutApplicationFormPageTitle {
    margin-top: -100px;
  }
}
#thanksDownloads {
  padding: 40px 0px;
}

#thanksIntro {
  padding: 0px 0px 40px 0px;
}

.thanksHr {
  margin-top: 30px;
  margin-bottom: 30px;
  border: 0;
  border-top: 1px solid #FFF;
}

.thanksTitle {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 48px;
  margin-bottom: 30px;
}

.thanksIntroText {
  font-family: 'Brandon Text';
  font-size: 22px;
  color: #13487a;
}

#thanksContent {
  padding: 40px 0px;
  background-color: #e1f1f9;
}

.NW20-thanksContent {
  padding: 40px 0px;
  background-color: #87D0F140 !important;
}

.thanksContentText {
  font-family: 'Brandon Text';
  color: #13487a;
  line-height: 1.4;
  font-size: 16px;
  margin-bottom: 15px;
}

.thanksSubtitle {
  font-family: 'Brandon Text';
  font-size: 24px;
  color: #00b2d7;
}

.NW20-thanksSubtitle {
  font-family: 'Brandon Text', Arial, sans-serif !important;
  font-size: 20px !important;
  color: #454E50 !important;
}

.thanksExtraInfoText {
  padding-top: 50px;
  margin-bottom: 0px;
}

.thanksDownloadPanel {
  background-color: #f6f6f6;
  padding: 20px;
  width: 100%;
  margin-left: 0px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.thanksFinishBtn {
  display: block;
  background-color: #e54454;
  border-radius: 0px;
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 18px;
  margin: 20px auto 0px auto;
  padding: 15px 40px;
  min-width: 100%;
}

.thanksFinishBtn:hover {
  background-color: #cb2637;
  color: #FFF;
}

.glyphicon-ok {
  color: #93bf32;
}

.glyphicon-remove {
  color: #e03f56;
}

.glyphicon-eye-open {
  color: #173e7a;
}

.glyphicon-eye-close {
  color: #173e7a;
}

.form-control {
  height: 40px;
  font-size: 16px;
}

.form-control-feedback {
  line-height: 40px;
}

.info-message-title {
  color: #00b2d7;
  font-weight: bold;
}

.error-message-title {
  color: #FF0000;
  font-weight: bold;
}

.applyOnlineBtn {
  background-color: #98c662;
  border-radius: 0px;
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 18px;
  margin: 20px 0px 0px 0px;
  padding: 30px 40px;
  width: 100%;
}

.applyOnlineBtnModal {
  background-color: #98c662;
  border-radius: 0px;
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 18px;
}

.applyOnlineBtnModal:hover {
  color: #FFF;
}

/* Galaxy S4 Portrait */

@media only screen and  (min-width : 360px) and (max-width : 360px) {
  #thanksIntro {
    padding: 30px 0px 30px 0px;
  }
}

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) and (max-width : 375px) {
  #thanksIntro {
    padding: 30px 0px 30px 0px;
  }

  .thanksTitle {
    font-family: 'Brandon Text';
    color: #13487a;
    font-size: 42px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

/* Nexus 4 Portrait */

@media only screen and  (min-width : 384px) and (max-width : 384px) {
  .thanksTitle {
    font-family: 'Brandon Text';
    color: #13487a;
    font-size: 42px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/* Nexus 6 Portrait */

@media only screen and  (min-width : 412px) and (max-width : 412px) {
  .thanksTitle {
    font-family: 'Brandon Text';
    color: #13487a;
    font-size: 42px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/* iPhone 6 + Portrait */

@media only screen and  (min-width : 414px) and (max-width : 414px) {
  #thanksIntro {
    padding: 60px 0px 30px 0px;
  }

  .thanksTitle {
    font-family: 'Brandon Text';
    color: #13487a;
    font-size: 42px;
    margin-top: 0px;
    margin-bottom: 20px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width : 480px) {
  #thanksIntro {
    padding: 0px 0px 20px 0px;
  }
}

/* iPhone 5 Landscape */

@media (min-width:568px) {
  #thanksIntro {
    padding: 20px 0px 20px 0px;
  }
}

/* Galaxy S4 Landscape */

@media (min-width:640px) {
  #thanksIntro {
    padding: 40px 0px 20px 0px;
  }
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  #thanksIntro {
    padding: 80px 0px 20px 0px;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  #thanksIntro {
    padding: 180px 0px 20px 0px;
  }

  .thanksFinishBtn {
    background-color: #e54454;
    border-radius: 0px;
    color: #FFF;
    font-family: 'Brandon Text';
    font-size: 18px;
    margin: 20px 0px 0px 0px;
    padding: 15px 40px;
    min-width: 30%;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width : 1200px) {
  #thanksIntro {
    padding: 140px 0px 20px 0px;
  }
}
#navTabs {
  padding: 20px 0px 0px 0px;
}

.nav-tabs {
  border-bottom: 0px;
}

.nav-tabs > li > a {
  background-color: #00b2d7;
  font-family: "Brandon Text";
  color: #fff;
  font-size: 20px;
  padding: 10px 14px;
}

.NW20-nav-tabs > li > a {
  background-color: #eceded !important;
  font-family: "Brandon Text", Arial;
  color: #454e50;
  font-size: 16px;
  padding: 10px 14px;
  text-decoration: none;
}

.nav-tabs > li > a:hover {
  background-color: #ccf0f7;
  color: #13487a;
  border: 1px solid #ccf0f7 !important;
}

.navTabActive > a {
  background-color: #ccf0f7 !important;
  color: #13487a !important;
  font-family: "Brandon Text";
  font-size: 20px;
  font-weight: bold;
  border: 1px solid #ccf0f7 !important;
}

.disabledTabs > li > a {
  background-color: #cdcdcd;
}

.disabledTabs > li > a:hover {
  background-color: #cdcdcd;
  color: #fff;
  cursor: not-allowed;
  border: 1px solid #cdcdcd !important;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  background-color: #ccf0f7 !important;
  color: #13487a !important;
  font-family: "Brandon Text";
  font-size: 20px;
  font-weight: bold;
  border: 1px solid #ccf0f7 !important;
}

.NW20-nav-tabs > li.active > a,
.NW20-nav-tabs > li.active > a:focus,
.NW20-nav-tabs > li.active > a:hover {
  background-color: #87d0f140 !important;
  color: #13243a !important;
  font-family: "Brandon Text", Arial;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid #ffffff !important;
  border-bottom: 1px transparent !important;
}

.NW20-nav-tabs > li.active .NW20-numberStack {
  background-color: #87d0f140;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.applySidebarBox {
  width: 100%;
  margin: 0;
}

.applySidebarBox .greenCtaBtn {
  margin: 0;
}

.NW20-applySidebarBox .NW20-greenCtaBtn {
  margin: 47px auto;
}

.page-id-2751 .NW20-applySidebarBox .NW20-greenCtaBtn {
  margin: 51px auto;
}

.page-id-60279 .NW20-applySidebarBox .NW20-greenCtaBtn {
  margin: 0px auto;
  width: 100%;
}

.sidebarDownloadsTitle {
  font-family: "Brandon Text";
  color: #00b2d7;
  font-size: 32px;
  margin-bottom: 20px;
  margin-top: -10px;
}

.applySidebarNeedHelp {
  margin-top: 30px;
}

.sBAB {
  margin-top: 0px;
  padding: 30px 40px;
  margin: 0px;
}

.sidebarBoxFix {
  position: fixed !important;
  margin-bottom: -200px !important;
  top: 40px !important;
  z-index: 9999 !important;
}

.sidebarDownloads {
  margin-bottom: 30px;
}

.sidebarTitleBox {
  width: 100%;
  background-color: #13487a;
  padding: 10px 30px;
  margin-bottom: 0px;
}

.sidebarTitle {
  color: #fff;
  font-family: "Brandon Text";
  font-size: 22px;
  margin-bottom: 0px;
}

.sidebarDownloadContent {
  background-color: #e5f7fb;
  padding: 20px;
  border: 2px solid #00b2d7;
}

.NW20-sidebarDownloadContent {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 5px;
  border: none;
  text-align: center;
}

.sidebarDownloadContent h3 {
  font-size: 32px;
  color: #00b2d7;
  font-family: "Brandon Text", serif;
  margin-bottom: 20px;
  margin-top: -10px;
}

.NW20-sidebarDownloadContent h3 {
  font-size: 24px;
  color: #13243a;
  font-family: "Brandon Text", Arial;
  margin-bottom: 20px;
  margin-top: -10px;
  text-align: center;
}

.NW20-sidebarDownloadContent p,
.NW20-sidebarDownloadContent li {
  font-size: 16px;
  color: #454e50;
  font-family: "Brandon Text", Arial;
  text-align: center;
  margin: 13px auto;
}

.NW20-sidebarDownloadContent .NW-arrows-icon {
  width: 60%;
  margin-bottom: 30px;
}

.page-id-11262 .NW20-sidebarDownloadContent .NW-arrows-icon,
.page-id-60279 .NW20-sidebarDownloadContent .NW-arrows-icon {
  width: 20%;
}

.sidebarPhoneNo {
  margin: 20px 0px;
  background-color: #173e7a;
  color: #fff;
  font-family: "Brandon Text", serif;
}

.sidebarPhoneNumberTitle {
  margin-top: 10px;
  font-size: 22px;
}

.sidebarPhoneNumberNumber {
  font-weight: bold;
  font-size: 36px;
}

.sidebarPhoneNumberSubTitle {
  font-size: 22px;
  margin-bottom: 10px;
}

.dataResponseTable > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 0px !important;
  padding-left: 0px !important;
}

.quoteResultAmount {
  font-size: 62px;
  font-family: "Brandon Text";
  color: #00b2d7;
  text-align: center;
}

.NW20-quoteResultAmount {
  font-size: 62px;
  font-family: "Brandon Text", Arial, sans-serif;
  color: #f7aa00;
  text-align: center;
}

.NW20-quoteResultAmountBlue {
  color: #13243a;
}

.quoteResultAmountMultiple {
  font-size: 30px;
  font-family: "Brandon Text";
  color: #00b2d7;
  text-align: center;
}

.NW20-quoteResultAmountMultiple {
  font-size: 24px;
  font-family: "Brandon Text", Arial;
  color: #f7aa00 !important;
  text-align: center;
}

.downloadFile {
  font-family: "Brandon Text";
  color: #13487a;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0px;
}

.downloadDoc {
  font-family: "Brandon Text";
  color: #13487a;
  font-size: 16px;
  margin-bottom: 0px;
}

.downloadIcon {
  width: 70%;
}

#productContent {
  padding: 40px 0px;
}

.productContentTitle {
  font-family: "Brandon Text";
  color: #13487a;
  font-size: 22px;
  margin-bottom: 30px;
}

.productContentTitle2 {
  font-family: "Brandon Text";
  color: #13487a;
  font-size: 20px;
  margin-bottom: 30px;
}

.productContentSubtitle {
  font-family: "Brandon Text";
  color: #00b2d7;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.2;
}

.productContentFeatureTitle {
  font-family: "Brandon Text";
  color: #13487a;
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.featuresRow {
  margin-bottom: 20px;
}

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

.productApplyText {
  font-family: "Brandon Text";
  color: #13487a;
  font-size: 20px;
  margin-bottom: 0px;
  text-align: center;
}

.productApplySpan {
  color: #00b2d7;
}

.importantThings {
  background-color: #e5f7fb;
  border: 2px solid #13487a;
  margin: 40px 0px;
  padding: 20px;
}

.NW20-importantThings {
  background-color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 5px;
  padding: 20px;
}

.NW20-importantThings p {
  color: #13243a;
  font-family: "Brandon Text", Arial;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}

.NW20-importantThings li {
  color: #454e50;
  font-family: "Brandon Text", Arial;
  font-weight: 400;
  font-size: 16px;
}

.importantThings ul {
  padding: 0px 20px;
}

.importantThings li {
  margin-bottom: 15px;
}

.importantThingsTitle {
  font-family: "Brandon Text";
  font-size: 24px;
  color: #13487a;
  margin-bottom: 20px;
}

.taxWarning {
  margin-bottom: 30px;
  text-align: center;
}

.claimsPaid {
  font-family: "Brandon Text";
  font-size: 40px;
  color: #e44353;
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 30px;
}

.productBanner {
  background-attachment: scroll;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -o-background-size: cover;
  margin-top: -45px;
  -webkit-box-shadow: inset 0 0 0 2000px rgba(19, 72, 122, 0.75);
  box-shadow: inset 0 0 0 2000px rgba(19, 72, 122, 0.75);
}

.productBanner .greenCtaBtn {
  margin-left: auto;
  margin-right: auto;
}

#jisaProductBanner {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/junior-isa-banner-short.jpg);
}

#sipProductBanner {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/simple-income-plan-banner-image.jpg);
}

#ipProductBanner {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/tele-interview-banner.jpg);
}

#yourSavingsBanner {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/family-on-beach.jpg);
  padding: 30px 0px;
}

#yourChildSavingsBanner {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/junior-isa-banner-short.jpg);
  padding: 30px 0px;
}

#bonusPlanProductBanner {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/bonus-plan-banner-image.jpg);
  background-position-x: 90%;
}

#isaProductBanner {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/isa-banner-image.jpg);
}

#yspProductBanner {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/young-saver-plan-banner-image.jpg);
  background-position-x: 70%;
}

#uspProductBanner {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/university-savings-plan-banner-image.jpg);
}

#ctfProductBanner {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/ctf-banner.jpg);
  background-position-x: 90%;
}

#o50sProductBanner {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/over50s-plan-banner-image.jpg);
  background-position-x: 80%;
}

#yspBanner {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/ysp-banner.jpg);
  background-position: top center;
}

#jmmBanner {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/jmm-banner.jpg);
}

#bondBanner {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/Bond-Product_Banner2.jpg);
}

#jisaBannerDarkBlue {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/new-jisa-banner.jpg);
  background-position: 80% 0%;
  -webkit-box-shadow: inset 0 0 0 2000px rgba(19, 72, 122, 0.75);
  box-shadow: inset 0 0 0 2000px rgba(19, 72, 122, 0.75);
}

.jisaProductIcon {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  display: block;
  max-width: 20%;
}

.sipProductIcon {
  max-width: 10%;
  display: block;
  margin-left: auto;
  margin-bottom: 20px;
  margin-right: auto;
}

.defaqtoLogo {
  display: block;
}

.defaqtoLogo-show {
  display: none;
}

.defaqtoLogo,
.defaqtoLogo-show {
  margin-left: auto;
  margin-bottom: 20px;
  margin-right: auto;
  max-width: 60%;
  max-height: 100px;
}

.moneyAgeLogo {
  display: block;
  margin-left: auto;
  margin-bottom: 20px;
  margin-right: auto;
  max-width: 60%;
}

.moneyAgeLogoShow {
  display: none;
  margin-left: auto;
  margin-bottom: 20px;
  margin-top: 20px;
  margin-right: auto;
  max-width: 60%;
}

.productTitle,
.productTitleSpaced {
  font-size: 36px;
  font-family: "Brandon Text";
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
}

.productTitleSpaced {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 0px;
}

.productTitle {
  text-align: left;
  margin-bottom: 15px;
  margin-top: 50px;
}

.productSubtitleSpaced {
  font-size: 18px;
  font-family: "Brandon Text";
  color: #fff;
  text-align: center;
}

.productOverview {
  background-attachment: scroll;
  background-color: #ccf0f7;
  background-position: center center;
  background-repeat: none;
  background-size: cover;
  -o-background-size: cover;
  padding: 40px 0px;
}

.productOverview .greenCtaBtn {
  margin: 0 auto;
}

.jisaFeatureIcon {
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 60px;
}

.jisaGraph {
  margin: 25px 0px;
}

.sipWhyRow {
  margin-bottom: 20px;
}

.sipWhyTitle {
  text-align: left;
  margin-bottom: 0px;
}

.sipWhyIcon {
  margin: 30px 0px 20px 0px;
  display: block;
}

.sipWhyText {
  text-align: left !important;
}

#app-wrapper {
  width: 100%;
  /* background-color: #e5f7fb; */
}

.innerAppContainer {
  background-color: #e5f7fb;
  background-color: #ccf0f7;
}

.application-container {
  max-width: 44.5rem;
  width: 100%;
}

.NW20-innerAppContainer {
  background-color: #ffffff;
}

.NW20-innerAppContainerSlim {
  max-width: 455px;
}

.NW20-innerAppContainerBlue {
  background-color: transparent;
}

.NW20-innerAppContainerBlue .appFormDivider {
  margin: 15px 0px;
  opacity: 0;
}

.innerAppTabsContainer {
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 40px;
}

/* modal box */

.NW20-modal-header,
.NW20-modal-footer {
  border: none;
}

.NW20-modal-content {
  padding: 15px;
}

.NW20-modal-footer .NW20-greenCtaBtn {
  margin: 0px;
}

/* Plans Page */

.plansPageImage {
  margin-bottom: 20px;
}

.ctfTransferAdBox {
  width: 100%;
  background-color: #f0f8fb;
}

.ctfTransferBoxText {
  padding: 30px;
  text-align: center;
}

.ctfTransferTitle1 {
  font-family: "Brandon Text";
  font-size: 22px;
  line-height: 1.2;
  color: #13487a;
  margin-bottom: 5px;
}

.ctfTransferTitle2 {
  font-family: "Brandon Text";
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0px;
  color: #13487a;
}

.ctfTransferButton {
  padding: 20px;
}

.application-button--outline {
  max-width: 460px;
  width: auto;
  display: block;
  padding: 13px 32px;
  text-align: center;
  font-weight: normal;
  color: #13243a;
  border-radius: 30px;
  font-family: "Brandon Text", Arial;
  font-size: 16px;
  font-weight: bold;
  margin: 32px 0px;
  border: 2px solid #13243a;
  background-color: transparent;
}

.application-button--primary {
  max-width: 460px;
  width: auto;
  display: block;
  padding: 16px 42px;
  text-align: center;
  margin: 32px 0;
  border-radius: 30px !important;
  border: none;
  font-family: "Brandon Text", Arial;
  font-size: 21px;
  background-color: #f7aa00;
  color: #ffffff;
  font-size: 16px;
  margin: 32px 0;
  font-weight: bold;
}

.ctfTransferButton .greenCtaBtn {
  margin: 0 auto;
  padding: 15px 0;
}

.uspFindOutBtn {
  display: block;
  background-color: #93c01f;
  padding: 15px;
  width: 290px;
  border-radius: 0px;
  margin: 0px auto;
  color: #fff;
  font-family: Brandon Text;
  font-size: 16px;
}

.uspFindOutBtn:hover {
  color: #fff;
  background-color: #82a91e;
}

/*Income Protection - Claims Promise*/

.claimsPromiseDescription {
  font-family: "Brandon Text", Arial;
  font-size: 20px;
  color: #13487a;
  text-align: center;
  margin-bottom: 20px;
}

.getInTouchCTA {
  text-align: center;
  margin-top: 20px;
}

.IconCenter {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 20px;
}

.centerArrow {
  width: 30px;
  margin-left: auto;
  margin-right: auto;
}

.downArrowBlue {
  width: 30px;
  height: 30px;
  background-color: #ccf0f7;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1000;
  position: absolute;
  bottom: -55px;
}

.downArrowBlueTwo {
  width: 30px;
  height: 30px;
  background-color: #ccf0f7;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1000;
  position: absolute;
  bottom: -15px;
}

.sectionSpaceBtm {
  margin-bottom: 20px;
}

.downArrowWhite {
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1000;
  position: absolute;
  bottom: -15px;
}

.ourPromise h2 {
  font-family: "Brandon Text", Arial;
  font-size: 36px;
  color: #13487a;
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 30px;
}

.ourPromise p {
  font-family: Brandon Text, Arial;
  font-size: 16px;
  color: #13487a;
  text-align: left;
  font-weight: normal;
  margin-bottom: 15px;
}

.ourPromise p:nth-child(6) {
  font-family: "Brandon Text", Arial;
  font-size: 20px;
  padding: 20px 40px;
  color: #13487a;
  text-align: center;
  font-weight: normal;
  background-color: #f2f2f2;
  margin-top: 30px;
  margin-bottom: 60px;
}

.makeAClaim {
  background-color: #ccf0f7;
}

.makeAClaim h2 {
  font-family: "Brandon Text", Arial;
  font-size: 36px;
  color: #13487a;
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 30px;
}

.stepEntry {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.stepDetails {
  background-color: white;
  padding: 20px 40px;
  border-radius: 0 3px 3px 0;
}

.stepDetails p {
  font-family: "Brandon Text", Arial;
  font-size: 16px;
  color: #13487a;
  text-align: left;
  font-weight: normal;
  margin: 0;
}

.stepDetails h4 {
  font-family: "Brandon Text", Arial;
  font-size: 24px;
  margin-bottom: 20px;
  color: #13487a;
  font-weight: 400;
}

.stepHeight h4 {
  padding: 20px 40px 10px 40px;
  font-family: "Brandon Text", Arial;
  font-size: 24px;
  margin-bottom: 0px;
  color: #13487a;
  font-weight: 400;
}

.stepBox {
  padding: 20px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 3px 0 0 3px;
}

.purpleBox {
  background-color: #a04591;
}

.blueBox {
  background-color: #10b2d8;
}

.greenBox {
  background-color: #93c01f;
}

.yellowBox {
  background-color: #fabc51;
}

.redBox {
  background-color: #e44353;
}

.stepText,
.stepNumber {
  font-family: "Brandon Text", Arial;
  color: #ffffff;
  text-align: center;
  margin: 0px;
  display: block;
}

.stepText {
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
}

.stepNumber {
  font-size: 62px;
  line-height: 52px;
}

.padding-top {
  padding-bottom: 60px;
}

.quotesSection {
  padding-bottom: 100px;
}

.quotesSection h2 {
  font-family: "Brandon Text", Arial;
  font-size: 36px;
  color: #13487a;
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 30px;
}

/*FAQ section*/

.ourFAQsSection {
  background-color: #f2f2f2;
  padding-bottom: 60px;
}

.ourFAQsSection h2 {
  font-family: "Brandon Text", Arial;
  font-size: 36px;
  color: #13487a;
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 30px;
}

.ourFAQsSection p {
  width: 90%;
  float: left;
  color: #13487a;
  margin: 0px;
}

.ourFAQsSection span img {
  margin-top: 10px;
  padding-right: 10px;
  padding-left: 10px;
  border-radius: 50%;
}

.onShowDetails {
  display: none;
}

.faqPaddingBtm {
  margin-bottom: 10px;
}

.questionBox {
  display: table;
  background-color: #ffffff;
  border-bottom: 2px solid #f2f2f2;
  width: 100%;
}

.answerBox {
  display: table;
  background-color: #f9f9f9;
  padding: 10px 10px;
  width: 100%;
}

.questionBox p {
  padding: 10px 10px;
  height: auto;
  float: left;
  margin: 0px;
  font-family: 'Brandon Text', Arial;
  font-size: 20px;
  font-weight: 600;
  color: #13487a;
}

.answerBox p {
  font-weight: normal;
  font-size: 18px;
}

.pull-right img {
  cursor: pointer;
}

/*FAQ section END*/

.starRating {
  color: #fbaf67;
  font-size: 46px;
  bottom: 10px;
}

.centerQuotes {
  display: table;
  margin: 0 auto;
}

.quotePane {
  height: auto;
  background-color: #f2f2f2;
  margin-left: 10px;
  margin-right: 10px;
  padding-bottom: 20px;
  border-radius: 3px;
  text-align: center;
  float: left;
  border-bottom: 5px solid #10b2d8;
}

.quotePadding {
  padding: 10px 20px;
}

.quotePane img {
  margin-top: 20px;
}

.quoteName {
  font-family: 'Brandon Text', Arial;
  color: #13487a;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  padding-top: 20px;
}

.quotePane p {
  font-family: 'Brandon Text', Arial;
  color: #13487a;
  font-size: 16px;
  text-align: center;
  padding-top: 20px;
}

/*Sliding Quote Section END*/

/*Income Protection - Claims Promise*/

@media screen and (min-width: 320px) {
  .productPageBtnPadding {
    padding-bottom: 20px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 320px) {
  .uniPlanSectionBtn {
    display: block;
    background-color: #93c01f;
    padding: 15px;
    width: 360px;
    border-radius: 0px;
    margin: 0px auto;
    color: #fff;
    font-family: 'Brandon Text';
    font-size: 16px;
  }

  .uniPlanSectionBtn:hover {
    color: #fff;
    background-color: #82a91e;
  }
}

@media screen and (min-width: 384px) and (max-width: 384px) {
  .productTitle {
    font-size: 42px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 568px) {
  .questionBox p {
    font-size: 18px;
    width: 80%;
  }

  .answerBox p {
    width: 100%;
    font-size: 16px;
  }

  .hideMobile {
    display: none;
  }

  #showMore {
    font-family: 'Brandon Text', Arial;
    color: #13487a;
    font-weight: bold;
    display: block;
    cursor: pointer;
  }

  #showLess {
    font-family: 'Brandon Text', Arial;
    color: #13487a;
    font-weight: bold;
    cursor: pointer;
  }
}

@media screen and (min-width: 320px) and (max-width: 1300px) {
  .starRating {
    bottom: 10px;
    position: relative;
    left: 0%;
  }
}

@media only screen and (min-width: 320px) and (max-width: 991px) {
  .nav-tabs > li {
    width: 100%;
  }

  .nav-tabs > li > a {
    margin-right: 0px;
    border-radius: 0px;
  }

  .quotePane {
    height: auto;
    margin-bottom: 30px;
  }

  .quotePane2 p {
    padding-top: 20px;
  }

  .quotePane3 p {
    padding-top: 20px;
  }
}

@media screen and (min-width: 320px) {
  .smDisplay {
    display: block;
    font-family: "Brandon Text", Arial;
    font-size: 26px;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    margin: 0px;
  }

  .lgDisplay {
    display: none;
  }
}

@media screen and (min-width: 568px) {
  .hideLg {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .heightLg {
    height: 400px;
  }
}

/*new styles for Defaqto logo*/

@media screen and (max-width: 768px) {
  .productTitleSpaced {
    margin-top: 60px;
  }

  .stepEntry {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }

  .stepNumber,
  .stepText {
    display: inline-block;
    font-size: 24px;
  }

  .stepBox {
    display: block;
    text-align: center;
    border-radius: 3px 3px 0 0;
  }

  .stepDetails {
    border-radius: 0 0 3px 3px;
  }

  .application-button--primary-center {
    margin: 32px auto;
  }
}

@media (min-width: 768px) {
  .lgDisplay {
    display: block;
  }

  .smDisplay {
    display: none;
  }

  .lgNoPadding {
    padding-left: 0px;
    padding-right: 0px;
  }

  .productTitle {
    font-size: 50px;
  }

  .productTitleSpaced {
    font-size: 50px;
    text-align: left;
    margin-top: 120px;
  }

  .productSubtitleSpaced {
    font-size: 26px;
    text-align: left;
    margin-top: -15px;
    max-width: 90%;
  }

  .sipProductIcon {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .defaqtoLogo {
    margin: 100px 0 20px 0;
    max-width: 100%;
  }

  .moneyAgeLogo {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .productContentSubtitle {
    font-size: 30px;
    text-align: left;
    line-height: 1.4;
  }

  .sidebarDownloadContent {
    margin-top: 40px !important;
    margin-bottom: 30px;
  }

  .downloadIcon {
    width: 40%;
  }

  .jisaFeatureIcon {
    margin-top: 10px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
  }

  .jisaProductIcon {
    margin-left: 0px;
    margin-right: 0px;
    max-width: 100%;
  }

  .productContentFeatureTitle {
    font-size: 22px;
    text-align: left;
  }

  .featuresRow p {
    text-align: left !important;
  }

  .productContentTitle {
    font-size: 30px;
  }

  .productApplyText {
    text-align: left;
  }

  .taxWarning {
    text-align: left;
  }

  .uspFindOutBtn {
    width: 390px;
  }

  .rowMarginBtm {
    margin-bottom: 20px;
  }

  .productBanner .greenCtaBtn {
    margin-left: 0;
  }
}

/*New style for Defaqto Logo*/

@media only screen and (min-width: 320px) and (max-width: 767px) {
  .defaqtoLogo {
    display: none;
  }

  .defaqtoLogo-show {
    display: block;
    margin-left: auto;
    margin-bottom: 20px;
    margin-right: auto;
    max-width: 45%;
  }

  .moneyAgeLogo {
    display: none;
  }

  .moneyAgeLogoShow {
    display: block;
    margin-left: auto;
    margin-bottom: 20px;
    margin-right: auto;
    max-width: 45%;
  }

  .productBannerDivider {
    border-top: 5px solid #ffffff;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
  }

  .ourFAQsSection span img {
    margin-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: -50px;
    border-radius: 50%;
    position: absolute;
  }

  .productTitle {
    margin-top: 80px;
    text-align: center;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .productBannerDivider {
    border: 3px solid #ffffff;
    max-width: 100%;
    margin-left: 0px;
    margin-right: 0px;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width: 992px) {
  #jisaProductBanner {
    padding: 100px 0px 0px 0px;
  }

  .tabNumberCircle {
    margin-top: 2px;
  }

  #navTabs {
    padding: 60px 0px 0px 0px;
  }

  .nav-tabs > li > a,
  .nav-tabs > li.active > a,
  .nav-tabs > li.active > a:focus,
  .nav-tabs > li.active > a:hover {
    font-size: 14px;
    min-height: 45px;
  }

  .productBannerDivider {
    border-top: 5px solid #ffffff;
    max-width: 75%;
    margin-left: 0px;
    margin-right: 0px;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width: 1200px) {
  #navTabs {
    padding: 20px 0px 0px 0px;
  }

  .nav-tabs > li > a,
  .nav-tabs > li.active > a,
  .nav-tabs > li.active > a:focus,
  .nav-tabs > li.active > a:hover {
    font-size: 16px;
    min-height: 50px;
  }

  .tabNumberText {
    bottom: 4px;
  }

  .over50sa1quoteresultpage .col-md-4 .applySidebarBox {
    margin-top: 135px;
  }

  .over50sa1quoteresultpage .col-md-4 .NW20-applySidebarBox {
    margin-top: 0px;
  }

  .over50sa1quoteresultpage .col-md-4 .importantThings {
    margin-top: 20px;
  }

  .over50sa1quoteresultpage .downloadPanelDetails {
    padding-bottom: 31px;
    padding-top: 46px;
  }
}

.isaSubtitle {
  font-size: 16px !important;
  max-width: 343px;
  margin-bottom: 46px !important;
  font-weight: 300;
}

.reviewsBranded {
  margin: 10px 0 30px 0;
  max-width: 114px;
}

.reviewsBranded p {
  font-size: 16px;
  font-family: "Brandon Text";
  color: #fff;
  text-align: center;
  margin-bottom: 2px;
  font-weight: 300;
}

.reviewsBranded img {
  margin-bottom: 10px;
}

.greenCtaBtn,
.outlineCtaBtn {
  max-width: 460px;
  width: 100%;
  margin: 32px auto;
  display: block;
  border-radius: 3px;
  padding: 15px 45px;
  font-family: "Brandon Text";
  font-size: 21px;
  text-align: center;
}

.NW20-greenCtaBtn,
.NW20-outlineCtaBtn {
  max-width: 460px;
  width: auto;
  display: block;
  padding: 15px 32px;
  text-align: center;
  margin: 32px 0;
  border-radius: 3px;
  font-family: "Brandon Text", Arial;
  font-size: 21px;
}

.greenCtaBtn {
  color: #fff;
  font-weight: 700;
  background-color: #00bd13;
  border: 2px solid #00bd13;
}

.NW20-greenCtaBtn {
  background-color: #f8ab00 !important;
  border: 2px solid #ffffff !important;
  color: #13243a !important;
  font-size: 16px !important;
  border-radius: 30px !important;
  margin: 32px 0px;
  font-family: "Brandon Text", Arial !important;
  font-weight: bold !important;
}

.greenCtaBtn:hover {
  text-decoration: none;
  background-color: #28cb38;
  border-color: #28cb38;
  color: #fff;
}

.NW20-greenCtaBtn:hover {
  background-color: #13243a !important;
  border: 2px solid #ffffff !important;
  text-decoration: none;
  color: #fff !important;
}

.NW20-greenCtaBtn:focus,
.NW20-outlineCtaBtn:focus {
  outline: none;
}

#aboutAppContent .greenCtaBtn {
  margin-left: 0;
  max-width: 300px;
}

.savingsOptionsSidebarAd .greenCtaBtn,
.sidebarAdBox .greenCtaBtn {
  margin: 20px auto 0;
}

.outlineCtaBtn {
  font-weight: normal;
  border: 0;
  color: #13487a;
  border: 2px solid #1b3d7a;
  background-color: transparent;
}

.NW20-outlineCtaBtn {
  font-weight: normal;
  border: 0;
  color: #ffffff;
  background-color: #13243a;
  border-radius: 30px !important;
  font-family: "Brandon Text", Arial;
  font-size: 16px;
  font-weight: bold;
  margin: 32px 0px;
  border: 2px solid #ffffff;
}

.outlineCtaBtn:hover {
  text-decoration: none;
  background-color: #1b3d7a;
  color: #fff;
}

.NW20-outlineCtaBtn:hover {
  text-decoration: none;
  background-color: #13243a;
  color: #fff;
}

.productContentFeatureTitle.subTitle,
.productContentFeatureTitle.subTopic {
  margin-top: 24px;
}

.productContentFeatureTitle.subTitle {
  font-size: 18px;
}

.productContentFeatureTitle.subTopic {
  font-size: 14px;
  font-weight: bold;
  text-decoration: underline;
}

.backgroundLightBlue {
  background-color: #e5f7fb;
  background-image: none !important;
}

.backgroundMidBlue {
  background-color: #ccf0f7;
  background-image: none !important;
}

.sidebarAdBox {
  margin: 20px auto 20px auto;
  padding: 16px 20px;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
  height: auto;
}

.sidebarAdIcon {
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 100px;
}

@media screen and (max-width: 768px) {
  .reviewsBranded {
    max-width: 100%;
  }

  .reviewsBranded img {
    margin: 0 auto 10px auto;
    display: flex;
  }

  .greenCtaBtn {
    margin-left: auto;
    margin-right: auto;
    padding: 15px 0;
  }

  .NW20-greenCtaBtn,
  .NW20-outlineCtaBtn {
    margin: 32px auto;
    padding: 15px 32px;
  }

  .insideBoxBtn {
    width: auto;
  }

  .insideTabsBtn {
    min-width: 343px;
    max-width: 343px;
  }
}

.over50-container {
  background: #e1f3fb;
  padding: 60px 20px;
  display: -ms-grid;
  display: grid;
}

.over50-container-wrapper {
  gap: 20px;
  font-size: 10px;
  max-width: 1170px;
  -ms-grid-column-align: center;
  justify-self: center;
}

@media (min-width: 768px) {
  .over50-container-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    font-size: 13px;
  }
}

.form-panel {
  border-radius: .5em;
  padding: 2em 2em;
  background-color: #fff;
  margin-bottom: 20px;
  font-family: "Brandon Text", Arial !important;
}

@media (min-width: 768px) {
  .form-panel {
    margin-bottom: 0;
  }
}

.form-panel h3 {
  color: #13243a;
  font-size: 2em;
  font-weight: 700;
  font-family: inherit;
}

.form-panel p,
.form-panel li,
.form-panel a {
  font-family: inherit;
  color: #454e50;
  font-size: 1.6rem;
}

.form-panel a {
  color: #337ab7;
}

.over50-quote {
  -ms-grid-column-align: center;
  justify-self: center;
}

@media (min-width: 768px) {
  .over50-quote {
    width: 66.66%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    margin-bottom: 0;
  }
}

.over50-quote__info .over50-quote__info-header {
  margin-bottom: 0.2em;
  text-align: center;
  font-size: 1.6em;
  font-weight: normal;
}

.over50-quote__info .over50-quote__info-amount {
  font-size: 3.6em;
  text-align: center;
  line-height: 1em;
}

.over50-quote-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 2em 0;
}

.over50-quote-cta .over50-quote-cta__button {
  color: #fff;
  font-weight: 700;
  background-color: #279989;
  border-radius: 70px;
  border: none;
  padding: 0.6em 2em;
  font-size: 1.6em;
}

@media (min-width: 768px) {
  .over50-quote-cta .over50-quote-cta__button {
    padding: 0.6em 3em;
  }
}

.over50-panels__downloads {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 600px) {
  .over50-panels__downloads {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.over50-panels__downloads div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.over50-panels__downloads div svg {
  width: 18px;
  height: auto;
}

.over50-panels__downloads a {
  text-decoration: underline;
  color: #13243a;
  font-size: 1.5em;
  font-family: inherit;
}

.over50-panels__important-things {
  font-family: inherit;
}

.over50-panels__change-premium {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}

.over50-panels__change-premium .over50-panels__premium-amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 1.6em;
}

.over50-panels__change-premium .over50-panels__premium-amount input {
  margin-left: 12px;
  font-weight: 500;
  font-size: 1.2em;
  border: 1px solid #aaa;
  text-align: center;
}

.over50-panels__change-premium .over50-panels__premium-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0;
  gap: 20px;
}

.over50-panels__change-premium .over50-panels__premium-slider label {
  font-weight: normal;
  font-family: inherit;
}

.over50-panels__change-premium .over50-panels__update-quote-btn {
  text-align: center;
}

@media (min-width: 1024px) {
  .over50-panels__change-premium form {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 114px 1fr 160px;
    grid-template-columns: 114px 1fr 160px;
    gap: 60px;
  }

  .over50-panels__change-premium form .over50-panels__premium-amount {
    -ms-grid-column-align: start;
    justify-self: start;
  }
}

.over50-panels__your-details table {
  padding: 0;
  margin: 0;
}

.over50-panels__why-shepheards img {
  width: 180px;
  margin: 0 0 20px 20px;
}

.over50-panels__need-help img {
  float: right;
  width: 100px;
  margin: 0 0 20px 20px;
}

.over50-panels__what-next {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-column-align: center;
  justify-self: center;
  gap: 20px;
  -ms-grid-columns: (fr)[1];
  grid-template-columns: repeat(1, fr);
}

@media (min-width: 1024px) {
  .over50-panels__what-next {
    width: 75%;
  }
}

.over50-panels__what-next div {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .over50-panels__what-next {
    display: -ms-grid;
    display: grid;
    margin-bottom: 0;
  }
}

.over50-panels__what-next h3 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}

@media (min-width: 768px) {
  .over50-panels__what-next h3 {
    margin-bottom: 0;
  }
}

.over50-panels__what-next p {
  margin-bottom: 20px;
}

.over50-panels__important-things,
.over50-panels__your-details,
.over50-quote-cta,
.over50-quote-panel__downloads {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}

.btn2 {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  border-radius: 3em;
  padding: 0.8em 1.8em;
  border: none;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.btn2--orange {
  background: #f7aa00;
  border: 2px solid #fff;
}

.btn2--orange:hover {
  background: #13243a;
}

.btn2--orange:focus {
  border: 2px solid #13243a;
}

.btn2--black {
  background: #13243a;
  border: 2px solid #13243a;
}

.btn2--black:hover {
  background: #0d1827;
}

.btn2--black:focus {
  border: 2px solid #fff;
}

/*# sourceMappingURL=14.productpages.css.map */
.yourMutualTitle {
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 42px;
  font-weight: bold;
  line-height: 1 !important;
  text-align: center;
}

#yourMutualCarousel hr {
  border-top: 3px solid #eee;
  width: 90%;
  margin: auto;
}

.yourMutualSubTitle {
  text-align: center;
  font-family: 'Brandon Text';
  font-size: 22px;
  color: #FFF;
  line-height: 1;
  margin-bottom: 0px;
  margin-top: 15px;
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  .yourMutualTitle {
    font-size: 72px;
  }

  .yourMutualSubTitle {
    font-size: 40px;
  }

  #yourMutualCarousel hr {
    border-top: 5px solid #eee;
    width: 710px;
  }
}
.reviewBoldText {
  font-family: 'Brandon Text';
  font-size: 18px;
  color: #13487a;
  margin-bottom: 30px;
  font-weight: bold;
}

.reviewPlanSubTitle1 {
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 24px;
  line-height: 1;
  margin-top: 0px;
  margin-bottom: 10px;
  text-align: center;
}

.review-plan-info {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 19px;
  margin-top: 15px;
}

.reviewPlanSpacing {
  margin: 40px;
}

.centerTitlePadding {
  padding: 0 300px;
}

.SubFormtext {
  padding-top: 5px;
  font-family: 'Brandon Text';
  font-size: 14px;
  color: #13487a;
}

.reviewBtnYN {
  border-radius: 0px;
  border: 1px;
  color: #13487a;
  font-family: 'Brandon Text';
  font-weight: normal;
  font-size: 18px;
  width: 70%;
  padding: 0px;
  margin: 0px 0px 15px 5px;
}

.submitReviewBtn {
  background-color: #98c662;
  border-radius: 0px;
  border: 1px #98c662;
  color: #fff !important;
  font-family: 'Brandon Text';
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  padding: 20px 20px;
  margin-top: 20px;
}

.referFormSpacing {
  padding-top: 30px;
}

.reviewPlanHR {
  border-top: 5px solid #eee;
  width: 60%;
  margin: 20px auto 10px;
}

.noLeftMargin {
  margin-left: 0px;
}

.fromBottomSpacing {
  margin-bottom: 20px;
}

.marginLR {
  margin-left: 150px !important;
  margin-right: 150px !important;
}

.noResize {
  resize: none;
}

#ratingContainer {
  display: none;
}

#intReviewIntro {
  padding: 40px 0px;
}
.white_form_icons input[type='radio'] {
  opacity: 0;
  position: absolute;
  height: 100%;
  cursor: pointer;
}

.white_form_icons input[type='radio'] + label {
  color: #B1B1B1;
  padding: 5px;
  background-color: #fff;
  border-radius: 5px;
  min-width: 60px;
  text-align: center;
}

.white_form_icons input[type='radio']:checked + label {
  background-color: #00b2d7;
  color: #fff !important;
}

.whiteRadioBtn:hover {
  background-color: #ccc !important;
}

.l2sMarginLogo {
  margin-left: 40px !important;
}

.referFriendInfo {
  margin: 20px 33px 33px 0;
}

.referFormText {
  font-family: 'Brandon Text' !important;
  font-size: 16px !important;
  color: #13487a;
  font-weight: normal !important;
}

.table-padding {
  padding-top: 15px;
  padding-bottom: auto;
}

.referFriendSubtitlePadding {
  padding-top: 10px;
}

.referFriendHR {
  border-top: 5px solid #eee;
  width: 60%;
  margin: 20px auto 20px;
}

.referFriendPadding {
  margin: 10px 110px 0px 110px !important;
}

.centerText {
  text-align: center;
}

.referFriendSpacing {
  margin: 40px 30px 60px 30px;
}

.noBorder {
  border: 0px !important;
}

.submitBtn {
  background-color: #98c662;
  border-radius: 0px;
  border: 1px #98c662;
  color: #fff;
  font-family: 'Brandon Text';
  font-size: 18px;
  width: 100%;
  padding: 15px 45px;
  margin-top: 20px;
}

.submitBtn:hover {
  background-color: #89b258;
  border: 1px #89b258;
  color: #fff;
}

.smallPadding {
  padding-top: 5px;
}

.referBtn {
  background-color: #98c662;
  border-radius: 0px;
  border: 1px #98c662;
  color: #fff;
  font-family: 'Brandon Text';
  font-size: 18px;
  width: 120%;
  padding: 25px 35px;
  margin-top: 30px;
  left: 165%;
  position: relative;
}

.referFriendText {
  font-family: 'Brandon Text';
  font-size: 28px;
  color: #13487a;
  line-height: 1.4;
  margin-bottom: 40px;
}

.largeReferFriendText {
  font-family: 'Brandon Text';
  font-size: 36px !important;
  color: #13487a;
}
#affiliateBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/affiliate-banner.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 215px;
  margin-top: -45px;
  padding: 85px 0px 45px 0px;
}

.affiliateTitle1 {
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 22px;
  line-height: 1;
  margin-top: 0px;
  margin-bottom: 10px;
  text-align: center;
}

.affiliateTitle2 {
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  margin-top: 0px;
  margin-bottom: 0px;
  text-align: center;
}

.affiliateHR {
  border-top: 5px solid #eee;
  width: 90%;
  margin: 30px auto;
}

.affiliateIntro {
  font-family: 'Brandon Text';
  font-size: 20px;
  color: #13487a;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 30px;
}

.affiliateSubtitle {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  margin-top: 0px;
  margin-bottom: 30px;
  text-align: center;
}

.affiliateSubtitle2 {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
  text-align: center;
}

#affiliateIntro,
#earnMoney {
  padding: 40px 0px;
}

#promote,
#managed {
  padding: 40px 0px;
  background-color: #e5f7fb;
}

.promoteBox {
  text-align: center;
}

.promoteBox a {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 14px;
  text-align: center;
  margin: 10px 0px;
  display: block;
}

.affiliateLogoCenter {
  display: block;
  margin: 20px auto 10px auto;
}

.associationWith {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
}

.royCastleIntro,
.royCastleIntroParagraph,
.royCastleShowImportant {
  display: none;
}

/* Custom, iPhone Retina */

@media only screen and (min-width : 320px) {
  .black-friday-tag-image {
    margin-bottom: 30px;
  }
}

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) and (max-width : 375px) {
  #affiliateBanner {
    padding: 90px 0px 50px 0px;
  }
}

/* iPhone 6 + Portrait */

@media only screen and  (min-width : 414px) and (max-width : 414px) {
  #affiliateBanner {
    padding: 110px 0px 50px 0px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width : 480px) {
  #affiliateBanner {
    min-height: 215px;
    padding: 30px 0px 20px 0px;
  }
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  .affiliateTitle1 {
    font-size: 40px;
  }

  .affiliateTitle2 {
    font-size: 66px;
  }

  .affiliateSubtitle {
    font-size: 30px;
  }

  .affiliateSubtitle2 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .affiliateIntro {
    font-size: 26px;
    margin-bottom: 0px;
  }

  .affiliateHR {
    width: 710px;
  }

  #affiliateBanner {
    min-height: 215px;
    padding: 105px 0px 85px 0px;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width : 1200px) {
  .affiliateIntro {
    font-size: 28px;
  }
}
#contactBanner {
  background-attachment: scroll;
  background-image: url(https://storage.shepherdsfriendly.co.uk/image-media/contact-banner.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 135px;
  margin-top: -45px;
  padding: 50px 0px 0px 0px;
  box-shadow: inset 0 0 0 2000px rgba(19,72,122,.75);
}

#contactContent {
  padding: 40px 0px;
}

.contactSubtitle {
  font-family: 'Brandon Text';
  font-size: 24px;
  color: #13487a;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 40px;
}

.contactDetails {
  font-family: 'Brandon Text';
  font-size: 24px;
  line-height: 1;
  color: #13487a;
  text-align: center;
}

.contactDetails2 {
  font-family: 'Brandon Text';
  font-size: 18px;
  line-height: 1;
  color: #13487a;
  margin-bottom: 30px;
  text-align: center;
}

.contactMargin {
  margin-top: 40px;
}

.contactForm {
  background-color: #e5f7fb;
  border: 0px;
  border-radius: 0px;
  resize: none;
  font-family: 'Brandon Text';
  color: #13487a;
}

.contactBtn {
  width: 100%;
  background-color: #10b2d8;
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 16px;
  border: 0px;
  border-radius: 0px;
  padding: 10px 0px;
}

.contactBtn:hover {
  color: #FFF;
  background-color: #0d91ad;
}

.contact-details__item {
  font-family: 'Brandon Text';
  font-size: 18px;
  color: #13487a;
  margin-bottom: 15px;
  text-align: center;
}

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) and (max-width : 375px) {
  #contactBanner {
    min-height: 165px;
    padding: 70px 0px 0px 0px;
  }
}

/* iPhone 6 + Portrait */

@media only screen and  (min-width : 414px) and (max-width : 414px) {
  #contactBanner {
    min-height: 165px;
    padding: 70px 0px 0px 0px;
  }
}

/* iPhone 5 Landscape */

@media (min-width:568px) {
  #contactBanner {
    min-height: 120px;
    padding: 45px 0px 0px 0px;
  }
}

/* Galaxy S4 Landscape */

@media (min-width:640px) {
  #contactBanner {
    min-height: 140px;
    padding: 60px 0px 0px 0px;
  }
}

/* iPhone 6 Landscape */

@media (min-width:667px) {
  #contactBanner {
    min-height: 130px;
    padding: 50px 0px 0px 0px;
  }
}

/* iPhone 6+ Landscape */

@media (min-width:736px) {
  #contactBanner {
    min-height: 140px;
    padding: 60px 0px 0px 0px;
  }
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  #contactBanner {
    min-height: 250px;
    padding: 90px 0px 0px 0px;
  }

  .contactSubtitle {
    font-size: 32px;
    margin-bottom: 60px;
  }

  .contactDetails,
  .contactDetails2 {
    text-align: left;
  }

  .contactMargin {
    margin-top: 0px;
  }

  .contact-details__item {
    text-align: left;
  }
}
#newsCarousel {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/junior-isa-banner-short.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 230px;
  margin-top: -45px;
  padding: 60px 0px 0px 0px;
}

.newsTitle {
  text-align: center;
  font-family: 'Brandon Text';
  font-size: 40px;
  color: #FFF;
  font-weight: bold;
  line-height: 1;
}

.newsHR {
  border-top: 3px solid #EEE;
}

.newsSubtitle {
  text-align: center;
  font-family: 'Brandon Text';
  font-size: 20px;
  color: #FFF;
  line-height: 1;
  margin-bottom: 0px;
}

.authorship {
  display: inline-block;
  background-color: #232858;
  color: #fff;
  padding: 5px;
}

.authorship a {
  color: #fff!important;
}

#newsPageHeader {
  text-align: center;
  padding: 100px 0 60px;
  background-attachment: fixed;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/header-bg.jpg);
  background-position: top center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

#newsPosts {
  padding: 20px 0;
}

.newsPostLink,
.newsPostLink:hover {
  color: #183F7A;
  font-weight: bold;
}

.newsFirstContainer {
  padding: 0 15px 30px;
}

.newsFirstContent {
  background-color: #b2e8f3;
  padding: 20px;
}

.newsFirstTitle {
  font-family: 'Brandon Text';
  font-size: 20px;
  line-height: 1.2;
}

.entry-content p {
  font-family: 'Brandon Text';
  color: #183F7A;
  margin-bottom: 20px;
}

.newsNotFirstContainer {
  margin-bottom: 30px;
}

.newsNotFirstContent {
  background-color: #b2e8f3;
  padding: 20px;
}

.newsPostTitle {
  font-family: 'Brandon Text';
  font-size: 20px;
  line-height: 1.2;
  padding: 10px 0px;
}

.newsFirstPostDate,
.newsPostDate {
  font-family: 'Brandon Text';
  width: 100px;
  position: relative;
  top: -30px;
  left: 0px;
  padding: 5px 0px;
  background-color: #fff;
  margin-bottom: -30px;
  text-align: left;
}

.newsFirstPostDate p,
.newsPostDate p {
  font-family: 'Brandon Text';
  font-size: 14px;
  color: #00b2d7;
  font-weight: 700;
  margin-bottom: 0;
}

.newsPostUnderline {
  border-top: 2px solid #00b2d7;
}

.newsFirstPostUnderline {
  border-top: 2px solid #00b2d7;
  margin-top: 15px;
  margin-bottom: 20px;
}

.newsTags {
  float: left;
  width: 98%;
  padding: 20px 0 0 0px;
}

.categoryName {
  background-color: #00b2d7;
  color: #fff;
  padding: 5px;
  display: inline-block;
}

.categoryName a {
  color: #fff !important;
}

.entry-meta {
  margin-bottom: 20px;
}

.newsShares {
  width: 100%;
  padding: 5px;
}

.newsShares a {
  float: right;
  margin-right: 10px;
  font-size: 22px;
  position: relative;
  margin-top: -10px;
  margin-bottom: -10px;
}

.newsShares>.sm_popup_twitter {
  margin-right: 10px !important;
}

.newsSharesColumns {
  width: 100%;
  padding: 5px;
}

.newsSharesColumns a {
  float: right;
  margin-right: 10px;
  font-size: 22px;
  position: relative;
  margin-top: -15px;
  margin-bottom: -15px;
}

.sm_popup_twitter {
  margin-right: 0 !important;
}

.mostPopularTitle {
  color: #232858;
  font-size: 30px;
  margin-bottom: 25px;
  margin-top: -10px;
  display: block;
  text-align: center;
}

.mostPopularNewsTitle {
  color: #232858;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 15px;
  text-align: center;
}

.mostPopularNewsTitle a {
  color: #232858;
}

.mostPopularDivider {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 2px dotted #d8a400;
}

.newsCategoriesTitle {
  color: #232858;
  font-size: 30px;
  margin-bottom: 15px;
  margin-top: 50px;
}

.newsSidebar {
  padding-top: 10px;
}

.newsFirstDate {
  color: #00b2d7;
  margin-top: 10px;
}

.contentTitleNews {
  display: block;
  font-family: "Brandon Text", serif;
  background-color: #00b2d7;
  color: #fff;
  padding: 10px;
  /*padding-bottom: 20px;
    margin-bottom:-10px;*/
}

.contentTitleBlog {
  display: block;
  font-family: "Brandon Text", serif;
  background-color: #93c01f;
  color: #fff;
  padding: 10px;
  /*padding-bottom: 20px;
    margin-bottom:-10px;*/
}

.blogFirstTitle {
  font-family: "Brandon Text", serif;
}

.blogPostTitle {
  font-family: "Brandon Text", serif;
  letter-spacing: -1px;
}

.blogPostDate {
  color: #93c01f !important;
}

.olderBlogLink {
  color: #93c01f !important;
}

.categoriesTitle {
  color: #d8a400;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 15px;
}

.categoriesDivider {
  margin-top: 0;
  margin-bottom: 30px;
  border: 0;
  border-top: 2px dotted #d8a400;
}

.sidebarAdWidget {
  padding: 0;
  margin-bottom: 60px;
}

.sidebarAdBtn {
  max-width: 300px;
  display: block;
  margin: 0 auto -80px;
  padding: 15px;
  border-radius: 0;
  border: 0;
  font-family: 'Brandon Text';
  font-size: 16px;
  font-weight: 400;
  color: #FFF;
  text-transform: none;
  text-align: center;
  background-color: #232858;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  top: -80px;
}

.sidebarAdBtn:hover {
  color: #D8A400;
}

.sidebarJoinWidget {
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
  min-height: 400px;
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/join-ad-bg.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.sidebarJoinTitle {
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 30px;
}

.sidebarJoinText {
  font-family: 'Brandon Text';
  color: #D8A400;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.sidebarJoinBtn {
  display: inline-block;
  padding: 10px 40px;
  border: 3px solid #ca9900;
  border-radius: 0;
  font-family: 'Brandon Text';
  font-size: 18px;
  font-weight: 400;
  color: #FFF;
  text-transform: none;
  text-align: center;
  background-color: transparent;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.sidebarJoinBtn:hover {
  background-color: #ca9900;
  color: #FFF;
}

#blogPageHeader {
  text-align: center;
  padding: 100px 0 50px;
  background-attachment: fixed;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/header-bg.jpg);
  background-position: top center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.blogPageTitle {
  margin-top: 0;
  margin-bottom: 20px;
  color: #FFF;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
}

.blogPageSubtitle {
  font-size: 32px;
  color: #d8a400;
  font-weight: 300;
  font-family: 'Brandon Text';
  line-height: 1.2;
  margin: 0;
}

#blogFirstPost {
  padding: 50px 0;
  background-color: #e7e7e7;
}

.blogFirstThumbnail,
.blogThumbnail {
  margin-bottom: 30px;
}

.blogFirstTitle {
  color: #232858;
  font-size: 24px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.blogFirstTitle:hover {
  color: #232858;
}

.blogFirstDate {
  color: #d8a400;
  margin-bottom: 0!important;
  font-size: 16px;
}

.blogFirstAuthor {
  color: #d8a400;
  margin-bottom: 20px;
  font-size: 16px;
}

.blogFirstAuthor a,
.blogPostDate a {
  color: #d8a400!important;
}

.blogFirstReadMore,
.blogFirstReadMore:hover {
  font-size: 16px;
  color: #D8A400;
}

#blogPosts {
  padding: 50px 0 30px;
}

.blogPostTitle,
.blogPostTitle:hover {
  color: #232858;
  font-weight: 400;
  font-size: 24px;
  margin-top: 0;
  line-height: 1.2;
}

.blogPostDate {
  color: #d8a400;
  font-size: 16px;
  margin-bottom: 20px;
}

.blogPostUnderline {
  border-top: 2px dotted #d8a400;
  margin-top: 40px;
  margin-bottom: 30px;
}

#blogPostNav {
  padding: 0 0 60px;
}

.olderBlogLink {
  color: #d8a400;
  font-size: 16px;
}

.newerBlogLink {
  color: #d8a400;
  font-size: 16px;
  text-align: right;
}

.btn-download-form {
  font-size: 21px;
  border-radius: 0;
  padding: 10px 25px;
}

.blogSidebarBG {
  background-color: #f5e8bf;
  padding: 30px;
}

.blogSidebarTitle {
  color: #232858;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}

.blogSidebarTitle2 {
  color: #232858;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
  margin-top: 30px;
}

.blogSidebarCategories {
  color: #d8a400;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 400;
}

#newsContent {
  padding: 100px 0 60px;
}

.newsContentDate {
  font-family: 'Brandon Text';
  color: #00b2d7;
  font-weight: bold;
  font-size: 20px;
  background-color: #b2e8f3;
  width: 60%;
  position: relative;
  top: -47px;
  padding: 15px 30px 0;
  margin-bottom: -47px;
}

.newsContentBox {
  background-color: #232858;
  padding: 30px;
  margin-bottom: 40px;
}

.newsContentBox .authorship {
  margin-bottom: 20px;
  margin-left: 3px;
}

.newsContentTitle {
  font-family: 'Brandon Text' !important;
  margin-top: 0;
  margin-bottom: 30px;
  color: #183F7A;
  font-weight: 700;
  font-size: 36px;
}

.articleContent {
  margin-bottom: 40px;
}

.articleSubtitle {
  font-family: 'Brandon Text' !important;
  margin-top: 0;
  margin-bottom: 20px;
  color: #183F7A;
  font-size: 28px;
}

.menuTitle {
  display: block;
  background-color: #13487a;
  color: #fff;
  font-family: "Brandon Text", serif;
  font-size: 15px;
  padding: 15px;
  margin: 0px;
  margin-bottom: 10px;
}

.yourMutualSidebarOuter {
  padding-left: 0px;
}

.yourMutualTitleOuter {
  display: block;
  background-color: #00b2d7;
  color: #fff;
  font-family: "Brandon Text", serif;
  min-height: 51px;
}

.yourMutualTitleOuter > h1 {
  font-size: 15px !important;
  padding: 15px !important;
  margin: 0px !important;
}

.yourMutualContentOuter {
  padding-right: 0px;
  padding-top: 0px;
  margin-bottom: 50px;
}

.yourMutualCategoryBtn {
  background-color: #b2e8f3;
  color: #13487a;
  font-family: "Brandon Text", serif;
  width: 100%;
  padding: 15px !important;
  border-radius: 0px;
  text-align: left;
  margin-top: 0px;
}

#menu-your-mutual-menu {
  list-style-type: none !important;
  padding-left: 0px;
}

#menu-your-mutual-menu > li {
  margin-top: -10px;
}

#menu-your-mutual-menu .sub-menu {
  list-style-type: none;
  display: block;
  padding-left: 0px;
  background-color: #e5f7fb;
  margin-top: -10px;
  font-size: 15px !important;
  padding: 15px !important;
  font-family: "Brandon Text", sans-serif;
}

.yourMutualSubCategoryBtn {
  font-size: 15px !important;
  line-height: 1.5;
  color: #13487a;
}

.sub-menu .current-menu-item h4 a {
  color: #00b2d7;
}

.yourMutualContentOuter strong,
.yourMutualContentOuter p,
.pageList {
  color: #13487a;
  margin: 20px 0px;
  font-family: "Brandon Text", sans-serif;
  line-height: 1.4;
  font-size: 15px;
  text-align: justify;
}

.introParagraph {
  margin-top: 20px;
  font-family: "Brandon Text", serif !important;
  color: #13487a;
  font-size: 25px !important;
  line-height: 1.4 !important;
  font-weight: 300;
}

.yourMutualReview {
  background-color: #e5f7fb;
  font-family: "Brandon Text", serif !important;
  font-size: 25px !important;
  line-height: 1.4 !important;
  font-weight: 400;
  border-right: 5px solid #00b2d7;
  padding: 25px 10px;
}

.isaSidebarAd {
  border: 2px solid #98c662;
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/couple-out-walking-400x600.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  padding: 15px;
}

.sidebarAdHeadline {
  font-family: "Brandon Text", serif !important;
  color: #00B2D7;
  font-size: 22px;
  margin-bottom: 10px;
}

.ctfUnitPriceAd {
  margin: 20px auto;
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/home-product-ctf.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  color: #fff !important;
  padding-top: 150px;
}

.ctfUnitPriceAd p {
  font-family: "Brandon Text", serif !important;
  color: #fff;
}

.learnDisclaimer {
  color: #00b2d7 !important;
  font-weight: bold;
}

.newsDisclaimerText {
  font-size: 14px;
  font-weight: 700;
  color: #00b2d7;
  font-family: 'Brandon Text', Arial;
}

/* Galaxy S4 Portrait */

@media only screen and  (min-width : 360px) and (max-width : 360px) {
  #newsCarousel {
    padding: 90px 0px 0px 0px;
  }
}

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) and (max-width : 375px) {
  #newsCarousel {
    padding: 90px 0px 0px 0px;
  }
}

/* iPhone 6 + Portrait */

@media only screen and  (min-width : 414px) and (max-width : 414px) {
  #newsCarousel {
    padding: 90px 0px 0px 0px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width : 480px) {
  .newsContentDate {
    width: 40%;
  }

  .mostPopularTitle {
    display: block;
    text-align: left;
    margin-left: 6px;
  }

  .mostPopularNewsTitle {
    font-size: 20px;
    text-align: left;
  }
}

/* Galaxy S4 Landscape */

@media (min-width:640px) {
  #newsCarousel {
    min-height: 195px;
    padding: 60px 0px 0px 0px;
  }

  .newsHR {
    width: 70%;
  }
}

/* iPhone 6 Landscape */

@media (min-width:667px) {
  .newsHR {
    width: 70%;
  }
}

/* iPhone 6+ Landscape */

@media (min-width:736px) {
  #newsCarousel {
    min-height: 235px;
    padding: 80px 0px 0px 0px;
  }
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  #newsPageHeader {
    padding: 200px 0 120px;
  }

  #newsContent {
    padding: 140px 0 60px;
  }

  .newsFirstTitle {
    font-size: 36px;
    margin-bottom: 0;
    line-height: 1.2;
  }

  .newsFirstPostDate {
    width: 170px;
    position: relative;
    top: -60px;
    left: -20px;
    padding: 15px 20px 0;
    background-color: #b2e8f3;
    margin-bottom: -45px;
  }

  .newsFirstPostDate p {
    font-size: 20px;
    color: #00b2d7;
    font-weight: 700;
    margin-bottom: 0;
  }

  .newsContentDate {
    width: 45%;
    top: -46px;
  }

  .mostPopularNewsTitle {
    font-size: 12px;
    margin-top: 0;
  }

  #blogPageHeader {
    padding: 200px 0 120px;
  }

  .blogFirstTitle {
    font-size: 30px;
  }

  .blogPostDate {
    font-size: 18px;
  }

  .blogPostTitle,
  .blogPostTitle:hover {
    font-size: 30px;
  }

  .blogFirstAuthor,
  .blogFirstDate,
  .blogFirstReadMore,
  .blogFirstReadMore:hover {
    font-size: 18px;
  }

  .newerBlogLink,
  .olderBlogLink {
    font-size: 20px;
  }

  .newsTitle {
    font-size: 72px;
  }

  .newsHR {
    width: 90%;
  }

  .newsSubtitle {
    font-size: 32px;
  }
}

@media (min-width:992px) {
  #newsContent {
    padding: 70px 0 60px;
  }

  .newsContentDate {
    width: 30%;
    top: -43px;
  }

  .mostPopularTitle {
    margin-left: 0;
  }

  .mostPopularNewsTitle {
    font-size: 16px;
    margin-top: 0;
  }

  #newsCarousel {
    min-height: 260px;
    padding: 90px 0px 0px 0px;
  }

  .newsHR {
    width: 75%;
  }
}

@media (min-width:1200px) {
  #newsCarousel {
    min-height: 330px;
    padding: 115px 0 0;
  }

  .newsHR {
    width: 60%;
  }
}
#hubIntro,
#hubProducts,
#hubWhy {
  padding: 40px 0px;
}

.hubPageTitle {
  font-family: 'Brandon Text';
  font-size: 22px;
  color: #00b5d6;
  line-height: 1.2;
  margin-bottom: 30px;
}

#hubSummary,
#hubInfo {
  padding: 40px 0px;
  background-color: #e5f7fb;
}

.hubSummaryTitle {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 22px;
}

#hubSummary .greenCtaBtn {
  font-size: 12px;
}

th a {
  color: #FFF !important;
}

.hubTableThird {
  /* width: 33%; */
  min-width: 280px;
}

.hubTableQuarter {
  width: 25%;
}

.hubTableAqua {
  background-color: #00b5d6;
  color: #FFF;
  padding: 15px !important;
  border-bottom: 2px solid #FFF !important;
}

.tablePad {
  padding: 15px !important;
}

.tableHeader {
  font-family: 'Brandon Text';
  font-size: 24px;
  vertical-align: top !important;
}

.noBorderBtm {
  border: 0px !important;
}

.borderLeft {
  border-left: 10px solid #e5f7fb !important;
}

.hubProductRow {
  margin-bottom: 60px;
}

.hubProductTitle {
  font-family: 'Brandon Text';
  font-size: 22px;
  color: #00b5d6;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 20px;
  text-align: center;
}

.hubProductFindBtn,
.hubProductFindBtn2 {
  display: inline-block;
  background-color: #93c01f;
  border-radius: 0px;
  border: 0px;
  padding: 15px 45px;
  color: #FFF;
  font-size: 18px;
  margin-top: 20px;
  margin-right: 0px;
  min-width: 100%;
}

.hubProductFindBtn:hover,
.hubProductFindBtn2:hover {
  background-color: #82a91e;
  color: #FFF;
  text-decoration: none !important;
}

.hubProductApplyBtn,
.hubProductApplyBtn2 {
  display: inline-block;
  background-color: #e44353;
  border-radius: 0px;
  border: 0px;
  padding: 15px 45px;
  color: #FFF;
  font-size: 18px;
  margin-top: 20px;
  min-width: 100%;
}

.hubProductApplyBtn:hover,
.hubProductApplyBtn2:hover {
  background-color: #cb2637 !important;
  color: #FFF !important;
  text-decoration: none !important;
}

.hubInfoIcon {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.hubWhyTitle {
  font-family: 'Brandon Text';
  text-align: center;
  font-size: 30px;
  color: #13487a;
  line-height: 1.2;
  margin-bottom: 40px;
}

.hubWhySubtitle {
  font-family: 'Brandon Text';
  font-size: 18px;
  line-height: 1.4;
  font-weight: 300;
  color: #00b5d6;
  text-align: center;
}

.hubPageText {
  text-align: center;
}

.applicationProductName {
  font-family: "Brandon Text" sans-serif;
  font-weight: bold !important;
  padding: 15px;
  text-align: center;
  position: relative;
  top: -40px;
  color: #337ab7;
  margin-bottom: -75px;
}

.simpleProtectionAd,
.incomeProtectionAd {
  margin: 20px auto;
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/home-product-sip-dark.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.incomeProtectionAd {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/home-product-ip-dark.jpg);
}

.simpleProtectionAdHeadline,
.incomeProtectionAdHeadline {
  color: #fff;
  font-family: "Brandon Text" sans-serif;
  font-size: 37px;
  font-weight: bold;
  padding-top: 20px;
  line-height: 1.1;
}

.over50sAdHeadline {
  color: #fff;
  font-family: "Brandon Text" sans-serif;
  font-size: 37px;
  font-weight: bold;
  padding-top: 20px;
  line-height: 1.1;
}

.simpleSidebarAdCTA,
.over50sAdCTA,
.incomeSidebarAdCTA {
  margin-bottom: 20px;
}

.over50sAd {
  margin: 20px auto;
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/home-product-over-50-dark.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.loadingModalText {
  color: #fff;
  font-family: "Brandon Text" sans-serif;
  font-size: 37px;
  font-weight: bold;
  padding-top: 20px;
  line-height: 1.1;
  text-align: center;
}

#loadingModal .loading-modal-content {
  position: relative;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0;
}

.loadingModalLogo {
  color: #fff;
  margin: auto;
  display: block !important;
  width: 50px;
}

.beforeYouBeginCheckbox {
  display: inline-block;
}

.readCheckbox {
  font-size: 13px;
}

.plansPageRow {
  margin-bottom: 20px;
}

#plansSection h2 {
  padding: 10px 0px;
}

#plansSection h2,
#plansSection h3 {
  font-family: "Brandon Text" sans-serif;
}

.affiliate {
  display: none;
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  .hubPageTitle {
    font-size: 30px;
  }

  .hubSummaryTitle {
    font-size: 28px;
    margin-bottom: 60px;
  }

  .hubProductTitle {
    font-size: 30px;
    text-align: left;
    margin-top: 0px;
  }

  .hubProductFindBtn,
  .hubProductFindBtn2 {
    margin-right: 20px;
    min-width: 20%;
  }

  .hubProductApplyBtn,
  .hubProductApplyBtn2 {
    min-width: 20%;
  }

  .hubWhySubtitle {
    font-size: 24px;
    text-align: left;
  }

  .hubPageText {
    text-align: left;
  }

  #hubSummary .greenCtaBtn {
    font-size: initial;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  .hubProductFindBtn2 {
    min-width: 20%;
    margin-right: 0px;
  }

  .hubProductApplyBtn2 {
    min-width: 20%;
    margin-left: 10px;
  }
}

/* Smartphone */

@media screen and (max-width: 600px) {
  table .hubSummaryBtn {
    font-size: 12px;
  }
}
#teleInterviewBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/tele-interview-banner.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 265px;
  margin-top: -45px;
  padding: 45px 0px 0px 0px;
}

#teleInterviewIntro,
#teleInterviewDownloads {
  padding: 40px 0px;
}

#teleInterviewAppointment {
  padding: 40px 0px;
  background-color: #e1f1f9;
}

.teleInterviewName {
  font-family: 'Brandon Text';
  font-size: 30px;
  font-weight: 700;
  color: #00b2d7;
  margin-bottom: 20px;
  text-align: center;
}

.teleInterviewIntro {
  font-family: 'Brandon Text';
  font-size: 20px;
  color: #13487a;
  line-height: 1.4;
  text-align: center;
}

.teleInterviewAppointment {
  font-family: 'Brandon Text';
  font-size: 20px;
  color: #00b2d7;
  line-height: 1.4;
  margin-bottom: 60px;
  text-align: center;
}

.interviewTimeText {
  color: #13487a;
  font-weight: bold;
  text-align: center;
  margin: 0px;
}

.appointmentText {
  color: #13487a;
  margin-bottom: 30px;
  text-align: center;
}

.appointmentRow {
  background-color: #f6f6f6;
  padding: 20px;
  width: 100%;
  margin-left: 0px;
  margin-bottom: 30px;
}

.teleInterviewDownloads {
  font-family: 'Brandon Text';
  font-size: 20px;
  color: #00b2d7;
  line-height: 1.4;
  text-align: center;
}

.teleInterviewBtn {
  background-color: #98c662;
  border-radius: 0px;
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 18px;
  padding: 15px 40px;
  width: 100%;
}

.teleInterviewBtn:hover {
  background-color: #80A950;
  color: #FFF;
}

.homepageBannerHeaderSection {
  margin-top: 25px;
}

.homepageBannerHeaderText {
  font-family: 'Brandon Text';
  font-weight: bold;
}

.homepageBannerMinorTitleText {
  font-family: 'Brandon Text';
}

.homepageBannerSubTitle {
  font-family: 'Brandon Text';
}

.homepageBannerHashtag {
  font-family: 'Brandon Text';
  font-weight: bold;
}

.sidebar-black-friday-ad {
  margin-top: 40px;
}

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) and (max-width : 375px) {
  #teleInterviewBanner {
    padding: 60px 0px 0px 0px;
  }
}

/* Nexus 6 Portrait */

@media only screen and  (min-width : 412px) and (max-width : 412px) {
  #teleInterviewBanner {
    padding: 85px 0px 0px 0px;
  }
}

/* iPhone 6 + Portrait */

@media only screen and  (min-width : 414px) and (max-width : 414px) {
  #teleInterviewBanner {
    padding: 85px 0px 0px 0px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width : 480px) {
  #teleInterviewBanner {
    min-height: 200px;
    margin-top: -45px;
    padding: 25px 0px 0px 0px;
  }
}

/* iPhone 5 Landscape */

@media (min-width:568px) {
  #teleInterviewBanner {
    min-height: 210px;
    margin-top: -45px;
    padding: 40px 0px 0px 0px;
  }
}

/* Galaxy S4 Landscape */

@media (min-width:640px) {
  #teleInterviewBanner {
    min-height: 210px;
    margin-top: -45px;
    padding: 60px 0px 0px 0px;
  }
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  #teleInterviewBanner {
    min-height: 430px;
    margin-top: -45px;
    padding: 115px 0px 0px 0px;
  }

  .teleInterviewName {
    font-size: 40px;
    margin-bottom: 40px;
    text-align: left;
  }

  .teleInterviewIntro {
    font-size: 28px;
    text-align: left;
  }

  .teleInterviewAppointment {
    font-size: 28px;
    margin-bottom: 60px;
    text-align: left;
  }

  .appointmentText {
    text-align: left;
  }

  .interviewTimeText {
    font-size: 22px;
    text-align: left;
  }

  .teleInterviewDownloads {
    font-size: 28px;
    text-align: left;
  }

  .teleInterviewBtn {
    width: 320px;
  }

  .teleInterviewTitle,
  .teleInterviewSubtitle {
    text-align: center;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  #teleInterviewBanner {
    min-height: 340px;
    margin-top: -45px;
    padding: 80px 0px 0px 0px;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width : 1200px) {
  #teleInterviewBanner {
    min-height: 360px;
    margin-top: -45px;
    padding: 75px 0px 0px 0px;
  }

  .fa-telephone-interview,
  .fa-online-medical-questions {
    min-width: 155px;
  }
}
#gosBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/gift-of-saving-banner.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 260px;
  margin-top: -45px;
  padding: 80px 0px 0px 0px;
}

.gosTitle {
  font-family: 'Brandon Text';
  color: #FFF;
  font-weight: bold;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 2px 2px #666;
}

.gosSubtitle {
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 18px;
  text-align: center;
  text-shadow: 2px 2px #666;
}

#giftOfSavingIntro {
  background-color: #1F4178;
  padding: 40px 0px;
}

#giftOfSavingIntro p {
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  margin: 0px;
}

#giftOfSavingPoll {
  padding: 40px 0px;
}

.gosLatestNews {
  color: #13487a;
  font-family: 'Brandon Text';
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 30px;
}

.gosNewsTitle {
  color: #93c01f;
  font-family: 'Brandon Text';
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 30px;
}

.gosNewsTitle:hover {
  color: #82a91e;
}

.gosNewsBtn {
  display: block;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  background-color: #93c01f;
  border-radius: 0px;
  border: 0px;
  padding: 15px 45px;
  color: #FFF;
  font-size: 18px;
}

.gosNewsBtn:hover {
  background-color: #82a91e;
  color: #fff;
}

#giftOfSavingReasons {
  padding: 40px 0px 20px 0px;
}

#giftOfSavingReasons h2 {
  color: #13487a;
  font-family: 'Brandon Text';
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 30px;
}

#giftOfSavingJourney {
  background-color: #F2F2F2;
  padding: 40px 0px 20px 0px;
}

#giftOfSavingJourney h2 {
  color: #13487a;
  font-family: 'Brandon Text';
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 30px;
}

.giftOfSavingBoxesTitle {
  position: relative;
  bottom: 113px;
  left: 10px;
  font-size: 20px;
  font-family: 'Brandon Text';
  color: #FFF;
  margin-bottom: 0px;
  margin-right: 20px;
}

.giftOfSavingBoxesTitle2 {
  position: relative;
  bottom: 135px;
  left: 10px;
  font-size: 20px;
  font-family: 'Brandon Text';
  color: #FFF;
  margin-bottom: 0px;
  margin-right: 20px;
}

.gosPlansInclude {
  color: #FFF;
  font-family: 'Brandon Text';
  font-weight: bold;
  font-size: 24px;
  line-height: 1.2;
}

/* Gift of Saving Poll */

.widget-title {
  display: none !important;
}

.yop-poll-container {
  width: 100% !important;
  background-color: #f2f2f2 !important;
  margin-bottom: 30px;
}

.pollQuestion {
  font-family: 'Brandon Text';
}

.yop_poll_vote_button {
  display: block;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  background-color: #93c01f;
  border-radius: 0px;
  border: 0px;
  padding: 15px 45px;
  color: #FFF;
  font-size: 18px !important;
}

.yop_poll_vote_button:hover {
  background-color: #82a91e;
  color: #fff;
}

.poll-question-title {
  color: #13487a;
  font-family: 'Brandon Text';
  font-size: 20px !important;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 1em !important;
}

.poll-radio-button > input[type=checkbox],
input[type=radio] {
  margin: 4px 0 0 !important;
  margin-top: 1px \9 !important;
  line-height: normal !important;
  margin-right: auto !important;
  margin-left: auto !important;
  display: block !important;
}

.yop-poll-label > label {
  text-align: center !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.poll-results-answer {
  color: #13487a;
  font-weight: 400 !important;
  font-size: 14px;
}

.yop_poll_back_to_vote_link {
  color: #13487a !important;
  float: right;
}

.yop_poll_result_link {
  color: #13487a !important;
}

/* Galaxy S4 Portrait */

@media only screen and  (min-width : 360px) and (max-width : 360px) {
  .giftOfSavingBoxesTitle {
    bottom: 82px;
    font-size: 16px;
  }

  .giftOfSavingBoxesTitle2 {
    bottom: 99px;
    font-size: 16px;
  }

  #gosBanner {
    padding: 95px 0px 0px 0px;
  }
}

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) and (max-width : 375px) {
  .giftOfSavingBoxesTitle {
    bottom: 85px;
    font-size: 18px;
  }

  .giftOfSavingBoxesTitle2 {
    bottom: 104px;
    font-size: 18px;
  }

  .gosPlansInclude {
    margin-top: 15px;
    margin-left: 15px;
  }

  #gosBanner {
    padding: 95px 0px 0px 0px;
  }
}

/* Nexus 4 Portrait */

@media only screen and  (min-width : 384px) and (max-width : 384px) {
  .giftOfSavingBoxesTitle {
    bottom: 85px;
    font-size: 18px;
  }

  .giftOfSavingBoxesTitle2 {
    bottom: 104px;
    font-size: 18px;
  }

  .gosPlansInclude {
    font-size: 24px;
    margin-top: 15px;
    margin-left: 15px;
  }
}

/* Nexus 6 Portrait */

@media only screen and  (min-width : 412px) and (max-width : 412px) {
  .giftOfSavingBoxesTitle {
    bottom: 91px;
    font-size: 20px;
  }

  .giftOfSavingBoxesTitle2 {
    bottom: 113px;
    font-size: 20px;
  }

  .gosPlansInclude {
    font-size: 28px;
    margin-top: 15px;
    margin-left: 15px;
  }
}

/* iPhone 6 + Portrait */

@media only screen and  (min-width : 414px) and (max-width : 414px) {
  .giftOfSavingBoxesTitle {
    bottom: 91px;
    font-size: 20px;
  }

  .giftOfSavingBoxesTitle2 {
    bottom: 113px;
    font-size: 20px;
  }

  .gosPlansInclude {
    font-size: 28px;
    margin-top: 15px;
    margin-left: 15px;
  }

  #gosBanner {
    padding: 105px 0px 0px 0px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width : 480px) {
  .giftOfSavingBoxesTitle {
    bottom: 98px;
    font-size: 24px;
  }

  .giftOfSavingBoxesTitle2 {
    bottom: 124px;
    font-size: 24px;
  }

  .gosPlansInclude {
    font-size: 30px;
    margin-top: 15px;
    margin-left: 15px;
  }

  #gosBanner {
    min-height: 185px;
    padding: 40px 0px 0px 0px;
  }
}

/* Nokia Lumia Landscape */

@media (min-width:533px) and (max-width : 533px) {
  .giftOfSavingBoxesTitle {
    bottom: 105px;
    font-size: 28px;
  }

  .giftOfSavingBoxesTitle2 {
    bottom: 135px;
    font-size: 28px;
  }

  .gosPlansInclude {
    font-size: 40px;
    margin-top: 10px;
    margin-left: 15px;
  }
}

/* iPhone 5 Landscape */

@media (min-width:568px) {
  .giftOfSavingBoxesTitle {
    bottom: 111px;
    font-size: 30px;
  }

  .giftOfSavingBoxesTitle2 {
    bottom: 144px;
    font-size: 30px;
  }

  .gosPlansInclude {
    font-size: 40px;
    margin-top: 10px;
    margin-left: 15px;
  }
}

/* Galaxy S4 Landscape */

@media (min-width:640px) {
  .giftOfSavingBoxesTitle,
  .giftOfSavingBoxesTitle2 {
    bottom: 111px;
    font-size: 30px;
  }
}

/* iPhone 6+ Landscape */

@media (min-width:736px) {
  .giftOfSavingBoxesTitle,
  .giftOfSavingBoxesTitle2 {
    left: 15px;
    bottom: 127px;
    font-size: 36px;
  }
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  #gosBanner {
    min-height: 390px;
    padding: 135px 0px 0px 0px;
  }

  .gosTitle {
    font-size: 54px;
  }

  .gosSubtitle {
    font-size: 28px;
  }

  .gosPlansInclude {
    color: #FFF;
    font-family: 'Brandon Text';
    font-weight: bold;
    font-size: 24px;
    line-height: 1.2;
    margin-top: 10px;
    margin-left: 10px;
  }

  .giftOfSavingBoxesTitle,
  .giftOfSavingBoxesTitle2 {
    left: 10px;
    bottom: 82px;
    font-size: 16px;
  }

  .gosProductBox {
    height: 160px;
  }

  #giftOfSavingReasons h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  #giftOfSavingIntro p {
    font-size: 18px;
  }

  #giftOfSavingJourney h2 {
    font-size: 28px;
  }

  .gosProductTitle1 {
    font-size: 22px;
    bottom: 75px;
  }

  .gosProductTitle2 {
    font-size: 22px;
    bottom: 96px;
    margin-right: 15px;
  }

  .gosProductTitle3 {
    font-size: 22px;
    bottom: 117px;
  }

  .gosLatestNews {
    color: #13487a;
    font-family: 'Brandon Text';
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 30px;
  }

  .gosExcerpt {
    text-align: center;
  }

  #giftOfSavingPoll {
    padding: 40px 0px 40px 0px;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  .gosPlansInclude {
    color: #FFF;
    font-family: 'Brandon Text';
    font-weight: bold;
    font-size: 32px;
    line-height: 1.2;
    margin-top: 15px;
    margin-left: 15px;
  }

  .giftOfSavingBoxesTitle,
  .giftOfSavingBoxesTitle2 {
    left: 10px;
    bottom: 54px;
    font-size: 22px;
  }

  .gosProductTitle1 {
    font-size: 30px;
    left: 15px;
    bottom: 43px;
  }

  .gosProductTitle2 {
    font-size: 30px;
    left: 15px;
    bottom: 71px;
  }

  .gosProductTitle3 {
    font-size: 30px;
    left: 15px;
    bottom: 71px;
  }

  .gosNewsTitle {
    color: #93c01f;
    font-family: 'Brandon Text';
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 30px;
  }

  .gosArticleIntro {
    min-height: 20px;
  }

  .poll-radio-button > input[type=checkbox],
  input[type=radio] {
    margin: 4px 0 0 !important;
    margin-top: 1px \9 !important;
    line-height: normal !important;
    margin-right: 10px !important;
    margin-left: 20px !important;
    display: inline-block !important;
  }

  .poll-question-title {
    color: #13487a;
    font-family: 'Brandon Text';
    font-size: 28px !important;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    margin: 0px 0px 30px 0px !important;
  }

  .yop-poll-label > label {
    display: inline-block !important;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width : 1200px) {
  #gosBanner {
    min-height: 390px;
    padding: 105px 0px 0px 0px;
  }

  .gosTitle {
    font-size: 64px;
  }

  .gosSubtitle {
    font-size: 36px;
  }

  .giftOfSavingBoxesTitle,
  .giftOfSavingBoxesTitle2 {
    left: 10px;
    bottom: 70px;
    font-size: 28px;
  }

  .gosPlansInclude {
    font-size: 42px;
  }

  .gosProductTitle1 {
    bottom: 43px;
    left: 15px;
    margin-bottom: 0px;
    margin-right: 20px;
    font-size: 30px;
  }

  .gosProductTitle2,
  .gosProductTitle3 {
    bottom: 71px;
    left: 15px;
    margin-bottom: 0px;
    margin-right: 20px;
    font-size: 30px;
  }

  .gosNewsTitle {
    font-size: 22px;
  }

  .gosArticleIntro {
    min-height: 20px;
  }
}
#csbBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/child-saving-boost-banner.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 260px;
  margin-top: -45px;
  padding: 60px 0px 15px 0px;
}

#csbBanner2 {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/importance-child-saving-banner.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 260px;
  margin-top: -45px;
  padding: 60px 0px 15px 0px;
}

.csbTitle {
  font-family: 'Brandon Text';
  color: #FFF;
  font-weight: bold;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 2px 2px #666;
}

.csbSubtitle {
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 18px;
  text-align: center;
  text-shadow: 2px 2px #666;
}

#howToStart {
  background-color: #FFF;
  padding: 40px 0px 20px 0px;
}

.howToStartTitle {
  color: #13487a;
  font-family: 'Brandon Text';
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 30px;
}

#cbsIntro {
  padding: 40px 0px;
}

.cbsIntroText {
  font-size: 16px;
  font-family: 'Brandon Text';
  color: #13487a;
  text-align: center;
  margin-bottom: 20px;
}

#cbsIntro p {
  text-align: center;
  color: #1348a7;
}

#cbsBlue {
  padding: 40px 0px 0px;
  background-color: #e5f7fb;
}

.csbBox1 {
  background-color: #00b2d7;
  height: 240px;
}

.csbBox1Content {
  position: relative;
  top: 20px;
  background-color: #13487a;
  padding: 20px;
  text-align: center;
}

.csbBox1Content p {
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 16px;
  margin-bottom: 20px;
}

.csbBox1Content2 p {
  font-size: 25px;
}

.csbBtn {
  display: block;
  margin: 0px auto;
  background-color: #fabc51;
  border-radius: 0px;
  border: 0px;
  padding: 15px 45px;
  color: #FFF;
  font-size: 16px;
}

.csbBtn:hover {
  background-color: #efb44f;
  color: #FFF;
  text-decoration: none !important;
}

.csbBox2 {
  background-color: #00b2d7;
}

.csbBox3 {
  background-color: #e44353;
  height: 260px;
}

.csbBox3Title {
  display: block;
  color: #FFF;
  text-align: center;
  background-color: #13487a;
  padding: 15px 0px;
  font-family: 'Brandon Text';
  font-size: 22px;
  margin-bottom: 0px;
}

.cbsBox3Links {
  padding: 15px;
  text-align: center !important;
}

.cbsBox3Links a {
  color: #FFF;
  font-size: 20px;
  font-family: 'Brandon Text';
  text-align: center !important;
  text-decoration: underline;
}

.csbBoxTitle {
  position: relative;
  font-family: 'Brandon Text';
  color: #FFF;
  text-align: center;
  bottom: 48px;
  font-size: 30px;
}

.csbBoxImg {
  margin-left: auto;
  margin-right: auto;
}

.csbBox4 {
  max-height: 310px;
  background-color: #a04591;
}

.csbBox5 {
  max-height: 310px;
  background-color: #93c01f;
}

.csbBox6 {
  max-height: 310px;
  background-color: #fabc51;
}

.adultsJumping-Home {
  background-position: top center !important;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/isa-adults-jumping-banner.jpg) !important;
}

.childWateringCan-Home {
  background-position: top center !important;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/jisa-limit-home-banner.jpg) !important;
}

.childrenJumping-Home {
  background-position: top center !important;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/children-jumping-home-banner.jpg) !important;
}

.masterMenuList {
  margin: 0px;
  padding-left: 0px;
}

.masterMenuList li {
  list-style-type: none;
}

#scMasterMenu {
  position: relative;
  margin-bottom: 240px;
}

#scMasterMenu li {
  width: 100%;
  position: absolute;
  z-index: 1;
}

#scMasterMenu li.active {
  z-index: 3;
}

.isaTopUpAd {
  margin: 20px auto;
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/couple-out-walking-400x600.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.isaTopUpAdHeadline {
  font-family: "Brandon Text";
  text-align: center;
  color: #193f78;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 200px;
  line-height: 1.2;
}

.isaTopUpAdCTA {
  margin-bottom: 20px;
}

.isaTopUpAdCTA > a > button {
  font-size: 20px;
}

.jisaTopUpAd {
  margin: 20px auto;
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/dad-with-child-on-bike-400x600.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.jisaTopUpAdHeadline {
  margin-top: 20px;
  font-family: "Brandon Text";
  text-align: center;
  color: #193f78;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 200px;
  line-height: 1.2;
}

.jisaTopUpAdCTA {
  margin-bottom: 20px;
}

.jisaTopUpAdCTA > a > button {
  font-size: 20px;
}

.yspTopUpAd {
  margin: 20px auto;
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/parent-with-children-on-the-beach-400x600.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.yspTopUpAdHeadline {
  margin-top: 20px;
  font-family: "Brandon Text";
  text-align: center;
  color: #ffffff;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 320px;
  line-height: 1.2;
}

.yspTopUpAdCTA {
  margin-bottom: 20px;
}

.yspTopUpAdCTA > a > button {
  font-size: 20px;
}

/* Galaxy S4 Portrait */

@media only screen and  (min-width : 360px) and (max-width : 360px) {
  #csbBanner {
    padding: 80px 0px 15px 0px;
  }

  #csbBanner2 {
    padding: 80px 0px 0px 0px;
    min-height: 185px;
  }

  .csbBox4,
  .csbBox5,
  .csbBox6 {
    max-height: 350px;
  }
}

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) and (max-width : 375px) {
  #csbBanner,
  #csbBanner2 {
    padding: 90px 0px 15px 0px;
  }

  .csbBox4,
  .csbBox5,
  .csbBox6 {
    max-height: 365px;
  }
}

/* Nexus 4 Portrait */

@media only screen and  (min-width : 384px) and (max-width : 384px) {
  #csbBanner,
  #csbBanner2 {
    padding: 70px 0px 15px 0px;
  }

  .csbBox4,
  .csbBox5,
  .csbBox6 {
    max-height: 374px;
  }
}

/* Nexus 6 Portrait */

@media only screen and  (min-width : 412px) and (max-width : 412px) {
  #csbBanner,
  #csbBanner2 {
    padding: 80px 0px 15px 0px;
  }

  .csbBox4,
  .csbBox5,
  .csbBox6 {
    max-height: 390px;
  }

  .csbBoxTitle {
    margin-bottom: 0px;
  }
}

/* iPhone 6 + Portrait */

@media only screen and  (min-width : 414px) and (max-width : 414px) {
  #csbBanner,
  #csbBanner2 {
    padding: 105px 0px 15px 0px;
  }

  .csbBox4,
  .csbBox5,
  .csbBox6 {
    max-height: 390px;
  }

  .csbBoxTitle {
    margin-bottom: 0px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width : 480px) {
  .csbBox1 {
    background-color: #00b2d7;
    height: 180px;
  }

  .csbBox4,
  .csbBox5,
  .csbBox6 {
    max-height: 390px;
  }

  .csbBoxTitle {
    margin-bottom: 0px;
  }
}

@media (min-width:533px) and (max-width : 533px) {
  #csbBanner,
  #csbBanner2 {
    min-height: 215px;
    padding: 60px 0px 15px 0px;
  }
}

/* iPhone 5 Landscape */

@media (min-width:568px) {
  #csbBanner,
  #csbBanner2 {
    min-height: 235px;
    padding: 70px 0px 15px 0px;
  }
}

/* Galaxy S4 Landscape */

@media (min-width:640px) {
  #csbBanner,
  #csbBanner2 {
    min-height: 235px;
    padding: 85px 0px 15px 0px;
  }
}

/* iPhone 6+ Landscape */

@media (min-width:736px) {
  #csbBanner,
  #csbBanner2 {
    min-height: 235px;
    padding: 100px 0px 15px 0px;
  }
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  #csbBanner {
    min-height: 235px;
    padding: 145px 0px 30px 0px;
  }

  #csbBanner2 {
    min-height: 315px;
    padding: 145px 0px 30px 0px;
  }

  .csbTitle {
    font-size: 42px;
  }

  .csbSubtitle {
    font-size: 28px;
  }

  .cbsIntroText {
    font-size: 18px;
  }

  .howToStartTitle {
    font-size: 32px;
  }

  .csbBox1 {
    height: 250px;
  }

  .csbBox1Content {
    top: 15px;
  }

  .csbBox3 {
    height: 250px;
  }

  .csbBox3Title {
    padding: 10px 0px;
    font-size: 18px;
  }

  .cbsBox3Links a {
    font-size: 16px;
  }

  .csbBox4,
  .csbBox5,
  .csbBox6 {
    max-height: 248px;
    margin-bottom: 40px;
  }

  .csbBoxTitle {
    bottom: 44px;
  }

  .csbAltContent {
    height: 250px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    top: -250px;
  }

  .cbsTitleTeach,
  .cbsTitleTax {
    bottom: 76px;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  .csbBox1,
  .csbBox3 {
    height: 323.328px;
  }

  .csbBox1Content {
    top: 35px;
  }

  .csbBox1Content p {
    font-size: 20px;
  }

  .csbBox1Content2 p {
    font-size: 32px;
  }

  .csbBox3Title {
    padding: 15px 0px;
    font-size: 20px;
  }

  .cbsBox3Links a {
    font-size: 18px;
  }

  .csbBoxRow {
    margin-bottom: 77px;
  }

  .csbAltContent {
    min-height: 324px;
    position: relative;
    max-height: 323px;
    padding: 20px;
    top: -243px;
  }

  .cbsTitleTax {
    bottom: 76px;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width : 1200px) {
  .csbBox1,
  .csbBox3 {
    height: 390px;
  }

  .csbBox1Content {
    position: relative;
    top: 55px;
    background-color: #13487a;
    padding: 20px;
    text-align: center;
  }

  .csbBox1Content p {
    color: #FFF;
    font-family: 'Brandon Text';
    font-size: 24px;
    margin-bottom: 20px;
  }

  .csbBox1Content2 p {
    font-size: 40px;
  }

  .csbBox3Title {
    padding: 15px 0px;
    font-size: 24px;
  }

  .cbsBox3Links {
    padding: 20px;
    text-align: left !important;
  }

  .cbsBox3Links a {
    font-size: 22px;
    text-align: left !important;
  }

  .csbBoxTitle {
    bottom: 48px;
    left: 20px;
    margin-right: 20px;
    font-size: 30px;
  }

  .csbBoxRow {
    margin-bottom: 142px;
  }

  #csbBanner {
    min-height: 465px;
    padding: 110px 0px 0px 0px;
  }

  #csbBanner2 {
    min-height: 465px;
    padding: 175px 0px 0px 0px;
  }

  .csbTitle {
    font-size: 64px;
  }

  .csbSubtitle {
    font-size: 34px;
  }

  .csbAltContent {
    background-color: #183e7a;
    color: #fff;
    min-height: 390px;
    padding: 20px;
    top: -29;
  }

  .csbAltContent {
    background-color: #183e7a;
    color: #fff;
    min-height: 390px;
    padding: 20px;
    top: -293px;
  }
}
.productTitleUnderline {
  width: 100%;
  border-bottom: 5px solid #EEE;
  padding-bottom: 20px;
}

#homeIsaSeason {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/isa-season-ys-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 285px;
  margin-top: -45px;
  padding: 65px 0px 0px 0px;
}

#homeReferFriend {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/refer-a-friend-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 285px;
  margin-top: -45px;
  padding: 65px 0px 0px 0px;
}

#home190Years {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/190-years-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 285px;
  margin-top: -45px;
  padding: 65px 0px 0px 0px;
}

#homeNewAllowance {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/home-isa-allowance.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 285px;
  margin-top: -45px;
  padding: 65px 0px 0px 0px;
}

#homeOpeningHours {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/opening-hours-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 285px;
  margin-top: -45px;
  padding: 65px 0px 0px 0px;
}

#homeYspTopup {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/home-ysp-top-up-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 285px;
  margin-top: -45px;
  padding: 60px 0px 0px 0px;
}

#homeAgmBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/agm-homepage-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 285px;
  margin-top: -45px;
  padding: 60px 0px 0px 0px;
}

#homeYspTopup .productTitleSpaced {
  font-size: 26px !important;
}

.homeNewAllowanceTitle {
  font-size: 20px;
}

#savingIsaBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/isa-season-ys-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 260px;
  margin-top: -45px;
  padding: 7px 0px 0px 0px;
}

.isaSeasonChildSavingBanner {
  min-height: 310px !important;
}

.childSavingPageCarousel {
  margin-bottom: 265px !important;
}

#childSavingNewAllowance {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/child-savings-tax-year.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 260px;
  margin-top: -45px;
  padding: 70px 0px 0px 0px;
}

.savingPageCarousel {
  margin-bottom: 265px !important;
}

#childSavingIsaBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/isa-season-cs-banner.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 260px;
  margin-top: -45px;
  padding: 85px 0px 0px 0px;
}

.isaHomeCarouselBanner {
  min-height: 290px !important;
}

.isaHomeCarousel {
  margin-bottom: 240px !important;
}

.jisaPageCarousel {
  margin-bottom: 315px !important;
}

#jisaNewAllowance {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/jisa-new-tax-year.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 260px;
  margin-top: -45px;
  padding: 95px 0px 0px 0px;
}

.isaSeasonJisaBanner {
  min-height: 360px !important;
}

.isaPageCarousel {
  margin-bottom: 302px !important;
}

#isaNewAllowance {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/isa-new-tax-year.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 320px;
  margin-top: -45px;
  padding: 80px 0px 0px 0px;
}

.isaSeasonIsaBanner {
  min-height: 350px !important;
}

#homeIsaSeason p.productTitleSpaced {
  padding-bottom: 10px;
  border-bottom: 5px solid #eee;
}

.homeIsaHeaderEst {
  color: #ffffff;
  text-align: right;
  margin-top: -15px;
  font-family: "Brandon Text";
}

.chatlio-powered-by {
  display: none !important;
}

/* Galaxy S4 Portrait */

@media only screen and  (min-width : 360px) and (max-width : 360px) {
  #homeIsaSeason {
    padding: 75px 0px 0px 0px;
  }

  .isaSeasonChildSavingBanner {
    min-height: 285px !important;
  }

  .childSavingPageCarousel {
    margin-bottom: 240px !important;
  }

  #homeReferFriend {
    padding: 85px 0px 0px 0px;
  }

  #home190Years {
    padding: 85px 0px 0px 0px;
  }

  #isaNewAllowance {
    padding: 100px 0px 0px 0px;
  }

  #jisaNewAllowance {
    padding: 105px 0px 0px 0px;
  }

  #childSavingNewAllowance {
    padding: 64px 0px 0px 0px;
  }

  #homeYspTopup {
    padding: 70px 0px 0px 0px;
  }

  #homeAgmBanner {
    padding: 65px 0px 0px 0px;
  }
}

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) and (max-width : 375px) {
  .isaPageCarousel {
    margin-bottom: 285px !important;
  }

  .isaSeasonIsaBanner {
    min-height: 330px !important;
  }

  #homeIsaSeason {
    padding: 85px 0px 0px 0px;
  }

  .isaSeasonChildSavingBanner {
    min-height: 285px !important;
  }

  .childSavingPageCarousel {
    margin-bottom: 240px !important;
  }

  #homeReferFriend {
    padding: 85px 0px 0px 0px;
  }

  #home190Years {
    padding: 85px 0px 0px 0px;
  }

  #homeNewAllowance {
    padding: 73px 0px 0px 0px;
  }

  #isaNewAllowance {
    padding: 100px 0px 0px 0px;
  }

  #jisaNewAllowance {
    padding: 110px 0px 0px 0px;
  }

  #childSavingNewAllowance {
    padding: 64px 0px 0px 0px;
  }

  #homeYspTopup {
    padding: 80px 0px 0px 0px;
  }

  #homeAgmBanner {
    padding: 69px 0px 0px 0px;
  }
}

/* Nexus 4 Portrait */

@media only screen and  (min-width : 384px) and (max-width : 384px) {
  .isaSeasonChildSavingBanner {
    min-height: 285px !important;
  }

  .childSavingPageCarousel {
    margin-bottom: 240px !important;
  }

  #homeReferFriend {
    padding: 85px 0px 0px 0px;
  }

  #home190Years {
    padding: 85px 0px 0px 0px;
  }

  #homeNewAllowance {
    padding: 65px 0px 0px 0px;
  }

  #isaNewAllowance {
    padding: 100px 0px 0px 0px;
  }

  #jisaNewAllowance {
    padding: 110px 0px 0px 0px;
  }

  #childSavingNewAllowance {
    padding: 90px 0px 0px 0px;
  }

  #homeYspTopup {
    padding: 65px 0px 0px 0px;
  }
}

/* Nexus 6 Portrait */

@media only screen and  (min-width : 412px) and (max-width : 412px) {
  #homeIsaSeason {
    padding: 85px 0px 0px 0px;
  }

  #savingIsaBanner {
    padding: 105px 0px 0px 0px;
  }

  .isaSeasonChildSavingBanner {
    min-height: 285px !important;
  }

  .childSavingPageCarousel {
    margin-bottom: 240px !important;
  }

  #childSavingIsaBanner {
    padding: 105px 0px 0px 0px;
  }

  #homeReferFriend {
    padding: 70px 0px 0px 0px;
  }

  #home190Years {
    padding: 70px 0px 0px 0px;
  }

  #homeNewAllowance {
    padding: 73px 0px 0px 0px;
  }

  #isaNewAllowance {
    padding: 75px 0px 0px 0px;
  }

  #jisaNewAllowance {
    padding: 85px 0px 0px 0px;
  }

  #childSavingNewAllowance {
    padding: 75px 0px 0px 0px;
  }

  .isaSeasonJisaBanner {
    min-height: 310px !important;
  }

  .jisaPageCarousel {
    margin-bottom: 265px !important;
  }

  .isaPageCarousel {
    margin-bottom: 245px !important;
  }

  .isaSeasonIsaBanner {
    min-height: 290px !important;
  }

  .isaHomeCarouselBanner {
    min-height: 271px !important;
  }

  .isaHomeCarousel {
    margin-bottom: 225px !important;
  }
}

/* iPhone 6 + Portrait */

@media only screen and  (min-width : 414px) and (max-width : 414px) {
  .isaSeasonJisaBanner {
    min-height: 310px !important;
  }

  .jisaPageCarousel {
    margin-bottom: 265px !important;
  }

  .isaPageCarousel {
    margin-bottom: 270px !important;
  }

  .isaSeasonIsaBanner {
    min-height: 315px !important;
  }

  .isaHomeCarouselBanner {
    min-height: 291px !important;
  }

  .isaHomeCarousel {
    margin-bottom: 246px !important;
  }

  #homeIsaSeason {
    padding: 105px 0px 0px 0px;
  }

  #savingIsaBanner {
    padding: 105px 0px 0px 0px;
  }

  .isaSeasonChildSavingBanner {
    min-height: 285px !important;
  }

  .childSavingPageCarousel {
    margin-bottom: 240px !important;
  }

  #childSavingIsaBanner {
    padding: 105px 0px 0px 0px;
  }

  #homeReferFriend {
    padding: 105px 0px 0px 0px;
  }

  #home190Years {
    padding: 105px 0px 0px 0px;
  }

  #homeNewAllowance {
    padding: 93px 0px 0px 0px;
  }

  #homeOpeningHours {
    padding: 90px 0px 0px 0px;
  }

  #isaNewAllowance {
    padding: 100px 0px 0px 0px;
  }

  #jisaNewAllowance {
    padding: 100px 0px 0px 0px;
  }

  #childSavingNewAllowance {
    padding: 88px 0px 0px 0px;
  }

  #homeYspTopup {
    padding: 85px 0px 0px 0px;
  }

  #homeAgmBanner {
    padding: 90px 0px 0px 0px;
  }

  #yourMutualCarousel {
    min-height: 230px;
    padding: 95px 0px 0px 0px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width : 480px) {
  .isaSeasonJisaBanner {
    min-height: 320px !important;
  }

  .jisaPageCarousel {
    margin-bottom: 275px !important;
  }

  .isaSeasonIsaBanner {
    min-height: 315px !important;
  }

  .isaPageCarousel {
    margin-bottom: 270px !important;
  }

  .isaHomeCarouselBanner {
    min-height: 220px !important;
  }

  .isaHomeCarousel {
    margin-bottom: 175px !important;
  }

  .savingPageCarousel {
    margin-bottom: 203px !important;
  }

  #childSavingIsaBanner {
    padding: 105px 0px 0px 0px;
  }

  .isaSeasonChildSavingBanner {
    min-height: 300px !important;
  }

  .childSavingPageCarousel {
    margin-bottom: 255px !important;
  }

  #homeReferFriend {
    padding: 40px 0px 0px 0px;
  }

  #home190Years {
    padding: 40px 0px 0px 0px;
  }

  #homeNewAllowance {
    padding: 45px 0px 0px 0px;
  }

  #jisaNewAllowance {
    padding: 85px 0px 0px 0px;
  }

  #childSavingNewAllowance {
    padding: 45px 0px 0px 0px;
  }

  #homeOpeningHours {
    padding: 45px 0px 0px 0px;
  }

  #homeYspTopup {
    padding: 35px 0px 0px 0px;
  }

  #homeAgmBanner {
    padding: 24px 0px 0px 0px;
  }

  #yourMutualCarousel {
    min-height: 175px;
    padding: 30px 0px 0px 0px;
  }

  #newsCarousel {
    padding: 45px 0px 0px 0px;
    min-height: 170px;
  }
}

/* Nokia Lumia Landscape */

@media (min-width:533px) and (max-width : 533px) {
  .savingPageCarousel {
    margin-bottom: 235px !important;
  }

  .isaSeasonChildSavingBanner {
    min-height: 240px !important;
  }

  .childSavingPageCarousel {
    margin-bottom: 195px !important;
  }

  #childSavingIsaBanner {
    padding: 85px 0px 0px 0px;
  }

  #homeNewAllowance {
    padding: 52px 0px 0px 0px;
  }

  #isaNewAllowance {
    padding: 95px 0px 0px 0px;
  }

  #jisaNewAllowance {
    padding: 100px 0px 0px 0px;
  }

  #homeAgmBanner {
    padding: 60px 0px 0px 0px;
  }
}

/* iPhone 5 Landscape */

@media (min-width:568px) {
  #savingIsaBanner {
    margin-top: -75px;
    padding: 100px 0px 0px 0px;
  }

  .savingPageCarousel {
    margin-bottom: 220px !important;
  }

  #childSavingIsaBanner {
    padding: 80px 0px 0px 0px;
  }

  .isaSeasonChildSavingBanner {
    min-height: 240px !important;
  }

  .childSavingPageCarousel {
    margin-bottom: 195px !important;
  }

  #isaNewAllowance {
    padding: 100px 0px 0px 0px;
  }

  #jisaNewAllowance {
    padding: 100px 0px 0px 0px;
  }

  #homeYspTopup {
    padding: 60px 0px 0px 0px;
  }

  #homeYspTopup .productTitleSpaced {
    font-size: 25px !important;
  }

  #homeAgmBanner {
    padding: 60px 0px 0px 0px;
  }

  #homeAgmBanner {
    padding: 55px 0px 0px 0px;
  }

  #yourMutualCarousel {
    min-height: 195px;
    padding: 50px 0px 0px 0px;
  }

  #newsCarousel {
    min-height: 190px;
    padding: 55px 0px 0px 0px;
  }
}

/* Galaxy S4 Landscape */

@media (min-width:640px) {
  .isaSasonSavingBanner2 {
    padding: 100px 0px 0px 0px !important;
  }

  #homeYspTopup {
    padding: 70px 0px 0px 0px;
  }

  #homeAgmBanner {
    padding: 62px 0px 0px 0px;
  }

  #celebrate190Banner {
    min-height: 200px;
    padding: 75px 0px 0px 0px;
  }

  #yourMutualCarousel {
    min-height: 220px;
    padding: 65px 0px 0px 0px;
  }
}

/* iPhone 6 Landscape */

@media (min-width:667px) {
  .isaSeasonIsaBanner {
    min-height: 290px !important;
  }

  .isaPageCarousel {
    margin-bottom: 245px !important;
  }

  #jisaNewAllowance {
    padding: 110px 0px 0px 0px;
  }

  #childSavingNewAllowance {
    padding: 80px 0px 0px 0px;
  }

  #yourMutualCarousel {
    min-height: 235px;
    padding: 75px 0px 0px 0px;
  }
}

/* Nexus 6 Landscape */

@media (min-width:732px) {
  #childSavingNewAllowance {
    padding: 95px 0px 0px 0px;
  }

  #homeYspTopup {
    padding: 50px 0px 0px 0px;
  }

  #homeAgmBanner {
    padding: 55px 0px 0px 0px;
  }
}

/* iPhone 6+ Landscape */

@media (min-width:736px) {
  #homeNewAllowance {
    padding: 52px 0px 0px 0px;
  }

  #childSavingNewAllowance {
    padding: 90px 0px 0px 0px;
  }
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  .isaSeasonJisaBanner {
    min-height: 500px !important;
  }

  .jisaPageCarousel {
    margin-bottom: 455px !important;
  }

  .isaSeasonIsaBanner {
    min-height: 500px !important;
  }

  .isaPageCarousel {
    margin-bottom: 455px !important;
  }

  .isaHomeCarouselBanner {
    min-height: 413px !important;
  }

  .isaHomeCarousel {
    margin-bottom: 368px !important;
  }

  #homeIsaSeason {
    padding: 135px 0px 0px 0px;
  }

  .savingPageCarousel {
    margin-bottom: 445px !important;
  }

  #savingIsaBanner {
    margin-top: -75px;
    padding: 205px 0px 0px 0px;
  }

  .isaSasonSavingBanner2 {
    padding: 165px 0px 0px 0px !important;
  }

  .isaSeasonChildSavingBanner {
    min-height: 550px !important;
  }

  #childSavingIsaBanner {
    padding: 235px 0px 0px 0px;
  }

  .childSavingPageCarousel {
    margin-bottom: 505px !important;
  }

  #homeReferFriend {
    padding: 140px 0px 0px 0px;
  }

  #home190Years {
    padding: 140px 0px 0px 0px;
  }

  #homeNewAllowance {
    padding: 135px 0px 0px 0px;
  }

  .homeNewAllowanceTitle {
    font-size: 36px;
  }

  .homeNewAllowanceSubtitle {
    font-size: 24px;
  }

  #isaNewAllowance {
    padding: 155px 0px 0px 0px;
  }

  #jisaNewAllowance {
    padding: 160px 0px 0px 0px;
  }

  #childSavingNewAllowance {
    padding: 180px 0px 0px 0px;
  }

  #homeOpeningHours {
    padding: 130px 0px 0px 0px;
  }

  #homeYspTopup {
    padding: 120px 0px 0px 0px;
  }

  #homeYspTopup .productTitleSpaced {
    font-size: 42px !important;
  }

  #yourMutualCarousel {
    min-height: 325px;
    padding: 110px 0px 0px 0px;
  }

  #newsCarousel {
    min-height: 270px;
    padding: 115px 0px 0px 0px;
  }

  #pageCarousel .homeHeaderTitleBold {
    font-size: 42px;
  }

  #homeAgmBanner {
    padding: 135px 0px 0px 0px;
  }
}

/* Apple iPad's and BlackBerry PlayBook */

@media only screen and (min-width : 992px) and (max-width : 1024px) {
  #homeOpeningHours {
    padding: 115px 0px 0px 0px;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  .isaSeasonJisaBanner {
    min-height: 450px !important;
  }

  .jisaPageCarousel {
    margin-bottom: 545px !important;
  }

  .isaSeasonIsaBanner {
    min-height: 450px !important;
  }

  .isaPageCarousel {
    margin-bottom: 545px !important;
  }

  #homeIsaSeason {
    padding: 105px 0px 0px 0px;
  }

  .isaHomeCarouselBanner {
    min-height: 370px !important;
  }

  .isaHomeCarousel {
    margin-bottom: 465px !important;
  }

  #savingIsaBanner {
    margin-top: -45px;
    padding: 170px 0px 0px 0px;
  }

  .savingPageCarousel {
    margin-bottom: 515px !important;
  }

  .isaSasonSavingBanner2 {
    padding: 130px 0px 0px 0px !important;
  }

  #childSavingIsaBanner {
    padding: 175px 0px 0px 0px;
  }

  .isaSeasonChildSavingBanner {
    min-height: 410px !important;
  }

  #homeReferFriend {
    padding: 115px 0px 0px 0px;
  }

  #home190Years {
    padding: 115px 0px 0px 0px;
  }

  #homeNewAllowance {
    padding: 105px 0px 0px 0px;
  }

  .homeNewAllowanceTitle {
    font-size: 42px;
  }

  #isaNewAllowance {
    padding: 155px 0px 0px 0px;
  }

  #jisaNewAllowance {
    padding: 160px 0px 0px 0px;
  }

  #childSavingNewAllowance {
    padding: 140px 0px 0px 0px;
  }

  #yourMutualCarousel {
    min-height: 290px;
    padding: 80px 0px 0px 0px;
  }

  #pageCarousel {
    min-height: 260px;
    padding: 105px 0px 0px 0px;
  }

  #pageCarousel .homeHeaderTitleBold {
    font-size: 60px;
  }

  #homeAgmBanner {
    padding: 105px 0px 0px 0px;
  }

  #newsCarousel {
    padding: 75px 0px 0px;
  }
}

/* Large Devices, Wide Screens */

@media screen and (min-width : 1200px) {
  .isaSeasonIsaBanner {
    min-height: 390px !important;
  }

  .isaPageCarousel {
    margin-bottom: 485px !important;
  }

  .isaHomeCarouselBanner {
    min-height: 350px !important;
  }

  .isaHomeCarousel {
    margin-bottom: 445px !important;
  }

  #homeIsaSeason p {
    text-align: left !important;
  }

  #homeIsaSeason p.productTitleSpaced {
    text-align: left !important;
    padding-bottom: 20px;
    border-bottom: 5px solid #eee;
  }

  .homeISAHR {
    max-width: 850px;
  }

  #savingIsaBanner {
    margin-top: -45px;
    padding: 150px 0px 0px 0px;
  }

  .savingPageCarousel {
    margin-bottom: 465px !important;
  }

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

  .isaSeasonJisaBanner {
    min-height: 410px !important;
  }

  .jisaPageCarousel {
    margin-bottom: 505px !important;
  }

  #childSavingIsaBanner {
    padding: 150px 0px 0px 0px;
  }

  .isaSeasonChildSavingBanner {
    min-height: 375px !important;
  }

  .childSavingPageCarousel {
    margin-bottom: 470px !important;
  }

  .isaSeasonJisaBanner {
    padding: 40px 0px 0px 0px !important;
  }

  .isaSeasonJisaBanner2 {
    padding: 75px 0px 0px 0px !important;
  }

  #childSavingIsaBanner {
    background-position: top center;
  }

  #homeReferFriend {
    padding: 100px 0px 0px 0px;
  }

  #home190Years {
    padding: 100px 0px 0px 0px;
  }

  #homeNewAllowance {
    padding: 65px 0px 0px 0px;
  }

  .homeNewAllowanceTitle {
    font-size: 50px;
  }

  .homeNewAllowanceSubtitle {
    font-size: 32px;
  }

  #isaNewAllowance {
    padding: 135px 0px 0px 0px;
  }

  #jisaNewAllowance {
    padding: 125px 0px 0px 0px !important;
  }

  #childSavingNewAllowance {
    padding: 110px 0px 0px 0px;
  }

  #homeOpeningHours {
    padding: 90px 0px 0px 0px;
  }

  #homeYspTopup {
    padding: 90px 0px 0px 0px;
  }

  #homeYspTopup .productTitleSpaced {
    font-size: 50px !important;
  }

  #homeAgmBanner {
    padding: 85px 0px 0px 0px;
  }

  #newsCarousel {
    padding: 80px 0px 0px;
  }
}

@media only screen and (min-width : 1200px) {
  #homeIsaSeason p.homeIsaHeaderEst {
    color: #ffffff;
    text-align: right !important;
    margin-top: -15px;
    font-family: "Brandon Text";
  }

  #homeIsaSeason p.productSubtitleSpaced {
    margin-top: -10px;
  }

  #newsCarousel {
    padding: 80px 0px 0px;
  }
}
.newsletterSubSubtitle {
  font-family: 'Brandon Text';
  color: #FFF;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: left;
  margin-top: -15px;
  max-width: 90%;
  text-align: center;
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  .newsletterSubSubtitle {
    font-size: 24px;
    margin-bottom: 60px;
    text-align: left;
  }
}
.over50ExplainedSubtitle {
  font-family: 'Brandon Text';
  color: #13487a;
  font-weight: bold;
  font-size: 26px;
  text-align: center;
}

.over50ExplainedGreenBoxTop {
  background-color: #b9e4ca;
  padding: 30px 20px 20px 20px;
  margin-top: 30px;
}

.over50ExplainedGreenBox1,
.over50ExplainedGreenBox2,
.over50ExplainedGreenBox3 {
  background-color: #b9e4ca;
  padding: 20px;
  min-height: 245px;
}

#over50ExplainedQuote {
  background-color: #fef9e5;
  padding: 20px 20px 40px 20px;
}

#over50ExplainedOpen {
  padding: 20px 20px 40px 20px;
}

#over50ExplainedOtherInfo {
  background-color: #f4e8f2;
  padding: 20px 20px 40px 20px;
}

#over50ExplainedRequest {
  background-color: #eaf3d2;
  padding: 20px 20px 40px 20px;
}

#jisaExplainedHeader {
  background-color: #4cbceb !important;
  margin-top: -45px;
}

#isaExplainedHeader {
  background-color: #bdd96e !important;
  margin-top: -45px;
}

#jisaExplainedHeader h1,
#isaExplainedHeader h1 {
  font-family: 'Brandon Text' !important;
  color: #fff;
  text-align: center;
  text-shadow: 2px 2px 2px rgba(99, 99, 99, 1);
  margin-top: 10px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
}

#jisaExplainedHeader h2,
#isaExplainedHeader h2,
#over50ExplainedHeader h2 {
  font-family: 'Brandon Text' !important;
  color: #fff;
  text-align: center;
  text-shadow: 2px 2px 2px rgba(99, 99, 99, 1);
  margin-top: 20px;
  margin-bottom: 30px;
}

#jisaExplainedFacts {
  background-color: #edf3cf;
}

#isaExplainedFacts {
  background-color: #f4e8f2;
  padding: 40px 0px;
}

#over50ExplainedFacts {
  background-color: #f4e8f2;
  padding: 40px 0px;
}

#isaYouCanSave {
  background-color: #eaf3d2;
  padding: 20px 20px 40px 20px;
}

#over50ExplainedWork {
  background-color: #eaf3d2;
  padding: 20px 20px 40px 20px;
}

#isaExplainedGrowth {
  background-color: #d9f1fb;
  padding: 40px 0px;
}

#jisaExplainedFacts h2,
#isaExplainedFacts h2,
#over50ExplainedFacts h2,
#isaYouCanSave h2,
#over50ExplainedWork h2,
#over50ExplainedQuote h2,
#over50ExplainedOpen h2,
#over50ExplainedRequest h2,
#jisaExplainedGrowth h2,
#isaExplainedGrowth h2,
#jisaExplainedAffordability h2,
#isaExplainedAffordability h2,
#jisaExplainedHow h2,
#jisaExplainedMoreInfo h2,
#isaExplainedMoreInfo h2 {
  font-family: 'Brandon Text' !important;
  color: #183e7a;
  text-align: center;
  font-weight: bold;
  margin: 20px 0px;
}

#over50ExplainedOtherInfo h2 {
  font-family: 'Brandon Text' !important;
  color: #183e7a;
  text-align: center;
  font-weight: bold;
  margin: 20px 0px 40px 0px;
}

#over50ExplainedOtherInfo h3 {
  font-family: 'Brandon Text';
  font-weight: bold;
  color: #13487a;
  font-size: 24px;
  margin: 20px 0px;
  text-align: center;
}

.over50ExplainedBtn {
  display: block;
  width: 100%;
  background-color: #00b2d7 !important;
  color: #fff !important;
  font-family: 'Brandon Text' !important;
  border: 0px !important;
  border-radius: 0px !important;
  font-weight: bold;
  font-size: 28px;
}

.over50ExplainedP {
  font-family: 'Brandon Text' !important;
  color: #183e7a;
  text-align: center;
  font-size: 20px;
  letter-spacing: -1px;
  margin-bottom: 30px;
}

.jisaExplainedP {
  font-family: 'Brandon Text' !important;
  color: #183e7a;
  text-align: center;
  font-size: 19px;
  letter-spacing: -1px;
}

#jisaExplainedGrowth {
  background-color: #eee4ed;
}

#jisaExplainedGrowth h3,
#isaExplainedGrowth h3,
#jisaExplainedAffordability h3,
#isaExplainedAffordability h3,
#jisaExplainedMoreInfo h3
#iisaExplainedMoreInfo h3 {
  font-family: 'Brandon Text' !important;
  color: #183e7a;
  text-align: center;
  font-weight: bold;
  margin: 20px 0px;
}

#jisaExplainedGrowth h4,
#isaExplainedGrowth h4 {
  font-family: 'Brandon Text' !important;
  color: #183e7a;
  text-align: center;
  font-weight: bold;
  margin: 20px 0px;
}

#jisaExplainedAffordability {
  background-color: #e5f7fb;
}

#isaExplainedAffordability {
  background-color: #fef9e5;
  padding: 40px 0px;
}

#jisaExplainedHow {
  background-color: #fff;
}

#jisaExplainedHow button,
#jisaExplainedMoreInfo button,
#isaExplainedHow button,
#over50ExplainedOpen button,
#isaExplainedMoreInfo button {
  display: block;
  width: 100%;
  background-color: #00b2d7 !important;
  color: #fff !important;
  font-family: 'Brandon Text' !important;
  border: 0px !important;
  border-radius: 0px !important;
  font-weight: bold;
  font-size: 28px;
}

#jisaExplainedMoreInfo {
  background-color: #ffe8bd;
}

#isaExplainedMoreInfo {
  background-color: #eaf3d2;
}

#jisaExplainedMoreInfo label,
#isaExplainedMoreInfo label {
  font-family: 'Brandon Text' !important;
}

#jisaExplainedMoreInfo button,
#jisaExplainedMoreInfo button {
  margin-top: 20px;
  font-size: 20px;
}

#jisaExplainedFacts .row,
#jisaExplainedGrowth .row,
#jisaExplainedHow .row,
#jisaExplainedMoreInfo .row,
#isaExplainedMoreInfo .row,
#jisaExplainedAffordability .row {
  margin: 25px 0px 0px 0px;
}

#jisaExplainedAffordability #mobile {
  margin: 25px;
  margin-left: 0px;
  display: inline-block;
  height: 250px;
  background: #00b2d7;
}

#jisaExplainedAffordability #large {
  background: #00b2d7;
  margin: 25px;
  margin-bottom: 50px;
}

#jisaExplainedGrowth .row {
  padding: 20px 0px;
}

.isaCalcTitle {
  font-family: 'Brandon Text';
  font-size: 26px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
}

.isaCalcTitle2 {
  font-family: 'Brandon Text';
  font-size: 20px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
}

.isaCalcContent {
  font-family: 'Brandon Text';
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  color: #FFF;
}

.isaCalcLabel {
  font-family: 'Brandon Text';
  font-size: 18px;
  line-height: 1.4;
  color: #FFF;
  display: block;
  margin-bottom: 0px;
}

.isaCalcInput {
  display: block;
  max-width: 100%;
  border-radius: 0px;
  margin-left: 5px;
  border: 0px;
  font-family: 'Brandon Text';
  color: #13487a;
  font-weight: bold;
}

.isaCalcInputSection1 {
  padding-top: 0px !important;
}

.isaCalcInputSection1,
.isaCalcInputSection2 {
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
}

.isaEssentialBox1 {
  min-height: 250px;
  margin-top: 0px !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}

.isaEssentialBox2 {
  min-height: 250px;
  padding-top: 0px !important;
  margin-bottom: 0px !important;
}

.isaCalcHR {
  margin-top: 35px;
  margin-bottom: 20px;
}

.isaCalcEssentialResultBox1 {
  margin-bottom: 0px !important;
}

.isaCalcEssentialResultBox2 {
  padding-top: 10px !important;
}

.isaCalcEssential {
  border: 1px solid #FFF;
  padding: 10px 20px;
  background-color: #f1858c;
}

.isaCalcEssentialResult {
  font-family: 'Brandon Text';
  font-size: 42px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  margin-bottom: 0px;
  margin-top: 0px;
}

.isaCalcSavePink {
  background-color: #f5aeb2;
  padding: 10px 20px;
  margin-bottom: 10px;
}

.isaCalcSavePinkText {
  font-family: 'Brandon Text';
  font-weight: bold;
  font-size: 22px;
  color: #f5aeb2;
  text-align: center;
}

.isaCalcSaveBlue {
  background-color: #80d8eb;
  padding: 10px 20px;
  margin-bottom: 10px;
}

.isaCalcSaveBlueText {
  font-family: 'Brandon Text';
  font-weight: bold;
  font-size: 22px;
  color: #80d8eb;
  text-align: center;
}

.isaCalcSaveGreen {
  background-color: #d9e6b1;
  padding: 10px 20px;
  margin-bottom: 10px;
}

.isaCalcSaveGreenText {
  font-family: 'Brandon Text';
  font-weight: bold;
  font-size: 22px;
  color: #d9e6b1;
  text-align: center;
}

.isaCalcSaveResult {
  font-family: 'Brandon Text';
  font-size: 42px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  margin-bottom: 0px;
  margin-top: 0px;
}

.isaCalcBlue {
  background-color: #80d8eb;
  padding: 20px 0px;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

.isaCalcPink {
  background-color: #f5aeb2;
  padding: 20px 0px;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

.isaCalcGreen {
  background-color: #d9e6b1;
  padding: 20px 0px;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

.isaCalcLightBlue {
  background-color: #ecf6fb;
  padding: 20px 20px;
}

#luxuriesSlider,
#savingsSlider {
  margin: 20px 10px 50px 10px;
}

#rs_container {
  display: none;
}

.over50CalcTabs {
  margin-top: 30px;
}

a.over50CalcTab {
  padding: 15px 30px !important;
  font-size: 20px !important;
  text-align: center !important;
  font-weight: 400 !important;
  cursor: pointer;
}

.optionSpan {
  font-weight: bold;
  font-size: 26px;
}

.over50CalcTabContent {
  background-color: #ccf0f7;
  padding: 30px;
}

.over50CalcTabContent p {
  color: #13487a;
  font-size: 22px;
  font-weight: bold;
  font-family: 'Brandon Text';
  text-align: center;
}

.over50CalcInput {
  display: block;
  max-width: 320px;
  border-radius: 0px;
  margin-left: 5px;
  border: 0px;
  font-family: 'Brandon Text';
  color: #13487a;
  font-weight: bold;
  margin: 30px auto;
}

.over50CalcMarginTop {
  margin-top: 15px;
}

.over50CalcCenterRadio {
  max-width: 180px;
  display: block;
  margin: 15px auto 30px auto;
}

input#option1Smoker-true,
input#option1Smoker-false,
input#option2Smoker-true,
input#option1Smoker-false {
  width: 80px;
  height: 75px;
  margin: 0px !important;
  display: inline-block !important;
}

.over50CalcSliderWrap {
  height: 65px;
}

.over50CalcResult {
  background-color: #ccf0f7;
  margin-top: 20px;
  padding: 30px;
}

.over50CalcResultTitle {
  font-family: 'Brandon Text';
  font-weight: bold;
  font-size: 26px;
  color: #13487a;
  margin: 0px;
  text-align: center;
}

.over50CalcResultBox {
  display: block;
  margin: 30px auto;
  padding: 15px;
  background-color: #00b2d7;
  max-width: 460px;
}

.over50CalcResultBox p {
  color: #FFF;
  font-family: 'Brandon Text';
  font-weight: bold;
  font-size: 52px;
  margin: 0px;
  text-align: center;
}

.over50CalcResultBtn {
  display: block;
  width: 185px;
  margin: 0px auto !important;
  background-color: #00b2d7 !important;
  color: #fff !important;
  font-family: 'Brandon Text' !important;
  border: 0px !important;
  border-radius: 0px !important;
  font-weight: bold;
  font-size: 22px;
}

#option1Errors,
#option2Errors {
  display: block;
  margin: 30px auto 0px auto;
}

#option1Errors p,
#option2Errors p {
  color: #a94442;
}

.over50CalcTitle {
  font-family: 'Brandon Text' !important;
  color: #183e7a;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px !important;
  font-size: 30px !important;
}

.over50CalcIntro {
  font-family: 'Brandon Text' !important;
  color: #183e7a;
  text-align: center;
  font-size: 19px !important;
  letter-spacing: -1px;
  margin-bottom: 60px;
  font-weight: 400 !important;
}

.over50CalcPremiumTitle {
  font-family: 'Brandon Text' !important;
  color: #183e7a;
  text-align: center;
  font-weight: bold;
  font-size: 30px !important;
}

#cashInvestmentSlider,
#investmentSlider {
  margin: 30px auto;
}

#cashInvestmentAmount,
#isaInvestmentAmount {
  font-family: 'Brandon Text';
  color: #13487a;
  font-weight: bold;
  font-size: 30px;
}

.isaSliderIcon {
  margin-top: 120px;
  margin-bottom: 30px;
}

#jisaExplainedAffordability #large {
  background: #FFF;
  margin: 25px 25px 50px;
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  .over50CalcResultBtn {
    display: block;
    width: 460px;
    margin: 0px auto;
    background-color: #00b2d7 !important;
    color: #fff !important;
    font-family: 'Brandon Text' !important;
    border: 0px !important;
    border-radius: 0px !important;
    font-weight: bold;
    font-size: 28px;
  }

  .isaCalcInputSection1 {
    margin-bottom: 10px !important;
    padding-bottom: 20px !important;
  }

  .isaCalcInputSection2,
  .isaCalcInputSection3 {
    padding-top: 0px !important;
    padding-bottom: 20px !important;
  }

  .isaCalcEssentialResultBox1 {
    margin-bottom: 10px !important;
  }

  .isaCalcEssentialResultBox2 {
    padding-top: 20px !important;
  }

  .isaCalcSaveBlueText,
  .isaCalcSaveGreenText {
    margin-top: 14px;
    margin-bottom: 26px;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  #jisaExplainedFacts .row,
  #jisaExplainedGrowth .row,
  #jisaExplainedHow .row,
  #jisaExplainedMoreInfo .row,
  #jisaExplainedAffordability .row {
    margin: 45px 0px 0px 0px;
  }

  .downarrow {
    margin: 60px auto 0 auto;
  }

  .isaCalcSaveBlueText,
  .isaCalcSaveGreenText {
    margin-top: 0px;
    margin-bottom: 10px;
  }

  .isaCalcLabel {
    display: inline-block;
  }

  .isaCalcInput {
    display: inline-block;
    max-width: 50%;
  }

  .isaCalcEssentialResultBox1,
  .isaCalcEssentialResultBox2 {
    padding-top: 0px !important;
  }
}
.agmSidebarAd {
  margin: 20px auto 0px auto;
  padding: 20px;
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/agm-advert-bg.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  height: 395px;
}

.agmSidebarText1 {
  text-align: center;
  font-size: 32px;
  font-family: 'Brandon Text';
  color: #FFF;
  font-weight: bold;
  margin-bottom: 0px;
}

.agmSidebarText2 {
  text-align: center;
  font-size: 50px;
  font-family: 'Brandon Text';
  color: #FFF;
  font-weight: bold;
  margin-top: -10px;
}

.agmSidebarText3 {
  text-align: center;
  font-size: 22px;
  font-family: 'Brandon Text';
  color: #FFF;
  font-weight: bold;
  margin-bottom: 15px;
}

.agmTextBox1 {
  margin-bottom: 140px;
}



.agmSidebarColourBlocks {
  margin-bottom: 35px;
}

.agmSidebarBtn {
  width: 100%;
  font-size: 20px;
}
#searchResultsBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/search-results-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 195px;
  margin-top: -45px;
  padding: 60px 0px 0px 0px;
}

.searchBannerTitle {
  font-family: 'Brandon Text';
  color: #FFF;
  font-weight: bold;
  text-align: center;
  font-size: 32px;
  line-height: 1.2;
}

.searchResultsHeader {
  border: 0px;
  margin: 40px 0px 0px 0px;
}

.searchResultsTitle {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 32px;
  margin: 20px 0px;
}

.searchResultsArticleTitle {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 24px;
}

.searchResultExcerpt p {
  color: #333 !important;
}

.searchWidget,
.faqWidget {
  background-color: #f5f5f5;
  padding: 15px 30px;
  margin: 30px 0px;
}

.searchWidgetTitle,
.faqWidgetTitle {
  font-family: 'Brandon Text';
  font-size: 26px;
  color: #13487a;
  font-weight: bold;
  text-align: center;
  margin: 0px 0px 15px 0px;
}

.faqWidgetText {
  font-size: 16px;
  color: #13487a;
  text-align: center;
  line-height: 1.4;
}

.faqWidgetLink {
  color: #13487a;
  text-decoration: underline !important;
  display: block;
  text-align: center;
  margin-bottom: 15px;
  font-family: 'Brandon Text';
}

.searchWidgetInput {
  border-radius: 0px;
  margin-bottom: 15px !important;
}

.searchWidgetBtn {
  display: block;
  background-color: #13487a;
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 16px;
  border-radius: 0px;
  border: 0px;
  height: 40px;
  padding: 6px 45px;
  margin: 0px auto !important;
}

.searchWidgetBtn:hover {
  background-color: #103d67;
  border: 0px;
  color: #FFF;
}

.noResultsFound {
  font-size: 16px;
  color: #333;
}

.noResultsSearchBox {
  margin: 30px 30px 30px 0px;
  background-color: #e5f7fb;
  padding: 30px;
}

.noResultsSearchBoxTitle {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 24px;
  margin-bottom: 30px;
}

.noResultsInput {
  margin-bottom: 25px;
}

.noResultsLink {
  color: #13487a;
  font-size: 16px;
  font-family: 'Brandon Text';
}

.downarrow {
  width: 50px;
  margin: 15px auto 15px auto;
  display: block;
}

/* Galaxy S4 Portrait */

@media only screen and  (min-width : 360px) and (max-width : 360px) {
  #searchResultsBanner {
    padding: 80px 0px 0px 0px;
  }
}

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) and (max-width : 375px) {
  #searchResultsBanner {
    padding: 80px 0px 0px 0px;
  }
}

/* Nexus 4 Portrait */

@media only screen and  (min-width : 384px) and (max-width : 384px) {
  #searchResultsBanner {
    padding: 85px 0px 0px 0px;
  }
}

/* iPhone 6 + Portrait */

@media only screen and  (min-width : 414px) and (max-width : 414px) {
  #searchResultsBanner {
    padding: 105px 0px 0px 0px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width : 480px) {
  #searchResultsBanner {
    background-position: top right;
    padding: 70px 0px 0px 0px;
  }

  .searchBannerTitle {
    font-size: 42px;
  }
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  .searchBannerTitle {
    font-size: 40px;
  }

  #searchResultsBanner {
    background-position: top center;
    padding: 70px 0px 0px 0px;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  #searchBox {
    max-width: 100px;
    border: 0px;
    border-bottom: 1px solid #173e7a;
    font-family: "Brandon Text", Arial, sans-serif !important;
  }

  #search {
    list-style-type: none;
    display: inline-block;
    float: right;
    position: relative;
    top: -45px;
    left: 25px;
    width: 145px;
    z-index: 9000;
    top: -5px;
  }

  #searchResultsBanner {
    background-position: top center;
    padding: 100px 0px 0px 0px;
    min-height: 255px;
  }

  .searchBannerTitle {
    font-size: 56px;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width : 1200px) {
  #search {
    top: -5px;
    left: 0px;
    width: 180px;
  }

  #searchBox {
    max-width: 180px;
  }

  #searchResultsBanner {
    background-position: top center;
    padding: 110px 0px 0px 0px;
    min-height: 290px;
  }

  .searchBannerTitle {
    font-size: 68px;
  }
}
#savingOptionBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/choose-saving-banner.jpg);
  background-position: top center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 230px;
  margin-top: -45px;
  padding: 60px 0px 0px 0px;
}

.savingOptionTitle {
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}

.savingOptionSubtitle {
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 18px;
  text-align: center;
  line-height: 1.2;
}

#savingOptionIntro,
#savingOptionChoicesChild,
#savingOptionChoicesMyself,
#savingOptionISALumpSumResult,
#savingOptionISAMonthlyResult,
#savingOptionBONUSResult,
#savingOptionYSPResultWithCTF,
#savingOptionUSPParentResult,
#savingOptionISAOrBONUSResult,
#savingOptionYSPNonParentResult,
#savingOptionUSPNonParentResult,
#savingOptionYSPParentResult,
#savingOptionYSPorJISAResult,
#savingOptionUSPorJISAResult,
#savingOptionJISAResult {
  padding: 40px 0px;
}

#savingOptionChildAge11WithCTF,
#savingOptionChildAge16,
#savingOptionChildAge11 {
  padding: 40px 0px;
  background-color: #e5f7fb;
}

#savingOptionIntro p {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 0px;
}

#savingOptionWho {
  background-color: #fcecbf;
  padding: 40px 0px;
}

#savingOptionChoices,
#savingOptionChoices2 {
  background-color: #fef9e5;
  padding: 40px 0px;
}

#savingOptionRelationship {
  padding: 40px 0px;
  background-color: #eaf3d2;
}

#savingOptionHasPlan {
  padding: 40px 0px;
  background-color: #f2eaf3;
}

#savingOptionChildAge {
  padding: 40px 0px;
  background-color: #d9f1fb;
}

#savingOptionChildAccess {
  padding: 40px 0px;
  background-color: #ffe8bd;
}

#savingOptionInvestment {
  padding: 40px 0px;
  background-color: #fef9e5;
}

#savingOptionResult,
#savingOptionResult2 {
  padding: 40px 0px;
  background-color: #def4f1;
}

#savingOptionPayment {
  padding: 40px 0px;
  background-color: #eaf3d2;
}

#savingOptionAdultAccess {
  padding: 40px 0px;
  background-color: #f2eaf3;
}

#savingOptionAdultInvestment {
  padding: 40px 0px;
  background-color: #fef9e5;
}

#savingOptionWho p,
#savingOptionChoices p,
#savingOptionChoices2 p,
#savingOptionRelationship p,
#savingOptionHasPlan p,
#savingOptionChildAge p,
#savingOptionChildAccess p,
#savingOptionInvestment p,
#savingOptionResult p,
#savingOptionResult2 p,
#savingOptionPayment p,
#savingOptionAdultAccess p,
#savingOptionAdultInvestment p,
#savingOptionChoicesChild p,
#savingOptionChoicesMyself p,
#savingOptionISALumpSumResult p,
#savingOptionISAMonthlyResult p,
#savingOptionBONUSResult p,
#savingOptionYSPResultWithCTF p,
#savingOptionUSPParentResult p,
#savingOptionISAOrBONUSResult p,
#savingOptionYSPNonParentResult p,
#savingOptionUSPNonParentResult p,
#savingOptionYSPParentResult p,
#savingOptionYSPorJISAResult p,
#savingOptionUSPorJISAResult p,
#savingOptionJISAResult p {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 18px;
  text-align: center;
  line-height: 1.4;
}

.savingOptionSectionTitle {
  font-family: 'Brandon Text';
  color: #13487a;
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  margin-bottom: 30px;
}

.savingOptionIconTitle {
  font-family: 'Brandon Text';
  color: #13487a;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}

.chooseSavingIcon {
  display: block;
  margin: 20px auto;
  vertical-align: bottom;
}

.chooseSavingIcon:hover {
  cursor: pointer;
}

.chooseSavingBtn {
  display: block;
  margin: 30px auto 0px auto;
  background-color: #00b2d7;
  padding: 15px 40px;
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  border-radius: 0px;
  max-width: 280px;
}

.chooseSavingBtn:hover {
  background-color: #05a3c4;
  color: #FFF;
}

.savingOptionResultTitle {
  font-family: 'Brandon Text';
  font-size: 52px;
  color: #000;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.savingOptionResultSubtitle {
  font-family: 'Brandon Text' !important;
  font-size: 32px !important;
  color: #134871 !important;
  text-align: center !important;
  margin-bottom: 30px !important;
}

.savingOptionResultContact {
  font-size: 24px !important;
  margin-top: 30px !important;
}

.noUi-value-horizontal {
  margin-left: -20px;
  padding-top: 20px;
  color: #13487a;
  font-family: 'Brandon Text';
}

.noUi-handle {
  border: 1px solid #029fbf;
  border-radius: 3px;
  background: #00b2d7;
  cursor: default;
  box-shadow: none;
}

.noUi-handle:after,
.noUi-handle:before {
  background: #00b2d7;
}

/* Galaxy S4 Portrait */

@media only screen and  (min-width : 360px) and (max-width : 360px) {
  #savingOptionBanner {
    padding: 90px 0px 0px 0px;
  }
}

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) and (max-width : 375px) {
  #savingOptionBanner {
    padding: 90px 0px 0px 0px;
  }
}

/* Nexus 6 Portrait */

@media only screen and  (min-width : 412px) and (max-width : 412px) {
  #savingOptionBanner {
    padding: 110px 0px 0px 0px;
    min-height: 300px;
  }
}

/* iPhone 6 + Portrait */

@media only screen and  (min-width : 414px) and (max-width : 414px) {
  #savingOptionBanner {
    padding: 110px 0px 0px 0px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width : 480px) {
  #savingOptionBanner {
    min-height: 175px;
    padding: 40px 0px 0px 0px;
  }
}

/* Nexus 6 Landscape */

@media (min-width:732px) {
  #savingOptionBanner {
    min-height: 220px;
    padding: 70px 0px 0px 0px;
  }
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  #savingOptionBanner {
    min-height: 250px;
    padding: 80px 0px 0px 0px;
  }

  #savingOptionIntro p {
    font-size: 32px;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  #savingOptionBanner {
    min-height: 345px;
    padding: 95px 0px 0px 0px;
  }

  .savingOptionTitle {
    font-size: 64px;
    margin-bottom: 25px;
  }

  .savingOptionSubtitle {
    font-size: 32px;
  }

  #savingOptionIntro p {
    font-size: 32px;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width : 1200px) {
  #savingOptionBanner {
    min-height: 410px;
    padding: 110px 0px 0px 0px;
  }

  .savingOptionTitle {
    font-size: 80px;
    margin-bottom: 30px;
  }
}

#regulatoryStatement {
  font-size: 16px !important;
  font-family: 'Brandon Text' !important;
  color: #89a3bc !important;
}
#celebrate190Banner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/member-stories-banner.jpg);
  background-position: top center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 230px;
  margin-top: -45px;
  padding: 60px 0px 0px 0px;
}

.celebrate190BannerTitle {
  font-family: 'Brandon Text';
  font-size: 24px;
  text-align: center;
  margin: 0px;
  font-weight: bold;
  line-height: 1.4;
  color: #FFF;
}

.memberStoriesSubtitle {
  font-family: 'Brandon Text';
  font-size: 16px;
  text-align: center;
  margin-top: 15px;
  line-height: 1.4;
  color: #FFF;
}

#celebrate190Intro {
  padding: 40px 0px;
  background-color: #F5F5F5;
}

.celebrate190CelebrateBox,
.celebrate190HistoryBox,
.celebrate190OurPlansBox {
  background-color: #183e7a;
  padding: 30px;
}

.celebrate190HistoryBox {
  margin: 30px 0px;
}

.celebrateBoxTitle190 {
  font-family: 'Brandon Text';
  font-size: 42px;
  font-weight: bold;
  color: #92bf1f;
  text-decoration: underline;
  margin-bottom: 0px;
}

.historyBoxTitle190 {
  font-family: 'Brandon Text';
  font-size: 42px;
  font-weight: bold;
  color: #10b0d5;
  text-decoration: underline;
  margin-bottom: 0px;
}

.ourPlansBoxTitle190 {
  font-family: 'Brandon Text';
  font-size: 42px;
  font-weight: bold;
  color: #f9bb51;
  text-decoration: underline;
  margin-bottom: 0px;
}

#celebrate190CelebrateSection,
#celebrate190OurPlansSection {
  padding: 40px 0px;
}

#celebrate190HistorySection {
  padding: 40px 0px;
  background-color: #F5F5F5;
}

#celebrate190CelebrateSection h2 {
  font-family: 'Brandon Text';
  font-size: 42px;
  font-weight: bold;
  color: #92bf1f;
  text-align: center;
  margin-bottom: 30px;
}

#celebrate190HistorySection h2 {
  font-family: 'Brandon Text';
  font-size: 42px;
  font-weight: bold;
  color: #10b0d5;
  text-align: center;
  margin-bottom: 30px;
}

#celebrate190OurPlansSection h2 {
  font-family: 'Brandon Text';
  font-size: 42px;
  font-weight: bold;
  color: #f9bb51;
  text-align: center;
  margin-bottom: 30px;
}

#celebrate190CelebrateSection p,
#celebrate190HistorySection p,
#celebrate190OurPlansSection p {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 0px;
}

.longestServingBox {
  padding: 30px;
  background-color: #f4f9ef;
  margin-top: 30px;
  min-height: 560px;
}

.shareMemoriesBox {
  padding: 30px;
  background-color: #e7f7fb;
  margin-top: 30px;
  min-height: 560px;
}

.decemberChildBox {
  padding: 30px;
  background-color: #fef8ed;
  margin-top: 30px;
  min-height: 560px;
}

.generationsBox {
  padding: 30px;
  background-color: #f5ecf4;
  margin-top: 30px;
  min-height: 560px;
}

.longestServingTitle {
  font-family: 'Brandon Text';
  font-size: 28px;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #92bf1f;
}

.shareMemoriesTitle {
  font-family: 'Brandon Text';
  font-size: 28px;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #10b0d5;
}

.decemberChildTitle {
  font-family: 'Brandon Text';
  font-size: 28px;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #f9bb51;
}

.generationsTitle {
  font-family: 'Brandon Text';
  font-size: 28px;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #9f4590;
}

.longestServingBox p,
.shareMemoriesBox p,
.decemberChildBox p,
.generationsBox p {
  font-family: 'Brandon Text' !important;
}

.celebrateBtn1 {
  display: block;
  margin: 30px auto 0px auto;
  background-color: #92bf1f;
  padding: 15px 40px;
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  border-radius: 0px;
  max-width: 100%;
}

.celebrateBtn1:hover {
  background-color: #89b21f;
  color: #FFF;
}

.celebrateBtn2 {
  display: block;
  margin: 30px auto 0px auto;
  background-color: #00b2d7;
  padding: 15px 40px;
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  border-radius: 0px;
  max-width: 100%;
}

.celebrateBtn2:hover {
  background-color: #05a3c4;
  color: #FFF;
}

.celebrateBtn3 {
  display: block;
  margin: 30px auto 0px auto;
  background-color: #f9bb51;
  padding: 15px 40px;
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  border-radius: 0px;
  max-width: 100%;
}

.celebrateBtn3:hover {
  background-color: #ebb04c;
  color: #FFF;
}

.celebrateBtn4 {
  display: block;
  margin: 30px auto 0px auto;
  background-color: #9f4590;
  padding: 15px 40px;
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  border-radius: 0px;
  max-width: 100%;
}

.celebrateBtn4:hover {
  background-color: #8e3d81;
  color: #FFF;
}

.ourPlansSavingBox {
  background-color: #e7f7fb;
  padding: 30px 0px;
  margin: 0px 15px 30px 15px;
}

.ourPlansSavingContent {
  width: 100%;
  /* float: left; */
  padding: 0px 30px;
  margin-bottom: 30px;
}

.ourPlansSavingContent p {
  font-family: 'Brandon Text' !important;
  color: #00b2d7 !important;
}

.ourPlansSavingBoxTitle {
  font-family: 'Brandon Text';
  font-size: 42px;
  font-weight: bold;
  color: #00b2d7;
  text-align: center;
  margin-bottom: 30px;
}

.ourPlansSavingBoxSubtitle {
  font-family: 'Brandon Text';
  font-size: 28px;
  font-weight: bold;
  color: #00b2d7;
  text-align: center;
  margin-bottom: 20px;
}

.ourPlansProtectionBox {
  background-color: #f4f9ef;
  padding: 30px;
  margin-bottom: 30px;
}

.ourPlansProtectionBoxTitle {
  font-family: 'Brandon Text';
  font-size: 42px;
  font-weight: bold;
  color: #92bf1f;
  text-align: center;
  margin-bottom: 30px;
}

.ourPlansProtectionBoxSubtitle {
  font-family: 'Brandon Text';
  font-size: 28px;
  font-weight: bold;
  color: #92bf1f;
  text-align: center;
  margin-bottom: 20px;
}

.ourPlansProtectionBox p {
  font-family: 'Brandon Text' !important;
  color: #92bf1f !important;
}

.ourPlansSavingBtn {
  display: block;
  margin: 30px auto 0px auto;
  background-color: #00b2d7;
  padding: 15px 20px;
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-radius: 0px;
  max-width: 100%;
}

.ourPlansSavingBtn:hover {
  background-color: #05a3c4;
  color: #FFF;
}

.ourPlansProtectionBtn {
  display: block;
  margin: 30px auto 0px auto;
  background-color: #92bf1f;
  padding: 15px 20px;
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-radius: 0px;
  max-width: 320px;
}

.ourPlansProtectionBtn:hover {
  background-color: #89b21f;
  color: #FFF;
}

.ourPlansLifeCoverBtn {
  display: block;
  margin: 30px auto 0px auto;
  background-color: #f9bb51;
  padding: 15px 20px;
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-radius: 0px;
  max-width: 320px;
}

.ourPlansLifeCoverBtn:hover {
  background-color: #ebb04c;
  color: #FFF;
}

.ourPlansLifeCoverBox {
  background-color: #fef8ed;
  padding: 30px;
}

.ourPlansLifeCoverBox p {
  font-family: 'Brandon Text' !important;
  color: #f9bb51 !important;
}

.ourPlansLifeCoverBoxTitle {
  font-family: 'Brandon Text';
  font-size: 42px;
  font-weight: bold;
  color: #f9bb51;
  text-align: center;
  margin-bottom: 30px;
}

.ourPlansLifeCoverBoxSubtitle {
  font-family: 'Brandon Text';
  font-size: 28px;
  font-weight: bold;
  color: #f9bb51;
  text-align: center;
  margin-bottom: 20px;
}

#celebrate190YearsBreadcrumb {
  padding: 40px 0px;
}

.christmasDayChildTitle {
  font-family: 'Brandon Text';
  color: #13487a;
  font-weight: bold;
  font-size: 28px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 40px;
}

#christmasDayChildContent {
  padding: 40px 0px;
  background-color: #ccf0f7;
}

#christmasDayChildContent p {
  text-align: center;
  color: #13487a;
  line-height: 1.4;
  font-size: 18px;
}

.christmasChildBtn {
  display: block;
  background-color: #98c662;
  border-radius: 0px;
  color: #fff;
  font-family: 'Brandon Text';
  font-size: 18px;
  max-width: 320px;
  padding: 15px 45px;
  margin: 10px auto 0px auto;
}

.christmasChildBtn:hover {
  background-color: #92bd5f;
  color: #fff;
}

label.christmasChildLabel {
  width: 100px;
}

.christmasChildInput {
  width: 100% !important;
}

.christmasChildHR {
  border-top: 2px solid #80d8eb;
  margin: 30px 0px;
}

.christmasChildQuestion {
  font-family: 'Brandon Text';
  color: #13487a;
  font-weight: bold;
  font-size: 16px !important;
  text-align: left !important;
}

.christmasRadioLabel {
  margin: 20px 0px 0px 0px;
  font-weight: 400;
  padding: 0px;
}

input.christmasRadio {
  margin-left: 20px !important;
  margin-right: 20px !important;
  display: inline-block !important;
}

.celebrate190TextArea {
  resize: none;
  height: 200px !important;
  margin-top: 30px;
  width: 100% !important;
}

#thankYou {
  padding: 40px;
}

#thankYou h2 {
  font-family: 'Brandon Text';
  font-size: 32px;
  text-align: center;
  margin-bottom: 0px;
  color: #13487a;
}

/* Galaxy S4 Portrait */

@media only screen and  (min-width : 360px) and (max-width : 360px) {
  #celebrate190Banner {
    padding: 85px 0px 0px 0px;
  }
}

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) and (max-width : 375px) {
  #celebrate190Banner {
    padding: 85px 0px 0px 0px;
  }
}

/* Nexus 4 Portrait */

@media only screen and  (min-width : 384px) and (max-width : 384px) {
  #celebrate190Banner {
    padding: 80px 0px 0px 0px;
  }
}

/* iPhone 6 + Portrait */

@media only screen and  (min-width : 414px) and (max-width : 414px) {
  #celebrate190Banner {
    padding: 100px 0px 0px 0px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width : 480px) {
  #celebrate190Banner {
    min-height: 170px;
    padding: 50px 0px 0px 0px;
  }

  .celebrate190BannerTitle {
    font-size: 26px;
  }
}

/* Nexus 6 Landscape */

@media (min-width:732px) {
  #celebrate190Banner {
    min-height: 250px;
    padding: 95px 0px 0px 0px;
  }
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  .celebrateBoxStart {
    min-height: 250px;
  }

  #celebrate190Banner {
    min-height: 300px;
    padding: 115px 0px 0px 0px;
  }

  .celebrate190BannerTitle {
    font-size: 32px;
  }

  .celebrate190HistoryBox {
    margin: 0px;
  }

  .celebrateBoxTitle190,
  .historyBoxTitle190,
  .ourPlansBoxTitle190 {
    font-size: 30px;
  }

  .ourPlansBoxIcon {
    margin-top: 36px !important;
  }

  .longestServingBox,
  .shareMemoriesBox {
    min-height: 680px;
  }

  .decemberChildBox,
  .generationsBox {
    min-height: 735px;
  }

  .ourPlansSavingBox {
    background-color: #e7f7fb;
    padding: 30px 0px;
    margin: 0px 0px 30px 0px;
  }

  .ourPlansLifeCoverBox,
  .ourPlansProtectionBox {
    min-height: 415px;
  }

  .ourPlansProtectionBoxSubtitle {
    height: 60px;
  }

  .ourPlansProtectionBox p,
  .ourPlansLifeCoverBox p {
    height: 115px;
  }

  .ourPlansSavingBox {
    background-color: #e7f7fb;
    padding: 30px 0px;
    margin: 0px 0px 30px 15px;
    max-width: 96%;
  }

  .christmasChildInput {
    width: 365px !important;
  }

  .memberStoriesSubtitle {
    font-size: 20px;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  #celebrate190Banner {
    min-height: 360px;
    padding: 135px 0px 0px 0px;
  }

  .celebrate190BannerTitle {
    font-size: 48px;
    line-height: 1.2;
  }

  .ourPlansBoxIcon {
    margin-top: 10px !important;
  }

  .longestServingBox,
  .shareMemoriesBox {
    min-height: 590px;
  }

  .decemberChildBox,
  .generationsBox {
    min-height: 620px;
  }

  .ourPlansProtectionBoxSubtitle {
    height: 30px;
  }

  .ourPlansProtectionBox p,
  .ourPlansLifeCoverBox p {
    height: 85px;
  }

  .ourPlansLifeCoverBox,
  .ourPlansProtectionBox {
    min-height: 360px;
  }

  .ourPlansSavingContent {
    max-width: 20%;
    float: left;
    padding: 0px 15px;
    margin-bottom: 0px;
    display: inline-block;
  }

  .ourPlansSavingBtn {
    padding: 15px 10px;
  }

  .ourPlansSavingBox {
    margin: 0px 0px 30px 13px;
    max-width: 97%;
  }

  .ourPlansSavingBoxSubtitle {
    height: 90px;
  }

  .ourPlansSavingContent p {
    height: 200px !important;
  }

  .christmasChildInput {
    width: 510px !important;
  }

  .christmasDayChildTitle {
    font-size: 32px;
  }

  .celebrateBoxStart {
    min-height: 220px;
  }

  .memberStoriesSubtitle {
    font-size: 28px;
    margin-top: 20px;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width : 1200px) {
  .celebrate190CelebrateBox,
  .celebrate190HistoryBox,
  .celebrate190OurPlansBox {
    min-height: 235px;
  }

  #celebrate190Banner {
    min-height: 410px;
    padding: 160px 0px 0px 0px;
  }

  .celebrate190BannerTitle {
    font-size: 56px;
    line-height: 1.2;
  }

  .longestServingBox,
  .shareMemoriesBox {
    min-height: 505px;
  }

  .decemberChildBox,
  .generationsBox {
    min-height: 572px;
  }

  .decemberChildTitle,
  .generationsTitle {
    height: 100px;
  }

  .decemberChildBox p,
  .generationsBox p {
    height: 170px;
  }

  .ourPlansBoxIcon {
    margin-top: 0px !important;
  }

  .ourPlansSavingBoxSubtitle {
    height: 65px;
  }

  .ourPlansSavingContent p {
    height: 140px !important;
  }

  .christmasChildInput {
    width: 645px !important;
  }

  .christmasDayChildTitle {
    font-size: 38px;
  }

  .celebrate190CarouselBanner {
    min-height: 440px!important;
  }

  .celebrate190Carousel {
    margin-bottom: 535px!important;
  }

  .celebrateBoxHover {
    background-color: #92bf1f;
    padding: 30px;
  }

  .historyBoxHover {
    background-color: #10b0d5;
    padding: 30px;
  }

  .ourPlansBoxHover {
    background-color: #f9bb51;
    padding: 30px;
  }

  .celebrateBoxHover p,
  .historyBoxHover p,
  .ourPlansBoxHover p {
    font-family: 'Brandon Text';
    color: #FFF;
    font-size: 18px;
  }

  .celebrateBoxHoverTitle,
  .historyBoxHoverTitle,
  .ourPlansBoxHoverTitle {
    font-family: 'Brandon Text';
    color: #FFF;
    font-weight: bold;
    font-size: 32px;
  }

  .celebrateHoverHR {
    border-top: 3px solid #FFF;
  }

  .celebrateHoverBtn {
    display: block;
    background-color: #FFF;
    padding: 15px;
    width: 160px;
    text-align: center;
    margin-top: 15px;
    font-family: 'Brandon Text';
    font-weight: bold;
    color: #92bf1f;
    font-size: 16px;
  }

  .celebrateHoverBtn:hover {
    color: #92bf1f;
  }

  .historyHoverBtn {
    display: block;
    background-color: #FFF;
    padding: 15px;
    width: 160px;
    text-align: center;
    margin-top: 15px;
    font-family: 'Brandon Text';
    font-weight: bold;
    color: #10b0d5;
    font-size: 16px;
  }

  .historyHoverBtn:hover {
    color: #10b0d5;
  }

  .ourPlansHoverBtn {
    display: block;
    background-color: #FFF;
    padding: 15px;
    width: 160px;
    text-align: center;
    margin-top: 15px;
    font-family: 'Brandon Text';
    font-weight: bold;
    color: #f9bb51;
    font-size: 16px;
  }

  .ourPlansHoverBtn:hover {
    color: #f9bb51;
  }

  .showAlternative190 {
    position: relative;
    top: -235px;
    margin-bottom: -235px;
  }
}
.jmmTitle {
  font-family: 'Brandon Text';
  font-weight: bold;
  font-size: 36px;
  color: #FFF;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 15px;
}

.jmmBannerDivider {
  border-top: 5px solid #FFF;
  max-width: 60%;
}

.jmmSubtitle {
  font-family: 'Brandon Text';
  font-size: 18px;
  color: #FFF;
  text-align: center;
  margin-bottom: 0px;
  line-height: 1.2;
}

.isaSubtitle {
  font-family: 'Brandon Text';
  font-size: 18px;
  color: #FFF;
  text-align: center;
  margin: 0 auto;
  line-height: 1.2;
}

.juniorIsaSubtitle {
  font-family: 'Brandon Text';
  font-size: 18px;
  color: #FFF;
  text-align: center;
  margin-bottom: 0px;
  line-height: 1.2;
}

#jmmBreadcrumbs {
  padding: 30px 0px;
}

#jmmBreadcrumbs p {
  margin-bottom: 0px;
}

#jmmIntro {
  background-color: #ccf0f7;
  padding-top: 40px;
}

#jmmIntro p {
  font-size: 18px;
  line-height: 1.4;
  color: #13487a;
  text-align: center;
}

.jmmIntroTitle {
  font-family: 'Brandon Text';
  text-align: center;
  color: #13487a;
  font-weight: bold;
  font-size: 36px;
  margin-bottom: 30px;
}

.jmmIntroBtn {
  display: block;
  margin: 30px auto 0px auto;
  border-radius: 0px;
  max-width: 260px;
  padding: 15px 45px;
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 20px;
  background-color: #98c662;
}

.jmmIntroBtn:hover {
  color: #FFF;
  background-color: #89b359;
}

#jmmWhiteSection {
  padding: 40px 0px;
}

.jmmContentBox {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 8px;
}

.l2shopAd-padding {
  padding-top: 30px;
}

.jmmContentTitle {
  font-family: 'Brandon Text';
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  color: #13487a;
  margin-bottom: 30px;
}

.jmmContentSubtitle {
  font-family: 'Brandon Text';
  text-align: center;
  font-size: 24px;
  color: #00b2d7;
  margin-bottom: 30px;
}

.jmmContentBox p {
  text-align: center;
  color: #13487a;
  font-family: 'Brandon Text';
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 0px;
}

.jmmContentBoxTitle {
  font-size: 22px;
  font-family: 'Brandon Text';
  font-weight: bold;
  text-align: center;
  color: #13487a;
  margin-bottom: 30px;
}

.jmmDivider {
  border-top: 2px dashed #c5c5c5;
  margin: 30px 0px;
}

.jmmLove2ShopText {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 30px;
}

.jmmLove2ShopTerms {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 16px;
  text-align: center;
  margin-bottom: 30px;
}

.l2shop-sidebar-padding {
  margin-top: 45px;
}

.importantInformationBox {
  padding: 20px 30px;
  border: 3px solid #13487a;
  margin: 30px 0px;
}

.importantInformationBoxTitle {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.importantInformationBox ul {
  margin-bottom: 0px;
  padding-left: 20px;
}

.importantInformationBox li {
  font-size: 16px;
  margin-bottom: 10px;
}

.importantInformationDisclaimer {
  font-size: 16px;
  line-height: 1.4;
  color: #13487a;
  margin-bottom: 0px;
}

.jmmKSPBoxTop {
  border-radius: 8px 8px 0px 0px;
  border: 3px solid #13487a;
  border-bottom: 0px;
  padding: 30px;
}

.jmmKSPBox1 {
  border-radius: 0px 0px 8px 8px;
  border: 3px solid #13487a;
  border-top: 0px;
  padding: 30px;
  background-color: #f2eaf3;
  margin-bottom: 30px;
}

.jmmKSPBox2 {
  border-radius: 0px 0px 8px 8px;
  border: 3px solid #13487a;
  border-top: 0px;
  padding: 30px;
  background-color: #eaf3d2;
  margin-bottom: 30px;
}

.jmmKSPBox3 {
  border-radius: 0px 0px 8px 8px;
  border: 3px solid #13487a;
  border-top: 0px;
  padding: 30px;
  background-color: #fef9e5;
}

.jmmKSPBoxTitle {
  font-family: 'Brandon Text';
  font-size: 20px;
  font-weight: bold;
  color: #13487a;
  text-align: center;
  margin-bottom: 0px;
}

.jmmKSPBoxText {
  color: #13487a;
  text-align: center;
  font-size: 16px;
}

.fa-stack.jmmNumberStack {
  display: block;
  margin: 0px auto 5px auto;
}

.jmmNumberCircle {
  color: #13487a;
}

.jmmNumberText {
  color: #13487a;
  font-family: 'Brandon Text';
  font-weight: bold;
  margin-bottom: 0px;
  top: -1px;
}

.jmmMoreInfo {
  border-radius: 8px;
  padding: 30px;
  background-color: #f5f5f5;
  margin-bottom: 30px;
}

.jmmGetStarted {
  border-radius: 8px;
  padding: 30px;
  background-color: #ccf0f7;
}

.jmmGetStarted p {
  text-align: left;
}

.jmmMoreInfoTitle,
.jmmGetStartedTitle {
  font-family: 'Brandon Text';
  font-size: 30px;
  font-weight: bold;
  color: #13487a;
  margin-bottom: 30px;
}

.jmmMoreInfoIntro,
.jmmGetStartedIntro {
  font-family: 'Brandon Text';
  font-size: 18px;
  line-height: 1.4;
  color: #13487a;
  margin-bottom: 20px;
}

.jmmMoreInfoText,
.jmmGetStartedText {
  font-size: 16px;
  line-height: 1.4;
  color: #13487a;
}

.jmmGetStartedBtn {
  display: block;
  margin: 20px 0px 0px 0px;
  border-radius: 0px;
  max-width: 260px;
  padding: 15px 45px;
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 20px;
  background-color: #98c662;
}

.jmmGetStartedBtn:hover {
  color: #FFF;
  background-color: #89b359;
}

.jmmMoreInfoPhoneIcon {
  display: inline-block;
  margin-right: 10px;
}

.jmmMoreInfoEmailIcon {
  display: inline-block;
  margin-right: 10px;
}

.jmmMoreInfoPhoneText,
.jmmMoreInfoEmailText {
  font-family: 'Brandon Text';
  font-size: 17px;
  font-weight: bold;
  color: #13487a;
  margin-bottom: 0px;
  display: inline-block;
  height: 26px;
  vertical-align: bottom;
}

.jmmDownloadRow {
  margin-bottom: 15px;
  height: 50px;
}

.jmmDownloadIcon {
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.jmmDownloadDocument {
  display: inline-block;
  float: left;
  width: 75%;
}

.jmmDownloadDocument p {
  color: #13487a;
  margin-bottom: 0px;
}

.jmmDownloadDocument a {
  color: #13487a;
}

.jmmSliderBox {
  border-radius: 8px;
  border: 3px solid #13487a;
  background-color: #f5f5f5;
  padding: 30px 0px;
  margin-bottom: 30px;
}

.jmmWhyInvestBox {
  border-radius: 8px;
  border: 3px solid #13487a;
  background-color: #ccf0f7;
  padding: 30px;
}

.jmmWhyInvestBox p {
  font-size: 16px;
  color: #13487a;
  margin-bottom: 0px;
  text-align: center;
}

.jmmCarousel {
  min-height: 155px;
}

.jmmCarouselCaption {
  margin: 30px 0px 0px 0px;
}

.carouselNoGradient {
  background-image: none !important;
  padding-top: 60px;
}

.jmmCarouselText {
  font-family: 'Brandon Text';
  font-weight: bold;
  color: #13487a;
  font-size: 22px;
  text-shadow: none !important;
  text-align: center;
  margin-bottom: 0px;
}

.jmmContent {
  font-family: 'Brandon Text';
  font-size: 16px;
  color: #13487a;
  line-height: 1.4;
}

.jmmYellowSliderBox {
  background-color: #f7b951;
  padding: 15px;
  color: #FFF;
  min-height: 260px;
  margin-bottom: 30px;
}

.yellowSlideTitle {
  font-family: 'Brandon Text';
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.yellowSlideText {
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 18px;
  text-align: center;
}

.yellowSlideHR {
  border-top: 3px solid #FFF;
}

.yellowSliderLeft,
.yellowSliderRight {
  top: 100px;
  padding-top: 0px !important;
}

.blueSliderLeft,
.blueSliderRight {
  top: 120px;
  padding-top: 0px !important;
}

.yellowSliderInner,
.blueSliderInner {
  width: 190px !important;
  margin: 0px auto;
}

.jmmBlueSliderBox {
  background-color: #13487a;
  padding: 15px;
  color: #FFF;
  min-height: 300px;
}

.jmmAnnualBonusBox {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/jmm-annual-bonus-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 300px;
  padding: 30px;
}

.jmmAnnualBonusTextBox {
  background-color: rgba(19,72,122,0.8);
  max-width: 260px;
  padding: 15px;
  text-align: center;
  display: block;
  margin: 0px auto;
}

.jmmAnnualBonusTitle {
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 24px;
  font-weight: bold;
}

.jmmAnnualBonusHR {
  border-top: 3px solid #FFF;
}

.jmmAnnualBonusText {
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 20px;
  margin-bottom: 0px;
}

.jmmHistoryBox {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/jmm-history-box-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 300px;
  padding: 30px;
  margin-bottom: 30px;
}

.jmmHistoryTitle {
  font-family: 'Brandon Text';
  font-size: 28px;
  color: #FFF;
  text-align: center;
}

.jmmHistoryText {
  font-family: 'Brandon Text';
  font-size: 22px;
  color: #FFF;
  text-align: center;
}

.jmmMemberFocussedTextBox {
  background-color: rgba(19,72,122,0.8);
  padding: 30px;
  text-align: center;
  margin: 50px auto;
  max-width: 260px;
}

.jmmMemberFocussedLink {
  color: #FFF;
  font-family: 'Brandon Text';
  text-decoration: underline;
}

.jmmMemberFocussedLink:hover {
  color: #FFF;
  text-decoration: underline;
}

.jmmMemberFocussedBox {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/jmm-member-focussed-bg.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 300px;
  padding: 30px;
}

.jmmMemberFocusTitle {
  font-family: 'Brandon Text';
  font-size: 24px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
}



.jmmL2SBox {
  background-color: #f9f9f9;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.jmmL2STitle {
  font-family: 'Brandon Text';
  color: #134871;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.jmmChoosePlanBox {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/jmm-choose-plan-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 305px;
  padding: 30px;
}

.jmmChoosePlanTextBox {
  background-color: rgba(19,72,122,0.8);
  max-width: 260px;
  padding: 15px;
  text-align: center;
  display: block;
  margin: 0px auto;
}

.jmmChoosePlanTitle {
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 22px;
  font-weight: bold;
}

.jmmChoosePlanText {
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 16px;
}

.jmmChoosePlanLink {
  color: #FFF;
  font-family: 'Brandon Text';
  text-decoration: underline;
}

.jmmChoosePlanLink:hover {
  color: #FFF;
  text-decoration: underline;
}

.jmmL2SLink {
  color: #13487a;
  font-family: 'Brandon Text';
  text-decoration: underline;
}

.jmmL2SLink:hover {
  color: #13487a;
  text-decoration: underline;
}

.jmmBlueSliderIntro {
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 19px;
  font-weight: bold;
  text-align: center;
}

.jmmBlueSliderReview1 {
  font-family: 'Brandon Text';
  color: #FFF;
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px;
}

.jmmBlueSliderReview2 {
  font-family: 'Brandon Text';
  color: #FFF;
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
}

.jmmBlueSliderReview3 {
  font-family: 'Brandon Text';
  color: #FFF;
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
}

.jmmBlueSliderName {
  font-family: 'Brandon Text';
  font-size: 18px;
  color: #FFF;
  text-align: center;
}

.jmmCarouselInner {
  width: 70%;
  margin: 0px auto;
}

.jmmCarouselInnerText {
  margin-bottom: 0px;
  color: #13487a;
  font-size: 16px;
  font-family: 'Brandon Text';
  text-align: center;
}

#stickySideMenu {
  display: none;
}

/* Galaxy S4 Portrait */

@media only screen and  (min-width : 360px) {
  #jmmBanner {
    padding: 70px 0px 0px 0px;
  }

  .jmmMoreInfoPhoneText,
  .jmmMoreInfoEmailText {
    font-size: 21px;
  }

  .jmmDownloadDocument {
    width: 80%;
  }
}

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) {
  #jmmBanner {
    padding: 75px 0px 0px 0px;
  }

  .jmmMoreInfoPhoneText,
  .jmmMoreInfoEmailText {
    font-size: 23px;
    height: 29px;
  }
}

/* Nexus 4 Portrait */

@media only screen and  (min-width : 384px) and (max-width : 384px) {
  #jmmBanner {
    padding: 55px 0px 0px 0px;
  }
}

/* iPhone 6 + Portrait */

@media only screen and  (min-width : 414px) and (max-width : 414px) {
  .jmmMoreInfoPhoneText,
  .jmmMoreInfoEmailText {
    font-size: 26px;
    height: 32px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width : 480px) {
  #jmmBanner {
    padding: 50px 0px 0px 0px;
    min-height: 220px;
  }

  .jmmMoreInfoPhoneText,
  .jmmMoreInfoEmailText {
    font-size: 28px;
    height: 36px;
  }

  .yellowSliderInner,
  .blueSliderInner {
    width: 290px !important;
    margin: 0px auto;
  }

  .yellowSlideTitle {
    font-size: 26px;
  }

  .yellowSlideText {
    font-size: 24px;
  }

  .jmmBlueSliderReview1 {
    font-size: 26px;
  }
}

/* Nexus 6 Landscape */

@media (min-width:640px) {
  .yellowSliderInner,
  .blueSliderInner {
    width: 410px !important;
    margin: 0px auto;
  }

  .jmmYellowSliderBox {
    min-height: 240px;
  }
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  .jmmTitle {
    font-size: 50px;
    margin-top: 120px;
    text-align: left;
  }

  .jmmBannerDivider {
    max-width: 90%;
  }

  .jmmSubtitle {
    font-size: 26px;
    text-align: left;
  }

  .jmmKSPBoxTop {
    height: 210px;
  }

  .jmmKSPBox1,
  .jmmKSPBox2,
  .jmmKSPBox3 {
    height: 450px;
    margin-bottom: 0px;
  }

  .jmmMoreInfoPhoneText,
  .jmmMoreInfoEmailText {
    font-size: 23px;
    height: 29px;
  }

  .jmmMoreInfo,
  .jmmGetStarted {
    margin-bottom: 0px;
  }

  .yellowSliderInner,
  .blueSliderInner {
    width: 190px !important;
  }

  .yellowSlideTitle {
    font-size: 24px;
  }

  .yellowSlideText {
    font-size: 22px;
  }

  .jmmYellowSliderBox {
    min-height: 300px;
    margin-bottom: 0px;
  }

  .jmmCarouselCaption {
    margin: 10px 0px 0px 0px;
  }

  .yellowSliderLeft,
  .yellowSliderRight {
    top: 120px;
    padding-top: 0px !important;
  }

  .jmmBlueSliderBox {
    min-height: 390px;
  }

  .jmmL2STitle {
    font-size: 17px;
  }

  .jmmL2SBox {
    margin-bottom: 0px !important;
  }

  .isaSubtitle {
    margin-left: 0px;
    text-align: left;
    font-size: 26px;
  }

  .juniorIsaSubtitle {
    font-size: 26px;
  }
}

@media only screen and (max-width: 992px) {
  .l2shop-sidebar-padding {
    margin-top: 0px;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  .jmmBannerDivider {
    max-width: 75%;
  }

  .jmmKSPBoxTop {
    height: 180px;
  }

  .jmmNumberText {
    top: -3px;
  }

  .jmmKSPBox1,
  .jmmKSPBox2,
  .jmmKSPBox3 {
    height: 325px;
  }

  .jmmMoreInfoPhoneText,
  .jmmMoreInfoEmailText {
    font-size: 28px;
    height: 36px;
  }

  .jmmDownloadDocument {
    width: 85%;
  }

  .jmmAnnualBonusTextBox,
  .jmmChoosePlanTextBox {
    margin: 0px 0px;
    float: right;
  }

  .jmmL2STitle {
    font-size: 21px;
    margin-bottom: 40px;
  }

  .juniorIsaSubtitle {
    margin-left: 0px;
    margin-right: 0px;
    text-align: left;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 1200px) {
  #jmmBanner {
    min-height: 475px;
  }

  .jmmBannerDivider {
    max-width: 60%;
  }

  .jmmKSPBoxTop {
    height: 155px;
  }

  .jmmKSPBox1,
  .jmmKSPBox2,
  .jmmKSPBox3 {
    height: 280px;
  }

  .yellowSliderInner,
  .blueSliderInner {
    width: 285px !important;
  }

  .jmmCarouselCaption {
    margin: 30px 0px 0px 0px;
  }

  .yellowSlideTitle {
    font-size: 26px;
  }

  .yellowSlideText {
    font-size: 24px;
  }

  .jmmBlueSliderReview1 {
    font-size: 32px;
  }

  .jmmBlueSliderBox {
    min-height: 300px;
  }

  .jmmL2STitle {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .jmmSliderBox {
    min-height: 270px;
  }

  .carouselNoGradient {
    padding-top: 90px;
  }
}

/* Special Breakpoint for sticky side menu */

@media only screen and (min-width : 1630px) {
  #stickySideMenu {
    margin-top: 20px;
    width: 250px;
    position: fixed;
    right: 0px;
    display: block;
  }

  #stickySideMenu ul {
    list-style-type: none;
  }

  #stickySideMenu ul li {
    padding: 20px;
    background-color: #f5f5f5;
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    margin-bottom: 15px;
  }

  #stickySideMenu ul li.jmmStickySideMenuActive {
    background-color: #e5f7fb;
  }

  .jmmSidebarMenuTitle {
    font-size: 22px;
    font-family: 'Brandon Text';
    font-weight: bold;
    text-align: center;
    color: #13487a;
    margin-top: 10px;
    margin-bottom: 0px;
  }

  #stickySideMenu ul a li:hover {
    background-color: #e5f7fb;
  }
}
#menuSection {
  margin: 0px;
  padding: 10px;
  background-color: #fff;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

#menuSection .menuReviewText,
#menuSection .menuDropText,
.ddRCTextItem {
  margin-bottom: auto;
}

#menuSection .smallGreenCtaBtn {
  white-space: normal;
}

.menu-grey-background {
  background-color: #F6F6F6 !important;
}

#mega_main_menu > .menu_holder > .menu_inner > ul > li.widgets_dropdown > .mega_dropdown > li,
#mega_main_menu > .menu_holder > .menu_inner > ul > li.multicolumn_dropdown > .mega_dropdown > li {
  padding: 0px !important;
}

#mega_main_menu ul:after {
  content: none !important;
}

.mega_main_menu_ul > li {
  width: 25% !important;
}

.mega_dropdown {
  display: flex !important;
  padding: 0px !important;
}

.menuReviewText {
  text-align: center;
}

.menuReviewText > a {
  color: #183e7a !important;
  font-family: 'Brandon Text';
  font-size: 15px;
}

.menuReviewTextBold {
  font-weight: bold;
  color: #183e7a !important;
}

.menuReviewTextLink {
  margin-top: 15px;
}

.menuDropTitle {
  color: #183e7a !important;
}

.menuReviewTextLinkDark {
  color: #183e7a !important;
}

.menuHR {
  margin-top: 15px;
  margin-bottom: 15px;
  border: 0;
  border-top: 2px solid #183e7a;
}

#mega_main_menu > .menu_holder > .menu_inner > ul > li.multicolumn_dropdown .mega_dropdown > li > .item_link.disable_icon > .link_content,
#mega_main_menu ul li .mega_dropdown > li > .item_link.disable_icon > .link_content {
  background-color: #fff;
}

#mega_main_menu > .menu_holder > .menu_inner > ul > li > .item_link:after {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f078";
  top: 19px;
  right: 5px;
}

#mega_main_menu > .menu_holder > .menu_inner > ul > li.multicolumn_dropdown .mega_dropdown > li > .item_link {
  padding: 0;
}

#mega_main_menu.desktopProductMenu > .menu_holder > .menu_inner > ul > li .mega_dropdown .item_link:hover {
  background-color: transparent !important;
}

.menuRCTitle {
  font-weight: bold;
  color: #183e7a !important;
  text-align: center;
  font-size: 20px !important;
  font-family: 'Brandon Text Slab' !important;
}

.ddRCIconsImage {
  margin-top: 10px !important;
}

.ddRCTextItem {
  background-color: #F6F6F6 !important;
  padding: 5px;
  font-size: 14px;
  background: url(/wp-content/themes/ShepherdsFriendly/assets/images/dd_rc_corner.png) bottom right no-repeat;
  margin-top: 5px;
}

.ddRCFOM {
  font-size: 10px;
  text-decoration: underline;
}

.ddMenuTitleSmall {
  font-size: 18px !important;
  margin-bottom: 0px !important;
  margin-top: 3px !important;
  display: inline-block !important;
}

.ddMenuTitleSmall:hover {
  background-color: #F6F6F6;
  text-decoration: none;
}
.savingsOptionsSidebarAd {
  margin: 20px auto 0px auto;
  padding: 20px;
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/saving-options-widget-bg.jpg);
  background-position: center center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 395px;
}

.savingsOptionsAdTextBox {
  margin-bottom: 90px;
}

.savingsOptionsSidebarTitle {
  text-align: center;
  font-size: 30px;
  font-family: 'Brandon Text';
  color: #FFF;
  font-weight: bold;
  margin-bottom: 0px;
  line-height: 1;
  text-shadow: 2px 2px 2px rgb(105, 105, 105);
}

.savingsOptionsText {
  text-align: center;
  font-size: 18px;
  font-family: 'Brandon Text';
  color: #FFF;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 2px rgba(105, 105, 105, 1);
}

.blue-Bg {
  background-color: #e5f7fb;
  padding-bottom: 40px !important;
}

.marginTop30 {
  margin-top: 30px;
}

.paddingTopZero {
  padding-top: 0px !important;
}

.paddingTop40 {
  padding-top: 40px;
}

@media (min-width:360px) {
  .savingsOptionsAdTextBox {
    margin-bottom: 110px;
  }
}

@media (min-width:768px) {
  .savingsOptionsAdTextBox {
    margin-bottom: 200px;
  }
}

@media (min-width:992px) {
  .savingsOptionsAdTextBox {
    margin-bottom: 100px;
  }
}

@media (min-width:1200px) {
  .savingsOptionsAdTextBox {
    margin-bottom: 110px;
  }
}
#isaBanner {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/new-isa-banner.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 265px;
  margin-top: -45px;
  padding: 60px 0px 0px 0px;
}

#isaBannerDarkBlue {
  background-image: url(https://storage.shepherdsfriendly.co.uk/image-media/new-isa-banner-dark-blue.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 265px;
  margin-top: -45px;
  padding: 60px 0px 0px 0px;
}

.isaPayBoxTop {
  border-radius: 8px 8px 0px 0px;
  border: 3px solid #13487a;
  border-bottom: 0px;
  padding: 30px 20px;
}

.isaPayBox1 {
  border-radius: 0px 0px 8px 8px;
  border: 3px solid #13487a;
  border-top: 0px;
  padding: 30px;
  background-color: #f2eaf3;
  margin-bottom: 40px;
}

.isaPayBox2 {
  border-radius: 0px 0px 8px 8px;
  border: 3px solid #13487a;
  border-top: 0px;
  padding: 30px;
  background-color: #eaf3d2;
  margin-bottom: 40px;
}

.isaPayBox3 {
  border-radius: 0px 0px 8px 8px;
  border: 3px solid #13487a;
  border-top: 0px;
  padding: 30px;
  background-color: #fef3cc;
  margin-bottom: 40px;
}

.whatsDifferentText {
  font-size: 18px;
  line-height: 1.4;
  color: #13487a;
  text-align: center;
}

.isaIntroButtons {
  padding: 0 15px;
}

.isaIntroBtn {
  display: block;
  margin: 30px auto 30px auto;
  border-radius: 0px;
  max-width: 260px;
  padding: 15px 45px;
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 20px;
  background-color: #98c662;
}

.isaIntroBtn:hover {
  color: #FFF;
  background-color: #89b258;
}

.isaTransferBtn {
  display: block;
  margin: 30px auto 0px auto;
  border-radius: 0px;
  max-width: 260px;
  padding: 15px 45px;
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 20px;
  background-color: #c5c5c5 !important;
}

.isaTransferBtn:hover {
  color: #FFF;
  background-color: #b1b1b1 !important;
}

.jisaTransferBtn1 {
  max-width: 290px !important;
  padding: 15px 25px !important;
}

.isaSectionSubtitle {
  font-family: 'Brandon Text';
  color: #00b2d7;
  font-size: 26px;
  text-align: center;
  margin: 0 auto 30px;
}

.isaInvestInfoBox {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 8px;
}

.isaInvestInfoBox p {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 0px;
}

.isaBonusTitle {
  font-family: 'Brandon Text';
  color: #13487a;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 15px;
  text-align: center;
}

.isaInvestBox1 {
  border: 3px solid #13487a;
  border-radius: 8px;
  padding: 30px;
  background-color: #f2eaf3;
  margin-bottom: 30px;
}

.isaInvestBox2 {
  border: 3px solid #13487a;
  border-radius: 8px;
  padding: 30px;
  background-color: #eaf3d2;
  margin-bottom: 30px;
}

.isaInvestBox3 {
  border: 3px solid #13487a;
  border-radius: 8px;
  padding: 30px;
  background-color: #fef3cc;
  margin-bottom: 30px;
}

.isaInvestBox4 {
  border: 3px solid #13487a;
  border-radius: 8px;
  padding: 30px;
  background-color: #ccf0f7;
  margin-bottom: 30px;
}

.isaInvestBoxContent {
  padding: 20px;
  border: 3px solid #13487a;
  border-radius: 8px;
  margin-bottom: 30px;
}

.isaInvestContent {
  text-align: center;
  font-family: 'Brandon Text';
  color: #13487a;
  margin-bottom: 0px;
}

.isaToggleTop {
  margin-bottom: 0px;
  border-bottom: 0px;
  -webkit-border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -moz-border-radius-topleft: 8px;
  -moz-border-radius-topright: 8px;
  -webkit-border-bottom-left-radius: 0px;
  -webkit-border-bottom-right-radius: 0px;
  -moz-border-radius-bottomleft: 0px;
  -moz-border-radius-bottomright: 0px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.isaToggleBottom {
  border-top: 0px;
  -webkit-border-top-left-radius: 0px;
  -webkit-border-top-right-radius: 0px;
  -moz-border-radius-topleft: 0px;
  -moz-border-radius-topright: 0px;
  -webkit-border-bottom-left-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  -moz-border-radius-bottomleft: 8px;
  -moz-border-radius-bottomright: 8px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.isaExpand:hover {
  cursor: pointer;
}

.isaInvestTitle {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 0px;
  font-weight: bold;
  text-align: center;
}

.isaAnnualBonusBox {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/isa-annual-bonus-bg.jpg);
}

.isaGreenSliderBox {
  background-color: #92bf1f;
}

.isaYellowSliderBox {
  background-color: #f9bb51;
}

@media (min-width:768px) {
  #isaBannerDarkBlue {
    min-height: 400px;
  }

  .isaIntroButtons {
    display: block;
    margin: 0px auto;
  }

  .jisaIntroButtons {
    display: block;
    margin: 0px auto;
    max-width: 507px;
  }

  .isaPayBox1,
  .isaPayBox2,
  .isaPayBox3 {
    min-height: 315px;
  }

  .isaIntroBtn {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 0px;
  }

  .isaTransferBtn {
    display: inline-block !important;
    margin-top: 30px !important;
  }

  #isaBanner {
    min-height: 460px;
    padding: 125px 0px 0px 0px;
  }
}

@media (min-width:992px) {
  .isaPayBox1,
  .isaPayBox2,
  .isaPayBox3 {
    min-height: 250px;
  }

  #isaBanner {
    padding: 100px 0px 0px 0px;
  }

  .isaInvestTitle {
    min-height: 105px;
  }

  .isaInvestBoxContent {
    min-height: 145px;
  }

  .isaBannerDivider {
    max-width: 65%;
    margin-left: 0px;
  }
}

@media (min-width:1200px) {
  #isaBanner {
    padding: 120px 0px 0px 0px;
    min-height: 500px;
  }

  .isaPayBox1,
  .isaPayBox2,
  .isaPayBox3 {
    min-height: 210px;
  }

  .isaInvestTitle {
    min-height: 55px;
  }

  .isaInvestBoxContent {
    min-height: 125px;
  }

  .isaBannerDivider {
    max-width: 55%;
    margin-left: 0px;
  }
}
.Jisa-award-wrapper {
  text-align: center;
}

.jisaMoneyfactsLogo {
  width: 120px;
  height: 160px;
  margin-right: 1rem;
}

@media (min-width:768px) {
  #jisaBanner {
    min-height: 460px;
    padding: 130px 0px 0px 0px;
  }
}

@media (min-width:992px) {
  #jisaBanner {
    padding: 85px 0px 0px 0px;
  }

  .jisaTitle,
  .jisaSubtitle {
    text-align: left;
  }

  .jisaBannerDivider {
    margin-left: 0px;
    margin-right: 0px;
    max-width: 55%;
  }

  .Jisa-award-wrapper {
    text-align: left;
  }

  .jisaMoneyfactsLogo {
    margin-top: -20px;
  }
}

@media (min-width:1200px) {
  #jisaBanner {
    padding: 75px 0px 0px 0px;
    min-height: 440px;
  }

  .jisaBannerDivider {
    max-width: 50% !important;
  }
}

@media screen and (max-width: 768px) {
  .jisaMoneyfactsLogo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 120px;
    height: 160px;
    margin-top: -40px;
    margin-bottom: -20px;
  }

  #jisa2018Logo {
    display: none;
  }
}

.jisaAnnualBonusBox {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/jisa-annual-bonus-bg.jpg);
  padding: 15px 30px;
}

.sidebarMenuApply {
  background-color: #98c662 !important;
}

.sidebarMenuApply:hover {
  background-color: #89b258 !important;
}

a li.sidebarMenuApply h3.jmmSidebarMenuTitle.sidebarMenuApplyTitle {
  color: #FFF;
}

a li.sidebarMenuApply h3.jmmSidebarMenuTitle.sidebarMenuApplyTitle:hover {
  color: #FFF !important;
}
#christmasSmileBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/smile-laugh-share-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 285px;
  margin-top: -45px;
  padding: 65px 0px 0px 0px;
}

#happyBirthdayBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/happy-birthday-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 285px;
  margin-top: -45px;
  padding: 60px 0px 0px 0px;
}

#christmasPresentBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/christmas-present-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 285px;
  margin-top: -45px;
  padding: 60px 0px 0px 0px;
}

.christmasBannerTitle {
  font-size: 24px;
}

/* Galaxy S4 Portrait */

@media only screen and  (min-width : 360px) and (max-width : 360px) {
  #christmasSmileBanner {
    padding: 80px 0px 0px 0px;
  }

  #happyBirthdayBanner {
    padding: 95px 0px 0px 0px;
  }

  #christmasPresentBanner {
    padding: 80px 0px 0px 0px;
  }
}

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) and (max-width : 375px) {
  #christmasSmileBanner {
    padding: 85px 0px 0px 0px;
  }

  #happyBirthdayBanner {
    padding: 95px 0px 0px 0px;
  }

  #christmasPresentBanner {
    padding: 80px 0px 0px 0px;
  }
}

/* Nexus 4 Portrait */

@media only screen and  (min-width : 384px) {
  #christmasSmileBanner {
    padding: 80px 0px 0px 0px;
  }

  #happyBirthdayBanner {
    padding: 95px 0px 0px 0px;
  }

  #christmasPresentBanner {
    padding: 80px 0px 0px 0px;
  }
}

/* Nexus 6 Portrait */

@media only screen and  (min-width : 412px) and (max-width : 412px) {
  #christmasSmileBanner {
    padding: 70px 0px 0px 0px;
  }

  #christmasPresentBanner {
    padding: 70px 0px 0px 0px;
  }
}

/* iPhone 6 + Portrait */

@media only screen and  (min-width : 414px) and (max-width : 414px) {
  #christmasSmileBanner {
    padding: 90px 0px 0px 0px;
  }

  #christmasPresentBanner {
    padding: 95px 0px 0px 0px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width : 480px) {
  #christmasSmileBanner {
    padding: 35px 0px 0px 0px;
  }

  .christmasBannerTitle {
    font-size: 28px;
  }

  #happyBirthdayBanner {
    padding: 60px 0px 0px 0px;
  }

  #christmasPresentBanner {
    padding: 45px 0px 0px 0px;
  }
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  #christmasSmileBanner {
    padding: 130px 0px 0px 0px;
  }

  .christmasBannerTitle {
    font-size: 42px;
  }

  #happyBirthdayBanner {
    padding: 150px 0px 0px 0px;
  }

  #christmasPresentBanner {
    padding: 125px 0px 0px 0px;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  #christmasSmileBanner {
    padding: 100px 0px 0px 0px;
  }

  #happyBirthdayBanner {
    padding: 110px 0px 0px 0px;
  }

  #christmasPresentBanner {
    padding: 115px 0px 0px 0px;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width : 1200px) {
  #christmasSmileBanner {
    padding: 80px 0px 0px 0px;
  }

  #christmasPresentBanner {
    padding: 115px 0px 0px 0px;
  }

  .christmasBannerTitle {
    font-size: 50px;
  }
}
#happyNewYearBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/new-year-banner.jpg);
  background-position: top left;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 285px;
  margin-top: -45px;
  padding: 65px 0px 0px 0px;
}

#isaNewYearBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/new-year-isa-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 285px;
  margin-top: -45px;
  padding: 40px 0px 0px 0px;
}

#reviewPlanBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/review-plan-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 375px;
  margin-top: -45px;
  padding: 40px 0px 0px 0px;
}

#newYearReferBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/new-year-refer-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 275px;
  margin-top: -45px;
  padding: 65px 0px 0px 0px;
}

#homeJmmBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/home-jmm-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 275px;
  margin-top: -45px;
  padding: 65px 0px 0px 0px;
}

#referFriendBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/refer-friend-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 275px;
  margin-top: -45px;
  padding: 65px 0px 0px 0px;
}

.newYearBannerTitle,
.newYearBannerSubtitle {
  text-align: center !important;
  max-width: 100%;
}

.newYearBannerBtn1 {
  margin-bottom: 10px;
}

.newYearBannerBtn1,
.newYearBannerBtn2 {
  border-radius: 0px;
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 16px;
  background-color: #93c01f;
  padding: 10px;
}

.newYearBannerBtn1:hover,
.newYearBannerBtn2:hover {
  color: #FFF;
  background-color: #82a91e;
}

/* Galaxy S4 Portrait */

@media only screen and  (min-width : 360px) and (max-width : 360px) {
  #happyNewYearBanner {
    padding: 75px 0px 0px 0px;
  }

  #isaNewYearBanner {
    padding: 75px 0px 0px 0px;
  }

  #newYearReferBanner {
    padding: 95px 0px 0px 0px;
  }

  #homeJmmBanner {
    padding: 75px 0px 0px 0px;
  }

  .newYearBannerBtn1 {
    margin-bottom: 0px;
  }
}

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) and (max-width : 375px) {
  #happyNewYearBanner {
    padding: 95px 0px 0px 0px;
  }

  #isaNewYearBanner {
    padding: 95px 0px 0px 0px;
  }

  #newYearReferBanner {
    padding: 95px 0px 0px 0px;
  }

  #homeJmmBanner {
    padding: 95px 0px 0px 0px;
  }

  .newYearBannerBtn1 {
    margin-bottom: 0px;
  }
}

/* Nexus 4 Portrait */

@media only screen and  (min-width : 384px) {
  #happyNewYearBanner {
    padding: 90px 0px 0px 0px;
  }

  #isaNewYearBanner {
    padding: 95px 0px 0px 0px;
  }

  #newYearReferBanner {
    padding: 90px 0px 0px 0px;
  }

  #homeJmmBanner {
    padding: 90px 0px 0px 0px;
  }

  .newYearBannerBtn1 {
    margin-bottom: 0px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width : 480px) {
  #happyNewYearBanner {
    padding: 45px 0px 0px 0px;
  }

  #newYearReferBanner {
    padding: 45px 0px 0px 0px;
  }

  #isaNewYearBanner {
    padding: 55px 0px 0px 0px;
  }

  #homeJmmBanner {
    padding: 55px 0px 0px 0px;
  }

  #referFriendBanner {
    min-height: 225px;
    padding: 20px 0px 0px 0px;
  }
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  #happyNewYearBanner {
    padding: 125px 0px 0px 0px;
  }

  #newYearReferBanner {
    padding: 125px 0px 0px 0px;
  }

  #isaNewYearBanner {
    padding: 125px 0px 0px 0px;
  }

  #homeJmmBanner {
    padding: 125px 0px 0px 0px;
  }

  #referFriendBanner {
    min-height: 275px;
    padding: 60px 0px 0px 0px;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  #happyNewYearBanner {
    padding: 115px 0px 0px 0px;
  }

  #newYearReferBanner {
    padding: 140px 0px 0px 0px;
  }

  #homeJmmBanner {
    padding: 140px 0px 0px 0px;
  }

  #isaNewYearBanner {
    padding: 115px 0px 0px 0px;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width : 1200px) {
  #happyNewYearBanner {
    padding: 130px 0px 0px 0px;
  }

  #newYearReferBanner {
    padding: 130px 0px 0px 0px;
  }

  #homeJmmBanner {
    padding: 110px 0px 0px 0px;
  }

  #isaNewYearBanner {
    padding: 125px 0px 0px 0px;
  }
}

@media only screen and (min-width:1300px) {
  #homeJmmBanner {
    background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/home-jmm-banner-xl.jpg);
  }
}
#transferIsaBanner {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/isa-transfer-banner.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 265px;
  margin-top: -45px;
  padding: 60px 0px 0px 0px;
}

#transferIsaIntro {
  padding: 40px 0px;
  background-color: #ccf0f7;
}

#transferIsaIntro p {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  min-height: 70px;
  margin-bottom: 30px;
}

#transferIsaIntro h2,
#transferIsaIntro h3,
#transferIsaWhy h2,
#transferIsaWhy h3,
#transferIsaHow h2,
#transferIsaHow h3 {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 30px;
}

#transferIsaWhy {
  padding: 40px 0px 0px 0px;
}

#transferIsaHow {
  padding: 20px 0px 40px 0px;
}

.transferIsaSubtitle {
  font-family: 'Brandon Text';
  color: #00b2d7;
  font-size: 22px;
  margin-bottom: 30px;
  margin-top: 0px;
  text-align: center;
}

.transferIsaStep {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 16px;
  margin: 30px 0px;
  text-align: center;
  line-height: 1.4;
}

.isaTransferBtn {
  display: block;
  margin: 0px auto;
  border-radius: 0px;
  max-width: 260px;
  padding: 15px 45px;
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 20px;
  background-color: #98c662;
}

.isaTransferBtn:hover {
  color: #FFF;
  background-color: #89b359;
}

#transferIsaBreadcrumbs {
  padding: 30px 0px 20px 0px;
}

.transferIsaFormBtn {
  max-width: 300px;
  font-size: 14px;
}

.transferIsaNewTitle {
  margin-top: 30px;
}

.transferIsaBreak {
  display: none;
}

.transferIsaBannerSubtitle {
  font-family: 'Brandon Text';
  color: #FFF;
  text-align: center;
  margin-bottom: 0px;
}

@media screen and (min-width: 360px) {
  .transferIsaFormBtn {
    font-size: 16px;
  }
}

@media screen and (min-width: 375px) {
  .transferIsaFormBtn {
    font-size: 18px;
  }
}

@media screen and (min-width: 768px) {
  #transferIsaBanner {
    min-height: 375px;
    padding: 115px 0px 0px 0px;
  }

  .transferIsaNewTitle {
    margin-top: 0px;
  }

  #transferIsaIntro h2 {
    min-height: 90px;
  }

  #transferIsaIntro p {
    min-height: 110px;
  }
}

@media screen and (min-width: 992px) {
  #transferIsaBanner {
    min-height: 475px;
    padding: 115px 0px 0px 0px;
  }

  #transferIsaIntro h2 {
    min-height: 42px;
  }

  #transferIsaIntro p {
    min-height: 88px;
  }

  .transferIsaBreak {
    display: block;
  }

  .transferIsaBannerSubtitle {
    font-family: 'Brandon Text';
    font-size: 30px;
    color: #FFF;
    text-align: left;
    margin-bottom: 0px;
  }

  .transferIsaBannerDivider {
    width: 40%;
  }
}

@media screen and (min-width: 1200px) {
  #transferIsaIntro p {
    min-height: 70px;
  }

  .transferIsaBannerDivider {
    width: 30%;
  }
}
#transferJisaBanner {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/jisa-transfer-banner.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 265px;
  margin-top: -45px;
  padding: 60px 0px 0px 0px;
}

.jisaTransferBtn {
  padding-left: 25px;
  padding-right: 25px;
}

.whatTransferText {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 16px;
}

.transferJisaBtn1,
.transferJisaBtn2 {
  display: inline-block;
  width: 100%;
  padding: 20px;
  font-size: 16px;
}

.isaTransferButton {
  display: block;
  margin: 30px auto;
  border-radius: 0;
  max-width: 290px;
  padding: 15px 25px;
  color: #FFF;
  font-family: Brandon Text;
  font-size: 20px;
  background-color: #98c662;
}

.isaTransferButton:hover {
  color: #FFF;
  background-color: #89b258;
}

@media screen and (min-width: 768px) {
  .jisaTransferMoreInfo,
  .jisaTransferGetStarted {
    min-height: 745px;
  }

  #transferJisaBanner {
    min-height: 375px;
    padding: 115px 0px 0px 0px;
  }
}

@media screen and (min-width: 992px) {
  #transferJisaBanner {
    min-height: 475px;
    padding: 115px 0px 0px 0px;
  }

  .jisaTransferMoreInfo,
  .jisaTransferGetStarted {
    min-height: 655px;
  }
}

@media screen and (min-width: 1200px) {
  .jisaTransferMoreInfo,
  .jisaTransferGetStarted {
    min-height: 545px;
  }

  .transferJisaBtn1,
  .transferJisaBtn2 {
    display: inline-block;
    width: 220px;
    padding: 20px;
    font-size: 16px;
  }

  .transferJisaBtn1 {
    margin-right: 15px;
  }
}
.l2sContentTitle {
  font-family: 'Brandon Text';
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  color: #13487a;
  margin-bottom: 30px;
}

.l2shopAd {
  background-color: #f9f9f9;
  margin: 10px 0px 20px 0px;
  border-radius: 10px;
}

.l2sLogo {
  margin: 0 auto;
  margin-top: 10px;
}

.l2sAdText {
  padding-top: 20px;
  font-family: "Brandon Text" sans-serif;
  color: #337ab7;
  font-size: 16px;
}

.l2SLink {
  color: #13487a;
  font-family: 'Brandon Text';
  text-decoration: underline;
}

.l2SLink:hover {
  color: #13487a;
  text-decoration: underline;
}

.l2sText {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 30px;
}

.l2sTerms {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 16px;
  text-align: center;
  margin-bottom: 30px;
}

.bountyLove2ShopTextStatement,
.bountyl2sTCList {
  display: none;
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  .l2STitle {
    font-size: 21px;
    margin-bottom: 40px;
  }
}
.yspBenefitsBoxTop {
  border-radius: 8px 8px 0px 0px;
  border: 3px solid #13487a;
  border-bottom: 0px;
  padding: 30px 20px;
}

.yspBenefitsBox1 {
  border-radius: 0px 0px 8px 8px;
  border: 3px solid #13487a;
  border-top: 0px;
  padding: 30px;
  background-color: #f2eaf3;
  margin-bottom: 40px;
}

.yspBenefitsBox2 {
  border-radius: 0px 0px 8px 8px;
  border: 3px solid #13487a;
  border-top: 0px;
  padding: 30px;
  background-color: #eaf3d2;
  margin-bottom: 40px;
}

.yspBenefitsBox3 {
  border-radius: 0px 0px 8px 8px;
  border: 3px solid #13487a;
  border-top: 0px;
  padding: 30px;
  background-color: #fef3cc;
  margin-bottom: 40px;
}

.yspBenefitsBox4 {
  border-radius: 0px 0px 8px 8px;
  border: 3px solid #13487a;
  border-top: 0px;
  padding: 30px;
  background-color: #ccf0f7;
  margin-bottom: 40px;
}

.yspBenefitText {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 0px;
}

.yspGreenSliderBox {
  background-color: #92bf1f;
}

.yspYellowSliderBox {
  background-color: #f9bb51;
}

.yspAnnualBonusBox {
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/ysp-annual-bonus-bg.jpg);
}

@media (min-width:768px) {
  .yspBenefitsBox3,
  .yspBenefitsBox4 {
    min-height: 295px;
  }
}

@media (min-width:992px) {
  .yspBenefitsBoxTop {
    min-height: 120px;
  }

  .yspBenefitsBox1,
  .yspBenefitsBox2,
  .yspBenefitsBox3,
  .yspBenefitsBox4 {
    min-height: 225px;
  }
}

@media (min-width:1200px) {
  .yspBenefitsBoxTop {
    min-height: 147px;
  }

  .yspBenefitsBox1,
  .yspBenefitsBox2,
  .yspBenefitsBox3,
  .yspBenefitsBox4 {
    min-height: 381px;
  }
}
#isaCountdown {
  padding: 10px 0px 10px 0px;
  background-color: #13487a;
}

.isaCountdownHome {
  background-color: #e5f7fb !important;
}

.countdownClockText {
  display: inline-block;
  color: #FFF;
  font-size: 16px;
  font-family: 'Brandon Text';
  margin-bottom: 0px;
  position: relative;
  top: -41px;
}

.countdownClockTextHome {
  color: #13487a;
}

.countdownClockRed {
  color: #e44353;
  font-size: 32px;
}

#isaCountdownClock {
  font-family: 'Brandon Text';
  color: #13487a;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  font-size: 26px;
  margin: 0px 10px;
}

#isaCountdownClock > div {
  padding: 0px 5px;
  border-radius: 0px;
  background: transparent;
  display: inline-block;
}

#isaCountdownClock div > span {
  padding: 10px;
  border-radius: 6px;
  background: #FFF;
  display: inline-block;
  width: 60px;
}

.smalltext {
  color: #FFF;
  padding-top: 5px;
  font-size: 16px;
}

.smalltextHome {
  color: #13487a;
}

.countdownClockDivider {
  border-top: 2px solid #ceeaf1;
}

.countdownClockBtn {
  background-color: #93c01f;
  font-family: 'Brandon Text';
  color: #fff;
  border-radius: 0px !important;
  margin-top: 15px;
  margin-bottom: 15px;
  border: 0px;
  padding: 10px 15px;
  font-size: 16px;
}

.countdownClockBtn:hover {
  color: #FFF;
  background-color: #82a91e;
}

.countdownHide {
  display: none !important;
}

@media screen and (min-width: 992px) {
  .countdownClockCenter {
    text-align: center;
  }

  .countdownClockText {
    font-size: 20px;
  }

  .countdownHide {
    display: inline-block !important;
  }
}

@media screen and (min-width: 1200px) {
  .countdownClockText {
    font-size: 24px;
  }
}
/*-----2019 Banner START-------*/

.blue-banner {
  background-color: #e5f7fb;
}

.isa-countdown {
  width: 100%;
  font-family: "Brandon Text", Arial;
  font-size: 24px;
  font-weight: 400;
  color: #13487a;
  padding: 20px 0px;
  text-align: center;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.isa-countdown__clock {
  list-style-type: none;
  margin: 0 12px;
  padding: 10px 0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.isa-countdown__clock li {
  flex: 1;
  text-align: center;
  padding: 6px;
  background-color: #fff;
  border-radius: 4px;
  font-weight: bold;
  font-size: 22px;
  min-width: 68px;
}

.isa-countdown__clock li:not(:first-of-type) {
  margin: 0px 4px 0px 0;
}

.isa-countdown__clock li:not(:last-of-type) {
  margin: 0px 4px 0px 4px;
}

.isa-countdown__clock li:last-of-type {
  margin: 0 0 0 4px;
}

.isa-countdown__clock span {
  display: block;
}

.isa-countdown__clock span:last-of-type {
  font-size: 14px;
}

@media (min-width: 992px) {
  /*-----2019 Banner START-------*/

  .blue-banner {
    background-color: #e5f7fb;
  }

  .isa-countdown {
    font-size: 26px;
    padding: 20px 0;
    flex-direction: row;
    text-align: left;
  }

  .isa-countdown__clock {
    margin: 0 20px;
    padding: 0;
  }

  .isa-countdown__clock li {
    font-size: 32px;
    min-width: 74px;
  }

  .isa-countdown__clock span:last-of-type {
    font-size: 16px;
  }

  .isa-countdown__clock li:not(:first-of-type) {
    margin: 0px 8px 0px 0;
  }

  .isa-countdown__clock li:not(:last-of-type) {
    margin: 0px 8px 0px 8px;
  }

  .isa-countdown__clock li:last-of-type {
    margin: 0 0 0 8px;
  }
}

/*-----2019 Banner END-------*/

#homeIsaBonusBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/home-isa-bonus-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 285px;
  margin-top: -45px;
  padding: 50px 0px 0px 0px;
}

#homeIsaAllowanceBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/home-annual-allowance-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 285px;
  margin-top: -45px;
  padding: 55px 0px 0px 0px;
}

#homeJisaAllowanceBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/home-junior-isa-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 285px;
  margin-top: -45px;
  padding: 60px 0px 0px 0px;
}

.bannerHR {
  border-top: 3px solid #eee;
  width: 100%;
  margin: auto;
}

.bannerEst {
  font-family: 'Brandon Text';
  color: #FFF;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 0px;
}

.homeIsaBonusBannerTitle {
  font-size: 28px;
  font-family: 'Brandon Text';
  font-weight: bold;
  color: #FFF;
  margin-bottom: 5px;
  text-align: center;
  line-height: 1.2;
}

.bannerPastPerformance {
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 16px;
  text-align: center;
  line-height: 1.2;
}

.homeBannerLink {
  color: #FFF !important;
  text-decoration: underline !important;
}

/* Galaxy S4 Portrait */

@media only screen and  (min-width : 360px) and (max-width : 360px) {
  #homeIsaBonusBanner {
    padding: 75px 0px 0px 0px;
  }

  #homeIsaAllowanceBanner {
    padding: 65px 0px 0px 0px;
  }
}

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) and (max-width : 375px) {
  #homeIsaBonusBanner {
    padding: 75px 0px 0px 0px;
  }

  #homeIsaAllowanceBanner {
    padding: 85px 0px 0px 0px;
  }

  #homeJisaAllowanceBanner {
    padding: 65px 0px 0px 0px;
  }
}

/* iPhone 6 + Portrait */

@media only screen and (min-width : 414px) and (max-width : 736px) {
  .homeIsaBonusBanner {
    padding: 50px 0px 0px 0px;
  }

  .isaHomeCarouselBanner {
    padding: 110px 0px 0px 0px;
  }

  .homeIsaBonusBannerTitle,
  .newYearBannerTitle {
    padding: 50px 0px 0px 0px;
  }
}

/* Nexus 4 Portrait */

@media only screen and  (min-width : 384px) {
  #homeIsaBonusBanner {
    padding: 65px 0px 0px 0px;
  }

  #homeIsaAllowanceBanner {
    padding: 75px 0px 0px 0px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width : 480px) {
  #homeIsaBonusBanner {
    padding: 45px 0px 0px 0px;
  }

  #homeIsaAllowanceBanner {
    padding: 45px 0px 0px 0px;
  }

  #homeJisaAllowanceBanner {
    padding: 30px 0px 0px 0px;
  }
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  #homeIsaBonusBanner {
    padding: 125px 0px 0px 0px;
  }

  .homeIsaBonusBannerTitle {
    font-size: 38px;
    margin-bottom: 10px;
  }

  .bannerEst {
    text-align: right;
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 16px;
  }

  .bannerPastPerformance {
    font-size: 22px;
    margin-top: 70px;
    margin-bottom: 0px;
  }

  .bannerEst {
    margin-right: 35px;
  }

  .bannerHR {
    width: 90%;
  }

  #homeIsaAllowanceBanner {
    padding: 130px 0px 0px 0px;
  }

  #homeJisaAllowanceBanner {
    padding: 115px 0px 0px 0px;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  #homeIsaBonusBanner {
    padding: 115px 0px 0px 0px;
  }

  #homeIsaAllowanceBanner {
    padding: 100px 0px 0px 0px;
  }

  .bannerPastPerformance {
    margin-top: 85px;
  }

  .bannerEst {
    margin-right: 50px;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width : 1200px) {
  #homeIsaBonusBanner {
    padding: 75px 0px 0px 0px;
  }

  #homeJisaAllowanceBanner {
    padding: 85px 0px 0px 0px;
  }

  .homeIsaBonusBannerTitle {
    font-size: 45px;
    margin-bottom: 20px;
  }

  .bannerEst {
    margin-right: 60px;
  }
}
#memberFeedbackBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/review-plan-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 270px;
  margin-top: -45px;
  padding: 60px 0px 0px 0px;
}

.memberFeedbackTitle {
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 32px;
  text-align: center;
  margin-top: 0px;
}

.memberFeedbackSubtitle {
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 26px;
  text-align: center;
  margin-top: 0px;
}

.memberFeedbackHR {
  margin: 15px auto;
  border-top: 3px solid #FFF;
}

#memberDrawIntro {
  padding: 40px 0px;
  background-color: #e5f7fb;
}

#memberDrawIntro p {
  font-family: 'Brandon Text';
  color: #13487a;
  line-height: 1.4;
  font-size: 18px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 0px;
}

#memberDrawTerms {
  padding: 40px 0px;
}

#memberDrawTerms h3 {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

#memberDrawTerms ul {
  padding-left: 20px;
}

#memberDrawTerms li {
  margin-bottom: 15px;
}

.memberFeedbackHelp {
  font-family: 'Brandon Text';
  color: #13487a;
  line-height: 1.6;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 0px;
  text-align: center;
}

#memberDrawTerms hr {
  margin: 30px 0px;
}

/* Galaxy S4 Portrait */

@media only screen and  (min-width : 360px) and (max-width : 360px) {
  #memberFeedbackBanner {
    padding: 80px 0px 0px 0px;
  }
}

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) and (max-width : 375px) {
  #memberFeedbackBanner {
    padding: 85px 0px 0px 0px;
  }
}

/* iPhone 6+ Portait */

@media only screen and  (min-width : 414px) {
  #memberFeedbackBanner {
    min-height: 275px;
    padding: 100px 0px 0px 0px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width : 480px) {
  #memberFeedbackBanner {
    min-height: 225px;
    padding: 55px 0px 0px 0px;
  }
}

/* Galaxy S4 Landscape */

@media only screen and (min-width : 640px) {
  #memberFeedbackBanner {
    padding: 80px 0px 0px 0px;
  }
}

/* iPhone 6 Landscape */

@media only screen and (min-width : 667px) {
  #memberFeedbackBanner {
    padding: 85px 0px 0px 0px;
  }
}

/* Small Devices, Tablets */

@media only screen and (min-width:768px) {
  #memberFeedbackBanner {
    min-height: 325px;
    padding: 120px 0px 0px 0px;
  }

  .memberFeedbackHR {
    width: 90%;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  .memberFeedbackTitle {
    font-size: 42px;
  }

  .memberFeedbackSubtitle {
    font-size: 38px;
  }

  #memberDrawTerms h3 {
    font-size: 38px;
    margin-bottom: 40px;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width : 1200px) {
  #memberFeedbackBanner {
    padding: 105px 0px 0px 0px;
  }

  .memberFeedbackHR {
    width: 85%;
  }

  .memberFeedbackTitle {
    font-size: 48px;
  }

  .memberFeedbackSubtitle {
    font-size: 42px;
  }

  .memberFeedbackHelp {
    font-size: 20px;
  }
}
#pageMessageBar {
  width: 100%;
  font-family: "Brandon Text";
  color: #FFFFFF;
  padding: 15px 0px 5px 0px;
  position: relative;
  z-index: 5;
  display: inline-block;
}

.pageMessageBar-notLoggedIn {
  background-color: #d9edf7;
  padding: .75rem 1.25rem;
  margin-bottom: -5px;
}

.pageMessageBar-LoggedIn {
  background-color: #93C120;
  padding: .75rem 1.25rem;
  margin-bottom: -5px;
}

.topMessageBars {
  list-style-type: none;
  padding-left: 0px;
}

.notLoggedIn p {
  text-align: center;
}

.loggedIn p,
.loggedIn a {
  display: inline-block;
  color: #fff;
}

.logoutButton {
  background-color: #00bfdf;
  color: #FFF !important;
  padding: 5px 10px;
  float: right;
  top: -5px;
  position: relative;
}

.icon-background4 {
  color: #c0ffc0;
}

.icon-background6 {
  color: #40c040;
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  .sf-lock-icon {
    position: relative;
    top: -6px;
  }
}

/* ----------- Galaxy S5 ----------- */

/* Portrait */

@media screen 
  and (device-width: 360px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 3) 
  and (orientation: portrait) {
  #pageMessageBarText {
    position: relative;
    top: -30px;
    margin-bottom: -40px;
  }

  #dashboardContent {
    padding: 85px 0px 40px 0px !important;
  }
}

/* Landscape */

@media screen 
  and (device-width: 640px) 
  and (device-height: 360px) 
  and (-webkit-device-pixel-ratio: 3) 
  and (orientation: landscape) {
  #pageMessageBarText {
    position: relative;
    top: -20px;
    margin-bottom: -18px;
  }

  #dashboardContent {
    padding: 85px 0px 40px 0px !important;
  }
}

/* ----------- Galaxy S6/S7/S8 ----------- */

@media screen 
  and (device-width: 360px) 
  and (device-height: 640px)
  and (-webkit-min-device-pixel-ratio : 4) 
  and (-webkit-device-pixel-ratio : 4)
  and (orientation: portrait) {
  #pageMessageBarText {
    position: relative;
    top: -30px;
    margin-bottom: -40px;
  }

  #dashboardContent {
    padding: 85px 0px 40px 0px !important;
  }
}

@media screen 
  and (device-width: 640px) 
  and (device-height: 360px)
  and (-webkit-min-device-pixel-ratio : 4) 
  and (-webkit-device-pixel-ratio : 4)
  and (orientation: landscape) {
  #pageMessageBarText {
    position: relative;
    top: -20px;
    margin-bottom: -18px;
  }

  #dashboardContent {
    padding: 85px 0px 40px 0px !important;
  }
}

/* ----------- iPhone 5 ----------- */

/* Portrait */

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
  #pageMessageBarText {
    position: relative;
    top: -30px;
    margin-bottom: -40px;
  }

  #dashboardContent {
    padding: 85px 0px 40px 0px !important;
  }
}

/* Landscape */

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
  #pageMessageBarText {
    position: relative;
    top: -20px;
    margin-bottom: -18px;
  }

  #dashboardContent {
    padding: 85px 0px 40px 0px !important;
  }
}

/* ----------- iPhone 6 ----------- */

/* Portrait */

@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
  #pageMessageBarText {
    position: relative;
    top: -30px;
    margin-bottom: -40px;
  }

  #dashboardContent {
    padding: 85px 0px 40px 0px !important;
  }
}

/* Landscape */

@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
  #pageMessageBarText {
    position: relative;
    top: -20px;
    margin-bottom: -18px;
  }

  #dashboardContent {
    padding: 85px 0px 40px 0px !important;
  }
}

/* iPhone 6+/7+ */

@media only screen 
and (min-device-width : 414px) 
and (max-device-width : 736px) 
and (orientation : portrait) {
  #pageMessageBarText {
    position: relative;
    top: -30px;
    margin-bottom: -40px;
  }

  #dashboardContent {
    padding: 105px 0px 40px 0px !important;
  }
}
#resultDual {
  padding: 40px 0px;
}

.dualQuoteTitle {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.dualQuoteHr {
  margin: 15px 0px;
  border-top: 2px solid #DDD;
}

.dualQuotePremiumTitle {
  font-family: 'Brandon Text';
  color: #13487a;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 0px;
}

.resultLeft {
  text-align: left !important;
  margin: 0px 0px 5px 0px;
}

.dualApplyBtn {
  background-color: #98c662;
  border-radius: 0px;
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 18px;
  padding: 15px;
  width: 100%;
}

.dualApplyBtn:hover {
  background-color: #89b258;
  color: #FFF;
}

.dualQuoteNeedHelp {
  margin: 0px !important;
}

.dualHelpText {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 14px;
  line-height: 1.4;
}

.showSmScreen {
  display: block;
}

.defaqtoLogoSection {
  background-color: #f7f7f7;
}

.defaqtoIcon-IP {
  margin-bottom: 20px;
  width: 220px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.defaqtoLogoTextSpacing ul {
  padding-left: 30px;
}

.centerDefaqtoLogo {
  margin: 0 auto;
  width: 220px;
}

.defaqtoTitle {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.downloadPanelDefaqto {
  background-color: #f6f6f6;
  padding: 20px;
  width: 100%;
  margin-left: 0px;
  margin-bottom: 3rem !important;
}

@media screen and (min-width: 768px) {
  .centerDefaqtoLogo {
    margin: 0 auto;
    width: 280px;
  }

  .defaqtoIcon-IP {
    width: 200px;
    margin-top: 20px;
    padding-bottom: 15px;
    margin-bottom: 0px;
    margin-left: 5px;
  }

  .defaqtoTitle {
    margin-bottom: 15px;
    margin-top: 15px;
  }

  .defaqtoText {
    padding-left: 15px;
  }

  .defaqtoLogoTextSpacing ul {
    padding-left: 40px;
  }

  .showSmScreen {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .defaqtoLogoSpacing {
    padding-left: 20px;
    margin-top: 25px;
  }

  .defaqtoTitle {
    font-size: 28px;
    margin-bottom: 15px;
    margin-top: 15px;
  }

  .defaqtoIcon-IP {
    width: 240px;
    margin-top: 20px;
    margin-bottom: 0px;
    padding-bottom: 10px;
  }

  .defaqtoText {
    padding-left: 15px;
  }
}

@media screen and (min-width: 1200px) {
  .defaqtoTitle {
    font-size: 32px;
    margin-bottom: 15px;
    margin-top: 15px;
  }

  .defaqtoLogoTextSpacing ul li {
    font-family: "Brandon Text", sans-serif;
    color: #183e7a;
  }

  .defaqtoLogoTextSpacing {
    padding-left: 20px;
    margin-top: 15px;
  }

  .defaqtoLogoTextSpacing ul {
    padding-left: 40px;
  }

  .defaqtoIcon-IP {
    width: 240px;
    margin-top: 20px;
    padding-bottom: 10px;
    margin-bottom: 0px;
  }
}

@media screen and (min-width: 320px) {
  .defaqtoLogoTextSpacing ul li {
    font-family: "Brandon Text", sans-serif;
    color: #333;
  }

  .defaqtoLogoSection {
    background-color: #f7f7f7;
    margin: 20px 0px 20px 0px;
    padding: 30px 10px 20px 10px;
  }
}
.download-guide {
  padding: 60px 0px 40px 0px;
}

.download-guide__intro {
  padding-bottom: 30px;
}

.download-guide__intro hgroup {
  font-family: 'Brandon Text';
  color: #13487a;
}

.download-guide__intro h1 {
  font-family: inherit;
  color: inherit;
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 10px;
}

.download-guide__intro h2 {
  font-family: inherit;
  color: inherit;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 20px;
}

.download-guide__intro p {
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .download-guide__intro h1 {
    font-size: 36px;
  }

  .download-guide__intro h2 {
    font-size: 24px;
  }
}

@media screen and (min-width: 992px) {
  .download-guide__intro h1 {
    font-size: 42px;
  }

  .download-guide__intro h2 {
    font-size: 26px;
  }
}
/* Unison ---------------*/

.show-786370 {
  display: none !important;
}

.show-text-786370 {
  display: none !important;
}

/* Usdaw ---------------*/

.show-548894 {
  display: none !important;
}

.show-text-548894 {
  display: none !important;
}

/* Telegraph -------------*/

.show-8462 {
  display: none !important;
}

.show-text-8462 {
  display: none !important;
}

/* Unison Conference -------------*/

.show-786370_ndc2019 {
  display: none !important;
}

.show-text-786370_ndc2019 {
  display: none !important;
}

/* Direct no affiliate ---------------*/

.show-600919 {
  display: none !important;
}

.show-text-600919 {
  display: none !important;
}

/* Always keep at the end of the file*/

/* Only use this to override the affiliate */

.currently-inactive {
  display: none !important;
}
.homepage-products {
  margin-bottom: 5px;
}

.homepage-products a {
  text-decoration: none;
  cursor: auto;
}

.homepage-products h5,
.homepage-products p {
  font-family: 'Brandon Text', 'Arial';
  color: #fff;
  margin: 0;
}

.homepage-products h5 {
  font-size: 20px;
  font-weight: 400;
}

.homepage-products__square,
.homepage-products__section {
  min-height: 160px;
  margin: 5px;
  position: relative;
  padding: 8px 12px;
  overflow: hidden;
}

.homepage-products__section p {
  display: none;
}

.homepage-products__square hr,
.homepage-products__section hr {
  border-bottom: 2px solid #fff;
  margin: 8px 0;
}

.homepage-products__section {
  background-color: #13487a;
}

.homepage-products__square {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

.homepage-products__square > h5 {
  transition: opacity .4s ease;
  position: absolute;
  left: 0;
  bottom: 0;
}

.homepage-products__square > a > h5 {
  transition: opacity .4s ease;
  position: absolute;
  left: 10px;
  bottom: 10px;
}

.homepage-products__square__details {
  padding: 8px 12px;
  background-color: #13487a;
  opacity: 0;
  transition: opacity .4s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}

.homepage-products__square__details div {
  margin-top: 12px;
  /*TODO: Align all buttons at the bottom of the box*/
}

.homepage-products__square__details div a {
  cursor: pointer;
}

.homepage-products__square__details > h5 {
  font-weight: 600;
}

/*--Colours for each section--*/

.homepage-products__section--purple hr {
  border-color: #a04591;
  margin: 18px 0;
}

.homepage-products__section--purple h5 {
  color: #a04591;
  font-weight: 600;
}

.homepage-products__section--light-blue hr {
  border-color: #00b2d7;
  margin: 18px 0;
}

.homepage-products__section--light-blue h5 {
  color: #00b2d7;
  font-weight: 600;
}

.homepage-products__section--green hr {
  border-color: #98c662;
  margin: 18px 0;
}

.homepage-products__section--green h5 {
  color: #98c662;
  font-weight: 600;
}

.homepage-products__section--yellow hr {
  border-color: #fabc51;
  margin: 18px 0;
}

.homepage-products__section--yellow h5 {
  color: #fabc51;
  font-weight: 600;
}

/*--Corner Flash --Triangle--*/

.corner-flash::before,
.corner-flash::after {
  display: none;
}

.corner-flash::before {
  content: '';
  position: absolute;
  top: 0%;
  right: 0%;
  width: 75%;
  height: 75%;
  background-color: #00b2d7;
  transform: rotate(45deg) translate(0%, -72%);
}

.corner-flash::after {
  color: #fff;
  font-family: 'Brandon Text', 'Arial';
  font-size: 16px;
  position: absolute;
  top: 22px;
  right: -14px;
  width: 120px;
  text-align: center;
  transform: rotate(45deg);
}

/*-- Tag line for the Corner Flash --*/

.homepage-products__square--isa.corner-flash::after {
  content: 'Highly Commended';
}

.homepage-products__square--bond.corner-flash::after {
  content: '1.20% AER Fixed';
  top: 25px;
  right: -15px;
}

.homepage-products__square--ip.corner-flash::after,
.homepage-products__square--over50s.corner-flash::after {
  content: 'Defaqto 5 Star Rated';
  top: 24px;
  right: -2px;
  width: 100px;
}

/*
    If you need to add another sqaure or are update an existing product sqaure use
    another modifier prefix at the end of the class name --bond, --isa, --ip to add 
    a new image
*/

.homepage-products__square--isa {
  background-image: url('/wp-content/themes/ShepherdsFriendly/assets/images/Stocks-Shares-ISA-homepage-square.jpg');
}

.homepage-products__square--bonus {
  background-image: url('/wp-content/themes/ShepherdsFriendly/assets/images/home-product-bonus-plan.jpg');
}

.homepage-products__square--bond {
  background-image: url('/wp-content/themes/ShepherdsFriendly/assets/images/Fixed-Rate-Bond-homepage-square.jpg');
}

.homepage-products__square--jisa {
  background-image: url('/wp-content/themes/ShepherdsFriendly/assets/images/home-product-junior-isa.jpg');
}

.homepage-products__square--ysp {
  background-image: url('/wp-content/themes/ShepherdsFriendly/assets/images/home-product-ysp.jpg');
}

.homepage-products__square--jmm {
  background-image: url('/wp-content/themes/ShepherdsFriendly/assets/images/home-product-jmm.jpg');
}

.homepage-products__square--ip {
  background-image: url('/wp-content/themes/ShepherdsFriendly/assets/images/Income-protection-homepage-sqaure.jpg');
}

.homepage-products__square--over50s {
  background-image: url('/wp-content/themes/ShepherdsFriendly/assets/images/Over-50s-Life-Insurance-homepage-square.jpg');
}

.homepage-products__square--transferISA {
  background-color: #e5f7fb;
}

/* FOR WHEN BOND HAS TO BE REMOVED
.homepage-products__square--transferISA h5, .homepage-products__square--transferISA p{
    color: #13487a;
}
.desktopOnly {
    display: none !important;
}
.mobileOnly {
    display: block !important;
}
.productSquareOutlineBtn {
    margin: 16px 0;
    min-width: 20px;
    max-width: 120px;
    width: 120px;
    display: none;
    border-radius: 3px;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    border: 0;
    color: #13487a;
    border: 1.75px solid #1b3d7a;
    background-color: transparent;
    text-decoration: none;
    cursor: pointer !important;
} */

@media (min-width: 556px) {
  .homepage-products__square,
  .homepage-products__section {
    min-height: 220px;
  }

  .homepage-products h5 {
    font-size: 26px;
  }
}

@media (min-width: 768px) {
  .homepage-products__square,
  .homepage-products__section {
    margin: 10px;
  }

  .homepage-products {
    margin-bottom: 10px;
  }

  .corner-flash::before,
  .corner-flash::after {
    display: block;
  }

  .corner-flash::before {
    width: 95%;
    height: 95%;
  }
}

@media (min-width: 992px) {
  .homepage-products__square,
  .homepage-products__section {
    min-height: 212px;
  }

  .homepage-products__section hr {
    margin: 8px 0;
  }

  .homepage-products__section p {
    display: block;
  }

  .corner-flash::before {
    width: 90%;
    height: 90%;
  }

  /* FOR WHEN BOND HAS TO BE REMOVED
    .desktopOnly {
        display: block !important;
    }
    .mobileOnly {
        display: none !important;
    }

    
    .productSquareOutlineBtn {
        display: block;
    } */
}

@media (min-width: 1200px) {
  .homepage-products__square,
  .homepage-products__section {
    margin: 15px;
  }

  .homepage-products {
    margin-bottom: 15px;
  }

  /*--Hover effect for product sqaures--*/

  .homepage-products .homepage-products__square:hover > h5 {
    opacity: 0;
  }

  .homepage-products__square:hover .homepage-products__square__details {
    opacity: 1;
  }

  .homepage-products__square,
  .homepage-products__section {
    min-height: 262px;
  }

  .homepage-products h5 {
    font-size: 32px;
  }

  .corner-flash::before {
    width: 75%;
    height: 75%;
  }
}
#productComparisonTable {
  margin: 0 auto 50px auto;
}

#productComparisonTable .row {
  padding: auto 0;
  margin: 0;
}

#productComparisonTable p {
  width: 75%;
  margin-top: 8px;
}

.valueWinner {
  font-weight: 900;
}

#productComparisonTable .icon {
  height: 15px;
}

@media only screen and (max-width: 991px) {
  #productComparisonTable p {
    width: 100%;
  }
}
.table th,
.table td {
  padding: 10px;
  background: #f6f6f6;
  display: flex;
  justify-content: center;
  flex-direction: column;
  word-break: break-word;
}

.NW20-tableBlueHeading th,
.NW20-tableBlueHeading td {
  padding: 10px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  word-break: break-word;
  border-bottom: 1px solid #707070;
  color: #454e50;
}

.NW20-tableBlueHeading tr:last-of-type th,
.NW20-tableBlueHeading tr:last-of-type td,
.NW20-tableYellowHeading tr:last-of-type th,
.NW20-tableYellowHeading tr:last-of-type td {
  border-bottom: none;
}

.NW20-table td {
  padding: 10px;
  background: #e1f3fc;
  display: flex;
  justify-content: center;
  flex-direction: column;
  word-break: break-word;
  font-size: 16px;
  color: #454e50;
}

.page-id-bonds .NW20-table td,
.page-id-isa .NW20-table td,
.page-id-sustainable-isa .NW20-table td {
  background-color: #ffffff;
}

.table {
  border: 2px solid #13487a;
  background-color: #13487a;
  border-radius: 5px;
  overflow: hidden;
  display: block;
  overflow-x: auto;
}

.NW20-table {
  border: none;
  background-color: #e1f3fc;
  border-radius: 5px;
  overflow: hidden;
  display: block;
  overflow-x: auto;
  font-family: "Brandon Text", Arial, sans-serif;
  padding: 20px;
}

.page-id-bonds .NW20-table,
.page-id-isa .NW20-table,
.page-id-sustainable-isa .NW20-table {
  background-color: #ffffff;
}

.NW20-tableBlueHeading {
  border: none;
  background-color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  display: block;
  overflow-x: auto;
  font-family: "Brandon Text", Arial, sans-serif;
  font-size: 16px;
}

.NW20-tableYellowHeading {
  border: none;
  background-color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  display: block;
  overflow-x: auto;
  font-family: "Brandon Text", Arial, sans-serif;
  font-size: 16px;
}

.NW20-table tbody tr:first-of-type th,
.NW20-table tbody tr:first-of-type td {
  border-top: none;
}

.table thead,
.table tbody,
.table caption {
  display: block;
}

.table::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 1px solid white;
  /* should match background, can't be transparent */
  background-color: rgba(0, 0, 0, 0.5);
}

.table::-webkit-scrollbar:horizontal {
  height: 8px;
  margin-top: 1px;
}

.table::-webkit-scrollbar {
  -webkit-appearance: none;
}

.table > caption {
  padding-left: 20px;
  background-color: white;
}

.table thead th {
  background-color: #13487a;
  color: white !important;
}

.NW20-table thead th {
  background-color: #e1f3fc;
  color: #13243a !important;
  font-size: 24px;
  border: none !important;
}

.page-id-bonds .NW20-table thead th,
.page-id-isa .NW20-table thead th,
.page-id-sustainable-isa .NW20-table thead th {
  background-color: #ffffff;
}

.NW20-tableBlueHeading thead th {
  background-color: #13243a;
  color: #ffffff;
  border-bottom: none !important;
}

.NW20-tableYellowHeading thead th {
  background-color: #ffffff;
  color: #f7aa00 !important;
  border-bottom: none !important;
}

.table tbody th {
  background-color: white;
  color: #13487a !important;
}

.NW20-table tbody th {
  background-color: #e1f3fc;
  color: #454e50 !important;
  font-size: 16px;
}

.page-id-bonds .NW20-table tbody th,
.page-id-isa .NW20-table tbody th,
.page-id-sustainable-isa .NW20-table tbody th {
  background-color: #ffffff;
}

.NW20-tableBlueHeading tbody th {
  background-color: #ffffff;
  color: #454e50 !important;
  font-size: 16px;
}

.NW20-tableYellowHeading tbody th,
.NW20-tableYellowHeading td {
  background-color: #ffffff;
}

.table td,
.table th {
  padding: 12px 20px !important;
  min-width: 100px;
  flex: 1;
}

.table tr {
  display: flex;
}

.application-review-table {
  border: none;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  display: block;
  overflow-x: auto;
  font-family: "Brandon Text", Arial, sans-serif;
  padding: 20px;
}

.application-review-divider {
  width: 100%;
  height: 2.1rem;
  background-color: #e1f3fc;
  border: none;
}

.application-review-table thead th {
  background-color: #ffffff;
  color: #13243a !important;
  font-size: 24px;
  border: none !important;
}

.application-review-table tbody th {
  background-color: #ffffff;
  color: #454e50 !important;
  font-size: 16px;
}

.application-review-table td {
  padding: 10px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  word-break: break-word;
  font-size: 16px;
  color: #454e50;
}

@media only screen and (max-width: 991px) {
  .table th,
  .table td {
    padding: 10px !important;
  }
}

.application-review_panel--viewb table,
.application-review_panel--viewb table th,
.application-review_panel--viewb table tbody th,
.application-review_panel--viewb table tbody tr td {
  background: #e1f3fc;
}
.tabContainer {
  display: flex;
  margin: 0px auto !important;
  width: 100%;
}

.tabElement {
  display: inline-block;
  float: left;
  width: 106px;
  background-color: #b2e8f3;
  margin-right: 1px;
  padding: 15px;
  border-radius: 6px 6px 0px 0px;
  color: #13487a;
  font-family: 'Brandon Text';
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0px;
}

.tabElementActive {
  display: inline-block;
  float: left;
  width: 105px;
  background-color: #ccf0f7;
  margin-right: 1px;
  padding: 15px;
  border-radius: 6px 6px 0px 0px;
  color: #13487a;
  font-family: 'Brandon Text';
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0px;
}

.tabElement:hover {
  background-color: #00b2d7;
  color: #FFF;
  text-decoration: none;
}

@media only screen and  (min-width : 360px) {
  .tabElement {
    width: 119px;
  }

  .tabElementActive {
    width: 119px;
  }
}

@media only screen and  (min-width : 375px) {
  .tabElement,
  .tabElementActive {
    width: 124px;
    font-size: 14px;
  }
}

@media only screen and (min-width : 480px) {
  .tabElement,
  .tabElementActive {
    width: 159px;
    font-size: 16px;
  }
}

@media only screen and(min-width:640px) {
  .tabElement,
  .tabElementActive {
    width: 213px;
    font-size: 18px;
  }
}

@media only screen and(min-width:768px) {
  .tabElement,
  .tabElementActive {
    width: 249px;
  }
}

@media only screen and (min-width : 992px) {
  .tabContainer {
    width: 80%;
  }

  .tabElement,
  .tabElementActive {
    width: 257px;
    font-size: 22px;
  }
}

@media only screen and (min-width : 1200px) {
  .tabElement,
  .tabElementActive {
    width: 311px;
  }
}
.quote-options-cards {
  margin: 0;
  max-width: 140rem;
}

.amend-quote {
  width: 100%;
  max-width: 140rem;
  background: #fff;
  padding: 3rem;
  margin-bottom: 3rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.amend-quote__description {
  font-family: Brandon Text, serif;
  color: #454e50;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

.amend-quote__cta {
  background-color: #13243a;
  display: inline-block;
  padding: 1.5rem 3.2rem;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 3rem;
  text-align: center;
  width: auto;
  border: 0.2rem solid #fff;
  font-weight: 700;
  min-width: 22.1rem;
}

@media screen and (min-width: 768px) {
  .amend-quote {
    flex-direction: row;
    gap: 1rem;
  }
}
.topUpLogoHeader {
  display: block;
  margin: 50px auto;
}

.topUpContentTitle {
  font-family: 'Brandon Text';
  text-align: center;
  font-weight: 300;
  font-size: 32px;
  color: #13487a;
  margin-bottom: 30px;
}

.bold {
  font-weight: bold;
}

.topUpBannerBtn {
  display: block;
  margin: 30px auto 0px auto;
  border-radius: 0px;
  max-width: 260px;
  padding: 15px 45px;
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 20px;
  background-color: #98c662;
}

.topUpTextContent {
  font-family: 'Brandon Text';
  font-size: 18px;
  line-height: 1.4;
  color: #13487a;
  margin-bottom: 20px;
}

.topUpAdditionalTextContent {
  font-family: 'Brandon Text';
  font-size: 16px;
  line-height: 1.4;
  color: #13487a;
  margin-bottom: 20px;
}

.topUpTextCenter {
  text-align: center;
}

.topUpLightBlueBackground {
  background: #ccf0f7;
  padding: 40px 0px;
}

.topUpGreyBackground {
  background: #f5f5f5;
  padding: 40px 0px;
}

.topUpWhiteBackground {
  background: white;
  padding: 40px 0px;
}

.topUpBox {
  border-radius: 8px;
  padding: 30px;
  background: white;
  min-height: 775px;
}

.topUpBoxContent {
  min-height: 250px;
}

.topUpEntries {
  min-width: 495px;
}

.topUpEntries p {
  padding: 5px;
  margin: 5px -2px;
  font-family: 'Brandon Text';
  text-align: center;
  font-size: 16px;
  display: inline-block;
}

.topUpEntriesTier {
  background: #13487a;
  color: white;
  width: auto;
  min-width: 15%;
}

.topUpEntriesAmount {
  background: #f5f5f5;
  color: #13487a;
  width: auto;
  min-width: 60%;
}

.topUpEntriesQuantity {
  background: #00b2d7;
  color: white;
  width: auto;
  min-width: 125px;
}

.arrowDown {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  margin-left: auto;
  margin-right: auto;
  margin-top: -40px;
  margin-bottom: 40px;
}

.arrowDownLightBlue {
  border-top: 20px solid #ccf0f7;
}

.arrowDownGrey {
  border-top: 20px solid #f5f5f5;
}

@media only screen and (max-width: 600px) {
  .topUpLogoHeader {
    width: 50%;
    margin: 65px auto;
  }

  .topUpContentTitle {
    font-size: 22px;
  }

  .topUpBox {
    margin: 10% 0;
  }

  .topUpEntries {
    min-width: auto;
    margin: 10% 0;
  }

  .topUpEntries p {
    margin: 0;
    display: block;
  }

  .topUpWhiteBackground {
    margin-left: 16px;
    margin-right: 16px;
  }
}
.page-id-611 #aboutAppIntro {
  background-color: #FFF;
}

.page-id-611 .aboutAppTitle {
  font-family: 'Brandon Text';
  font-size: 24px;
  color: #1B3D7A;
}

.page-id-611 .aboutAppIntroText {
  font-family: 'Brandon Text';
  font-size: 18px;
  color: #13487a;
  margin-bottom: 30px;
  font-weight: 300;
}

.page-id-611 .widthStep {
  width: 450px;
  padding: 0;
}

.page-id-611 .agreementContent {
  font-family: 'Brandon Text';
  font-size: 14px;
  color: #13487a;
  font-weight: 300;
  margin: 12px 0 16px 0;
}

.page-id-611 .additionalInfoContent {
  font-family: 'Brandon Text';
  font-size: 16px;
  color: #13487a;
  font-weight: 300;
  margin: 8px 0 16px 0;
}

.page-id-611 .headerAdditionalInfoContent {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 16px;
  font-weight: normal;
  position: relative;
  top: 16px;
  left: 70%;
}

.page-id-611 .documentsButton {
  width: 100%;
  height: auto;
  border: 1.75px solid #1B3D7A;
  border-radius: 3px;
  padding: 16px;
  margin: 16px 0;
  cursor: pointer;
}

.page-id-611 #documentsTab {
  width: 100%;
  border: 1.75px solid #1B3D7A;
  border-radius: 3px;
  padding: 16px;
  margin: auto 0;
  cursor: pointer;
}

.page-id-611 #documentsContent {
  overflow: hidden;
}

.page-id-611 .documentsTabTitle {
  font-family: 'Brandon Text';
  font-size: 16px;
  color: #13487a;
}

.page-id-611 .documentsTabContent {
  font-family: 'Brandon Text';
  font-size: 16px;
  color: #13487a;
  font-weight: 300;
  display: block;
  margin: 8px 0;
}

.page-id-611 #arrowTab {
  position: relative;
  left: 400px;
  top: -35px;
}

.page-id-611 #aboutAppTitleBox {
  min-height: 90px;
}

.page-id-611 .applicationLogo {
  width: 114px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .page-id-611 .widthStep {
    width: 343px;
  }

  .page-id-611 .aboutAppIntroText {
    font-size: 16px;
  }

  .page-id-611 .agreementContent {
    font-size: 14px;
  }

  .page-id-611 .additionalInfoContent {
    font-size: 14px;
  }

  .page-id-611 .headerAdditionalInfoContent,
  .page-id-60281 .headerAdditionalInfoContent,
  .page-id-64910 .headerAdditionalInfoContent,
  .page-id-64874 .headerAdditionalInfoContent,
  .page-id-64197 .headerAdditionalInfoContent {
    left: 45%;
  }

  .page-id-611 #arrowTab {
    position: relative;
    left: 95%;
  }

  .page-id-611 #aboutAppTitleBox {
    min-height: 5px;
  }

  .page-id-611 .applicationLogo {
    width: 88px;
    height: auto;
  }
}
/* Resource Centre */

.rc-item:hover {
  -webkit-animation: pulse 1s;
  animation: pulse 1s;
}

.rcLinkNoDec {
  text-decoration: none;
  cursor: pointer;
}

#resourceCentreBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/resource-centre-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 215px;
  margin-top: -45px;
  padding: 30px 0px 0px 0px;
}

.resourceCentreTitle {
  font-family: 'Brandon Text';
  font-size: 32px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 15px;
}

.resourceCentreSubtitle {
  font-family: 'Brandon Text';
  font-size: 20px;
  color: #FFF;
  text-align: center;
  margin: 0px;
}

#resourceCentreBreadCrumbs {
  background-color: #e5f7fb;
  padding: 30px 0px;
}

#resourceCentreBreadCrumbsLearn {
  background-color: #ffffff;
  padding: 10px 0px 0px 0px;
  margin-top: 20px;
}

#resourceCentreBreadCrumbs p {
  font-size: 16px;
}

.breadcrumbHR {
  margin-top: 0px;
  margin-bottom: 30px;
  border: 0;
  border-top: 1px solid #d8e5e8;
}

#resourceCentreIntro {
  background-color: #e5f7fb;
  padding: 40px 0px 10px 0px;
}

.resourceCentreIntroTitle {
  font-family: 'Brandon Text';
  font-size: 18px;
  color: #13487a;
  text-align: center;
  margin-bottom: 30px;
}

.resourceCentreIntroText {
  font-family: 'Brandon Text';
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

.resourceFilterBox {
  max-width: 280px;
  margin: 0 auto;
}

.resourceFilterIcon {
  display: inline-block;
  margin-right: 30px;
  margin-top: 30px;
  vertical-align: bottom !important;
}

.resourceSearchBox {
  max-width: 860px;
  display: inline-block;
  margin-top: 20px;
}

#resourceCentreContent {
  padding: 40px 0px;
}

.resourceArticleBox {
  background-color: #eef5dd;
  padding: 20px;
  margin-bottom: 30px;
  overflow: hidden;
}

.resourceArticleBoxLearn,
.resourceArticleBoxFAQ {
  background-color: #eef5dd;
  padding: 20px;
  margin-bottom: 10px;
  overflow: hidden;
}

.resourceArticleHeader,
.resourceArticleHeaderLearn,
.resourceArticleHeaderFAQ {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

.resourceArticleSnippet,
.resourceArticleSnippetLearn {
  font-family: 'Brandon Text';
  color: #333;
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
}

.resourceArticleBoxBig {
  background-color: #e5f7fb;
  padding: 20px;
  min-height: 135px;
}

.resourceArticleHeaderBig {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

.resourceArticleSnippetBig {
  font-family: 'Brandon Text';
  color: #333;
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
}

.resourceMiddleRow {
  margin: 40px 0px;
}

.rc-item-learn {
  padding-left: 0px;
  padding-right: 0px;
  margin-left: 10px;
}

.resourceCentreSearch {
  margin-bottom: 20px;
}

/* Resource Centre FAQ Pages */

#childSavingsFAQBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/faq-child-savings-banner.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  max-height: 255px;
  margin-top: -45px;
  background-color: #93dfee;
}

#adultSavingsFAQBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/faq-adult-savings-banner.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  max-height: 255px;
  margin-top: -45px;
  background-color: #93dfee;
}

#over50FAQBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/faq-over-50-banner.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  max-height: 255px;
  margin-top: -45px;
  background-color: #93dfee;
}

#incomeProtectionFAQBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/faq-income-protection-banner.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  max-height: 255px;
  margin-top: -45px;
  background-color: #93dfee;
}

#childSavingsFAQBanner,
#adultSavingsFAQBanner,
#over50FAQBanner,
#incomeProtectionFAQBanner {
  padding: 30px 0px;
}

.FAQTitle {
  font-family: 'Brandon Text';
  font-size: 24px;
  color: #FFF;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 15px;
}

.faqColHeader1 {
  background-color: #eef5dd;
  padding: 15px;
}

.faqColHeader2 {
  background-color: #fff0c7;
  padding: 15px;
}

.faqColHeader3 {
  background-color: #e5f5fc;
  padding: 15px;
}

.faqColTitle {
  font-family: 'Brandon Text';
  font-size: 24px;
  font-weight: bold;
  color: #13487a;
  margin: 0px;
}

.faqSuggestionBox {
  padding: 30px;
  background-color: #e5f7fb;
  margin: 40px 0px;
}

.faqQuestion {
  padding: 20px 15px;
  background-color: #efefef;
  margin-bottom: 1px;
}

.question {
  display: inline-block;
  font-family: 'Brandon Text';
  font-size: 16px;
  color: #13487a;
  margin-bottom: 0px;
  max-width: 85%;
  font-weight: bold;
}

.answerText {
  font-family: 'Brandon Text';
  color: #13487a;
  margin-bottom: 0px;
  margin-top: 20px;
}

.questionIcon {
  float: right;
  top: -3px;
  cursor: pointer;
}

.questionIcon2 {
  float: right;
  top: -3px;
  cursor: pointer;
}

.faqExpandIcon {
  top: 0px;
}

.faqSuggestionRow {
  margin: 30px auto 0px auto;
  max-width: 100%;
}

.faqSuggestionInput {
  border-radius: 0px;
}

.faqSubmitBtn {
  background-color: #13487a;
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 16px;
  border-radius: 0px;
  border: 0px;
  height: 40px;
  padding: 6px 15px;
}

.faqSubmitBtn:hover {
  background-color: #103d67;
  border: 0px;
  color: #FFF;
}

.faqSuggestionTitle,
.faqContactTitle {
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.faqContactBox {
  padding: 30px;
  background-color: #efefef;
}

.faqSuggestionBox p,
.faqContactBox p {
  font-family: 'Brandon Text';
  font-size: 16px;
  line-height: 1.4;
  color: #13487a !important;
  text-align: center;
}

.faqContactRow {
  margin: 30px 0px;
}

.faqContactIcon,
.faqContactIcon2 {
  display: block;
  margin: 0px auto 10px auto;
}

.faqContactIcon2 {
  margin-top: 20px;
}

.faqContactDetails {
  display: block !important;
  font-size: 22px !important;
  margin-bottom: 0px;
  vertical-align: bottom !important;
  color: #13487a !important;
  font-family: 'Brandon Text';
  text-align: center;
}

.breadcrumbLink {
  color: #333 !important;
}

#resourceCentreBreadCrumbsLearn p a {
  color: #b1b1b1 !important;
  text-decoration: underline;
  font-size: 16px;
}

#content_Learn {
  background-color: #e5f7fb;
  padding: 20px 10px;
  margin: 0px;
  font-family: 'Brandon Text';
  color: #183e7a;
  font-weight: bold;
}

.category-learn p.introParagraph {
  background-color: #e5f7fb;
  margin: 0px 0px 20px 0px;
  padding: 10px;
  color: #183F7A;
}

.category-learn p {
  color: #626261;
}

.learnIcons {
  display: inline-block;
  width: 30px;
  text-decoration: none;
  margin-top: -5px;
}

.rcHomepageBoxImageSmall {
  min-height: 180px;
  overflow: hidden;
}

.sharingIcons {
  margin: 5px auto 10px auto;
}

.resourcePagingBtn {
  background-color: #13487a;
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 16px;
  border-radius: 0;
  border: 0;
  width: 90px;
}

.resourcePagingBtn:hover {
  background-color: #103d67;
  border: 0px;
  color: #FFF;
}

/* Galaxy S4 Portrait */

@media only screen and  (min-width : 360px) and (max-width : 360px) {
  .FAQTitle {
    margin-top: 50px;
  }

  #resourceCentreBanner {
    padding: 60px 0px 0px 0px;
  }
}

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) and (max-width : 375px) {
  #resourceCentreBanner {
    padding: 65px 0px 0px 0px;
  }

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

/* Nexus 4 Portrait */

@media only screen and  (min-width : 384px) and (max-width : 384px) {
  #resourceCentreBanner {
    padding: 50px 0px 0px 0px;
  }

  .FAQTitle {
    margin-top: 35px;
  }
}

/* Nexus 6 Portrait */

@media only screen and  (min-width : 412px) and (max-width : 412px) {
  #resourceCentreBanner {
    padding: 55px 0px 0px 0px;
  }

  .FAQTitle {
    margin-top: 45px;
  }
}

/* iPhone 6 + Portrait */

@media only screen and  (min-width : 414px) and (max-width : 414px) {
  #resourceCentreBanner {
    padding: 75px 0px 0px 0px;
  }

  .FAQTitle {
    margin-top: 60px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width : 480px) {
  #resourceCentreBanner {
    padding: 50px 0px 0px 0px;
  }

  .FAQTitle {
    font-size: 26px;
    margin-top: 25px;
  }
}

/* iPhone 5 Landscape */

@media (min-width:568px) {
  .FAQTitle {
    font-size: 30px;
    margin-top: 25px;
  }
}

/* Galaxy S4 Landscape */

@media (min-width:640px) {
  .resourceCentreIntroTitle {
    font-size: 20px;
  }

  .FAQTitle {
    font-size: 34px;
    margin-top: 40px;
  }
}

/* iPhone 6 Landscape */

@media (min-width:667px) {
  .FAQTitle {
    font-size: 34px;
    margin-top: 45px;
  }
}

/* Nexus 6 Landscape */

@media (min-width:732px) {
  .FAQTitle {
    font-size: 30px;
    margin-top: 75px;
  }
}

/* iPhone 6+ Landscape */

@media (min-width:736px) {
  .FAQTitle {
    font-size: 30px;
    margin-top: 65px;
  }
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  .resourceArticleBox {
    margin-bottom: 0px;
  }

  .resourceCentreIntroTitle {
    font-size: 22px;
  }

  .resourceArticleHeader {
    min-height: 80px;
  }

  .resourceArticleSnippet {
    min-height: 80px;
  }

  .resourceArticleHeaderBig {
    min-height: 80px;
  }

  .resourceArticleSnippetBig {
    min-height: 80px;
  }

  .resourceArticleBox {
    min-height: 220px;
  }

  .resourceFilterBox {
    max-width: 280px;
    display: inline-block;
    margin: 0px;
  }

  .resourceSearchBox {
    max-width: 445px;
  }

  .rcHomepageBoxImageSmall {
    min-height: 235px;
  }

  .learnIcons {
    margin-left: 10px;
  }

  #resourceCentreBreadCrumbsLearn {
    margin-top: 65px;
  }

  .resourceArticleBoxFAQ {
    min-height: 160px;
  }

  .FAQTitle {
    font-size: 40px;
    margin-top: 80px;
  }

  .question {
    max-width: 80%;
  }

  .faqSuggestionRow {
    margin: 30px auto 0px auto;
    max-width: 60%;
  }

  .faqSubmitBtn {
    background-color: #13487a;
    color: #FFF;
    font-family: 'Brandon Text';
    font-size: 16px;
    border-radius: 0px;
    border: 0px;
    height: 40px;
    padding: 6px 45px;
  }

  #childSavingsFAQBanner,
  #adultSavingsFAQBanner,
  #over50FAQBanner,
  #incomeProtectionFAQBanner {
    min-height: 300px;
  }
}

/* Apple iPad's and BlackBerry PlayBook */

@media only screen and (min-width : 992px) and (max-width : 1024px) {
  #childSavingsFAQBanner,
  #adultSavingsFAQBanner,
  #over50FAQBanner,
  #incomeProtectionFAQBanner {
    background-size: cover;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  #resourceCentreBanner {
    min-height: 500px;
  }

  .resourceCentreTitle {
    font-size: 62px;
    margin-top: 80px;
    margin-bottom: 20px;
  }

  .resourceCentreSubtitle {
    font-size: 42px;
  }

  .resourceCentreIntroTitle {
    font-size: 26px;
  }

  .resourceSearchBox {
    max-width: 667px;
  }

  .resourceArticleHeader {
    min-height: 50px;
  }

  .resourceArticleSnippet {
    min-height: 50px;
  }

  .resourceArticleHeaderBig {
    min-height: 50px;
  }

  .resourceArticleSnippetBig {
    min-height: 50px;
  }

  .resourceArticleBox {
    min-height: 170px;
  }

  .rcHomepageBoxImageSmall {
    min-height: 305px;
  }

  .rcHomepageBoxImageSmallLearn {
    min-height: 190px;
  }

  .rc-item-learn {
    padding: 0px 15px;
    margin: 0px;
  }

  .resourceArticleBoxLearn {
    max-height: 205px;
  }

  .resourceArticleHeaderLearn {
    min-height: 80px;
  }

  .resourceArticleSnippetLearn {
    min-height: 80px;
  }

  #resourceCentreBreadCrumbsLearn {
    margin-top: 35px;
  }

  .resourceArticleBoxFAQ {
    min-height: 105px;
  }

  .FAQTitle {
    font-size: 60px;
    margin-top: 60px;
  }

  .faqExpandIcon {
    top: -3px;
  }

  .faqContactRow {
    margin: 10px auto 30px auto;
    max-width: 660px;
  }

  .faqContactDetails {
    display: inline-block !important;
    font-size: 32px !important;
    margin-bottom: 0px;
    vertical-align: bottom !important;
    height: 38px;
    color: #13487a !important;
    font-family: 'Brandon Text';
  }

  .faqContactIcon {
    display: inline-block;
    margin: 10px 5px 0px 0px;
  }

  .faqContactIcon2 {
    display: inline-block;
    margin: 12px 5px 0px 20px;
  }

  #childSavingsFAQBanner,
  #adultSavingsFAQBanner,
  #over50FAQBanner,
  #incomeProtectionFAQBanner {
    min-height: 300px;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width : 1200px) {
  .rcHomepageBoxImageSmall {
    min-height: 195px;
  }

  .resourceArticleHeader {
    min-height: 80px;
  }

  .resourceArticleHeaderFAQ {
    min-height: 80px;
  }

  .resourceArticleSnippet {
    min-height: 80px;
  }

  .resourceArticleHeaderBig {
    min-height: 40px;
  }

  .resourceArticleSnippetBig {
    min-height: 40px;
  }

  .resourceArticleBox {
    min-height: 240px;
  }

  .resourceSearchBox {
    max-width: 867px;
  }

  .rcHomepageBoxImageSmallLearn {
    min-height: 235px;
  }

  #resourceCentreBreadCrumbsLearn {
    margin-top: 10px;
  }

  .FAQTitle {
    font-size: 64px;
    margin-top: 35px;
  }

  .question {
    max-width: 85%;
  }

  #childSavingsFAQBanner,
  #adultSavingsFAQBanner,
  #over50FAQBanner,
  #incomeProtectionFAQBanner {
    padding: 30px 0px 0px 0px;
  }
}

#homeResourceCentreBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/home-resource-centre-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 285px;
  margin-top: -45px;
  padding: 60px 0px 0px 0px;
}

/* iPhone 6 Portrait */

@media only screen and  (min-width : 375px) and (max-width : 375px) {
  #homeResourceCentreBanner {
    padding: 65px 0px 0px 0px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width : 480px) {
  #homeResourceCentreBanner {
    padding: 30px 0px 0px 0px;
  }
}

@media (min-width:768px) {
  #homeResourceCentreBanner {
    padding: 115px 0px 0px 0px;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width : 1200px) {
  #homeResourceCentreBanner {
    padding: 85px 0px 0px 0px;
  }
}
#homeOver50Banner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/home-over-50-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 285px;
  margin-top: -45px;
  padding: 60px 0px 0px 0px;
}

#homeYspBanner {
  background-attachment: scroll;
  background-image: url(/wp-content/themes/ShepherdsFriendly/assets/images/home-ysp-banner.jpg);
  background-position: top center;
  background-repeat: none;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  min-height: 285px;
  margin-top: -45px;
  padding: 60px 0px 0px 0px;
}

.homeOver50BannerTitle {
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin: 0px;
  line-height: 1.2;
}

.homeOver50HR {
  border-top: 2px solid #FFF;
  width: 80%;
}

.homeOver50BannerSubtitle {
  font-family: 'Brandon Text';
  color: #FFF;
  font-size: 22px;
  text-align: center;
  margin: 0px;
}

@media (min-width:768px) {
  #homeOver50Banner {
    padding: 110px 0px 0px 0px;
  }

  #homeYspBanner {
    padding: 100px 0px 0px 0px;
  }

  .homeOver50BannerTitle {
    font-size: 62px;
  }

  .homeOver50BannerSubtitle {
    font-size: 40px;
  }

  .homeOver50HR {
    border-top: 4px solid #FFF;
    width: 100%;
  }
}

@media (min-width:992px) {
  .homeOver50HR {
    width: 90%;
  }
}

@media (min-width:1200px) {
  .homeOver50HR {
    width: 75%;
  }

  .homeOver50BannerSubtitle {
    font-size: 36px;
  }
}


.keyInfoWrapper {
  padding: 10px;
}

.application-page-title {
  text-align: center;
}

.appFormTitle {
  font-family: "Brandon Text";
  font-size: 30px;
  color: #00bae7;
  margin-top: 30px;
  margin-bottom: 30px;
}

.NW20-appFormTitle {
  font-family: "Brandon Text", Arial !important;
  font-size: 32px !important;
  color: #13243a !important;
  margin-top: 30px;
  margin-bottom: 30px;
}

.NW20-dbLogo {
  width: 13%;
}

.appFormSubtitle {
  font-family: "Brandon Text";
  font-size: 30px;
  color: #00bae7;
  margin-bottom: 30px;
}

.applicationForm {
  /*padding: 40px 0px;*/
  background-color: #e5f7fb;
  background-color: #ccf0f7;
}

.NW20-applicationForm {
  background-color: #ffffff;
}

.NW20-applicationFormBlue {
  background-color: #87d0f140;
}

.NW20-applicationFormBlue .form-group .col-md-2 {
  width: 100%;
}

.NW20-applicationFormBlue .form-group .col-md-pull-3 {
  right: auto;
}

.NW20-applicationFormBlue .form-group .col-md-push-9 {
  left: 0;
}

.NW20-applicationFormBlue .form-group .col-md-5 {
  clear: both;
}

.applicationFormPageTitle {
  font-family: "Brandon Text";
  font-size: 30px;
  color: #13487a;
  line-height: 1;
  text-align: center;
  margin-bottom: 0px;
  margin-top: 40px;
}

.aboutApplicationFormPageTitle {
  font-family: "Brandon Text";
  font-size: 30px;
  color: #13487a;
  line-height: 1;
  text-align: center;
  margin-bottom: 5px;
  margin-top: 25px;
}

.appFormDivider {
  border-top: 2px solid #fff;
  margin: 30px 0px;
}

.NW20-innerAppContainerBlue .NW20-appFormDivider {
  border-top: 1px solid #454e501a;
  margin: 30px 0px;
  width: 45%;
  opacity: 1;
}

.appFormLabel {
  font-family: "Brandon Text";
  color: #183e7a;
  font-size: 16px;
  font-weight: 400;
}

.NW20-appFormLabel {
  font-family: "Brandon Text", Arial !important;
  color: #454e50 !important;
  font-size: 16px !important;
  font-weight: bold !important;
}

.NW20-appFormLabel--larger {
  font-size: 20px !important;
}

.NW20-appFormLabel a {
  color: inherit;
}

.NW20-form-group {
  max-width: 445px;
  margin-right: 15px;
  margin-left: 15px;
}

.page-id-60281 .col-md-pull-3,
.page-id-64910 .col-md-pull-3 {
  width: 100%;
}

.page-id-60285 .NW20-form-group,
.page-id-60281 .NW20-form-group,
.page-id-64197 .NW20-form-group,
.page-id-64910 .NW20-form-group,
.page-id-64874 .NW20-form-group,
.page-id-64178 .NW20-form-group {
  margin-right: 0px;
  margin-left: 0px;
  margin-bottom: 0px;
}

.NW20-addressFormBtn {
  width: 100%;
}

.appTickBoxPanel {
  background-color: #e5f7fb;
  border: 2px solid #13487a;
  padding: 25px 0px 10px 20px;
  width: 100%;
  margin: 40px 0px 20px 0px;
}

.appFormSelect {
  font-family: "Brandon Text";
  color: #183e7a;
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.NW20-appFormSelect {
  font-family: "Brandon Text", Arial !important;
  color: #454e50 !important;
  display: block;
  width: 100%;
  height: 43px;
  padding: 6px 12px !important;
  font-size: 16px !important;
  line-height: 1.42857143;
  background-image: none;
  border: 1px solid #454e50;
  border-radius: 4px !important;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url('data:image/svg+xml,<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9.36914L12 15.3691L18 9.36914" stroke="%2325282B" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>')
    95% center no-repeat;
  background-color: #ffffff;
}

.appFormInput {
  font-family: "Brandon Text";
  color: #183e7a;
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.NW20-appFormInput {
  font-family: "Brandon Text", Arial !important;
  color: #454e50 !important;
  display: block;
  width: 100%;
  height: 43px;
  padding: 6px 12px !important;
  font-size: 16px !important;
  line-height: 1.42857143;
  background-color: #fff;
  background-image: none;
  border: 1px solid #454e50 !important;
  border-radius: 5px !important;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.appFormAccountLink {
  font-family: "Brandon Text";
  color: #183e7a;
  font-size: 14px;
  font-weight: 400;
  padding-left: 212px;
  padding-top: 15px;
  cursor: pointer;
}

.NW20-appFormAccountLink {
  font-family: "Brandon Text", Arial;
  font-size: 16px;
  font-weight: 400;
  padding-left: 212px;
  padding-top: 15px;
  cursor: pointer;
}

.NW20-appFormAccountLink a {
  color: #454e50;
  text-decoration: underline;
}

.form_icons input[type="radio"] {
  opacity: 0;
  position: absolute;
  height: 100%;
  cursor: pointer;
}

.form_icons input[type="radio"] + label {
  color: #13487a;
  border: 2px solid #1b3d7a;
  padding: 5px;
  background-color: #ccf0f7;
  border-radius: 5px;
  min-width: 80px;
  text-align: center;
  cursor: pointer;
}

.NW20-form_icons input[type="radio"] + label {
  color: #454e50;
  border: 2px solid #454e50;
  padding: 18px;
  background-color: transparent;
  border-radius: 3px;
  min-width: 80px;
  text-align: center;
  cursor: pointer;
  font-family: "Brandon Text", Arial;
  font-size: 16px !important;
  height: 62px;
}

.form_icons input[type="radio"]:checked + label {
  background-color: #1b3d7a;
  color: #fff;
}

.no-select-arrow {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

.form-checkbox > input[type="checkbox"] {
  visibility: hidden;
}

.form-checkbox {
  width: 160px;
  height: 60px;
  background: #ccc;
  margin: 0px auto;
  margin-left: 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
}

.form-checkbox:after {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f00d";
  color: #b1b1b1;
  position: absolute;
  right: 24px;
  top: 11px;
  font-size: 39px;
  z-index: 0;
}

.form-checkbox:before {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f00c";
  color: #00b2d7;
  position: absolute;
  left: 20px;
  top: 11px;
  font-size: 39px;
  z-index: 0;
}

.form-checkbox label {
  display: block;
  width: 75px;
  height: 53px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: 1;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  background: #fcfff4;
  background: -webkit-linear-gradient(
    top,
    #fcfff4 0%,
    #dfe5d7 40%,
    #b3bead 100%
  );
  background: -moz-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: -o-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: -ms-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfff4', endColorstr='#b3bead',GradientType=0 );
}

.form-checkbox input[type="checkbox"]:checked + label {
  left: 80px;
}

.checkbox-icon {
  color: #b1b1b1;
  margin-left: 15px;
  margin-top: 6px;
}

.fa-1:before {
  content: "1st";
  font-size: 40px;
  font-family: 'Brandon Text';
}

.fa-8:before {
  content: "8th";
  font-size: 40px;
  font-family: 'Brandon Text';
}

.fa-16:before {
  content: "16th";
  font-size: 40px;
  font-family: 'Brandon Text';
}

.fa-24:before {
  content: "24th";
  font-size: 40px;
  font-family: 'Brandon Text';
}

.fa-number-of-years:before {
  content: "Choose plan length in years";
  font-size: 20px;
  font-family: 'Brandon Text';
}

.fa-end-date:before {
  content: "Choose plan end date";
  font-size: 20px;
  font-family: 'Brandon Text';
}

.fa-yes:before {
  content: "\f00c";
}

.fa-no:before {
  content: "\f00d";
}

.fa-yearly:before {
  content: "Yearly";
  font-size: 20px;
  font-family: 'Brandon Text';
}

.fa-monthly:before {
  content: "Monthly";
  font-size: 20px;
  font-family: 'Brandon Text';
}

.fa-annually:before {
  content: "Annually";
  font-size: 20px;
  font-family: 'Brandon Text';
}

.fa-weekly:before {
  content: "Weekly";
  font-size: 20px;
  font-family: 'Brandon Text';
}

.fa-telephone-interview,
.fa-online-medical-questions {
  font-size: 2em !important;
}

.fa-telephone-interview:before {
  content: "Tele-interview";
  font-size: 20px;
  font-family: 'Brandon Text';
}

.fa-online-medical-questions:before {
  content: "Online medical questions";
  font-size: 20px;
  font-family: 'Brandon Text';
}

#heightMetricButton,
#heightImperialButton {
  font-family: 'Brandon Text';
  color: #b1b1b1;
  background-color: #ccc;
  font-size: 20px;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  height: 70px;
  border: none;
}

#sp_application_stage3 .selected {
  font-family: 'Brandon Text';
  background-color: #00b2d7;
  font-size: 20px;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
}

/* Hover - Sweep To Top */

.hvr-sweep-to-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.hvr-sweep-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #13487a;
  opacity: 0.6;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-sweep-to-top:hover,
.hvr-sweep-to-top:focus,
.hvr-sweep-to-top:active {
  color: white;
}

.hvr-sweep-to-top:hover:before,
.hvr-sweep-to-top:focus:before,
.hvr-sweep-to-top:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.form-control-feedback {
  right: 15px;
}

.form-control-feedback-currency {
  right: 0px;
}

.ipSummaryTitle {
  font-family: "Brandon Text";
  font-size: 28px;
  font-weight: 700;
  color: #13487a;
  margin-bottom: 0px;
  text-align: center;
}

.ipSummarySubTitle {
  font-family: "Brandon Text";
  font-size: 18px;
  color: #00bae7;
  margin-bottom: 30px;
}

.NW20-ipWhiteBackground {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
}

.NW20-ipSummaryTitle {
  font-family: "Brandon Text", Arial;
  color: #f7aa00;
  font-size: 24px;
  font-weight: bold;
  text-align: left;
}

.ngTooltip {
  position: relative;
}

.ngTooltip:before {
  display: block;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.ngTooltip:before {
  background: rgba(0, 0, 0, 0.75);
  border-radius: 2px;
  color: #fff;
  content: attr(data-title);
  font-size: 14px;
  padding: 6px 10px;
  top: 26px;
  white-space: nowrap;
}

.ngTooltip.expand:before {
  transform: scale3d(0.2, 0.2, 1);
  transition: all 0.2s ease-in-out;
}

.ngTooltip.expand:hover:before {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  top: 50px;
  left: -15px;
  z-index: 999;
}

.sportsAndPastimesControls {
  position: relative;
  left: 40%;
  margin-bottom: 20px;
}

.centerDefaqtoLogoOver50s {
  margin: 0 auto;
  text-align: center;
}

.declarationCheckbox {
  margin-right: 2px !important;
}

.NW20-declarationCheckbox {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 23px;
  width: 23px;
  min-width: 23px;
  border: 1px solid #707070;
  background-color: #f7aa0040;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
}

input[type="checkbox"].NW20-declarationCheckbox:after {
  content: "\2713";
  position: absolute;
  color: #454e50;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

input[type="checkbox"].NW20-declarationCheckbox:checked:after {
  opacity: 1;
}

input[type="checkbox"].NW20-declarationCheckbox:focus {
  outline: none;
}

.declarationModalContainer {
  top: 5%;
  margin: 0 auto;
}

.declarationModalInnerContainer {
  border-radius: 0;
}

.declarationModalBody {
  padding: 0px 15px;
}

.declarationModalCloseBtn {
  font-size: 32px;
  color: #13487a;
}

.declarationModalGoBackBtn {
  width: inherit !important;
  padding: 6px 12px !important;
  margin: 0px !important;
}

.declarationModalTitle {
  font-family: "Brandon Text";
  font-size: 26px;
  color: #13487a;
}

.declarationBtnContainer {
  margin-top: 50px;
}

.NW20-error-message {
  display: inline-block;
  position: relative;
  padding: 10px;
  border-radius: 5px;
  background: #ba2b2b;
  border: 2px solid #ba2b2b;
  text-align: left;
  margin-top: 10px;
  font-family: "Brandon Text", Arial;
  color: #ffffff;
  font-size: 16px;
}

.NW20-error-message:before {
  right: 80%;
  top: -11px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.NW20-error-message:after {
  border-color: rgba(255, 255, 255, 0);
  border-color: transparent transparent #ba2b2b80 transparent;
  border-width: 10px;
  margin-top: -9px;
}

.NW20-error-message:before {
  border-color: rgba(255, 255, 255, 0);
  border-color: transparent transparent #ba2b2b transparent;
  border-width: 11px;
  margin-top: -11px;
}

ul.quote-error-message {
  position: relative;
  list-style-type: none;
  padding: 10px;
  border-radius: 5px;
  background: #ba2b2b80;
  border: 2px solid #ba2b2b;
}

.quote-error-message {
  text-align: left;
  font-family: "Brandon Text", Arial;
  color: #ffffff;
  font-size: 16px;
}

/*Temp css - For removing the error messages from fields that don't have the new ISA styling applied.
 Added "visibility: visible" to errorIsaMessage which have page-id*/

.errorIsaMessage {
  visibility: hidden;
}

@media screen and (min-width: 320px) {
  .defaqtoLogoMarginTop {
    margin-top: 10px;
    margin-bottom: 35px;
    width: 200px;
  }
}

@media screen and (min-width: 576px) and (max-width: 991px) {
  .defaqtoLogoMarginTop {
    margin-top: 45px;
  }
}

@media only screen and (min-width: 360px) and (max-width: 360px) {
  .applicationFormPageTitle {
    margin-top: 60px;
  }
}

/* iPhone 6 Portrait */

@media only screen and (min-width: 375px) and (max-width: 375px) {
  .applicationFormPageTitle {
    margin-top: 70px;
  }
}

/* iPhone 6 + Portrait */

@media only screen and (min-width: 414px) and (max-width: 414px) {
  .applicationFormPageTitle {
    margin-top: 80px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width: 480px) {
  .applicationProductName {
    text-align: right;
    top: -40px;
    right: -20px;
  }

  .applicationFormPageTitle {
    margin-top: 0px;
  }
}

/* Small mobiles */

@media only screen and (min-width: 320px) and (max-width: 320px) {
  .drop-down-list-padding {
    padding-right: 5px !important;
  }

  .drop-down-box-padding {
    padding: 0 6px !important;
  }

  .align-quote-result {
    vertical-align: middle !important;
  }
}

/* iPhone 5 Landscape */

@media (min-width: 568px) {
  .applicationFormPageTitle {
    text-align: right;
    max-width: 430px;
    float: right;
  }
}

/* Galaxy S4 Landscape */

@media (min-width: 640px) {
  .applicationFormPageTitle {
    text-align: right;
    max-width: 100%;
    float: right;
  }
}

/* Small Devices, Tablets */

@media (min-width: 768px) {
  .appPdfTextBox {
    display: inline-block !important;
    margin: 0px 0px 0px 10px;
  }

  .appPdfIcon {
    display: inline-block;
    float: left;
    margin: 0px 20px 0px 0px;
  }

  .appPdfTitle,
  .ipSummaryTitle {
    text-align: left;
  }

  .applicationProductName {
    text-align: right;
    top: -40px;
    right: -26px;
    margin-bottom: -35px;
  }

  .quoteResultAmount {
    font-size: 90px;
    text-align: left;
  }

  .needHelp {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }

  .NW20-optionsHeadline {
    min-height: 70px;
  }
}

/* Apple iPad's and BlackBerry PlayBook */

@media only screen and (min-width: 992px) and (max-width: 1024px) {
  .btn-height {
    margin-top: 30px;
  }

  .large-address-boxes-width {
    width: 100%;
  }
}

/* Apple iPad's and BlackBerry PlayBook */

@media only screen and (min-width: 992px) {
  .applicationProductName {
    text-align: right;
    position: relative;
    top: -200px;
    margin-bottom: -200px;
    padding-right: 0px;
  }

  .readCheckbox {
    font-size: 13px;
    text-align: left;
    padding-bottom: 0px;
  }

  .quoteResultAmount {
    text-align: center;
  }

  .appPdfIcon {
    display: inline-block;
    float: left;
    margin-right: 10px;
  }

  .applicationProductName {
    top: -145px;
    margin-bottom: -145px;
    right: 0px;
  }

  .amendBox {
    margin-bottom: 0px !important;
  }

  .applicationFormPageTitle {
    font-size: 36px;
    max-width: 100%;
  }

  .sportsAndPastimesControls {
    display: inline-block;
    position: relative;
    left: 70%;
    top: 50px;
    margin-top: -70px;
    cursor: pointer;
  }

  .NW20-sportsAndPastimesControls {
    display: inline-block;
    position: relative;
    left: 70%;
    top: 82px;
    margin-top: -70px;
    cursor: pointer;
  }

  .defaqtoLogoMarginTop {
    margin-top: 20px;
    width: 220px;
    padding: 10px 0px;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width: 1200px) {
  .applicationProductName {
    top: -132px;
    margin-bottom: -132px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 991px) {
  .error-message {
    position: relative;
    padding: 10px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #ff0000;
    text-align: center;
    margin-bottom: 15px;
  }

  .error-message:after,
  .error-message:before,
  .info-message:after,
  .info-message:before {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
  }

  .error-message:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #fff;
    border-width: 16px;
    margin-left: -30px;
  }

  .error-message:before {
    border-color: rgba(245, 37, 37, 0);
    border-top-color: #f52525;
    border-width: 17px;
    margin-left: -31px;
  }

  .info-message {
    position: relative;
    padding: 10px;
    border-radius: 3px;
    background: #b2e8f3;
    text-align: center;
    margin-bottom: 20px;
    color: #13487a;
  }

  .info-message:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #b2e8f3;
    border-width: 16px;
    margin-left: -30px;
  }

  .sportsAndPastimesControls {
    left: 84%;
  }
}

@media only screen and (min-width: 992px) {
  .error-message {
    position: relative;
    padding: 10px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #ff0000;
    text-align: center;
  }

  .error-message:after,
  .error-message:before,
  .info-message:after,
  .info-message:before {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
  }

  .error-message:after {
    border-color: rgba(255, 255, 255, 0);
    border-right-color: #fff;
    border-width: 10px;
    margin-top: -11px;
  }

  .error-message:before {
    border-color: rgba(245, 37, 37, 0);
    border-right-color: #f52525;
    border-width: 11px;
    margin-top: -12px;
  }

  .info-message {
    position: relative;
    padding: 10px;
    border-radius: 3px;
    background: #b2e8f3;
    text-align: center;
    color: #13487a;
  }

  .info-message:after {
    border-color: rgba(255, 255, 255, 0);
    border-right-color: #b2e8f3;
    border-width: 10px;
    margin-top: -11px;
  }

  .info-message:before {
    border-color: rgba(245, 37, 37, 0);
    border-width: 11px;
    margin-top: -12px;
  }

  .yspAboutAppTitle {
    margin-bottom: 0px;
    margin-top: -145px !important;
  }
}

@media only screen and (min-width: 320px) and (max-width: 1199px) {
  .address-boxes {
    margin-bottom: 10px;
  }

  .address-boxes button {
    width: 100%;
  }

  .drop-down-list-padding {
    padding-right: 5px !important;
  }

  .drop-down-box-padding {
    padding: 0 6px !important;
  }
}

@media only screen and (min-width: 1200px) {
  .yspAboutAppTitle {
    margin-bottom: 0px;
    margin-top: -100px !important;
  }
}

/* CSS animation */

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }

  100% {
    opacity: 100%;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 100%;
  }
}
footer {
  padding: 0px;
}

#mobileFooterContact {
  padding: 40px 0px;
  background-color: #e5f7fb;
}

.mobileFooterContactTitle {
  text-align: left;
  font-family: 'Brandon Text';
  color: #13487a;
  font-size: 18px;
  float: left;
  margin-bottom: 0px;
  line-height: 1;
}

.mobileFooterContactDetails {
  line-height: 1.4;
  text-align: left;
  font-family: 'Brandon Text';
  color: #00b2d7;
  font-size: 18px;
  float: left;
}

.mobileFooterVisitIcon,
.mobileFooterCallIcon,
.mobileFooterEmailIcon {
  width: 70%;
  height: 70%;
  margin-bottom: 30px;
}

.mobileFooterPostIcon {
  width: 65%;
  height: 65%;
}

#footerSlogan {
  padding: 40px 0px;
  background-color: #13487a;
}

.footerSlogan {
  color: #FFF;
  font-family: 'Brandon Text';
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0px;
}

#footerLegal {
  padding: 40px 20px;
}

.NW20-footerLegalContainer {
  padding: 40px 20px;
  background-color: #13243A;
}

.footerLegal {
  text-align: center;
  font-family: 'Brandon Text';
  color: #89a3bc;
  font-size: 16px;
  margin-bottom: 0px;
}

.NW-footerLegal {
  text-align: center;
  font-family: 'Brandon Text', Arial, sans-serif;
  color: #FFFFFF;
  font-size: 12px;
  margin-bottom: 0px;
}

#footerLogos {
  padding-top: 30px;
}

.NW20-footerLogosContainer {
  background-color: #87D0F140;
  padding-bottom: 30px;
}

.footerLogo1,
.footerLogo4 {
  max-width: 80%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footerLogo1,
.footerLogo2 {
  margin-bottom: 30px;
}

.footerLogo2,
.footerLogo3 {
  max-width: 60%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footerLogo4 {
  margin-top: 40px;
  margin-left: 60px;
}

/* Small Devices, Tablets */

@media (min-width:768px) {
  #footerContact {
    padding: 40px 0px;
    background-color: #e5f7fb;
  }

  .footerUsefulLinksTitle {
    color: #13487a;
    font-family: 'Brandon Text';
    font-size: 20px;
  }

  .footerUsefulLinks {
    display: block;
    color: #00b2d7;
    font-family: 'Brandon Text';
    font-size: 18px;
  }

  .footerDetailsTitle {
    color: #13487a;
    font-family: 'Brandon Text';
    font-size: 20px;
    margin-bottom: 0px;
  }

  .footerSocialMediaTitle {
    color: #13487a;
    font-family: 'Brandon Text';
    font-size: 20px;
    margin-bottom: 10px;
    margin-left: 62px;
  }

  .footerDetails {
    color: #00b2d7;
    font-family: 'Brandon Text';
    font-size: 18px;
  }

  .footerVisitIcon {
    display: inline-block;
    width: 15%;
    float: left;
    margin-right: 20px;
    margin-top: 7px;
    margin-left: 20px;
  }

  .footerCallRow {
    margin: 30px 0px;
  }

  .footerCallIcon {
    display: inline-block;
    width: 15%;
    float: left;
    margin-right: 20px;
    margin-top: 4px;
    margin-left: 20px;
  }

  .footerEmailIcon {
    display: inline-block;
    width: 15%;
    float: left;
    margin-right: 20px;
    margin-left: 20px;
  }

  .footerPostIcon {
    display: inline-block;
    width: 14%;
    float: left;
    margin-top: 6px;
    margin-right: 20px;
    margin-bottom: 50px;
  }

  .footerPostRow {
    margin-bottom: 23px;
  }

  .footerTwitterIcon {
    margin-left: 62px;
    width: 15%;
  }

  .footerFacebookIcon {
    margin: 0px 15px;
    width: 15%;
  }

  .footerLinkedinIcon {
    width: 15%;
  }

  .footerLogo1,
  .footerLogo2,
  .footerLogo3 {
    margin-bottom: 0px;
  }

  .footerLogo1,
  .footerLogo2 {
    margin-top: 10px;
  }

  .footerLogo4 {
    margin-top: 25px;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width : 992px) {
  .footerLogo4 {
    margin-top: 30px;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (min-width : 1200px) {
  .footerSocialMediaTitle {
    margin-left: 70px;
  }

  .footerTwitterIcon {
    margin-left: 70px;
  }

  .footerLogo1,
  .footerLogo4 {
    max-width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
  }

  .footerLogo2,
  .footerLogo3 {
    max-width: 60%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .footerLogo2 {
    margin-top: 25px;
  }

  #footerLogos {
    padding-top: 30px;
  }

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

.download-panel__row {
  display: flex;
  flex-wrap: wrap;
}

.download-panel__row span {
  flex: 1;
  min-width: 180px;
  margin: 10px 10px;
}

.numberStack {
  max-width: 30px !important;
}

.NW20-numberStack {
  border-radius: 50%;
  border: 1px solid #454e50;
}

.tabNumberText {
  font-size: 14px;
  position: relative !important;
  bottom: 2px;
  left: -3px !important;
  max-width: 30px !important;
  margin-right: 0px !important;
}

.NW20-tabNumberText {
  font-size: 14px;
  position: relative !important;
  bottom: 2px;
  left: 0px !important;
  max-width: 30px !important;
  margin-right: 0px !important;
}

.tabNumberCircle {
  font-size: 28px !important;
  margin-top: 5px;
  text-align: left !important;
  max-width: 30px !important;
}

#aboutAppIntro {
  padding: 30px 0px;
  background-color: #ccf0f7;
}

#aboutAppIntro ul {
  margin-top: 30px;
  padding-left: 15px;
}

#aboutAppIntro li {
  margin-bottom: 15px;
}

.lastLi {
  margin-bottom: 0px !important;
}

#active-voucher-box {
  background-color: #dae0ea;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
}

#active-voucher-box p {
  margin: 0;
  padding-left: 20px;
}

.aboutAppTitle {
  font-family: "Brandon Text";
  font-size: 32px;
  color: #00b2d7;
  margin-bottom: 20px;
}

.NW20-aboutAppTitle {
  font-family: "Brandon Text", Arial, sans-serif;
  font-size: 32px;
  color: #13243a;
  margin-bottom: 20px;
}

.NW20-blueText {
  display: inline-block;
  margin-right: 10px;
}

.NW20-blueText img {
  width: 33px;
}

.NW20-blueText a {
  font-family: "Brandon Text", Arial, sans-serif;
  font-size: 16px;
  color: #13243a;
  text-decoration: underline;
  font-weight: bold;
  width: 115px;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  margin-left: 5px;
}

.aboutAppIntroText {
  font-family: "Brandon Text";
  font-size: 18px;
  color: #13487a;
  margin-bottom: 30px;
}

#aboutAppContent {
  padding: 40px 0px;
}

.aboutAppSubtitle {
  font-family: "Brandon Text";
  font-size: 24px;
  color: #00b2d7;
}

.downloadPanel {
  background-color: #f6f6f6;
  padding: 20px;
  width: 100%;
  margin-left: 0px;
  margin-bottom: 20px;
}

.NW20-downloadPanelWhite {
  background-color: #ffffff;
  padding: 20px;
  width: 100%;
  margin-left: 0px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.downloadPanelNoWidth {
  background-color: #f6f6f6;
  padding: 20px;
  margin-left: 0px;
  margin-bottom: 40px;
}

.NW20-downloadPanelNoWidth {
  background-color: #ffffff;
  padding: 20px;
  margin-left: 0px;
  margin-bottom: 40px;
  border-radius: 5px;
}

.application-review_panel {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.page-id-bonds .NW20-downloadPanelNoWidth {
  background-color: transparent;
}

.NW20-downloadPanelNoWidthBlue {
  background-color: transparent;
  padding: 20px;
  margin-left: 0px;
  margin-bottom: 40px;
  border-radius: 5px;
}

.downloadPanel__two-col-quote-panel-container {
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 992px) {
  .downloadPanel__two-col-quote-panel-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .downloadPanel__two-col-quote-panel {
    flex: 1;
    padding-left: 3rem;
    padding-bottom: 1rem;
  }

  .downloadPanel__two-col-quote-panel:first-child {
    border-right: 1px solid #454e50;
  }
}

.downloadPanel__two-col-quote-panel .quoteResultAmount {
  font-size: 5rem;
}

.downloadPanel__download-links-container {
  padding-left: 3rem;
}

.footerPDFConfirms {
  padding: 10px;
  background-color: #f6f6f6;
}

.readCheckbox {
  text-align: center;
  padding-bottom: 20px;
}

.appPdfIcon {
  display: block;
  margin: 0px auto 10px auto;
}

.appPdfTextBox {
  display: block;
  margin: 0px auto 0px auto;
}

.appPdfTitle {
  font-family: "Brandon Text";
  font-size: 16px;
  font-weight: 700;
  color: #13487a;
  margin-bottom: 0px;
  text-align: center;
}

.appPdfDoc {
  color: #13487a;
  text-align: center;
}

.amendBox {
  margin-bottom: 40px;
}

.amendBox > button {
  margin-top: 0px !important;
}

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

#VoucherPanel {
  display: none;
}

.page-id-60275 .NW20-aboutApplicationFormTitle,
.page-id-28381 .NW20-aboutApplicationFormTitle,
.page-id-60279 .NW20-aboutApplicationFormTitle,
.page-id-11262 .NW20-aboutApplicationFormTitle,
.page-id-2751 .NW20-aboutApplicationFormTitle {
  display: none !important;
}

.c-header-application--direct {
  margin-bottom: -30px;
}

/* Galaxy S4 Portrait */

@media only screen and (min-width: 360px) and (max-width: 360px) {
  .aboutApplicationFormPageTitle {
    margin-top: 40px;
  }
}

/* iPhone 6 Portrait */

@media only screen and (min-width: 375px) and (max-width: 375px) {
  .aboutApplicationFormPageTitle {
    margin-top: 40px;
  }
}

/* iPhone 6 + Portrait */

@media only screen and (min-width: 414px) and (max-width: 414px) {
  .aboutApplicationFormPageTitle {
    margin-top: 60px;
  }
}

/* Extra Small Devices, Phones */

@media only screen and (min-width: 480px) {
  .aboutApplicationFormPageTitle {
    margin-top: 0px;
    text-align: right;
    float: right;
    max-width: 85%;
  }

  #aboutAppTitleBox {
    margin-top: -30px;
  }
}

/* iPhone 5 Landscape */

@media (min-width: 568px) {
  .aboutApplicationFormPageTitle {
    margin-top: 0px;
    text-align: right;
    float: right;
    max-width: 80%;
    display: block;
  }
}

/* Galaxy S4 Landscape */

@media (min-width: 640px) {
  #aboutAppTitleBox {
    margin-top: -30px;
    margin-bottom: 20px;
  }

  .aboutApplicationFormPageTitle {
    float: right;
  }
}

/* iPhone 6 Landscape */

@media (min-width: 667px) {
  #aboutAppTitleBox {
    margin-top: -30px;
    margin-bottom: 20px;
  }

  .aboutApplicationFormPageTitle {
    margin-top: 0px;
    float: right;
  }
}

/* iPhone 6+ Landscape */

@media (min-width: 736px) {
  .aboutApplicationFormPageTitle {
    margin-top: 0px;
    float: right;
  }
}

/* Small Devices, Tablets */

@media (min-width: 768px) {
  .readCheckbox {
    text-align: left;
  }

  #aboutAppTitleBox {
    min-height: 80px;
  }

  .promoCode {
    max-width: 300px;
    margin-top: 30px;
  }

  .appPdfTextBox {
    text-align: left !important;
  }

  .appPdfIcon {
    margin-right: 10px !important;
  }

  .appPdfTitle {
    text-align: left !important;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width: 992px) {
  #aboutAppTitleBox {
    margin-top: 0px;
    margin-bottom: 40px;
    min-height: 100px;
  }

  .aboutApplicationFormPageTitle {
    font-size: 36px;
    margin-top: 10px;
    max-width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  #aboutAppTitleBox {
    margin-top: 0px;
    margin-bottom: 0px;
    min-height: 130px;
  }

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

/* Progress Bar Starts */

.progressBar,
.application-progress-bar {
  max-width: 1100px;
  display: flex;
  justify-content: center;
  margin: 16px auto;
}

.application-progress-bar_start .application-progress-bar_line,
.application-progress-bar_app .application-progress-bar_line {
  /* 6 elements */
  min-width: 3rem;
}

.progressbar-list,
.application-progress-bar_tabs {
  display: flex;
  align-items: center;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
}

.progressBar ul,
.application-progress-bar_tabs-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.progressBar li,
.application-progress-bar_tab {
  float: left;
  margin: -0.1rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.progressBar p,
.application-progress-bar_content {
  display: inline;
  font-size: 14px;
  margin-left: 8px;
  white-space: nowrap;
  margin: 0 !important;
}

.progressBar hr,
.application-progress-bar_line {
  width: 100%;
  border-radius: 25px;
  height: 1.75px;
  background-color: #13243a;
  border: 0 none;
  margin: 10px auto;
  min-width: 13rem;
}

.application-progress-bar_start
  .application-progress-bar_tabs:last-child
  .application-progress-bar_line,
.progressbar-list:last-child hr {
  display: none;
}

.progressBar .onPage,
.application-progress-bar_tab-on-page {
  font-family: "Brandon Text";
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
}

.progressBar .NW20-onPage,
.application-progress-bar_tab-on-page {
  white-space: nowrap;
  font-family: "Brandon Text", Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
}

.progressBar .NW20-onPage p,
.application-progress-bar_tab-on-page .application-progress-bar_content {
  font-family: "Brandon Text", Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #13243a;
}

.progressBar .nonOnPage,
.application-progress-bar_tab-non-on-page {
  font-family: "Brandon Text", Arial, sans-serif;
  font-size: 14px;
  white-space: nowrap;
}

.progressBar .NW20-nonOnPage,
.application-progress-bar_tab-non-on-page {
  white-space: nowrap;
  font-family: "Brandon Text", Arial, sans-serif;
  font-size: 16px;
}

.progressBar .NW20-nonOnPage p,
.application-progress-bar_tab-non-on-page .application-progress-bar_content {
  font-family: "Brandon Text", Arial, sans-serif;
  font-size: 16px;
  color: #13243a;
}

@media screen and (max-width: 1100px) {
  .progressBar,
  .application-progress-bar {
    max-width: 975px;
  }

  .progressBar p,
  .application-application-progress-bar_content {
    margin-left: 0.3rem;
  }

  .progressBar li,
  .application-progress-bar_tab {
    margin: -0.1rem 0.7rem;
  }
}

@media screen and (max-width: 991px) {
  .progressBar,
  .application-progress-bar {
    max-width: 343px;
  }

  .progressBar hr,
  .application-progress-bar_line {
    min-width: 5.3rem;
  }

  .progressBar p,
  .application-progress-bar_content {
    font-size: 1.4rem !important;
    margin-left: 4px;
    white-space: nowrap;
  }

  .progressBar .onPage p,
  .application-progress-bar_tab-on-page .application-progress-bar_content {
    max-width: 150px;
    margin: 0 8px 0 0;
  }

  .progressBar .nonOnPage p,
  .application-progress-bar_tab-non-on-page .application-progress-bar_content {
    display: none;
    width: 0;
  }
}

@media screen and (max-width: 768px) {
  .progressBar,
  .application-progress-bar {
    width: 100%;
    padding-top: 2rem;
  }

  .application-progress-bar_start .application-progress-bar_line,
  .application-progress-bar_app .application-progress-bar_line {
    min-width: 2.3rem;
  }

  .progressBar hr,
  .application-progress-bar_line {
    min-width: 2rem;
  }
}

@media screen and (max-width: 420px) {
  .application-progress-bar_start .application-progress-bar_line,
  .application-progress-bar_app .application-progress-bar_line {
    min-width: 0.5rem;
  }

  .progressBar hr,
  .application-progress-bar_line {
    min-width: 3rem;
  }
}

/* Progress Bar Ends */

/* Calculator Start */

.calculator_debit-type {
  color: #fff;
}

.page-id-2001 #aboutAppIntro,
.page-id-283 #aboutAppIntro,
.page-id-60285 #aboutAppIntro,
.page-id-60281 #aboutAppIntro,
.page-id-64197 #aboutAppIntro,
.page-id-64910 #aboutAppIntro,
.page-id-64874 #aboutAppIntro,
.page-id-64178 #aboutAppIntro {
  background-color: #fff;
}

.page-id-2001 .aboutAppTitle,
.page-id-283 .aboutAppTitle,
.page-id-60285 .aboutAppTitle,
.page-id-60281 .aboutAppTitle,
.page-id-64197 .aboutAppTitle,
.page-id-64910 .aboutAppTitle,
.page-id-64874 .aboutAppTitle,
.page-id-64178 .aboutAppTitle {
  font-family: "Brandon Text";
  font-size: 24px;
  color: #1b3d7a;
}

.page-id-2001 .aboutAppIntroText,
.page-id-283 .aboutAppIntroText,
.page-id-60285 .aboutAppIntroText,
.page-id-60281 .aboutAppIntroText,
.page-id-64197 .aboutAppIntroText,
.page-id-64910 .aboutAppIntroText,
.page-id-64874 .aboutAppIntroText,
.page-id-64178 .aboutAppIntroText {
  font-family: "Brandon Text";
  font-size: 18px;
  color: #13487a;
  margin-bottom: 30px;
  font-weight: 300;
}

.page-id-2001 .widthStep,
.page-id-283 .widthStep,
.page-id-60285 .widthStep,
.page-id-60281 .widthStep,
.page-id-64197 .widthStep,
.page-id-64910 .widthStep,
.page-id-64874 .widthStep,
.page-id-64178 .widthStep {
  width: 450px;
  padding: 0;
}

.page-id-isa .NW20-appContent > .container,
.page-id-sustainable-isa .NW20-appContent > .container {
  max-width: 445px;
}

.page-id-isa .NW20-appContent .page-id-sustainable-isa .NW20-appContent {
  background-color: #fff !important;
}

.page-id-claims .NW20-appContent,
.page-id-bonds .NW20-appContent {
  background-color: #87d0f140 !important;
}

.page-id-2001 .agreementContent,
.page-id-283 .agreementContent,
.page-id-60285 .agreementContent,
.page-id-60281 .agreementContent,
.page-id-64197 .agreementContent,
.page-id-64910 .agreementContent,
.page-id-64874 .agreementContent,
.page-id-64178 .agreementContent {
  font-family: "Brandon Text";
  font-size: 14px;
  color: #13487a;
  font-weight: 300;
  margin: 12px 0 16px 0;
}

.page-id-2001 .additionalInfoContent,
.page-id-283 .additionalInfoContent,
.page-id-60285 .additionalInfoContent,
.page-id-60281 .additionalInfoContent,
.page-id-64197 .additionalInfoContent,
.page-id-64910 .additionalInfoContent,
.page-id-64874 .additionalInfoContent,
.page-id-64178 .additionalInfoContent {
  font-family: "Brandon Text";
  font-size: 16px;
  color: #13487a;
  font-weight: 300;
  margin: 8px 0 16px 0;
}

.page-id-60285 .NW20-additionalInfoContent,
.page-id-64178 .NW20-additionalInfoContent {
  font-family: "Brandon Text", Arial, sans-serif;
  font-size: 16px;
  color: #454e50;
  font-weight: 400;
  margin: 8px 0 16px 0;
}

.NW20-additionalInfoContent {
  font-family: "Brandon Text", Arial, sans-serif !important;
  font-size: 16px !important;
  color: #454e50 !important;
  font-weight: 400 !important;
}

.NW20-additionalInfoContent a {
  color: #454e50 !important;
  text-decoration: underline;
}

.page-id-60285 .NW20-additionalInfoContent a,
.page-id-60275 .NW20-additionalInfoContent a,
.page-id-28381 .NW20-additionalInfoContent a,
.page-id-11262 .NW20-additionalInfoContent a,
.page-id-2751 .NW20-additionalInfoContent a,
.page-id-60281 .NW20-additionalInfoContent a,
.page-id-64197 .NW20-additionalInfoContent a,
.page-id-64178 .NW20-additionalInfoContent a,
.page-id-64910 .additionalInfoContent a,
.page-id-64874 .additionalInfoContent a,
.page-id-60279 .NW20-additionalInfoContent a {
  font-family: "Brandon Text", Arial, sans-serif;
  font-size: 16px;
  color: #454e50;
  font-weight: bold;
  text-decoration: underline;
}

.page-id-2001 .headerAdditionalInfoContent,
.page-id-283 .headerAdditionalInfoContent,
.page-id-60285 .headerAdditionalInfoContent,
.page-id-60281 .headerAdditionalInfoContent,
.page-id-64197 .headerAdditionalInfoContent,
.page-id-64910 .headerAdditionalInfoContent,
.page-id-64874 .headerAdditionalInfoContent,
.page-id-64178 .headerAdditionalInfoContent {
  font-family: "Brandon Text";
  color: #13487a;
  font-size: 16px;
  font-weight: normal;
  position: relative;
  top: 16px;
  left: 70%;
}

.page-id-60285 .NW20-headerAdditionalInfoContent,
.page-id-60281 .NW20-headerAdditionalInfoContent,
.page-id-64197 .NW20-headerAdditionalInfoContent,
.page-id-64910 .headerAdditionalInfoContent,
.page-id-64874 .headerAdditionalInfoContent,
.page-id-64178 .NW20-headerAdditionalInfoContent {
  font-family: "Brandon Text", Arial, sans-serif;
  color: #13243a;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  top: 16px;
  left: 65%;
}

.NW20-headerAdditionalInfoContent {
  font-family: "Brandon Text", Arial, sans-serif;
  color: #13243a;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  top: 7px;
  left: 50%;
}

.page-id-60279 .NW20-headerAdditionalInfoContent,
.page-id-28381 .NW20-headerAdditionalInfoContent,
.page-id-60275 .NW20-headerAdditionalInfoContent,
.page-id-11262 .NW20-headerAdditionalInfoContent {
  left: 40%;
}

@media screen and (max-width: 990px) {
  .page-id-60275 .NW20-headerAdditionalInfoContent,
  .page-id-28381 .NW20-headerAdditionalInfoContent,
  .page-id-60279 .NW20-headerAdditionalInfoContent,
  .page-id-11262 .NW20-headerAdditionalInfoContent,
  .page-id-2751 .NW20-headerAdditionalInfoContent {
    left: 0;
  }
}

.page-id-60275 .NW20-headerAdditionalInfoContent:before {
  content: "Young Saver Plan Quote & Application | ";
}

.page-id-28381 .NW20-headerAdditionalInfoContent:before {
  content: "Junior Money Maker Quote & Application | ";
}

.page-id-60279 .NW20-headerAdditionalInfoContent:before {
  content: "Over 50s Life Insurance Quote & Application | ";
}

.page-id-11262 .NW20-headerAdditionalInfoContent:before {
  content: "Income Protection Quote & Application | ";
}

.page-id-2751 .NW20-headerAdditionalInfoContent:before {
  content: "Bonus Plan Quote & Application | ";
}

.page-id-isa .NW20-headerAdditionalInfoContent:before {
  content: "Investment ISA Transfer Form | ";
}

.page-id-sustainable-isa .NW20-headerAdditionalInfoContent:before {
  content: "Sustainable Stocks and Shares ISA Transfer Form | ";
}

.page-id-claims .NW20-headerAdditionalInfoContent:before {
  content: "Income Protection Claims Request Form | ";
}

.page-id-bonds .NW20-headerAdditionalInfoContent:before {
  content: "5 Year Fixed Rate Bond Application | ";
}

.page-id-60285 .NW20-headerAdditionalInfoContent:before {
  content: "Investment ISA Application | ";
}

.page-id-64178 .NW20-headerAdditionalInfoContent:before,
.page-id-64874 .NW20-headerAdditionalInfoContent:before {
  content: "Sustainable Stocks and Shares ISA Application | ";
}

.page-id-60281 .NW20-headerAdditionalInfoContent:before {
  content: "Junior ISA Application | ";
}

.page-id-64197 .NW20-headerAdditionalInfoContent:before,
.page-id-64910 .NW20-headerAdditionalInfoContent:before {
  content: "Sustainable Junior ISA Application | ";
}

.page-id-2001 .documentsButton,
.page-id-283 .documentsButton,
.page-id-60285 .documentsButton,
.page-id-60281 .documentsButton,
.page-id-64197 .documentsButton,
.page-id-64910 .documentsButton,
.page-id-64874 .documentsButton,
.page-id-64178 .documentsButton {
  width: 100%;
  height: auto;
  border: 1.75px solid #1b3d7a;
  border-radius: 3px;
  padding: 16px;
  margin: 16px 0;
  cursor: pointer;
}

.page-id-2001 #documentsTab,
.page-id-283 #documentsTab,
.page-id-60285 #documentsTab,
.page-id-60281 #documentsTab,
.page-id-64197 #documentsTab,
.page-id-64910 #documentsTab,
.page-id-64874 #documentsTab,
.page-id-64178 #documentsTab {
  width: 100%;
  border: 1.75px solid #1b3d7a;
  border-radius: 3px;
  padding: 16px;
  margin: auto 0;
  cursor: pointer;
}

.page-id-60285 #documentsTab.NW20-documentsTab,
.page-id-60275 #documentsTab.NW20-documentsTab,
.page-id-28381 #documentsTab.NW20-documentsTab,
.page-id-11262 #documentsTab.NW20-documentsTab,
.page-id-60279 #documentsTab.NW20-documentsTab,
.page-id-2751 #documentsTab.NW20-documentsTab,
.page-id-60281 #documentsTab.NW20-documentsTab,
.page-id-64197 #documentsTab.NW20-documentsTab,
.page-id-64910 #documentsTab.NW20-documentsTab,
.page-id-64874 #documentsTab.NW20-documentsTab,
.page-id-64178 #documentsTab.NW20-documentsTab {
  width: 100%;
  border: 1px solid #454e50;
  border-radius: 5px;
  padding: 16px;
  margin: auto 0;
  cursor: pointer;
}

.page-id-60275 #documentsTab.NW20-documentsTab,
.page-id-28381 #documentsTab.NW20-documentsTab,
.page-id-11262 #documentsTab.NW20-documentsTab,
.page-id-60279 #documentsTab.NW20-documentsTab,
.page-id-2751 #documentsTab.NW20-documentsTab,
.page-id-60279 #documentsTab.NW20-documentsTab {
  max-width: 445px;
  margin-top: 30px;
}

.page-id-2001 #documentsContent,
.page-id-283 #documentsContent,
.page-id-60285 #documentsContent,
.page-id-60281 #documentsContent,
.page-id-64197 #documentsContent,
.page-id-64910 #documentsContent,
.page-id-64874 #documentsContent,
.page-id-64178 #documentsContent {
  overflow: hidden;
}

.page-id-2001 .documentsTabTitle,
.page-id-283 .documentsTabTitle,
.page-id-60285 .documentsTabTitle,
.page-id-60281 .documentsTabTitle,
.page-id-64197 .documentsTabTitle,
.page-id-64910 .documentsTabTitle,
.page-id-64874 .documentsTabTitle,
.page-id-64178 .documentsTabTitle {
  font-family: "Brandon Text";
  font-size: 16px;
  color: #13487a;
}

.page-id-60285 .NW20-documentsTabTitle,
.page-id-60275 .NW20-documentsTabTitle,
.page-id-28381 .NW20-documentsTabTitle,
.page-id-11262 .NW20-documentsTabTitle,
.page-id-60279 .NW20-documentsTabTitle,
.page-id-2751 .NW20-documentsTabTitle,
.page-id-60281 .NW20-documentsTabTitle,
.page-id-64197 .NW20-documentsTabTitle,
.page-id-64178 .NW20-documentsTabTitle,
.page-id-64910 .NW20-documentsTabTitle,
.page-id-64874 .NW20-documentsTabTitle,
.page-id-60279 .NW20-documentsTabTitle {
  font-family: "Brandon Text", Arial;
  font-size: 16px;
  color: #454e50;
}

.page-id-2001 .documentsTabContent,
.page-id-283 .documentsTabContent,
.page-id-60285 .documentsTabContent,
.page-id-60281 .documentsTabContent,
.page-id-64197 .documentsTabContent,
.page-id-64910 .documentsTabContent,
.page-id-64874 .documentsTabContent,
.page-id-64178 .documentsTabContent {
  font-family: "Brandon Text";
  font-size: 16px;
  color: #13487a;
  font-weight: 300;
  display: block;
  margin: 8px 0;
}

.page-id-2001 #arrowTab,
.page-id-283 #arrowTab,
.page-id-60285 #arrowTab,
.page-id-60281 #arrowTab,
.page-id-64197 #arrowTab,
.page-id-64910 #arrowTab,
.page-id-64874 #arrowTab,
.page-id-64178 #arrowTab {
  position: relative;
  left: 400px;
  top: -33px;
}

.page-id-60275 .NW20-documentsTab #arrowTab,
.page-id-28381 .NW20-documentsTab #arrowTab,
.page-id-11262 .NW20-documentsTab #arrowTab,
.page-id-60279 .NW20-documentsTab #arrowTab,
.page-id-2751 .NW20-documentsTab #arrowTab,
.page-id-60279 .NW20-documentsTab #arrowTab {
  position: relative;
  left: 95%;
  top: -33px;
}

.page-id-2001 #aboutAppTitleBox,
.page-id-283 #aboutAppTitleBox,
.page-id-60285 #aboutAppTitleBox,
.page-id-64197 #aboutAppTitleBox,
.page-id-64910 #aboutAppTitleBox,
.page-id-64874 #aboutAppTitleBox,
.page-id-64178 #aboutAppTitleBox {
  min-height: 90px;
}

@media screen and (max-width: 768px) {
  .page-id-2001 .widthStep,
  .page-id-283 .widthStep,
  .page-id-60285 .widthStep,
  .page-id-60281 .widthStep,
  .page-id-64197 .widthStep,
  .page-id-64910 .widthStep,
  .page-id-64874 .widthStep,
  .page-id-64178 .widthStep {
    width: 343px;
  }

  .page-id-2001 .aboutAppIntroText,
  .page-id-283 .aboutAppIntroText,
  .page-id-60285 .aboutAppIntroText,
  .page-id-60281 .aboutAppIntroText,
  .page-id-64197 .aboutAppIntroText,
  .page-id-64910 .aboutAppIntroText,
  .page-id-64874 .aboutAppIntroText,
  .page-id-64178 .aboutAppIntroText {
    font-size: 16px;
  }

  .page-id-2001 .agreementContent,
  .page-id-283 .agreementContent,
  .page-id-60285 .agreementContent,
  .page-id-60281 .agreementContent,
  .page-id-64197 .agreementContent,
  .page-id-64910 .agreementContent,
  .page-id-64874 .agreementContent,
  .page-id-64178 .agreementContent {
    font-size: 14px;
  }

  .page-id-2001 .additionalInfoContent,
  .page-id-283 .additionalInfoContent,
  .page-id-60285 .additionalInfoContent,
  .page-id-60281 .additionalInfoContent,
  .page-id-64197 .additionalInfoContent,
  .page-id-64910 .additionalInfoContent,
  .page-id-64874 .additionalInfoContent,
  .page-id-64178 .additionalInfoContent {
    font-size: 14px;
  }

  .page-id-2001 .headerAdditionalInfoContent,
  .page-id-283 .headerAdditionalInfoContent,
  .page-id-60285 .headerAdditionalInfoContent,
  .page-id-60281 .headerAdditionalInfoContent,
  .page-id-64197 .headerAdditionalInfoContent,
  .page-id-64910 .headerAdditionalInfoContent,
  .page-id-64874 .headerAdditionalInfoContent,
  .page-id-64178 .headerAdditionalInfoContent {
    left: 33%;
  }

  .page-id-2001 #arrowTab,
  .page-id-283 #arrowTab,
  .page-id-60285 #arrowTab,
  .page-id-60281 #arrowTab,
  .page-id-64197 #arrowTab,
  .page-id-64910 #arrowTab,
  .page-id-64874 #arrowTab,
  .page-id-64178 #arrowTab {
    position: relative;
    left: 95%;
  }

  .page-id-2001 .greenCtaBtn,
  .page-id-283 .greenCtaBtn,
  .page-id-60285 .greenCtaBtn,
  .page-id-15 .greenCtaBtn,
  .page-id-64197 .greenCtaBtn,
  .page-id-64178 .greenCtaBtn,
  .page-id-15231 .greenCtaBtn,
  .page-id-64910 .greenCtaBtn,
  .page-id-64874 .greenCtaBtn,
  .page-id-30331 .greenCtaBtn {
    padding-left: 10px;
    padding-right: 10px;
  }

  .page-id-2001 #aboutAppTitleBox,
  .page-id-283 #aboutAppTitleBox,
  .page-id-60285 #aboutAppTitleBox,
  .page-id-64197 #aboutAppTitleBox,
  .page-id-64910 #aboutAppTitleBox,
  .page-id-64178 #aboutAppTitleBox {
    min-height: 5px;
  }

  .NW20-headerAdditionalInfoContent {
    font-size: 14px;
  }

  .page-id-60285 .NW20-headerAdditionalInfoContent,
  .page-id-60275 .NW20-headerAdditionalInfoContent,
  .page-id-28381 .NW20-headerAdditionalInfoContent,
  .page-id-60279 .NW20-headerAdditionalInfoContent,
  .page-id-11262 .NW20-headerAdditionalInfoContent,
  .page-id-2751 .NW20-headerAdditionalInfoContent,
  .page-id-60281 .NW20-headerAdditionalInfoContent,
  .page-id-64197 .NW20-headerAdditionalInfoContent,
  .page-id-64178 .NW20-headerAdditionalInfoContent,
  .page-id-isa .NW20-headerAdditionalInfoContent,
  .page-id-sustainable-isa .NW20-headerAdditionalInfoContent,
  .page-id-claims .NW20-headerAdditionalInfoContent,
  .page-id-64910 .NW20-headerAdditionalInfoContent,
  .page-id-64874 .NW20-headerAdditionalInfoContent,
  .page-id-bonds .NW20-headerAdditionalInfoContent {
    font-size: 14px;
  }

  .NW20-headerAdditionalInfoContent {
    left: 0;
  }

  .page-id-60285 .NW20-headerAdditionalInfoContent,
  .page-id-64178 .NW20-headerAdditionalInfoContent,
  .page-id-64197 .NW20-headerAdditionalInfoContent,
  .page-id-60281 .NW20-headerAdditionalInfoContent {
    left: 40%;
    text-align: right;
    width: 60%;
  }

  .page-id-60275 .NW20-headerAdditionalInfoContent,
  .page-id-2751 .NW20-headerAdditionalInfoContent,
  .page-id-64910 .NW20-headerAdditionalInfoContent {
    left: 50%;
  }

  .page-id-60275 .NW20-headerAdditionalInfoContent,
  .page-id-2751 .NW20-headerAdditionalInfoContent,
  .page-id-60279 .NW20-headerAdditionalInfoContent,
  .page-id-28381 .NW20-headerAdditionalInfoContent,
  .page-id-11262 .NW20-headerAdditionalInfoContent,
  .page-id-isa .NW20-headerAdditionalInfoContent,
  .page-id-sustainable-isa .NW20-headerAdditionalInfoContent,
  .page-id-claims .NW20-headerAdditionalInfoContent,
  .page-id-64910 .form-control,
  .page-id-64874 .form-control,
  .page-id-bonds .NW20-headerAdditionalInfoContent {
    left: 0;
  }
}
.application-calculator_summary-graph {
  flex-basis: 100%;
}

.application-calculator_summary-graph-legend {
  padding-left: 3.5rem !important;
  display: flex;
  width: 100%;
}

.application-calculator_summary-graph-information {
  width: 100%;
}

.application-calculator_summary-graph-content {
  font-family: "Brandon Text", Arial;
  font-size: 1.4rem;
  padding-left: 3rem;
  margin: 0;
}

.application-calculator_summary-graph-list {
  display: flex;
  gap: 1.2rem;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 14px;
}

.application-calculator_summary-graph-amount {
  font-family: "Brandon Text", Arial;
  font-size: 1.6rem;
  font-weight: bold;
}

.application-calculator_summary-graph-bullet {
  width: 1.63rem;
  height: 1.63rem;
  background-color: #13243a;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 16%));
  border-radius: 50%;
}

.application-calculator_summary-graph-bullet--second {
  background-color: #6fadcb;
}

.application-calculator_summary-graph-bullet--third {
  background-color: #f6a505;
}

.application-calculator_summary-graph-bullet--forth {
  background-color: #39bf21;
}
.tick>text,
g.legend>text {
  font-size: 12px;
  fill: #565657;
}

text.target-text {
  font-size: 10px;
  fill: #565657;
}

g.x.axis>path,
g.target-line-group>line {
  stroke: #565657;
  stroke-opacity: 1;
  opacity: 0.75;
  stroke-width: 1;
}

g.y.axis>path {
  opacity: 0;
}

.tooltip-container {
  stroke: #13487a;
  fill: #FFF;
  stroke-width: 1;
}

.gridline {
  stroke-opacity: 0;
}

.gridline g.tick>line {
  stroke-opacity: 0.5;
  opacity: 0.5;
  stroke-width: 1;
  stroke: #565657;
}

.tooltip-thumb-circle {
  fill: white;
  outline-color: black;
  stroke-width: 1;
  stroke: #565657;
}

.info-message-headers {
  font-size: 14px;
  text-align: left;
}

.info-message-values-dot {
  text-align: right;
}

.info-message-left,
.info-message-right,
.info-message-top,
.info-message-bottom {
  background-color: #fff;
  border: 2px solid #13487a;
  color: #13487a;
  padding: 15px 15px;
  position: relative;
}

.info-message-bottom {
  width: fit-content;
  width: -moz-fit-content;
  margin: 0 auto;
}

.info-message-value {
  display: inline;
  font-weight: bold;
  text-align: left;
}

.info-message-dot {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  background-color: black;
  margin-right: 5px;
  border-radius: 50%;
}

.left-arrow::before {
  content: '';
  position: absolute;
  width: 0px;
  border-right: 15px solid #13487a;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  top: 50%;
  left: 0px;
  transform: translate(-100%, -45%);
}

.left-arrow::after {
  content: '';
  position: absolute;
  width: 0px;
  border-right: 15px solid #fff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  top: 50%;
  left: 3px;
  transform: translate(-100%, -45%);
}

.right-arrow::before {
  content: '';
  position: absolute;
  width: 0px;
  border-left: 15px solid #13487a;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  top: 54%;
  right: 0px;
  transform: translate(100%, -50%);
}

.right-arrow::after {
  content: '';
  position: absolute;
  width: 0px;
  border-left: 15px solid #fff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  top: 54%;
  right: 2px;
  transform: translate(100%, -52%);
}

.top-arrow::before {
  content: '';
  position: absolute;
  width: 0px;
  border-bottom: 17px solid #13487a;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  top: 0px;
  left: 50%;
  transform: translate(-50%, -100%);
}

.top-arrow::after {
  content: '';
  position: absolute;
  width: 0px;
  border-bottom: 15px solid #fff;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  top: 0px;
  left: 50%;
  transform: translate(-50%, -100%);
}

.bottom-arrow::before {
  content: '';
  position: absolute;
  width: 0px;
  border-top: 18px solid #13487a;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 100%);
}

.bottom-arrow::after {
  content: '';
  position: absolute;
  width: 0px;
  border-top: 15px solid #fff;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 100%);
}

.bold-text-container {
  font-family: 'Brandon Text', sans-serif !important;
  font-weight: bold;
}
/* Savings calculator page start */

.application_label-group {
  display: flex;
  justify-content: space-between;
}

.application_info-message {
  display: none;
  text-align: left;
  background-color: #fff;
  padding: 2rem;
  width: 30rem;
  border-radius: 0.3rem;
  box-shadow: 0.1rem 0.1rem 0.5rem rgb(0 0 0 / 20%);
  right: -0.6rem;
  color: #13243a;
  font-size: 1.3rem;
  line-height: 1.4;
  font-family: "Brandon Text", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  position: absolute;
  z-index: 1;
}

.application_help-tip {
  position: relative;
  text-align: center;
  background-color: transparent;
  border-radius: 50%;
  border: 0.1rem solid #13243a;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.4rem;
  line-height: 2rem;
  cursor: default;
  margin-top: 3.2rem;
  margin-bottom: 0.8rem;
  z-index: 1000;
  -webkit-animation: fadeIn 1s ease-in-out;
  animation: fadeIn 1s ease-in-out;
}

.application_help-tip::before {
  content: "?";
  font-family: "Brandon Text", Arial, sans-serif;
  font-weight: 700;
  color: #13243a;
}

.application_help-tip:hover .application_info-message {
  display: block;
  transform-origin: 100% 0;
  z-index: 1000;
  -webkit-animation: fadeIn 0.3s ease-in-out;
  animation: fadeIn 0.3s ease-in-out;
}

.application_help-tip:hover .application_info-message:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border: 0.6rem solid transparent;
  border-bottom-color: #fff;
  right: 1rem;
  top: -1.2rem;
}

.application_help-tip:hover .application_info-message:after {
  width: 100%;
  height: 4rem;
  content: "";
  position: absolute;
  top: -4rem;
  left: 0;
}

.application_option-item {
  flex: 0 0 47%;
}

.application_option-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -3.2rem;
}

.application_option {
  opacity: 0;
  position: absolute;
  height: 100%;
  cursor: pointer;
}

.application_option-label {
  color: #454e50;
  border: 0.2rem solid #454e50;
  padding: 1.8rem;
  background-color: transparent;
  border-radius: 0.3rem;
  width: 100%;
  margin-top: 0;
  text-align: center;
  cursor: pointer;
  font-family: "Brandon Text", Arial;
  font-size: 1.6rem;
  height: 6.2rem;
}

.application_option:checked ~ .application_option-label {
  background-color: #f7aa00;
  border: 0.2rem solid #f7aa00;
}

.application_option-label-content {
  font-size: 1.6rem;
  font-family: "Brandon Text", Arial;
  font-weight: 400;
}

.application_option:checked
  ~ .application_option-label
  .application_option-label-content {
  color: #fff;
}

/* Savings calculator page end */

/* Your calculation page start*/

.application-container_summary {
  max-width: 110rem;
}

.application-calculator-summary {
  display: flex;
  flex-direction: row;
  gap: 2.45rem;
}

.application-calculator_summary-content {
  flex-basis: 80%;
}

.application-calculator_buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2.2rem;
}

.application-error-message-box {
  display: inline-block;
  position: relative;
  padding: 1rem 1rem !important;
  border-radius: 5px;
  background: #ba2b2b;
  border: 2px solid #ba2b2b;
  text-align: left;
  margin-top: 1rem;
  font-family: "Brandon Text", Arial;
  color: #ffffff;
  font-size: 1.6rem;
}

/* Your calculation page end */

@media only screen and (min-width: 351px) and (max-width: 424px) {
  .application_option-item:last-of-type
    .application_option-label
    .application_option-label-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media only screen and (max-width: 390px) {
  .application-calculator_buttons-container {
    flex-direction: column;
    gap: 0;
  }

  .application-button--outline {
    margin: 0 0 3.2rem;
  }
}

@media screen and (max-width: 425px) {
  .application_option-label .application_option-label-content {
    margin: -0.8rem 0 1rem;
  }
}

@media screen and (max-width: 991px) {
  .application-container_summary {
    max-width: 44.5rem;
  }

  .application-calculator-summary {
    flex-direction: column;
  }
}
.c-update-premium-panel-calculator {
  padding: 0 !important;
}

.c-update-premium-panel_value {
  position: absolute;
  width: 100%;
}

.c-update-premium-panel_value--debit-type {
  margin-top: 4.3rem;
}

.c-update-premium-panel_value--years {
  margin-top: 4.3rem;
}

.c-update-premium-panel_value span {
  width: 6.2rem;
  height: 3.44rem;
  line-height: 3.3rem;
  text-align: center;
  border: 0.1rem solid #454e50;
  color: #454e50;
  font-family: "Brandon Text", Arial;
  font-size: 1.2rem;
  display: block;
  position: absolute;
  top: -1.5rem;
  transform: translateX(-35%);
  border-radius: 5px;
  z-index: 1;
}

.c-update-premium-panel_value span::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #454e50;
  border-bottom: 10px solid transparent;
  right: 50%;
  bottom: -20px;
  left: 46%;
  margin-left: -5px;
  margin-top: -1px;
}

.c-update-premium-panel_value span::after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  border-bottom: 10px solid transparent;
  right: 28%;
  bottom: -18px;
}

.c-update-premium-panel__user-field--slider {
  z-index: 1;
  padding-top: 8.2rem !important;
}

.c-update-premium-panel__inner-calculator {
  position: relative;
}

.c-update-premium-panel__min-max-labels--years {
  justify-content: unset !important;
  gap: 4rem;
  margin: 1rem 2rem 0 1.5rem;
}

@media screen and (max-width: 445px) {
  .c-update-premium-panel__min-max-labels--years {
    gap: unset;
    margin: 1rem 1rem 0rem 2rem;
    justify-content: space-between !important;
  }
}

@media (min-width: 992px) {
  .c-update-premium-panel__inner-calculator {
    flex-direction: column !important;
  }
}

@media screen and (max-width: 991px) {
  .c-update-premium-panel__user-field--slider {
    padding-top: 6.3rem !important;
  }

  .c-update-premium-panel_value--years {
    margin-top: 4.3rem;
  }
}