/* Minification failed. Returning unminified contents.
(3309,10): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,25): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,42): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,59): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,74): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,88): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,105): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,122): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,138): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,153): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,168): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,181): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,196): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,216): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,234): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,254): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,272): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,287): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,305): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,322): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,338): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,353): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,371): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,393): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,415): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,437): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,460): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3309,656): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
 */
@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.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%, 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% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-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: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(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: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.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: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.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;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    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% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) 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 center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    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: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    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: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    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: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    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: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-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% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(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: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -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: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    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: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    -ms-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    -ms-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    -ms-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    -ms-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
/*!
 * Bootstrap v4.5.0 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]){color:inherit;text-decoration:none}a:not([href]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.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-lg-auto,.col-md,.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-md-auto,.col-sm,.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-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28a745}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#dc3545}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#0069d9;border-color:#0062cc;box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#218838;border-color:#1e7e34;box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before,.custom-control-input[disabled]~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img,.card-img-bottom,.card-img-top{-ms-flex-negative:0;flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{-ms-flex:1 0 0%;flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item{display:-ms-flexbox;display:flex}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{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);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow::before,.bs-popover-top>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow::after,.bs-popover-top>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow::before,.bs-popover-right>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow::after,.bs-popover-right>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow::before,.bs-popover-bottom>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow::after,.bs-popover-bottom>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow::before,.bs-popover-left>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow::after,.bs-popover-left>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.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-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;-ms-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{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 #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}
/*# sourceMappingURL=bootstrap.min.css.map */
/* Cookie Dialog */
#gdpr-cookie-message {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    width: 98%;
    text-align: center;
    background-color: #444;
    padding: 0.5em 0.675em;
    border-radius: 5px;
    box-shadow: 0 6px 6px rgba(0,0,0,0.25);
    z-index: 10;
}

    #gdpr-cookie-message h4 {
        color: #ffffff;
        font-size: 0.75em;
        margin-bottom: 0.688em;
        float:left;
        width:100px;
    }

    #gdpr-cookie-message h5 {
        color: #e6e6e6;
        font-weight: 300;
        margin-bottom: 0.688em;
        float:left;
        width:200px;
    }

    #gdpr-cookie-message p {
        color: white;
        font-size: 0.688em;
        margin: 0 0 0.5em 0;
    }

    #gdpr-cookie-message li {
        width: 49%;
        display: inline-block;
    }

    #gdpr-cookie-message a {
        color: #e2f1f5;
        text-decoration: none;
        padding-bottom: 2px;
        border-bottom: 1px dotted rgba(255,255,255,0.75);
        transition: all 0.3s ease-in;
    }

        #gdpr-cookie-message a:hover {
            color: white;
            border-bottom: 1px solid rgba(255,255,255,1);
            transition: all 0.3s ease-in;
        }
        
    #gdpr-cookie-message button {
        border: none;
        background: #777;
        font-size: 1.125em;
        color: #f3f3f3;
        padding: 7px;
        border-radius: 3px;
        cursor: pointer;
        transition: all 0.2s ease-in;
        margin-bottom: 0;
    }

        #gdpr-cookie-message button:hover {
            background: #9b9b9b;
            color: #fff;
        }

button#gdpr-cookie-accept {
    margin-left: 0 0 0 50%;
}

button#gdpr-cookie-advanced {
    display: none;
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio, canvas, progress, video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */
}

    /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
    audio:not([controls]) {
        display: none;
        height: 0;
    }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden], template {
    display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
    background-color: transparent;
}

    /**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
    a:active, a:hover {
        outline: 0;
    }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b, strong {
    font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
    font-style: italic;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
    background: #ff0;
    color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
    border: 0;
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
    overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
    margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
    overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button, input, optgroup, select, textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
    overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button, select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */
}

    /**
 * Re-set default cursor for disabled elements.
 */
    button[disabled], html input[disabled] {
        cursor: default;
    }

    /**
 * Remove inner padding and border in Firefox 4+.
 */
    button::-moz-focus-inner, input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
    line-height: normal;
}

    /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
    input[type="checkbox"], input[type="radio"] {
        box-sizing: border-box;
        /* 1 */
        padding: 0;
        /* 2 */
    }

    /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
    input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
        height: auto;
    }

    /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
    input[type="search"] {
        -webkit-appearance: textfield;
        /* 1 */
        -moz-box-sizing: content-box;
        -webkit-box-sizing: content-box;
        /* 2 */
        box-sizing: content-box;
    }

        /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
        input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
            -webkit-appearance: none;
        }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
    overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
    font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

td, th {
    padding: 0;
}

meta.foundation-version {
    font-family: "/5.5.1/";
}

meta.foundation-mq-small {
    font-family: "/only screen/";
    width: 0;
}

meta.foundation-mq-small-only {
    font-family: "/only screen and (max-width: 40em)/";
    width: 0;
}

meta.foundation-mq-medium {
    font-family: "/only screen and (min-width:40.063em)/";
    width: 40.063em;
}

meta.foundation-mq-medium-only {
    font-family: "/only screen and (min-width:40.063em) and (max-width:64em)/";
    width: 40.063em;
}

meta.foundation-mq-large {
    font-family: "/only screen and (min-width:64.063em)/";
    width: 64.063em;
}

meta.foundation-mq-large-only {
    font-family: "/only screen and (min-width:64.063em) and (max-width:90em)/";
    width: 64.063em;
}

meta.foundation-mq-xlarge {
    font-family: "/only screen and (min-width:90.063em)/";
    width: 90.063em;
}

meta.foundation-mq-xlarge-only {
    font-family: "/only screen and (min-width:90.063em) and (max-width:120em)/";
    width: 90.063em;
}

meta.foundation-mq-xxlarge {
    font-family: "/only screen and (min-width:120.063em)/";
    width: 120.063em;
}

meta.foundation-data-attribute-namespace {
    font-family: false;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    font-size: 100%;
}

body {
    background: #fff;
    color: #333333;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    font-style: normal;
    line-height: 1.5;
    position: relative;
    cursor: auto;
}

/* Default Transition for links */
a {
    transition: color 200ms ease-out 0s;
}

    a:hover {
        cursor: pointer;
    }

img {
    max-width: 100%;
    height: auto;
}

img {
    -ms-interpolation-mode: bicubic;
}

#map_canvas img, #map_canvas embed, #map_canvas object, .map_canvas img, .map_canvas embed, .map_canvas object {
    max-width: none !important;
}

.left {
    float: left !important;
}

.right {
    float: right !important;
}

.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.hide {
    display: none;
}

.invisible {
    visibility: hidden;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: inline-block;
    vertical-align: middle;
}

textarea {
    height: auto;
    min-height: 50px;
}

select {
    width: 100%;
}

/* Checkout are smaller */
.rounded_container .columns {
    padding: 0 0.3em;
}

[class*="column"] + [class*="column"]:last-child {
    float: right;
}

[class*="column"] + [class*="column"].end {
    float: left;
}

@media only screen {
    .small-push-0 {
        position: relative;
        left: 0%;
        right: auto;
    }

    .small-pull-0 {
        position: relative;
        right: 0%;
        left: auto;
    }

    .small-push-1 {
        position: relative;
        left: 8.3333333333%;
        right: auto;
    }

    .small-pull-1 {
        position: relative;
        right: 8.3333333333%;
        left: auto;
    }

    .small-push-2 {
        position: relative;
        left: 16.6666666667%;
        right: auto;
    }

    .small-pull-2 {
        position: relative;
        right: 16.6666666667%;
        left: auto;
    }

    .small-push-3 {
        position: relative;
        left: 25%;
        right: auto;
    }

    .small-pull-3 {
        position: relative;
        right: 25%;
        left: auto;
    }

    .small-push-4 {
        position: relative;
        left: 33.3333333333%;
        right: auto;
    }

    .small-pull-4 {
        position: relative;
        right: 33.3333333333%;
        left: auto;
    }

    .small-push-5 {
        position: relative;
        left: 41.6666666667%;
        right: auto;
    }

    .small-pull-5 {
        position: relative;
        right: 41.6666666667%;
        left: auto;
    }

    .small-push-6 {
        position: relative;
        left: 50%;
        right: auto;
    }

    .small-pull-6 {
        position: relative;
        right: 50%;
        left: auto;
    }

    .small-push-7 {
        position: relative;
        left: 58.3333333333%;
        right: auto;
    }

    .small-pull-7 {
        position: relative;
        right: 58.3333333333%;
        left: auto;
    }

    .small-push-8 {
        position: relative;
        left: 66.6666666667%;
        right: auto;
    }

    .small-pull-8 {
        position: relative;
        right: 66.6666666667%;
        left: auto;
    }

    .small-push-9 {
        position: relative;
        left: 75%;
        right: auto;
    }

    .small-pull-9 {
        position: relative;
        right: 75%;
        left: auto;
    }

    .small-push-10 {
        position: relative;
        left: 83.3333333333%;
        right: auto;
    }

    .small-pull-10 {
        position: relative;
        right: 83.3333333333%;
        left: auto;
    }

    .small-push-11 {
        position: relative;
        left: 91.6666666667%;
        right: auto;
    }

    .small-pull-11 {
        position: relative;
        right: 91.6666666667%;
        left: auto;
    }

    .small-offset-0 {
        margin-left: 0% !important;
    }

    .small-offset-1 {
        margin-left: 8.3333333333% !important;
    }

    .small-offset-2 {
        margin-left: 16.6666666667% !important;
    }

    .small-offset-3 {
        margin-left: 25% !important;
    }

    .small-offset-4 {
        margin-left: 33.3333333333% !important;
    }

    .small-offset-5 {
        margin-left: 41.6666666667% !important;
    }

    .small-offset-6 {
        margin-left: 50% !important;
    }

    .small-offset-7 {
        margin-left: 58.3333333333% !important;
    }

    .small-offset-8 {
        margin-left: 66.6666666667% !important;
    }

    .small-offset-9 {
        margin-left: 75% !important;
    }

    .small-offset-10 {
        margin-left: 83.3333333333% !important;
    }

    .small-offset-11 {
        margin-left: 91.6666666667% !important;
    }

    .small-reset-order {
        margin-left: 0;
        margin-right: 0;
        left: auto;
        right: auto;
        float: left;
    }

    .column.small-centered, .columns.small-centered {
        margin-left: auto;
        margin-right: auto;
        float: none;
    }

    .column.small-uncentered, .columns.small-uncentered {
        margin-left: 0;
        margin-right: 0;
        float: left;
    }

    .column.small-centered:last-child, .columns.small-centered:last-child {
        float: none;
    }

    .column.small-uncentered:last-child, .columns.small-uncentered:last-child {
        float: left;
    }

    .column.small-uncentered.opposite, .columns.small-uncentered.opposite {
        float: right;
    }

    .row.small-collapse > .column, .row.small-collapse > .columns {
        padding-left: 0;
        padding-right: 0;
    }

    .row.small-collapse .row {
        margin-left: 0;
        margin-right: 0;
    }

    .row.small-uncollapse > .column, .row.small-uncollapse > .columns {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        float: left;
    }
}

@media only screen and (min-width:40.063em) {
    .medium-push-0 {
        position: relative;
        left: 0%;
        right: auto;
    }

    .medium-pull-0 {
        position: relative;
        right: 0%;
        left: auto;
    }

    .medium-push-1 {
        position: relative;
        left: 8.3333333333%;
        right: auto;
    }

    .medium-pull-1 {
        position: relative;
        right: 8.3333333333%;
        left: auto;
    }

    .medium-push-2 {
        position: relative;
        left: 16.6666666667%;
        right: auto;
    }

    .medium-pull-2 {
        position: relative;
        right: 16.6666666667%;
        left: auto;
    }

    .medium-push-3 {
        position: relative;
        left: 25%;
        right: auto;
    }

    .medium-pull-3 {
        position: relative;
        right: 25%;
        left: auto;
    }

    .medium-push-4 {
        position: relative;
        left: 33.3333333333%;
        right: auto;
    }

    .medium-pull-4 {
        position: relative;
        right: 33.3333333333%;
        left: auto;
    }

    .medium-push-5 {
        position: relative;
        left: 41.6666666667%;
        right: auto;
    }

    .medium-pull-5 {
        position: relative;
        right: 41.6666666667%;
        left: auto;
    }

    .medium-push-6 {
        position: relative;
        left: 50%;
        right: auto;
    }

    .medium-pull-6 {
        position: relative;
        right: 50%;
        left: auto;
    }

    .medium-push-7 {
        position: relative;
        left: 58.3333333333%;
        right: auto;
    }

    .medium-pull-7 {
        position: relative;
        right: 58.3333333333%;
        left: auto;
    }

    .medium-push-8 {
        position: relative;
        left: 66.6666666667%;
        right: auto;
    }

    .medium-pull-8 {
        position: relative;
        right: 66.6666666667%;
        left: auto;
    }

    .medium-push-9 {
        position: relative;
        left: 75%;
        right: auto;
    }

    .medium-pull-9 {
        position: relative;
        right: 75%;
        left: auto;
    }

    .medium-push-10 {
        position: relative;
        left: 83.3333333333%;
        right: auto;
    }

    .medium-pull-10 {
        position: relative;
        right: 83.3333333333%;
        left: auto;
    }

    .medium-push-11 {
        position: relative;
        left: 91.6666666667%;
        right: auto;
    }

    .medium-pull-11 {
        position: relative;
        right: 91.6666666667%;
        left: auto;
    }

    .column, .columns {
        position: relative;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        float: left;
    }

    .medium-offset-0 {
        margin-left: 0% !important;
    }

    .medium-offset-1 {
        margin-left: 8.3333333333% !important;
    }

    .medium-offset-2 {
        margin-left: 16.6666666667% !important;
    }

    .medium-offset-3 {
        margin-left: 25% !important;
    }

    .medium-offset-4 {
        margin-left: 33.3333333333% !important;
    }

    .medium-offset-5 {
        margin-left: 41.6666666667% !important;
    }

    .medium-offset-6 {
        margin-left: 50% !important;
    }

    .medium-offset-7 {
        margin-left: 58.3333333333% !important;
    }

    .medium-offset-8 {
        margin-left: 66.6666666667% !important;
    }

    .medium-offset-9 {
        margin-left: 75% !important;
    }

    .medium-offset-10 {
        margin-left: 83.3333333333% !important;
    }

    .medium-offset-11 {
        margin-left: 91.6666666667% !important;
    }

    .medium-reset-order {
        margin-left: 0;
        margin-right: 0;
        left: auto;
        right: auto;
        float: left;
    }

    .row.medium-collapse > .column, .row.medium-collapse > .columns {
        padding-left: 0;
        padding-right: 0;
    }

    .row.medium-collapse .row {
        margin-left: 0;
        margin-right: 0;
    }

    .row.medium-uncollapse > .column, .row.medium-uncollapse > .columns {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        float: left;
    }

    .push-0 {
        position: relative;
        left: 0%;
        right: auto;
    }

    .pull-0 {
        position: relative;
        right: 0%;
        left: auto;
    }

    .push-1 {
        position: relative;
        left: 8.3333333333%;
        right: auto;
    }

    .pull-1 {
        position: relative;
        right: 8.3333333333%;
        left: auto;
    }

    .push-2 {
        position: relative;
        left: 16.6666666667%;
        right: auto;
    }

    .pull-2 {
        position: relative;
        right: 16.6666666667%;
        left: auto;
    }

    .push-3 {
        position: relative;
        left: 25%;
        right: auto;
    }

    .pull-3 {
        position: relative;
        right: 25%;
        left: auto;
    }

    .push-4 {
        position: relative;
        left: 33.3333333333%;
        right: auto;
    }

    .pull-4 {
        position: relative;
        right: 33.3333333333%;
        left: auto;
    }

    .push-5 {
        position: relative;
        left: 41.6666666667%;
        right: auto;
    }

    .pull-5 {
        position: relative;
        right: 41.6666666667%;
        left: auto;
    }

    .push-6 {
        position: relative;
        left: 50%;
        right: auto;
    }

    .pull-6 {
        position: relative;
        right: 50%;
        left: auto;
    }

    .push-7 {
        position: relative;
        left: 58.3333333333%;
        right: auto;
    }

    .pull-7 {
        position: relative;
        right: 58.3333333333%;
        left: auto;
    }

    .push-8 {
        position: relative;
        left: 66.6666666667%;
        right: auto;
    }

    .pull-8 {
        position: relative;
        right: 66.6666666667%;
        left: auto;
    }

    .push-9 {
        position: relative;
        left: 75%;
        right: auto;
    }

    .pull-9 {
        position: relative;
        right: 75%;
        left: auto;
    }

    .push-10 {
        position: relative;
        left: 83.3333333333%;
        right: auto;
    }

    .pull-10 {
        position: relative;
        right: 83.3333333333%;
        left: auto;
    }

    .push-11 {
        position: relative;
        left: 91.6666666667%;
        right: auto;
    }

    .pull-11 {
        position: relative;
        right: 91.6666666667%;
        left: auto;
    }
}

@media only screen and (min-width:64.063em) {
    .large-push-0 {
        position: relative;
        left: 0%;
        right: auto;
    }

    .large-pull-0 {
        position: relative;
        right: 0%;
        left: auto;
    }

    .large-push-1 {
        position: relative;
        left: 8.3333333333%;
        right: auto;
    }

    .large-pull-1 {
        position: relative;
        right: 8.3333333333%;
        left: auto;
    }

    .large-push-2 {
        position: relative;
        left: 16.6666666667%;
        right: auto;
    }

    .large-pull-2 {
        position: relative;
        right: 16.6666666667%;
        left: auto;
    }

    .large-push-3 {
        position: relative;
        left: 25%;
        right: auto;
    }

    .large-pull-3 {
        position: relative;
        right: 25%;
        left: auto;
    }

    .large-push-4 {
        position: relative;
        left: 33.3333333333%;
        right: auto;
    }

    .large-pull-4 {
        position: relative;
        right: 33.3333333333%;
        left: auto;
    }

    .large-push-5 {
        position: relative;
        left: 41.6666666667%;
        right: auto;
    }

    .large-pull-5 {
        position: relative;
        right: 41.6666666667%;
        left: auto;
    }

    .large-push-6 {
        position: relative;
        left: 50%;
        right: auto;
    }

    .large-pull-6 {
        position: relative;
        right: 50%;
        left: auto;
    }

    .large-push-7 {
        position: relative;
        left: 58.3333333333%;
        right: auto;
    }

    .large-pull-7 {
        position: relative;
        right: 58.3333333333%;
        left: auto;
    }

    .large-push-8 {
        position: relative;
        left: 66.6666666667%;
        right: auto;
    }

    .large-pull-8 {
        position: relative;
        right: 66.6666666667%;
        left: auto;
    }

    .large-push-9 {
        position: relative;
        left: 75%;
        right: auto;
    }

    .large-pull-9 {
        position: relative;
        right: 75%;
        left: auto;
    }

    .large-push-10 {
        position: relative;
        left: 83.3333333333%;
        right: auto;
    }

    .large-pull-10 {
        position: relative;
        right: 83.3333333333%;
        left: auto;
    }

    .large-push-11 {
        position: relative;
        left: 91.6666666667%;
        right: auto;
    }

    .large-pull-11 {
        position: relative;
        right: 91.6666666667%;
        left: auto;
    }

    .column, .columns {
        position: relative;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        float: left;
    }

    .large-offset-0 {
        margin-left: 0% !important;
    }

    .large-offset-1 {
        margin-left: 8.3333333333% !important;
    }

    .large-offset-2 {
        margin-left: 16.6666666667% !important;
    }

    .large-offset-3 {
        margin-left: 25% !important;
    }

    .large-offset-4 {
        margin-left: 33.3333333333% !important;
    }

    .large-offset-5 {
        margin-left: 41.6666666667% !important;
    }

    .large-offset-6 {
        margin-left: 50% !important;
    }

    .large-offset-7 {
        margin-left: 58.3333333333% !important;
    }

    .large-offset-8 {
        margin-left: 66.6666666667% !important;
    }

    .large-offset-9 {
        margin-left: 75% !important;
    }

    .large-offset-10 {
        margin-left: 83.3333333333% !important;
    }

    .large-offset-11 {
        margin-left: 91.6666666667% !important;
    }

    .large-reset-order {
        margin-left: 0;
        margin-right: 0;
        left: auto;
        right: auto;
        float: left;
    }

    .column.large-centered, .columns.large-centered {
        margin-left: auto;
        margin-right: auto;
        float: none;
    }

    .column.large-uncentered, .columns.large-uncentered {
        margin-left: 0;
        margin-right: 0;
        float: left;
    }

    .column.large-centered:last-child, .columns.large-centered:last-child {
        float: none;
    }

    .column.large-uncentered:last-child, .columns.large-uncentered:last-child {
        float: left;
    }

    .column.large-uncentered.opposite, .columns.large-uncentered.opposite {
        float: right;
    }

    .row.large-collapse > .column, .row.large-collapse > .columns {
        padding-left: 0;
        padding-right: 0;
    }

    .row.large-collapse .row {
        margin-left: 0;
        margin-right: 0;
    }

    .row.large-uncollapse > .column, .row.large-uncollapse > .columns {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        float: left;
    }

    .push-0 {
        position: relative;
        left: 0%;
        right: auto;
    }

    .pull-0 {
        position: relative;
        right: 0%;
        left: auto;
    }

    .push-1 {
        position: relative;
        left: 8.3333333333%;
        right: auto;
    }

    .pull-1 {
        position: relative;
        right: 8.3333333333%;
        left: auto;
    }

    .push-2 {
        position: relative;
        left: 16.6666666667%;
        right: auto;
    }

    .pull-2 {
        position: relative;
        right: 16.6666666667%;
        left: auto;
    }

    .push-3 {
        position: relative;
        left: 25%;
        right: auto;
    }

    .pull-3 {
        position: relative;
        right: 25%;
        left: auto;
    }

    .push-4 {
        position: relative;
        left: 33.3333333333%;
        right: auto;
    }

    .pull-4 {
        position: relative;
        right: 33.3333333333%;
        left: auto;
    }

    .push-5 {
        position: relative;
        left: 41.6666666667%;
        right: auto;
    }

    .pull-5 {
        position: relative;
        right: 41.6666666667%;
        left: auto;
    }

    .push-6 {
        position: relative;
        left: 50%;
        right: auto;
    }

    .pull-6 {
        position: relative;
        right: 50%;
        left: auto;
    }

    .push-7 {
        position: relative;
        left: 58.3333333333%;
        right: auto;
    }

    .pull-7 {
        position: relative;
        right: 58.3333333333%;
        left: auto;
    }

    .push-8 {
        position: relative;
        left: 66.6666666667%;
        right: auto;
    }

    .pull-8 {
        position: relative;
        right: 66.6666666667%;
        left: auto;
    }

    .push-9 {
        position: relative;
        left: 75%;
        right: auto;
    }

    .pull-9 {
        position: relative;
        right: 75%;
        left: auto;
    }

    .push-10 {
        position: relative;
        left: 83.3333333333%;
        right: auto;
    }

    .pull-10 {
        position: relative;
        right: 83.3333333333%;
        left: auto;
    }

    .push-11 {
        position: relative;
        left: 91.6666666667%;
        right: auto;
    }

    .pull-11 {
        position: relative;
        right: 91.6666666667%;
        left: auto;
    }
}

/* Width */
.w-50 {
    width: 50%;
}

.w-80 {
    width: 80%;
}

.w-90 {
    width: 90%;
}

.w-100 {
    width: 100%;
}

.margin-none, .button.margin-none {
    margin: 0;
}

/* Accordion */
.accordion {
    margin-bottom: 0;
}

    .accordion:before, .accordion:after {
        content: " ";
        display: table;
    }

    .accordion:after {
        clear: both;
    }

    .accordion .accordion-navigation, .accordion dd {
        display: block;
        margin-bottom: 0 !important;
    }

        .accordion .accordion-navigation.active > a, .accordion dd.active > a {
            background: #e8e8e8;
        }

        .accordion .accordion-navigation > a, .accordion dd > a {
            background: #EFEFEF;
            color: #222222;
            padding: 1rem;
            display: block;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
        }

            .accordion .accordion-navigation > a:hover, .accordion dd > a:hover {
                background: #e3e3e3;
            }

        .accordion .accordion-navigation > .content, .accordion dd > .content {
            display: none;
            padding: 0.9375rem;
        }

            .accordion .accordion-navigation > .content.active, .accordion dd > .content.active {
                display: block;
                background: #FFFFFF;
            }

.alert-box {
    border-style: solid;
    border-width: 1px;
    display: block;
    font-weight: normal;
    margin-bottom: 1.25rem;
    position: relative;
    padding: 0.875rem 1.5rem 0.875rem 0.875rem;
    font-size: 0.8125rem;
    transition: opacity 200ms ease-out;
    background-color: #046B99;
    border-color: #0065ad;
    color: #FFFFFF;
}

    .alert-box .close {
        font-size: 1.375rem;
        padding: 0 6px 4px;
        line-height: 0.9;
        position: absolute;
        top: 50%;
        margin-top: -0.6875rem;
        right: 0.25rem;
        color: #333333;
        opacity: 0.3;
        background: inherit;
    }

        .alert-box .close:hover, .alert-box .close:focus {
            opacity: 0.5;
        }

    .alert-box.radius {
        border-radius: 5px;
    }

    .alert-box.round {
        border-radius: 1000px;
    }

    .alert-box.success {
        background-color: #43AC6A;
        border-color: #3a945b;
        color: #FFFFFF;
    }

    .alert-box.alert {
        background-color: #f04124;
        border-color: #de2d0f;
        color: #FFFFFF;
    }

    .alert-box.secondary {
        background-color: #e7e7e7;
        border-color: #c7c7c7;
        color: #4f4f4f;
    }

    .alert-box.warning {
        background-color: #f08a24;
        border-color: #de770f;
        color: #FFFFFF;
    }

    .alert-box.info {
        background-color: #a0d3e8;
        border-color: #74bfdd;
        color: #4f4f4f;
    }

    .alert-box.alert-close {
        opacity: 0;
    }

[class*="block-grid-"] {
    display: block;
    padding: 0;
    margin: 0 -0.625rem;
}

    [class*="block-grid-"]:before, [class*="block-grid-"]:after {
        content: " ";
        display: table;
    }

    [class*="block-grid-"]:after {
        clear: both;
    }

    [class*="block-grid-"] > li {
        display: block;
        height: auto;
        float: left;
        padding: 0 0.625rem 1.25rem;
    }

@media only screen {
    .small-block-grid-1 > li {
        width: 100%;
        list-style: none;
    }

        .small-block-grid-1 > li:nth-of-type(1n) {
            clear: none;
        }

        .small-block-grid-1 > li:nth-of-type(1n+1) {
            clear: both;
        }

    .small-block-grid-2 > li {
        width: 50%;
        list-style: none;
    }

        .small-block-grid-2 > li:nth-of-type(1n) {
            clear: none;
        }

        .small-block-grid-2 > li:nth-of-type(2n+1) {
            clear: both;
        }

    .small-block-grid-3 > li {
        width: 33.3333333333%;
        list-style: none;
    }

        .small-block-grid-3 > li:nth-of-type(1n) {
            clear: none;
        }

        .small-block-grid-3 > li:nth-of-type(3n+1) {
            clear: both;
        }

    .small-block-grid-4 > li {
        width: 25%;
        list-style: none;
    }

        .small-block-grid-4 > li:nth-of-type(1n) {
            clear: none;
        }

        .small-block-grid-4 > li:nth-of-type(4n+1) {
            clear: both;
        }

    .small-block-grid-5 > li {
        width: 20%;
        list-style: none;
    }

        .small-block-grid-5 > li:nth-of-type(1n) {
            clear: none;
        }

        .small-block-grid-5 > li:nth-of-type(5n+1) {
            clear: both;
        }

    .small-block-grid-6 > li {
        width: 16.6666666667%;
        list-style: none;
    }

        .small-block-grid-6 > li:nth-of-type(1n) {
            clear: none;
        }

        .small-block-grid-6 > li:nth-of-type(6n+1) {
            clear: both;
        }

    .small-block-grid-7 > li {
        width: 14.2857142857%;
        list-style: none;
    }

        .small-block-grid-7 > li:nth-of-type(1n) {
            clear: none;
        }

        .small-block-grid-7 > li:nth-of-type(7n+1) {
            clear: both;
        }

    .small-block-grid-8 > li {
        width: 12.5%;
        list-style: none;
    }

        .small-block-grid-8 > li:nth-of-type(1n) {
            clear: none;
        }

        .small-block-grid-8 > li:nth-of-type(8n+1) {
            clear: both;
        }

    .small-block-grid-9 > li {
        width: 11.1111111111%;
        list-style: none;
    }

        .small-block-grid-9 > li:nth-of-type(1n) {
            clear: none;
        }

        .small-block-grid-9 > li:nth-of-type(9n+1) {
            clear: both;
        }

    .small-block-grid-10 > li {
        width: 10%;
        list-style: none;
    }

        .small-block-grid-10 > li:nth-of-type(1n) {
            clear: none;
        }

        .small-block-grid-10 > li:nth-of-type(10n+1) {
            clear: both;
        }

    .small-block-grid-11 > li {
        width: 9.0909090909%;
        list-style: none;
    }

        .small-block-grid-11 > li:nth-of-type(1n) {
            clear: none;
        }

        .small-block-grid-11 > li:nth-of-type(11n+1) {
            clear: both;
        }

    .small-block-grid-12 > li {
        width: 8.3333333333%;
        list-style: none;
    }

        .small-block-grid-12 > li:nth-of-type(1n) {
            clear: none;
        }

        .small-block-grid-12 > li:nth-of-type(12n+1) {
            clear: both;
        }
}

@media only screen and (min-width:40.063em) {
    .medium-block-grid-1 > li {
        width: 100%;
        list-style: none;
    }

        .medium-block-grid-1 > li:nth-of-type(1n) {
            clear: none;
        }

        .medium-block-grid-1 > li:nth-of-type(1n+1) {
            clear: both;
        }

    .medium-block-grid-2 > li {
        width: 50%;
        list-style: none;
    }

        .medium-block-grid-2 > li:nth-of-type(1n) {
            clear: none;
        }

        .medium-block-grid-2 > li:nth-of-type(2n+1) {
            clear: both;
        }

    .medium-block-grid-3 > li {
        width: 33.3333333333%;
        list-style: none;
    }

        .medium-block-grid-3 > li:nth-of-type(1n) {
            clear: none;
        }

        .medium-block-grid-3 > li:nth-of-type(3n+1) {
            clear: both;
        }

    .medium-block-grid-4 > li {
        width: 25%;
        list-style: none;
    }

        .medium-block-grid-4 > li:nth-of-type(1n) {
            clear: none;
        }

        .medium-block-grid-4 > li:nth-of-type(4n+1) {
            clear: both;
        }

    .medium-block-grid-5 > li {
        width: 20%;
        list-style: none;
    }

        .medium-block-grid-5 > li:nth-of-type(1n) {
            clear: none;
        }

        .medium-block-grid-5 > li:nth-of-type(5n+1) {
            clear: both;
        }

    .medium-block-grid-6 > li {
        width: 16.6666666667%;
        list-style: none;
    }

        .medium-block-grid-6 > li:nth-of-type(1n) {
            clear: none;
        }

        .medium-block-grid-6 > li:nth-of-type(6n+1) {
            clear: both;
        }

    .medium-block-grid-7 > li {
        width: 14.2857142857%;
        list-style: none;
    }

        .medium-block-grid-7 > li:nth-of-type(1n) {
            clear: none;
        }

        .medium-block-grid-7 > li:nth-of-type(7n+1) {
            clear: both;
        }

    .medium-block-grid-8 > li {
        width: 12.5%;
        list-style: none;
    }

        .medium-block-grid-8 > li:nth-of-type(1n) {
            clear: none;
        }

        .medium-block-grid-8 > li:nth-of-type(8n+1) {
            clear: both;
        }

    .medium-block-grid-9 > li {
        width: 11.1111111111%;
        list-style: none;
    }

        .medium-block-grid-9 > li:nth-of-type(1n) {
            clear: none;
        }

        .medium-block-grid-9 > li:nth-of-type(9n+1) {
            clear: both;
        }

    .medium-block-grid-10 > li {
        width: 10%;
        list-style: none;
    }

        .medium-block-grid-10 > li:nth-of-type(1n) {
            clear: none;
        }

        .medium-block-grid-10 > li:nth-of-type(10n+1) {
            clear: both;
        }

    .medium-block-grid-11 > li {
        width: 9.0909090909%;
        list-style: none;
    }

        .medium-block-grid-11 > li:nth-of-type(1n) {
            clear: none;
        }

        .medium-block-grid-11 > li:nth-of-type(11n+1) {
            clear: both;
        }

    .medium-block-grid-12 > li {
        width: 8.3333333333%;
        list-style: none;
    }

        .medium-block-grid-12 > li:nth-of-type(1n) {
            clear: none;
        }

        .medium-block-grid-12 > li:nth-of-type(12n+1) {
            clear: both;
        }
}

@media only screen and (min-width:64.063em) {
    .large-block-grid-1 > li {
        width: 100%;
        list-style: none;
    }

        .large-block-grid-1 > li:nth-of-type(1n) {
            clear: none;
        }

        .large-block-grid-1 > li:nth-of-type(1n+1) {
            clear: both;
        }

    .large-block-grid-2 > li {
        width: 50%;
        list-style: none;
    }

        .large-block-grid-2 > li:nth-of-type(1n) {
            clear: none;
        }

        .large-block-grid-2 > li:nth-of-type(2n+1) {
            clear: both;
        }

    .large-block-grid-3 > li {
        width: 33.3333333333%;
        list-style: none;
    }

        .large-block-grid-3 > li:nth-of-type(1n) {
            clear: none;
        }

        .large-block-grid-3 > li:nth-of-type(3n+1) {
            clear: both;
        }

    .large-block-grid-4 > li {
        width: 25%;
        list-style: none;
    }

        .large-block-grid-4 > li:nth-of-type(1n) {
            clear: none;
        }

        .large-block-grid-4 > li:nth-of-type(4n+1) {
            clear: both;
        }

    .large-block-grid-5 > li {
        width: 20%;
        list-style: none;
    }

        .large-block-grid-5 > li:nth-of-type(1n) {
            clear: none;
        }

        .large-block-grid-5 > li:nth-of-type(5n+1) {
            clear: both;
        }

    .large-block-grid-6 > li {
        width: 16.6666666667%;
        list-style: none;
    }

        .large-block-grid-6 > li:nth-of-type(1n) {
            clear: none;
        }

        .large-block-grid-6 > li:nth-of-type(6n+1) {
            clear: both;
        }

    .large-block-grid-7 > li {
        width: 14.2857142857%;
        list-style: none;
    }

        .large-block-grid-7 > li:nth-of-type(1n) {
            clear: none;
        }

        .large-block-grid-7 > li:nth-of-type(7n+1) {
            clear: both;
        }

    .large-block-grid-8 > li {
        width: 12.5%;
        list-style: none;
    }

        .large-block-grid-8 > li:nth-of-type(1n) {
            clear: none;
        }

        .large-block-grid-8 > li:nth-of-type(8n+1) {
            clear: both;
        }

    .large-block-grid-9 > li {
        width: 11.1111111111%;
        list-style: none;
    }

        .large-block-grid-9 > li:nth-of-type(1n) {
            clear: none;
        }

        .large-block-grid-9 > li:nth-of-type(9n+1) {
            clear: both;
        }

    .large-block-grid-10 > li {
        width: 10%;
        list-style: none;
    }

        .large-block-grid-10 > li:nth-of-type(1n) {
            clear: none;
        }

        .large-block-grid-10 > li:nth-of-type(10n+1) {
            clear: both;
        }

    .large-block-grid-11 > li {
        width: 9.0909090909%;
        list-style: none;
    }

        .large-block-grid-11 > li:nth-of-type(1n) {
            clear: none;
        }

        .large-block-grid-11 > li:nth-of-type(11n+1) {
            clear: both;
        }

    .large-block-grid-12 > li {
        width: 8.3333333333%;
        list-style: none;
    }

        .large-block-grid-12 > li:nth-of-type(1n) {
            clear: none;
        }

        .large-block-grid-12 > li:nth-of-type(12n+1) {
            clear: both;
        }
}

.breadcrumbs {
    display: block;
    padding: 0.5625rem 0.875rem 0.5625rem;
    overflow: hidden;
    margin-left: 0;
    list-style: none;
    border-style: solid;
    border-width: 1px;
    background-color: #f4f4f4;
    border-color: gainsboro;
    border-radius: 5px;
}

    .breadcrumbs > * {
        margin: 0;
        float: left;
        font-size: 0.6875rem;
        line-height: 0.6875rem;
        text-transform: uppercase;
        color: #046B99;
    }

        .breadcrumbs > *:hover a, .breadcrumbs > *:focus a {
            text-decoration: underline;
        }

        .breadcrumbs > * a {
            color: #046B99;
        }

        .breadcrumbs > *.current {
            cursor: default;
            color: #333333;
        }

            .breadcrumbs > *.current a {
                cursor: default;
                color: #333333;
            }

            .breadcrumbs > *.current:hover, .breadcrumbs > *.current:hover a, .breadcrumbs > *.current:focus, .breadcrumbs > *.current:focus a {
                text-decoration: none;
            }

        .breadcrumbs > *.unavailable {
            color: #999999;
        }

            .breadcrumbs > *.unavailable a {
                color: #999999;
            }

                .breadcrumbs > *.unavailable:hover, .breadcrumbs > *.unavailable:hover a, .breadcrumbs > *.unavailable:focus, .breadcrumbs > *.unavailable a:focus {
                    text-decoration: none;
                    color: #999999;
                    cursor: not-allowed;
                }

        .breadcrumbs > *:before {
            content: "/";
            color: #AAAAAA;
            margin: 0 0.75rem;
            position: relative;
            top: 1px;
        }

        .breadcrumbs > *:first-child:before {
            content: " ";
            margin: 0;
        }

/* Accessibility - hides the forward slash */
[aria-label="breadcrumbs"] [aria-hidden="true"]:after {
    content: "/";
}

button, .button {
    border-style: solid;
    border-width: 0;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    line-height: normal;
    margin: 0 0 1.25rem;
    position: relative;
    text-decoration: none;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0;
    display: inline-block;
    padding-top: 1rem;
    padding-right: 2rem;
    padding-bottom: 1.0625rem;
    padding-left: 2rem;
    font-size: 1rem;
    background-color: #046B99;
    border-color: #005ea1;
    color: #FFFFFF;
    transition: background-color 200ms ease-out;
}

    button:hover, button:focus, .button:hover, .button:focus {
        background-color: #0075c9;
        color: #FFFFFF;
    }

    button.secondary, .button.secondary {
        background-color: #e7e7e7;
        border-color: #b9b9b9;
        color: #333333;
    }

        button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
            background-color: #b9b9b9;
        }

        button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
            color: #333333;
        }

    button.success, .button.success {
        background-color: #43AC6A;
        border-color: #368a55;
        color: #FFFFFF;
    }

        button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
            background-color: #368a55;
        }

        button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
            color: #FFFFFF;
        }

    button.alert, .button.alert {
        background-color: #f04124;
        border-color: #cf2a0e;
        color: #FFFFFF;
    }

        button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
            background-color: #cf2a0e;
        }

        button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
            color: #FFFFFF;
        }

    button.warning, .button.warning {
        background-color: #f08a24;
        border-color: #cf6e0e;
        color: #FFFFFF;
    }

        button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
            background-color: #cf6e0e;
        }

        button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
            color: #FFFFFF;
        }

    button.info, .button.info {
        background-color: #a0d3e8;
        border-color: #61b6d9;
        color: #333333;
    }

        button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
            background-color: #61b6d9;
        }

        button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
            color: #FFFFFF;
        }

    button.gray, .button.gray {
        background-color: #999999;
    }

    button .large, .button.large {
        padding-top: 1.125rem;
        padding-right: 2.25rem;
        padding-bottom: 1.1875rem;
        padding-left: 2.25rem;
        font-size: 1.25rem;
    }

    button.small, .button.small {
        padding-top: 0.875rem;
        padding-right: 1.75rem;
        padding-bottom: 0.9375rem;
        padding-left: 1.75rem;
        font-size: 0.8125rem;
    }

    button.tiny, .button.tiny {
        padding-top: 0.625rem;
        padding-right: 1.25rem;
        padding-bottom: 0.6875rem;
        padding-left: 1.25rem;
        font-size: 0.6875rem;
    }

    button.expand, .button.expand {
        padding-right: 0;
        padding-left: 0;
        width: 100%;
    }

    button.left-align, .button.left-align {
        text-align: left;
        text-indent: 0.75rem;
    }

    button.right-align, .button.right-align {
        text-align: right;
        padding-right: 0.75rem;
    }

    button.radius, .button.radius {
        border-radius: 5px;
    }

    button.round, .button.round {
        border-radius: 1000px;
    }

    button.disabled, button[disabled], .button.disabled, .button[disabled] {
        background-color: #046B99;
        border-color: #005ea1;
        color: #FFFFFF;
        cursor: default;
        opacity: 0.7;
        box-shadow: none;
    }

        button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
            background-color: #005ea1;
        }

        button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
            color: #FFFFFF;
        }

        button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
            background-color: #046B99;
        }

        button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
            background-color: #e7e7e7;
            border-color: #b9b9b9;
            color: #333333;
            cursor: default;
            opacity: 0.7;
            box-shadow: none;
        }

            button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
                background-color: #b9b9b9;
            }

            button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
                color: #333333;
            }

            button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
                background-color: #e7e7e7;
            }

        button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
            background-color: #43AC6A;
            border-color: #368a55;
            color: #FFFFFF;
            cursor: default;
            opacity: 0.7;
            box-shadow: none;
        }

            button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
                background-color: #368a55;
            }

            button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
                color: #FFFFFF;
            }

            button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
                background-color: #43AC6A;
            }

        button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
            background-color: #f04124;
            border-color: #cf2a0e;
            color: #FFFFFF;
            cursor: default;
            opacity: 0.7;
            box-shadow: none;
        }

            button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
                background-color: #cf2a0e;
            }

            button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
                color: #FFFFFF;
            }

            button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
                background-color: #f04124;
            }

        button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
            background-color: #f08a24;
            border-color: #cf6e0e;
            color: #FFFFFF;
            cursor: default;
            opacity: 0.7;
            box-shadow: none;
        }

            button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
                background-color: #cf6e0e;
            }

            button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
                color: #FFFFFF;
            }

            button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
                background-color: #f08a24;
            }

        button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
            background-color: #a0d3e8;
            border-color: #61b6d9;
            color: #333333;
            cursor: default;
            opacity: 0.7;
            box-shadow: none;
        }

            button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
                background-color: #61b6d9;
            }

            button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
                color: #FFFFFF;
            }

            button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
                background-color: #a0d3e8;
            }

    button::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

@media only screen and (min-width:40.063em) {
    button, .button {
        display: inline-block;
    }
}

.button-group {
    list-style: none;
    margin: 0;
    left: 0;
}

    .button-group:before, .button-group:after {
        content: " ";
        display: table;
    }

    .button-group:after {
        clear: both;
    }

    .button-group.even-2 li {
        margin: 0 -2px;
        display: inline-block;
        width: 50%;
    }

        .button-group.even-2 li > button, .button-group.even-2 li .button {
            border-left: 1px solid;
            border-color: rgba(255, 255, 255, 0.5);
        }

        .button-group.even-2 li:first-child button, .button-group.even-2 li:first-child .button {
            border-left: 0;
        }

        .button-group.even-2 li button, .button-group.even-2 li .button {
            width: 100%;
        }

    .button-group.even-3 li {
        margin: 0 -2px;
        display: inline-block;
        width: 33.3333333333%;
    }

        .button-group.even-3 li > button, .button-group.even-3 li .button {
            border-left: 1px solid;
            border-color: rgba(255, 255, 255, 0.5);
        }

        .button-group.even-3 li:first-child button, .button-group.even-3 li:first-child .button {
            border-left: 0;
        }

        .button-group.even-3 li button, .button-group.even-3 li .button {
            width: 100%;
        }

    .button-group.even-4 li {
        margin: 0 -2px;
        display: inline-block;
        width: 25%;
    }

        .button-group.even-4 li > button, .button-group.even-4 li .button {
            border-left: 1px solid;
            border-color: rgba(255, 255, 255, 0.5);
        }

        .button-group.even-4 li:first-child button, .button-group.even-4 li:first-child .button {
            border-left: 0;
        }

        .button-group.even-4 li button, .button-group.even-4 li .button {
            width: 100%;
        }

    .button-group.even-5 li {
        margin: 0 -2px;
        display: inline-block;
        width: 20%;
    }

        .button-group.even-5 li > button, .button-group.even-5 li .button {
            border-left: 1px solid;
            border-color: rgba(255, 255, 255, 0.5);
        }

        .button-group.even-5 li:first-child button, .button-group.even-5 li:first-child .button {
            border-left: 0;
        }

        .button-group.even-5 li button, .button-group.even-5 li .button {
            width: 100%;
        }

    .button-group.even-6 li {
        margin: 0 -2px;
        display: inline-block;
        width: 16.6666666667%;
    }

        .button-group.even-6 li > button, .button-group.even-6 li .button {
            border-left: 1px solid;
            border-color: rgba(255, 255, 255, 0.5);
        }

        .button-group.even-6 li:first-child button, .button-group.even-6 li:first-child .button {
            border-left: 0;
        }

        .button-group.even-6 li button, .button-group.even-6 li .button {
            width: 100%;
        }

    .button-group.even-7 li {
        margin: 0 -2px;
        display: inline-block;
        width: 14.2857142857%;
    }

        .button-group.even-7 li > button, .button-group.even-7 li .button {
            border-left: 1px solid;
            border-color: rgba(255, 255, 255, 0.5);
        }

        .button-group.even-7 li:first-child button, .button-group.even-7 li:first-child .button {
            border-left: 0;
        }

        .button-group.even-7 li button, .button-group.even-7 li .button {
            width: 100%;
        }

    .button-group.even-8 li {
        margin: 0 -2px;
        display: inline-block;
        width: 12.5%;
    }

        .button-group.even-8 li > button, .button-group.even-8 li .button {
            border-left: 1px solid;
            border-color: rgba(255, 255, 255, 0.5);
        }

        .button-group.even-8 li:first-child button, .button-group.even-8 li:first-child .button {
            border-left: 0;
        }

        .button-group.even-8 li button, .button-group.even-8 li .button {
            width: 100%;
        }

    .button-group > li {
        margin: 0 -2px;
        display: inline-block;
    }

        .button-group > li > button, .button-group > li .button {
            border-left: 1px solid;
            border-color: rgba(255, 255, 255, 0.5);
        }

        .button-group > li:first-child button, .button-group > li:first-child .button {
            border-left: 0;
        }

    .button-group.stack > li {
        margin: 0 -2px;
        display: inline-block;
        display: block;
        margin: 0;
        float: none;
    }

        .button-group.stack > li > button, .button-group.stack > li .button {
            border-left: 1px solid;
            border-color: rgba(255, 255, 255, 0.5);
        }

        .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
            border-left: 0;
        }

        .button-group.stack > li > button, .button-group.stack > li .button {
            border-top: 1px solid;
            border-color: rgba(255, 255, 255, 0.5);
            border-left-width: 0;
            margin: 0;
            display: block;
        }

        .button-group.stack > li > button {
            width: 100%;
        }

        .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
            border-top: 0;
        }

    .button-group.stack-for-small > li {
        margin: 0 -2px;
        display: inline-block;
    }

        .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
            border-left: 1px solid;
            border-color: rgba(255, 255, 255, 0.5);
        }

        .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
            border-left: 0;
        }

@media only screen and (max-width: 40em) {
    .button-group.stack-for-small > li {
        margin: 0 -2px;
        display: inline-block;
        display: block;
        margin: 0;
    }

        .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
            border-left: 1px solid;
            border-color: rgba(255, 255, 255, 0.5);
        }

        .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
            border-left: 0;
        }

        .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
            border-top: 1px solid;
            border-color: rgba(255, 255, 255, 0.5);
            border-left-width: 0;
            margin: 0;
            display: block;
        }

        .button-group.stack-for-small > li > button {
            width: 100%;
        }

        .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
            border-top: 0;
        }
}

.button-group.radius > * {
    margin: 0 -2px;
    display: inline-block;
}

    .button-group.radius > * > button, .button-group.radius > * .button {
        border-left: 1px solid;
        border-color: rgba(255, 255, 255, 0.5);
    }

    .button-group.radius > *:first-child button, .button-group.radius > *:first-child .button {
        border-left: 0;
    }

    .button-group.radius > *, .button-group.radius > * > a, .button-group.radius > * > button, .button-group.radius > * > .button {
        border-radius: 0;
    }

        .button-group.radius > *:first-child, .button-group.radius > *:first-child > a, .button-group.radius > *:first-child > button, .button-group.radius > *:first-child > .button {
            -webkit-border-bottom-left-radius: 5px;
            -webkit-border-top-left-radius: 5px;
            border-bottom-left-radius: 5px;
            border-top-left-radius: 5px;
        }

        .button-group.radius > *:last-child, .button-group.radius > *:last-child > a, .button-group.radius > *:last-child > button, .button-group.radius > *:last-child > .button {
            -webkit-border-bottom-right-radius: 5px;
            -webkit-border-top-right-radius: 5px;
            border-bottom-right-radius: 5px;
            border-top-right-radius: 5px;
        }

.button-group.radius.stack > * {
    margin: 0 -2px;
    display: inline-block;
    display: block;
    margin: 0;
}

    .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
        border-left: 1px solid;
        border-color: rgba(255, 255, 255, 0.5);
    }

    .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
        border-left: 0;
    }

    .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
        border-top: 1px solid;
        border-color: rgba(255, 255, 255, 0.5);
        border-left-width: 0;
        margin: 0;
        display: block;
    }

    .button-group.radius.stack > * > button {
        width: 100%;
    }

    .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
        border-top: 0;
    }

    .button-group.radius.stack > *, .button-group.radius.stack > * > a, .button-group.radius.stack > * > button, .button-group.radius.stack > * > .button {
        border-radius: 0;
    }

        .button-group.radius.stack > *:first-child, .button-group.radius.stack > *:first-child > a, .button-group.radius.stack > *:first-child > button, .button-group.radius.stack > *:first-child > .button {
            -webkit-top-left-radius: 5px;
            -webkit-top-right-radius: 5px;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
        }

        .button-group.radius.stack > *:last-child, .button-group.radius.stack > *:last-child > a, .button-group.radius.stack > *:last-child > button, .button-group.radius.stack > *:last-child > .button {
            -webkit-bottom-left-radius: 5px;
            -webkit-bottom-right-radius: 5px;
            border-bottom-left-radius: 5px;
            border-bottom-right-radius: 5px;
        }

@media only screen and (min-width:40.063em) {
    .button-group.radius.stack-for-small > * {
        margin: 0 -2px;
        display: inline-block;
    }

        .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
            border-left: 1px solid;
            border-color: rgba(255, 255, 255, 0.5);
        }

        .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
            border-left: 0;
        }

        .button-group.radius.stack-for-small > *, .button-group.radius.stack-for-small > * > a, .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * > .button {
            border-radius: 0;
        }

            .button-group.radius.stack-for-small > *:first-child, .button-group.radius.stack-for-small > *:first-child > a, .button-group.radius.stack-for-small > *:first-child > button, .button-group.radius.stack-for-small > *:first-child > .button {
                -webkit-border-bottom-left-radius: 5px;
                -webkit-border-top-left-radius: 5px;
                border-bottom-left-radius: 5px;
                border-top-left-radius: 5px;
            }

            .button-group.radius.stack-for-small > *:last-child, .button-group.radius.stack-for-small > *:last-child > a, .button-group.radius.stack-for-small > *:last-child > button, .button-group.radius.stack-for-small > *:last-child > .button {
                -webkit-border-bottom-right-radius: 5px;
                -webkit-border-top-right-radius: 5px;
                border-bottom-right-radius: 5px;
                border-top-right-radius: 5px;
            }
}

@media only screen and (max-width: 40em) {
    .button-group.radius.stack-for-small > * {
        margin: 0 -2px;
        display: inline-block;
        display: block;
        margin: 0;
    }

        .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
            border-left: 1px solid;
            border-color: rgba(255, 255, 255, 0.5);
        }

        .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
            border-left: 0;
        }

        .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
            border-top: 1px solid;
            border-color: rgba(255, 255, 255, 0.5);
            border-left-width: 0;
            margin: 0;
            display: block;
        }

        .button-group.radius.stack-for-small > * > button {
            width: 100%;
        }

        .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
            border-top: 0;
        }

        .button-group.radius.stack-for-small > *, .button-group.radius.stack-for-small > * > a, .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * > .button {
            border-radius: 0;
        }

            .button-group.radius.stack-for-small > *:first-child, .button-group.radius.stack-for-small > *:first-child > a, .button-group.radius.stack-for-small > *:first-child > button, .button-group.radius.stack-for-small > *:first-child > .button {
                -webkit-top-left-radius: 5px;
                -webkit-top-right-radius: 5px;
                border-top-left-radius: 5px;
                border-top-right-radius: 5px;
            }

            .button-group.radius.stack-for-small > *:last-child, .button-group.radius.stack-for-small > *:last-child > a, .button-group.radius.stack-for-small > *:last-child > button, .button-group.radius.stack-for-small > *:last-child > .button {
                -webkit-bottom-left-radius: 5px;
                -webkit-bottom-right-radius: 5px;
                border-bottom-left-radius: 5px;
                border-bottom-right-radius: 5px;
            }
}

.button-group.round > * {
    margin: 0 -2px;
    display: inline-block;
}

    .button-group.round > * > button, .button-group.round > * .button {
        border-left: 1px solid;
        border-color: rgba(255, 255, 255, 0.5);
    }

    .button-group.round > *:first-child button, .button-group.round > *:first-child .button {
        border-left: 0;
    }

    .button-group.round > *, .button-group.round > * > a, .button-group.round > * > button, .button-group.round > * > .button {
        border-radius: 0;
    }

        .button-group.round > *:first-child, .button-group.round > *:first-child > a, .button-group.round > *:first-child > button, .button-group.round > *:first-child > .button {
            -webkit-border-bottom-left-radius: 1000px;
            -webkit-border-top-left-radius: 1000px;
            border-bottom-left-radius: 1000px;
            border-top-left-radius: 1000px;
        }

        .button-group.round > *:last-child, .button-group.round > *:last-child > a, .button-group.round > *:last-child > button, .button-group.round > *:last-child > .button {
            -webkit-border-bottom-right-radius: 1000px;
            -webkit-border-top-right-radius: 1000px;
            border-bottom-right-radius: 1000px;
            border-top-right-radius: 1000px;
        }

.button-group.round.stack > * {
    margin: 0 -2px;
    display: inline-block;
    display: block;
    margin: 0;
}

    .button-group.round.stack > * > button, .button-group.round.stack > * .button {
        border-left: 1px solid;
        border-color: rgba(255, 255, 255, 0.5);
    }

    .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
        border-left: 0;
    }

    .button-group.round.stack > * > button, .button-group.round.stack > * .button {
        border-top: 1px solid;
        border-color: rgba(255, 255, 255, 0.5);
        border-left-width: 0;
        margin: 0;
        display: block;
    }

    .button-group.round.stack > * > button {
        width: 100%;
    }

    .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
        border-top: 0;
    }

    .button-group.round.stack > *, .button-group.round.stack > * > a, .button-group.round.stack > * > button, .button-group.round.stack > * > .button {
        border-radius: 0;
    }

        .button-group.round.stack > *:first-child, .button-group.round.stack > *:first-child > a, .button-group.round.stack > *:first-child > button, .button-group.round.stack > *:first-child > .button {
            -webkit-top-left-radius: 1rem;
            -webkit-top-right-radius: 1rem;
            border-top-left-radius: 1rem;
            border-top-right-radius: 1rem;
        }

        .button-group.round.stack > *:last-child, .button-group.round.stack > *:last-child > a, .button-group.round.stack > *:last-child > button, .button-group.round.stack > *:last-child > .button {
            -webkit-bottom-left-radius: 1rem;
            -webkit-bottom-right-radius: 1rem;
            border-bottom-left-radius: 1rem;
            border-bottom-right-radius: 1rem;
        }

@media only screen and (min-width:40.063em) {
    .button-group.round.stack-for-small > * {
        margin: 0 -2px;
        display: inline-block;
    }

        .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
            border-left: 1px solid;
            border-color: rgba(255, 255, 255, 0.5);
        }

        .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
            border-left: 0;
        }

        .button-group.round.stack-for-small > *, .button-group.round.stack-for-small > * > a, .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * > .button {
            border-radius: 0;
        }

            .button-group.round.stack-for-small > *:first-child, .button-group.round.stack-for-small > *:first-child > a, .button-group.round.stack-for-small > *:first-child > button, .button-group.round.stack-for-small > *:first-child > .button {
                -webkit-border-bottom-left-radius: 1000px;
                -webkit-border-top-left-radius: 1000px;
                border-bottom-left-radius: 1000px;
                border-top-left-radius: 1000px;
            }

            .button-group.round.stack-for-small > *:last-child, .button-group.round.stack-for-small > *:last-child > a, .button-group.round.stack-for-small > *:last-child > button, .button-group.round.stack-for-small > *:last-child > .button {
                -webkit-border-bottom-right-radius: 1000px;
                -webkit-border-top-right-radius: 1000px;
                border-bottom-right-radius: 1000px;
                border-top-right-radius: 1000px;
            }
}

@media only screen and (max-width: 40em) {
    .button-group.round.stack-for-small > * {
        margin: 0 -2px;
        display: inline-block;
        display: block;
        margin: 0;
    }

        .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
            border-left: 1px solid;
            border-color: rgba(255, 255, 255, 0.5);
        }

        .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
            border-left: 0;
        }

        .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
            border-top: 1px solid;
            border-color: rgba(255, 255, 255, 0.5);
            border-left-width: 0;
            margin: 0;
            display: block;
        }

        .button-group.round.stack-for-small > * > button {
            width: 100%;
        }

        .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
            border-top: 0;
        }

        .button-group.round.stack-for-small > *, .button-group.round.stack-for-small > * > a, .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * > .button {
            border-radius: 0;
        }

            .button-group.round.stack-for-small > *:first-child, .button-group.round.stack-for-small > *:first-child > a, .button-group.round.stack-for-small > *:first-child > button, .button-group.round.stack-for-small > *:first-child > .button {
                -webkit-top-left-radius: 1rem;
                -webkit-top-right-radius: 1rem;
                border-top-left-radius: 1rem;
                border-top-right-radius: 1rem;
            }

            .button-group.round.stack-for-small > *:last-child, .button-group.round.stack-for-small > *:last-child > a, .button-group.round.stack-for-small > *:last-child > button, .button-group.round.stack-for-small > *:last-child > .button {
                -webkit-bottom-left-radius: 1rem;
                -webkit-bottom-right-radius: 1rem;
                border-bottom-left-radius: 1rem;
                border-bottom-right-radius: 1rem;
            }
}

.button-bar:before, .button-bar:after {
    content: " ";
    display: table;
}

.button-bar:after {
    clear: both;
}

.button-bar .button-group {
    float: left;
    margin-right: 0.625rem;
}

    .button-bar .button-group div {
        overflow: hidden;
    }

/* Clearing Styles */
.clearing-thumbs, [data-clearing] {
    margin-bottom: 0;
    margin-left: 0;
    list-style: none;
}

    .clearing-thumbs:before, .clearing-thumbs:after, [data-clearing]:before, [data-clearing]:after {
        content: " ";
        display: table;
    }

    .clearing-thumbs:after, [data-clearing]:after {
        clear: both;
    }

    .clearing-thumbs li, [data-clearing] li {
        float: left;
        margin-right: 10px;
    }

    .clearing-thumbs[class*="block-grid-"] li, [data-clearing][class*="block-grid-"] li {
        margin-right: 0;
    }

.clearing-blackout {
    background: #333333;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 998;
}

    .clearing-blackout .clearing-close {
        display: block;
    }

.clearing-container {
    position: relative;
    z-index: 998;
    height: 100%;
    overflow: hidden;
    margin: 0;
}

.clearing-touch-label {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #AAAAAA;
    font-size: 0.6em;
}

.visible-img {
    height: 95%;
    position: relative;
}

    .visible-img img {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateY(-50%) translateX(-50%);
        -webkit-transform: translateY(-50%) translateX(-50%);
        -ms-transform: translateY(-50%) translateX(-50%);
        max-height: 100%;
        max-width: 100%;
    }

.clearing-caption {
    color: #CCCCCC;
    font-size: 0.875em;
    line-height: 1.3;
    margin-bottom: 0;
    text-align: center;
    bottom: 0;
    background: #333333;
    width: 100%;
    padding: 10px 30px 20px;
    position: absolute;
    left: 0;
}

.clearing-close {
    z-index: 999;
    padding-left: 20px;
    padding-top: 10px;
    font-size: 30px;
    line-height: 1;
    color: #CCCCCC;
    display: none;
}

    .clearing-close:hover, .clearing-close:focus {
        color: #CCCCCC;
    }

.clearing-assembled .clearing-container {
    height: 100%;
}

    .clearing-assembled .clearing-container .carousel > ul {
        display: none;
    }

.clearing-feature li {
    display: none;
}

    .clearing-feature li.clearing-featured-img {
        display: block;
    }

@media only screen and (min-width:40.063em) {
    .clearing-main-prev, .clearing-main-next {
        position: absolute;
        height: 100%;
        width: 40px;
        top: 0;
    }

        .clearing-main-prev > span, .clearing-main-next > span {
            position: absolute;
            top: 50%;
            display: block;
            width: 0;
            height: 0;
            border: solid 12px;
        }

            .clearing-main-prev > span:hover, .clearing-main-next > span:hover {
                opacity: 0.8;
            }

    .clearing-main-prev {
        left: 0;
    }

        .clearing-main-prev > span {
            left: 5px;
            border-color: transparent;
            border-right-color: #CCCCCC;
        }

    .clearing-main-next {
        right: 0;
    }

        .clearing-main-next > span {
            border-color: transparent;
            border-left-color: #CCCCCC;
        }

        .clearing-main-prev.disabled, .clearing-main-next.disabled {
            opacity: 0.3;
        }

    .clearing-assembled .clearing-container .carousel {
        background: rgba(51, 51, 51, 0.8);
        height: 120px;
        margin-top: 10px;
        text-align: center;
    }

        .clearing-assembled .clearing-container .carousel > ul {
            display: inline-block;
            z-index: 999;
            height: 100%;
            position: relative;
            float: none;
        }

            .clearing-assembled .clearing-container .carousel > ul li {
                display: block;
                width: 120px;
                min-height: inherit;
                float: left;
                overflow: hidden;
                margin-right: 0;
                padding: 0;
                position: relative;
                cursor: pointer;
                opacity: 0.4;
                clear: none;
            }

                .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
                    height: 100%;
                    max-width: none;
                }

                .clearing-assembled .clearing-container .carousel > ul li a.th {
                    border: none;
                    box-shadow: none;
                    display: block;
                }

                .clearing-assembled .clearing-container .carousel > ul li img {
                    cursor: pointer !important;
                    width: 100% !important;
                }

                .clearing-assembled .clearing-container .carousel > ul li.visible {
                    opacity: 1;
                }

                .clearing-assembled .clearing-container .carousel > ul li:hover {
                    opacity: 0.8;
                }

    .clearing-assembled .clearing-container .visible-img {
        background: #333333;
        overflow: hidden;
        height: 85%;
    }

    .clearing-close {
        position: absolute;
        top: 10px;
        right: 20px;
        padding-left: 0;
        padding-top: 0;
    }
}

/* Foundation Dropdowns */
.f-dropdown {
    position: absolute;
    left: -9999px;
    list-style: none;
    margin-left: 0;
    outline: none;
    width: 100%;
    max-height: none;
    height: auto;
    background: #FFFFFF;
    border: solid 1px #cccccc;
    font-size: 0.875rem;
    z-index: 89;
    margin-top: 2px;
    max-width: 200px;
}

    .f-dropdown > *:first-child {
        margin-top: 0;
    }

    .f-dropdown > *:last-child {
        margin-bottom: 0;
    }

    .f-dropdown:before {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        border-color: transparent transparent #FFFFFF transparent;
        border-bottom-style: solid;
        position: absolute;
        top: -12px;
        left: 10px;
        z-index: 89;
    }

    .f-dropdown:after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border: inset 7px;
        border-color: transparent transparent #cccccc transparent;
        border-bottom-style: solid;
        position: absolute;
        top: -14px;
        left: 9px;
        z-index: 88;
    }

    .f-dropdown.right:before {
        left: auto;
        right: 10px;
    }

    .f-dropdown.right:after {
        left: auto;
        right: 9px;
    }

    .f-dropdown.drop-right {
        position: absolute;
        left: -9999px;
        list-style: none;
        margin-left: 0;
        outline: none;
        width: 100%;
        max-height: none;
        height: auto;
        background: #FFFFFF;
        border: solid 1px #cccccc;
        font-size: 0.875rem;
        z-index: 89;
        margin-top: 0;
        margin-left: 2px;
        max-width: 200px;
    }

        .f-dropdown.drop-right > *:first-child {
            margin-top: 0;
        }

        .f-dropdown.drop-right > *:last-child {
            margin-bottom: 0;
        }

        .f-dropdown.drop-right:before {
            content: "";
            display: block;
            width: 0;
            height: 0;
            border: inset 6px;
            border-color: transparent #FFFFFF transparent transparent;
            border-right-style: solid;
            position: absolute;
            top: 10px;
            left: -12px;
            z-index: 89;
        }

        .f-dropdown.drop-right:after {
            content: "";
            display: block;
            width: 0;
            height: 0;
            border: inset 7px;
            border-color: transparent #cccccc transparent transparent;
            border-right-style: solid;
            position: absolute;
            top: 9px;
            left: -14px;
            z-index: 88;
        }

    .f-dropdown.drop-left {
        position: absolute;
        left: -9999px;
        list-style: none;
        margin-left: 0;
        outline: none;
        width: 100%;
        max-height: none;
        height: auto;
        background: #FFFFFF;
        border: solid 1px #cccccc;
        font-size: 0.875rem;
        z-index: 89;
        margin-top: 0;
        margin-left: -2px;
        max-width: 200px;
    }

        .f-dropdown.drop-left > *:first-child {
            margin-top: 0;
        }

        .f-dropdown.drop-left > *:last-child {
            margin-bottom: 0;
        }

        .f-dropdown.drop-left:before {
            content: "";
            display: block;
            width: 0;
            height: 0;
            border: inset 6px;
            border-color: transparent transparent transparent #FFFFFF;
            border-left-style: solid;
            position: absolute;
            top: 10px;
            right: -12px;
            left: auto;
            z-index: 89;
        }

        .f-dropdown.drop-left:after {
            content: "";
            display: block;
            width: 0;
            height: 0;
            border: inset 7px;
            border-color: transparent transparent transparent #cccccc;
            border-left-style: solid;
            position: absolute;
            top: 9px;
            right: -14px;
            left: auto;
            z-index: 88;
        }

    .f-dropdown.drop-top {
        position: absolute;
        left: -9999px;
        list-style: none;
        margin-left: 0;
        outline: none;
        width: 100%;
        max-height: none;
        height: auto;
        background: #FFFFFF;
        border: solid 1px #cccccc;
        font-size: 0.875rem;
        z-index: 89;
        margin-top: -2px;
        margin-left: 0;
        max-width: 200px;
    }

        .f-dropdown.drop-top > *:first-child {
            margin-top: 0;
        }

        .f-dropdown.drop-top > *:last-child {
            margin-bottom: 0;
        }

        .f-dropdown.drop-top:before {
            content: "";
            display: block;
            width: 0;
            height: 0;
            border: inset 6px;
            border-color: #FFFFFF transparent transparent transparent;
            border-top-style: solid;
            position: absolute;
            top: auto;
            bottom: -12px;
            left: 10px;
            right: auto;
            z-index: 89;
        }

        .f-dropdown.drop-top:after {
            content: "";
            display: block;
            width: 0;
            height: 0;
            border: inset 7px;
            border-color: #cccccc transparent transparent transparent;
            border-top-style: solid;
            position: absolute;
            top: auto;
            bottom: -14px;
            left: 9px;
            right: auto;
            z-index: 88;
        }

    .f-dropdown li {
        font-size: 0.875rem;
        cursor: pointer;
        line-height: 1.125rem;
        margin: 0;
    }

        .f-dropdown li:hover, .f-dropdown li:focus {
            background: #EEEEEE;
        }

        .f-dropdown li.radius {
            border-radius: 5px;
        }

        .f-dropdown li a {
            display: block;
            padding: 0.5rem;
            color: #555555;
        }

    .f-dropdown.content {
        position: absolute;
        left: -9999px;
        list-style: none;
        margin-left: 0;
        outline: none;
        padding: 1.25rem;
        width: 100%;
        height: auto;
        max-height: none;
        background: #FFFFFF;
        border: solid 1px #cccccc;
        font-size: 0.875rem;
        z-index: 89;
        max-width: 200px;
    }

        .f-dropdown.content > *:first-child {
            margin-top: 0;
        }

        .f-dropdown.content > *:last-child {
            margin-bottom: 0;
        }

    .f-dropdown.tiny {
        max-width: 200px;
    }

    .f-dropdown.small {
        max-width: 300px;
    }

    .f-dropdown.medium {
        max-width: 500px;
    }

    .f-dropdown.large {
        max-width: 800px;
    }

    .f-dropdown.mega {
        width: 100% !important;
        max-width: 100% !important;
    }

        .f-dropdown.mega.open {
            left: 0 !important;
        }

.dropdown.button, button.dropdown {
    position: relative;
    outline: none;
    padding-right: 3.5625rem;
}

    .dropdown.button::after, button.dropdown::after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        display: block;
        border-style: solid;
        border-color: #FFFFFF transparent transparent transparent;
        top: 50%;
    }

    .dropdown.button::after, button.dropdown::after {
        border-width: 0.375rem;
        right: 1.40625rem;
        margin-top: -0.15625rem;
    }

    .dropdown.button::after, button.dropdown::after {
        border-color: #FFFFFF transparent transparent transparent;
    }

    .dropdown.button.tiny, button.dropdown.tiny {
        padding-right: 2.625rem;
    }

        .dropdown.button.tiny:after, button.dropdown.tiny:after {
            border-width: 0.375rem;
            right: 1.125rem;
            margin-top: -0.125rem;
        }

        .dropdown.button.tiny::after, button.dropdown.tiny::after {
            border-color: #FFFFFF transparent transparent transparent;
        }

    .dropdown.button.small, button.dropdown.small {
        padding-right: 3.0625rem;
    }

        .dropdown.button.small::after, button.dropdown.small::after {
            border-width: 0.4375rem;
            right: 1.3125rem;
            margin-top: -0.15625rem;
        }

        .dropdown.button.small::after, button.dropdown.small::after {
            border-color: #FFFFFF transparent transparent transparent;
        }

    .dropdown.button.large, button.dropdown.large {
        padding-right: 3.625rem;
    }

        .dropdown.button.large::after, button.dropdown.large::after {
            border-width: 0.3125rem;
            right: 1.71875rem;
            margin-top: -0.15625rem;
        }

        .dropdown.button.large::after, button.dropdown.large::after {
            border-color: #FFFFFF transparent transparent transparent;
        }

    .dropdown.button.secondary:after, button.dropdown.secondary:after {
        border-color: #333333 transparent transparent transparent;
    }

.flex-video {
    position: relative;
    padding-top: 1.5625rem;
    padding-bottom: 67.5%;
    height: 0;
    margin-bottom: 1rem;
    overflow: hidden;
}

    .flex-video.widescreen {
        padding-bottom: 56.34%;
    }

    .flex-video.vimeo {
        padding-top: 0;
    }

    .flex-video iframe, .flex-video object, .flex-video embed, .flex-video video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/* Standard Forms */
form {
    margin: 0 0 1rem;
}

    /* Using forms within rows, we need to set some defaults */
    form .row .row {
        margin: 0 -0.5rem;
    }

        form .row .row .column, form .row .row .columns {
            padding: 0 0.5rem;
        }

        form .row .row.collapse {
            margin: 0;
        }

            form .row .row.collapse .column, form .row .row.collapse .columns {
                padding: 0;
            }

            form .row .row.collapse input {
                -webkit-border-bottom-right-radius: 0;
                -webkit-border-top-right-radius: 0;
                border-bottom-right-radius: 0;
                border-top-right-radius: 0;
            }

    form .row input.column, form .row input.columns, form .row textarea.column, form .row textarea.columns {
        padding-left: 0.5rem;
    }

/* Label Styles */
label {
    font-size: 0.875rem;
    color: #4d4d4d;
    cursor: pointer;
    display: block;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
    /* Styles for required inputs */
}

    label.right {
        float: none !important;
        text-align: right;
    }

    label.inline {
        margin: 0 0 1rem 0;
        padding: 0.625rem 0;
    }

    label small {
        text-transform: capitalize;
        color: #676767;
    }

/* Attach elements to the beginning or end of an input */
.prefix, .postfix {
    display: block;
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    border-style: solid;
    border-width: 1px;
    overflow: visible;
    font-size: 0.875rem;
    height: 2.3125rem;
    line-height: 2.3125rem;
}

    /* Adjust padding, alignment and radius if pre/post element is a button */
    .postfix.button {
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        text-align: center;
        border: none;
    }

    .prefix.button {
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        text-align: center;
        border: none;
    }

        .prefix.button.radius {
            border-radius: 0;
            -webkit-border-bottom-left-radius: 5px;
            -webkit-border-top-left-radius: 5px;
            border-bottom-left-radius: 5px;
            border-top-left-radius: 5px;
        }

    .postfix.button.radius {
        border-radius: 0;
        -webkit-border-bottom-right-radius: 5px;
        -webkit-border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        border-top-right-radius: 5px;
    }

    .prefix.button.round {
        border-radius: 0;
        -webkit-border-bottom-left-radius: 1000px;
        -webkit-border-top-left-radius: 1000px;
        border-bottom-left-radius: 1000px;
        border-top-left-radius: 1000px;
    }

    .postfix.button.round {
        border-radius: 0;
        -webkit-border-bottom-right-radius: 1000px;
        -webkit-border-top-right-radius: 1000px;
        border-bottom-right-radius: 1000px;
        border-top-right-radius: 1000px;
    }

/* Separate prefix and postfix styles when on span or label so buttons keep their own */
span.prefix, label.prefix {
    background: #f2f2f2;
    border-right: none;
    color: #333333;
    border-color: #cccccc;
}

span.postfix, label.postfix {
    background: #f2f2f2;
    border-left: none;
    color: #333333;
    border-color: #cccccc;
}

/* Respect enforced amount of rows for textarea */
textarea[rows] {
    height: auto;
}

/* Not allow resize out of parent */
textarea {
    max-width: 100%;
}

/* Add height value for select elements to match text input height */
select {
    -webkit-appearance: none !important;
    border-radius: 0;
    background-color: #FAFAFA;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);
    background-position: 100% center;
    background-repeat: no-repeat;
    border-style: solid;
    border-width: 2px;
    border-color: #cccccc;
    padding: 0.5rem;
    font-size: 0.875rem;
    font-family: 'Montserrat', sans-serif;
    color: rgba(0, 0, 0, 0.75);
    line-height: normal;
    border-radius: 0;
    height: 2.3125rem;
}

    select::-ms-expand {
        display: none;
    }

    select.radius {
        border-radius: 5px;
    }

    select:hover {
        background-color: #f3f3f3;
        border-color: #999999;
    }

    select:disabled {
        background-color: #DDDDDD;
        cursor: default;
    }

    select[multiple] {
        height: auto;
    }

/* Adjust margin for form elements below */
input[type="file"], input[type="checkbox"], input[type="radio"], select {
    margin: 0 0 1rem 0;
}

    input[type="checkbox"] + label, input[type="radio"] + label {
        display: inline-block;
        margin-left: 0.5rem;
        margin-right: 1rem;
        margin-bottom: 0;
        vertical-align: baseline;
    }

/* Normalize file input width */
input[type="file"] {
    width: 100%;
}

/* HTML5 Number spinners settings */
/* We add basic fieldset styling */
fieldset {
    border: 1px solid #DDDDDD;
    padding: 1.25rem;
    margin: 1.125rem 0;
}

    fieldset legend {
        font-weight: bold;
        background: #FFFFFF;
        padding: 0 0.1875rem;
        margin: 0;
        margin-left: -0.1875rem;
    }

/* Error Handling */
[data-abide] .error small.error, [data-abide] .error span.error, [data-abide] span.error, [data-abide] small.error {
    display: block;
    padding: 0.375rem 0.5625rem 0.5625rem;
    margin-top: -1px;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: normal;
    font-style: italic;
    background: #f04124;
    color: #FFFFFF;
}

[data-abide] span.error, [data-abide] small.error {
    display: none;
}

span.error, small.error {
    display: block;
    padding: 0.375rem 0.5625rem 0.5625rem;
    margin-top: -1px;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: normal;
    font-style: italic;
    background: #f04124;
    color: #FFFFFF;
}

.error input, .error textarea, .error select {
    margin-bottom: 0;
}

    .error input[type="checkbox"], .error input[type="radio"] {
        margin-bottom: 1rem;
    }

.error label, .error label.error {
    color: #f04124;
}

.error small.error {
    display: block;
    padding: 0.375rem 0.5625rem 0.5625rem;
    margin-top: -1px;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: normal;
    font-style: italic;
    background: #f04124;
    color: #FFFFFF;
}

.error > label > small {
    color: #676767;
    background: transparent;
    padding: 0;
    text-transform: capitalize;
    font-style: normal;
    font-size: 60%;
    margin: 0;
    display: inline;
}

.error span.error-message {
    display: block;
}

input.error, textarea.error, select.error {
    margin-bottom: 0;
}

label.error {
    color: #f04124;
}

.icon-bar {
    width: 100%;
    font-size: 0;
    display: inline-block;
    background: #333333;
}

    .icon-bar > * {
        text-align: center;
        font-size: 1rem;
        width: 25%;
        margin: 0 auto;
        display: block;
        padding: 1.25rem;
        float: left;
    }

        .icon-bar > * i, .icon-bar > * img {
            display: block;
            margin: 0 auto;
        }

            .icon-bar > * i + label, .icon-bar > * img + label {
                margin-top: 0.0625rem;
            }

        .icon-bar > * i {
            font-size: 1.875rem;
            vertical-align: middle;
        }

        .icon-bar > * img {
            width: 1.875rem;
            height: 1.875rem;
        }

    .icon-bar.label-right > * i, .icon-bar.label-right > * img {
        margin: 0 0.0625rem 0 0;
        display: inline-block;
    }

        .icon-bar.label-right > * i + label, .icon-bar.label-right > * img + label {
            margin-top: 0;
        }

    .icon-bar.label-right > * label {
        display: inline-block;
    }

    .icon-bar.vertical.label-right > * {
        text-align: left;
    }

    .icon-bar.vertical, .icon-bar.small-vertical {
        height: 100%;
        width: auto;
    }

        .icon-bar.vertical .item, .icon-bar.small-vertical .item {
            width: auto;
            margin: auto;
            float: none;
        }

@media only screen and (min-width:40.063em) {
    .icon-bar.medium-vertical {
        height: 100%;
        width: auto;
    }

        .icon-bar.medium-vertical .item {
            width: auto;
            margin: auto;
            float: none;
        }
}

@media only screen and (min-width:64.063em) {
    .icon-bar.large-vertical {
        height: 100%;
        width: auto;
    }

        .icon-bar.large-vertical .item {
            width: auto;
            margin: auto;
            float: none;
        }
}

.icon-bar > * {
    font-size: 1rem;
    padding: 1.25rem;
}

    .icon-bar > * i + label, .icon-bar > * img + label {
        margin-top: 0.0625rem;
    }

    .icon-bar > * i {
        font-size: 1.875rem;
    }

    .icon-bar > * img {
        width: 1.875rem;
        height: 1.875rem;
    }

    .icon-bar > * label {
        color: #FFFFFF;
    }

    .icon-bar > * i {
        color: #FFFFFF;
    }

.icon-bar > a:hover {
    background: #046B99;
}

    .icon-bar > a:hover label {
        color: #FFFFFF;
    }

    .icon-bar > a:hover i {
        color: #FFFFFF;
    }

.icon-bar > a.active {
    background: #046B99;
}

    .icon-bar > a.active label {
        color: #FFFFFF;
    }

    .icon-bar > a.active i {
        color: #FFFFFF;
    }

.icon-bar .item.disabled {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

    .icon-bar .item.disabled > * {
        opacity: 0.7;
        cursor: not-allowed;
    }

.icon-bar.two-up .item {
    width: 50%;
}

.icon-bar.two-up.vertical .item, .icon-bar.two-up.small-vertical .item {
    width: auto;
}

@media only screen and (min-width:40.063em) {
    .icon-bar.two-up.medium-vertical .item {
        width: auto;
    }
}

@media only screen and (min-width:64.063em) {
    .icon-bar.two-up.large-vertical .item {
        width: auto;
    }
}

.icon-bar.three-up .item {
    width: 33.3333%;
}

.icon-bar.three-up.vertical .item, .icon-bar.three-up.small-vertical .item {
    width: auto;
}

@media only screen and (min-width:40.063em) {
    .icon-bar.three-up.medium-vertical .item {
        width: auto;
    }
}

@media only screen and (min-width:64.063em) {
    .icon-bar.three-up.large-vertical .item {
        width: auto;
    }
}

.icon-bar.four-up .item {
    width: 25%;
}

.icon-bar.four-up.vertical .item, .icon-bar.four-up.small-vertical .item {
    width: auto;
}

@media only screen and (min-width:40.063em) {
    .icon-bar.four-up.medium-vertical .item {
        width: auto;
    }
}

@media only screen and (min-width:64.063em) {
    .icon-bar.four-up.large-vertical .item {
        width: auto;
    }
}

.icon-bar.five-up .item {
    width: 20%;
}

.icon-bar.five-up.vertical .item, .icon-bar.five-up.small-vertical .item {
    width: auto;
}

@media only screen and (min-width:40.063em) {
    .icon-bar.five-up.medium-vertical .item {
        width: auto;
    }
}

@media only screen and (min-width:64.063em) {
    .icon-bar.five-up.large-vertical .item {
        width: auto;
    }
}

.icon-bar.six-up .item {
    width: 16.66667%;
}

.icon-bar.six-up.vertical .item, .icon-bar.six-up.small-vertical .item {
    width: auto;
}

@media only screen and (min-width:40.063em) {
    .icon-bar.six-up.medium-vertical .item {
        width: auto;
    }
}

@media only screen and (min-width:64.063em) {
    .icon-bar.six-up.large-vertical .item {
        width: auto;
    }
}

.icon-bar.seven-up .item {
    width: 14.28571%;
}

.icon-bar.seven-up.vertical .item, .icon-bar.seven-up.small-vertical .item {
    width: auto;
}

@media only screen and (min-width:40.063em) {
    .icon-bar.seven-up.medium-vertical .item {
        width: auto;
    }
}

@media only screen and (min-width:64.063em) {
    .icon-bar.seven-up.large-vertical .item {
        width: auto;
    }
}

.icon-bar.eight-up .item {
    width: 12.5%;
}

.icon-bar.eight-up.vertical .item, .icon-bar.eight-up.small-vertical .item {
    width: auto;
}

@media only screen and (min-width:40.063em) {
    .icon-bar.eight-up.medium-vertical .item {
        width: auto;
    }
}

@media only screen and (min-width:64.063em) {
    .icon-bar.eight-up.large-vertical .item {
        width: auto;
    }
}

.inline-list {
    margin: 0 auto 1.0625rem auto;
    margin-left: -1.375rem;
    margin-right: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

    .inline-list > li {
        list-style: none;
        float: left;
        margin-left: 1.375rem;
        display: block;
    }

        .inline-list > li > * {
            display: block;
        }

/* Foundation Joyride */
.joyride-list {
    display: none;
}

/* Default styles for the container */
.joyride-tip-guide {
    display: none;
    position: absolute;
    background: #333333;
    color: #FFFFFF;
    z-index: 101;
    top: 0;
    left: 2.5%;
    font-family: inherit;
    font-weight: normal;
    width: 95%;
}

.lt-ie9 .joyride-tip-guide {
    max-width: 800px;
    left: 50%;
    margin-left: -400px;
}

.joyride-content-wrapper {
    width: 100%;
    padding: 1.125rem 1.25rem 1.5rem;
}

    .joyride-content-wrapper .button {
        margin-bottom: 0 !important;
    }

    .joyride-content-wrapper .joyride-prev-tip {
        margin-right: 10px;
    }

/* Add a little css triangle pip, older browser just miss out on the fanciness of it */
.joyride-tip-guide .joyride-nub {
    display: block;
    position: absolute;
    left: 22px;
    width: 0;
    height: 0;
    border: 10px solid #333333;
}

    .joyride-tip-guide .joyride-nub.top {
        border-top-style: solid;
        border-color: #333333;
        border-top-color: transparent !important;
        border-left-color: transparent !important;
        border-right-color: transparent !important;
        top: -20px;
    }

    .joyride-tip-guide .joyride-nub.bottom {
        border-bottom-style: solid;
        border-color: #333333 !important;
        border-bottom-color: transparent !important;
        border-left-color: transparent !important;
        border-right-color: transparent !important;
        bottom: -20px;
    }

    .joyride-tip-guide .joyride-nub.right {
        right: -20px;
    }

    .joyride-tip-guide .joyride-nub.left {
        left: -20px;
    }

/* Typography */
.joyride-tip-guide h1, .joyride-tip-guide h2, .joyride-tip-guide h3, .joyride-tip-guide h4, .joyride-tip-guide h5, .joyride-tip-guide h6 {
    line-height: 1.25;
    margin: 0;
    font-weight: bold;
    color: #FFFFFF;
}

.joyride-tip-guide p {
    margin: 0 0 1.125rem 0;
    font-size: 0.875rem;
    line-height: 1.3;
}

.joyride-timer-indicator-wrap {
    width: 50px;
    height: 3px;
    border: solid 1px #555555;
    position: absolute;
    right: 1.0625rem;
    bottom: 1rem;
}

.joyride-timer-indicator {
    display: block;
    width: 0;
    height: inherit;
    background: #666666;
}

.joyride-close-tip {
    position: absolute;
    right: 12px;
    top: 10px;
    color: #777777 !important;
    text-decoration: none;
    font-size: 24px;
    font-weight: normal;
    line-height: 0.5 !important;
}

    .joyride-close-tip:hover, .joyride-close-tip:focus {
        color: #EEEEEE !important;
    }

.joyride-modal-bg {
    position: fixed;
    height: 100%;
    width: 100%;
    background: transparent;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: none;
    top: 0;
    left: 0;
    cursor: pointer;
}

.joyride-expose-wrapper {
    background-color: #FFFFFF;
    position: absolute;
    border-radius: 3px;
    z-index: 102;
    box-shadow: 0 0 15px #FFFFFF;
}

.joyride-expose-cover {
    background: transparent;
    border-radius: 3px;
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
}

/* Styles for screens that are at least 768px; */
@media only screen and (min-width:40.063em) {
    .joyride-tip-guide {
        width: 300px;
        left: inherit;
    }

        .joyride-tip-guide .joyride-nub.bottom {
            border-color: #333333 !important;
            border-bottom-color: transparent !important;
            border-left-color: transparent !important;
            border-right-color: transparent !important;
            bottom: -20px;
        }

        .joyride-tip-guide .joyride-nub.right {
            border-color: #333333 !important;
            border-top-color: transparent !important;
            border-right-color: transparent !important;
            border-bottom-color: transparent !important;
            top: 22px;
            left: auto;
            right: -20px;
        }

        .joyride-tip-guide .joyride-nub.left {
            border-color: #333333 !important;
            border-top-color: transparent !important;
            border-left-color: transparent !important;
            border-bottom-color: transparent !important;
            top: 22px;
            left: -20px;
            right: auto;
        }
}

.keystroke, kbd {
    background-color: #ededed;
    border-color: #dddddd;
    color: #222222;
    border-style: solid;
    border-width: 1px;
    margin: 0;
    font-family: "Consolas", "Menlo", "Courier", monospace;
    font-size: inherit;
    padding: 0.125rem 0.25rem 0;
    border-radius: 5px;
}

.label {
    font-weight: normal;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    display: inline-block;
    position: relative;
    margin-bottom: auto;
    padding: 0.25rem 0.5rem 0.25rem;
    font-size: 0.6875rem;
    background-color: #046B99;
    color: #FFFFFF;
}

    .label.radius {
        border-radius: 5px;
    }

    .label.round {
        border-radius: 1000px;
    }

    .label.alert {
        background-color: #f04124;
        color: #FFFFFF;
    }

    .label.warning {
        background-color: #f08a24;
        color: #FFFFFF;
    }

    .label.success {
        background-color: #43AC6A;
        color: #FFFFFF;
    }

    .label.secondary {
        background-color: #e7e7e7;
        color: #333333;
    }

    .label.info {
        background-color: #a0d3e8;
        color: #333333;
    }

[data-magellan-expedition], [data-magellan-expedition-clone] {
    background: none;
    z-index: 50;
    min-width: 100%;
    padding: 10px;
}

    [data-magellan-expedition] .sub-nav, [data-magellan-expedition-clone] .sub-nav {
        margin-bottom: 0;
    }

        [data-magellan-expedition] .sub-nav dd, [data-magellan-expedition-clone] .sub-nav dd {
            margin-bottom: 0;
        }

        [data-magellan-expedition] .sub-nav a, [data-magellan-expedition-clone] .sub-nav a {
            line-height: 1.8em;
        }

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(0deg);
    }

    to {
        -o-transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Orbit Graceful Loading */
.slideshow-wrapper {
    position: relative;
}

    .slideshow-wrapper ul {
        list-style-type: none;
        margin: 0;
    }

        .slideshow-wrapper ul li, .slideshow-wrapper ul li .orbit-caption {
            display: none;
        }

            .slideshow-wrapper ul li:first-child {
                display: block;
            }

    .slideshow-wrapper .orbit-container {
        background-color: transparent;
    }

        .slideshow-wrapper .orbit-container li {
            display: block;
        }

            .slideshow-wrapper .orbit-container li .orbit-caption {
                display: block;
            }

        .slideshow-wrapper .orbit-container .orbit-bullets li {
            display: inline-block;
        }

    .slideshow-wrapper .preloader {
        display: block;
        width: 40px;
        height: 40px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -20px;
        margin-left: -20px;
        border: solid 3px;
        border-color: #555555 #FFFFFF;
        border-radius: 1000px;
        animation-name: rotate;
        animation-duration: 1.5s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }

.orbit-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    background: none;
}

    .orbit-container .orbit-slides-container {
        list-style: none;
        margin: 0;
        padding: 0;
        position: relative;
        -webkit-transform: translateZ(0);
    }

        .orbit-container .orbit-slides-container img {
            display: block;
            max-width: 100%;
        }

        .orbit-container .orbit-slides-container > * {
            position: absolute;
            top: 0;
            width: 100%;
            margin-left: 100%;
        }

            .orbit-container .orbit-slides-container > *:first-child {
                margin-left: 0;
            }

            .orbit-container .orbit-slides-container > * .orbit-caption {
                position: absolute;
                bottom: 0;
                background-color: rgba(51, 51, 51, 0.8);
                color: #FFFFFF;
                width: 100%;
                padding: 0.625rem 0.875rem;
                font-size: 0.875rem;
            }

    .orbit-container .orbit-slide-number {
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 12px;
        color: #FFFFFF;
        background: rgba(0, 0, 0, 0);
        z-index: 10;
    }

        .orbit-container .orbit-slide-number span {
            font-weight: 700;
            padding: 0.3125rem;
        }

    .orbit-container .orbit-timer {
        position: absolute;
        top: 12px;
        right: 10px;
        height: 6px;
        width: 100px;
        z-index: 10;
    }

        .orbit-container .orbit-timer .orbit-progress {
            height: 3px;
            background-color: rgba(255, 255, 255, 0.3);
            display: block;
            width: 0;
            position: relative;
            right: 20px;
            top: 5px;
        }

        .orbit-container .orbit-timer > span {
            display: none;
            position: absolute;
            top: 0;
            right: 0;
            width: 11px;
            height: 14px;
            border: solid 4px #FFFFFF;
            border-top: none;
            border-bottom: none;
        }

        .orbit-container .orbit-timer.paused > span {
            right: -4px;
            top: 0;
            width: 11px;
            height: 14px;
            border: inset 8px;
            border-left-style: solid;
            border-color: transparent;
            border-left-color: #FFFFFF;
        }

            .orbit-container .orbit-timer.paused > span.dark {
                border-left-color: #333333;
            }

    .orbit-container:hover .orbit-timer > span {
        display: block;
    }

    .orbit-container .orbit-prev, .orbit-container .orbit-next {
        position: absolute;
        top: 45%;
        margin-top: -25px;
        width: 36px;
        height: 60px;
        line-height: 50px;
        color: white;
        background-color: transparent;
        text-indent: -9999px !important;
        z-index: 10;
    }

        .orbit-container .orbit-prev:hover, .orbit-container .orbit-next:hover {
            background-color: rgba(0, 0, 0, 0.3);
        }

        .orbit-container .orbit-prev > span, .orbit-container .orbit-next > span {
            position: absolute;
            top: 50%;
            margin-top: -10px;
            display: block;
            width: 0;
            height: 0;
            border: inset 10px;
        }

    .orbit-container .orbit-prev {
        left: 0;
    }

        .orbit-container .orbit-prev > span {
            border-right-style: solid;
            border-color: transparent;
            border-right-color: #FFFFFF;
        }

        .orbit-container .orbit-prev:hover > span {
            border-right-color: #FFFFFF;
        }

    .orbit-container .orbit-next {
        right: 0;
    }

        .orbit-container .orbit-next > span {
            border-color: transparent;
            border-left-style: solid;
            border-left-color: #FFFFFF;
            left: 50%;
            margin-left: -4px;
        }

        .orbit-container .orbit-next:hover > span {
            border-left-color: #FFFFFF;
        }

.orbit-bullets-container {
    text-align: center;
}

.orbit-bullets {
    margin: 0 auto 30px auto;
    overflow: hidden;
    position: relative;
    top: 10px;
    float: none;
    text-align: center;
    display: block;
}

    .orbit-bullets li {
        cursor: pointer;
        display: inline-block;
        width: 0.5625rem;
        height: 0.5625rem;
        background: #CCCCCC;
        float: none;
        margin-right: 6px;
        border-radius: 1000px;
    }

        .orbit-bullets li.active {
            background: #999999;
        }

        .orbit-bullets li:last-child {
            margin-right: 0;
        }

.touch .orbit-container .orbit-prev, .touch .orbit-container .orbit-next {
    display: none;
}

.touch .orbit-bullets {
    display: none;
}

@media only screen and (min-width:40.063em) {
    .touch .orbit-container .orbit-prev, .touch .orbit-container .orbit-next {
        display: inherit;
    }

    .touch .orbit-bullets {
        display: block;
    }
}

@media only screen and (max-width: 40em) {
    .orbit-stack-on-small .orbit-slides-container {
        height: auto !important;
    }

        .orbit-stack-on-small .orbit-slides-container > * {
            position: relative;
            margin: 0 !important;
            opacity: 1 !important;
        }

    .orbit-stack-on-small .orbit-slide-number {
        display: none;
    }

    .orbit-timer {
        display: none;
    }

    .orbit-next, .orbit-prev {
        display: none;
    }

    .orbit-bullets {
        display: none;
    }
}

ul.pagination {
    display: block;
    min-height: 1.5rem;
    margin-left: -0.3125rem;
}

    ul.pagination li {
        height: 1.5rem;
        color: #222222;
        font-size: 0.875rem;
        margin-left: 0.3125rem;
    }

        ul.pagination li a, ul.pagination li button {
            display: block;
            padding: 0.0625rem 0.625rem 0.0625rem;
            color: #999999;
            background: none;
            border-radius: 5px;
            font-weight: normal;
            font-size: 1em;
            line-height: inherit;
            transition: background-color 200ms ease-out;
        }

            ul.pagination li:hover a, ul.pagination li a:focus, ul.pagination li:hover button, ul.pagination li button:focus {
                background: #e6e6e6;
            }

        ul.pagination li.unavailable a, ul.pagination li.unavailable button {
            cursor: default;
            color: #999999;
        }

            ul.pagination li.unavailable:hover a, ul.pagination li.unavailable a:focus, ul.pagination li.unavailable:hover button, ul.pagination li.unavailable button:focus {
                background: transparent;
            }

        ul.pagination li.current a, ul.pagination li.current button {
            background: #046B99;
            color: #FFFFFF;
            font-weight: bold;
            cursor: default;
        }

            ul.pagination li.current a:hover, ul.pagination li.current a:focus, ul.pagination li.current button:hover, ul.pagination li.current button:focus {
                background: #046B99;
            }

    ul.pagination li {
        float: left;
        display: block;
    }

/* Pagination centred wrapper */
.pagination-centered {
    text-align: center;
}

    .pagination-centered ul.pagination li {
        float: none;
        display: inline-block;
    }

/* Panels */
.panel {
    border-style: solid;
    border-width: 0;
    border-color: #d8d8d8;
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    background: #f2f2f2;
    color: #333333;
}

    .panel > :first-child {
        margin-top: 0;
    }

    .panel > :last-child {
        margin-bottom: 0;
    }

    .panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6, .panel p, .panel li, .panel dl {
        color: #333333;
    }

    .panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6 {
        line-height: 1;
        margin-bottom: 0.625rem;
    }

        .panel h1.subheader, .panel h2.subheader, .panel h3.subheader, .panel h4.subheader, .panel h5.subheader, .panel h6.subheader {
            line-height: 1.4;
        }

    .panel.callout {
        border-style: solid;
        border-width: 0;
        border-color: #b6e1ff;
        margin-bottom: 1.25rem;
        padding: 1.25rem;
        background: #ecf7ff;
        color: #333333;
    }

        .panel.callout > :first-child {
            margin-top: 0;
        }

        .panel.callout > :last-child {
            margin-bottom: 0;
        }

        .panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6, .panel.callout p, .panel.callout li, .panel.callout dl {
            color: #333333;
        }

        .panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6 {
            line-height: 1;
            margin-bottom: 0.625rem;
        }

            .panel.callout h1.subheader, .panel.callout h2.subheader, .panel.callout h3.subheader, .panel.callout h4.subheader, .panel.callout h5.subheader, .panel.callout h6.subheader {
                line-height: 1.4;
            }

        .panel.callout a:not(.button) {
            color: #046B99;
        }

            .panel.callout a:not(.button):hover, .panel.callout a:not(.button):focus {
                color: #0065ad;
            }

    .panel.radius {
        border-radius: 5px;
    }

/* Pricing Tables */
.pricing-table {
    border: solid 1px #DDDDDD;
    margin-left: 0;
    margin-bottom: 1.25rem;
}

    .pricing-table * {
        list-style: none;
        line-height: 1;
    }

    .pricing-table .title {
        background-color: #333333;
        padding: 0.9375rem 1.25rem;
        text-align: center;
        color: #EEEEEE;
        font-weight: normal;
        font-size: 1rem;
        font-family: 'Montserrat', sans-serif;
    }

    .pricing-table .price {
        background-color: #F6F6F6;
        padding: 0.9375rem 1.25rem;
        text-align: center;
        color: #333333;
        font-weight: normal;
        font-size: 2rem;
        font-family: 'Montserrat', sans-serif;
    }

    .pricing-table .description {
        background-color: #FFFFFF;
        padding: 0.9375rem;
        text-align: center;
        color: #777777;
        font-size: 0.75rem;
        font-weight: normal;
        line-height: 1.4;
        border-bottom: dotted 1px #DDDDDD;
    }

    .pricing-table .bullet-item {
        background-color: #FFFFFF;
        padding: 0.9375rem;
        text-align: center;
        color: #333333;
        font-size: 0.875rem;
        font-weight: normal;
        border-bottom: dotted 1px #DDDDDD;
    }

    .pricing-table .cta-button {
        background-color: #FFFFFF;
        text-align: center;
        padding: 1.25rem 1.25rem 0;
    }

/* Progress Bar */
.progress {
    background-color: #F6F6F6;
    height: 1.5625rem;
    border: 1px solid white;
    padding: 0.125rem;
    margin-bottom: 0.625rem;
}

    .progress .meter {
        background: #046B99;
        height: 100%;
        display: block;
    }

    .progress.secondary .meter {
        background: #e7e7e7;
        height: 100%;
        display: block;
    }

    .progress.success .meter {
        background: #43AC6A;
        height: 100%;
        display: block;
    }

    .progress.alert .meter {
        background: #f04124;
        height: 100%;
        display: block;
    }

    .progress.radius {
        border-radius: 5px;
    }

        .progress.radius .meter {
            border-radius: 4px;
        }

    .progress.round {
        border-radius: 1000px;
    }

        .progress.round .meter {
            border-radius: 999px;
        }

.range-slider {
    position: relative;
    border: 1px solid #cccccc;
    margin: 1.25rem 0;
    -ms-touch-action: none;
    touch-action: none;
    display: block;
    width: 100%;
    height: 0.5rem;
    background: #FAFAFA;
}

    .range-slider.vertical-range {
        position: relative;
        border: 1px solid #cccccc;
        margin: 1.25rem 0;
        -ms-touch-action: none;
        touch-action: none;
        display: inline-block;
        width: 1rem;
        height: 12.5rem;
    }

        .range-slider.vertical-range .range-slider-handle {
            margin-top: 0;
            margin-left: -0.5rem;
            position: absolute;
            bottom: -10.5rem;
        }

        .range-slider.vertical-range .range-slider-active-segment {
            width: 0.375rem;
            height: auto;
            bottom: 0;
        }

    .range-slider.radius {
        background: #FAFAFA;
        border-radius: 5px;
    }

        .range-slider.radius .range-slider-handle {
            background: #046B99;
            border-radius: 5px;
        }

            .range-slider.radius .range-slider-handle:hover {
                background: #0067b1;
            }

    .range-slider.round {
        background: #FAFAFA;
        border-radius: 1000px;
    }

        .range-slider.round .range-slider-handle {
            background: #046B99;
            border-radius: 1000px;
        }

            .range-slider.round .range-slider-handle:hover {
                background: #0067b1;
            }

    .range-slider.disabled, .range-slider[disabled] {
        background: #FAFAFA;
        cursor: not-allowed;
        opacity: 0.7;
    }

        .range-slider.disabled .range-slider-handle, .range-slider[disabled] .range-slider-handle {
            background: #046B99;
            cursor: default;
            opacity: 0.7;
        }

            .range-slider.disabled .range-slider-handle:hover, .range-slider[disabled] .range-slider-handle:hover {
                background: #0067b1;
            }

.range-slider-active-segment {
    display: inline-block;
    position: absolute;
    height: 0.375rem;
    background: #fff;
}

.range-slider-handle {
    display: inline-block;
    position: absolute;
    z-index: 1;
    top: -0.4375rem;
    width: 2rem;
    height: 1.25rem;
    border: 1px solid #005796;
    cursor: pointer;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    background: #046B99;
}

    .range-slider-handle:hover {
        background: #0067b1;
    }

.side-nav {
    display: block;
    margin: 0;
    padding: 0.875rem 0;
    list-style-type: none;
    list-style-position: outside;
    font-family: 'Montserrat', sans-serif;
}

    .side-nav li {
        margin: 0 0 0.4375rem 0;
        font-size: 0.875rem;
        font-weight: normal;
    }

        .side-nav li a:not(.button) {
            display: block;
            color: #046B99;
            margin: 0;
            padding: 0.4375rem 0.875rem;
        }

            .side-nav li a:not(.button):hover, .side-nav li a:not(.button):focus {
                background: rgba(0, 0, 0, 0.025);
                color: #27a5ff;
            }

        .side-nav li.active > a:first-child:not(.button) {
            color: #27a5ff;
            font-weight: normal;
            font-family: 'Montserrat', sans-serif;
        }

        .side-nav li.divider {
            border-top: 1px solid;
            height: 0;
            padding: 0;
            list-style: none;
            border-top-color: white;
        }

        .side-nav li.heading {
            color: #046B99;
            font-size: 0.875rem;
            font-weight: bold;
            text-transform: uppercase;
        }

.split.button {
    position: relative;
    padding-right: 5.0625rem;
}

    .split.button span {
        display: block;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        border-left: solid 1px;
    }

        .split.button span:after {
            position: absolute;
            content: "";
            width: 0;
            height: 0;
            display: block;
            border-style: inset;
            top: 50%;
            left: 50%;
        }

        .split.button span:active {
            background-color: rgba(0, 0, 0, 0.1);
        }

    .split.button span {
        border-left-color: rgba(255, 255, 255, 0.5);
    }

    .split.button span {
        width: 3.09375rem;
    }

        .split.button span:after {
            border-top-style: solid;
            border-width: 0.375rem;
            top: 48%;
            margin-left: -0.375rem;
        }

        .split.button span:after {
            border-color: #FFFFFF transparent transparent transparent;
        }

    .split.button.secondary span {
        border-left-color: rgba(255, 255, 255, 0.5);
    }

        .split.button.secondary span:after {
            border-color: #FFFFFF transparent transparent transparent;
        }

    .split.button.alert span {
        border-left-color: rgba(255, 255, 255, 0.5);
    }

    .split.button.success span {
        border-left-color: rgba(255, 255, 255, 0.5);
    }

    .split.button.tiny {
        padding-right: 3.75rem;
    }

        .split.button.tiny span {
            width: 2.25rem;
        }

            .split.button.tiny span:after {
                border-top-style: solid;
                border-width: 0.375rem;
                top: 48%;
                margin-left: -0.375rem;
            }

    .split.button.small {
        padding-right: 4.375rem;
    }

        .split.button.small span {
            width: 2.625rem;
        }

            .split.button.small span:after {
                border-top-style: solid;
                border-width: 0.4375rem;
                top: 48%;
                margin-left: -0.375rem;
            }

    .split.button.large {
        padding-right: 5.5rem;
    }

        .split.button.large span {
            width: 3.4375rem;
        }

            .split.button.large span:after {
                border-top-style: solid;
                border-width: 0.3125rem;
                top: 48%;
                margin-left: -0.375rem;
            }

    .split.button.expand {
        padding-left: 2rem;
    }

    .split.button.secondary span:after {
        border-color: #333333 transparent transparent transparent;
    }

    .split.button.radius span {
        -webkit-border-bottom-right-radius: 5px;
        -webkit-border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        border-top-right-radius: 5px;
    }

    .split.button.round span {
        -webkit-border-bottom-right-radius: 1000px;
        -webkit-border-top-right-radius: 1000px;
        border-bottom-right-radius: 1000px;
        border-top-right-radius: 1000px;
    }

    .split.button.no-pip span:before {
        border-style: none;
    }

    .split.button.no-pip span:after {
        border-style: none;
    }

    .split.button.no-pip span > i {
        top: 50%;
        display: block;
        position: absolute;
        left: 50%;
        margin-left: -0.28889em;
        margin-top: -0.48889em;
    }

.sub-nav {
    display: block;
    width: auto;
    overflow: hidden;
    margin-bottom: -0.25rem 0 1.125rem;
    padding-top: 0.25rem;
}

    .sub-nav dt {
        text-transform: uppercase;
    }

    .sub-nav dt, .sub-nav dd, .sub-nav li {
        float: left;
        margin-left: 1rem;
        margin-bottom: 0;
        font-family: 'Montserrat', sans-serif;
        font-weight: normal;
        font-size: 0.875rem;
        color: #999999;
    }

        .sub-nav dt a, .sub-nav dd a, .sub-nav li a {
            text-decoration: none;
            color: #999999;
            padding: 0.1875rem 1rem;
        }

            .sub-nav dt a:hover, .sub-nav dd a:hover, .sub-nav li a:hover {
                color: #737373;
            }

        .sub-nav dt.active a, .sub-nav dd.active a, .sub-nav li.active a {
            border-radius: 3px;
            font-weight: normal;
            background: #046B99;
            padding: 0.1875rem 1rem;
            cursor: default;
            color: #FFFFFF;
        }

            .sub-nav dt.active a:hover, .sub-nav dd.active a:hover, .sub-nav li.active a:hover {
                background: #0065ad;
            }

.switch {
    padding: 0;
    border: none;
    position: relative;
    outline: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

    .switch label {
        display: block;
        margin-bottom: 1rem;
        position: relative;
        color: transparent;
        background: #DDDDDD;
        text-indent: 100%;
        width: 4rem;
        height: 2rem;
        cursor: pointer;
        transition: left 0.15s ease-out;
    }

    .switch input {
        opacity: 0;
        position: absolute;
        top: 9px;
        left: 10px;
        padding: 0;
    }

        .switch input + label {
            margin-left: 0;
            margin-right: 0;
        }

    .switch label:after {
        content: "";
        display: block;
        background: #FFFFFF;
        position: absolute;
        top: 0.25rem;
        left: 0.25rem;
        width: 1.5rem;
        height: 1.5rem;
        -webkit-transition: left 0.15s ease-out;
        -moz-transition: left 0.15s ease-out;
        -o-transition: translate3d(0, 0, 0);
        transition: left 0.15s ease-out;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .switch input:checked + label {
        background: #046B99;
    }

        .switch input:checked + label:after {
            left: 2.25rem;
        }

    .switch label {
        width: 4rem;
        height: 2rem;
    }

        .switch label:after {
            width: 1.5rem;
            height: 1.5rem;
        }

    .switch input:checked + label:after {
        left: 2.25rem;
    }

    .switch label {
        color: transparent;
        background: #DDDDDD;
    }

        .switch label:after {
            background: #FFFFFF;
        }

    .switch input:checked + label {
        background: #046B99;
    }

    .switch.large label {
        width: 5rem;
        height: 2.5rem;
    }

        .switch.large label:after {
            width: 2rem;
            height: 2rem;
        }

    .switch.large input:checked + label:after {
        left: 2.75rem;
    }

    .switch.small label {
        width: 3.5rem;
        height: 1.75rem;
    }

        .switch.small label:after {
            width: 1.25rem;
            height: 1.25rem;
        }

    .switch.small input:checked + label:after {
        left: 2rem;
    }

    .switch.tiny label {
        width: 3rem;
        height: 1.5rem;
    }

        .switch.tiny label:after {
            width: 1rem;
            height: 1rem;
        }

    .switch.tiny input:checked + label:after {
        left: 1.75rem;
    }

    .switch.radius label {
        border-radius: 4px;
    }

        .switch.radius label:after {
            border-radius: 3px;
        }

    .switch.round {
        border-radius: 1000px;
    }

        .switch.round label {
            border-radius: 2rem;
        }

            .switch.round label:after {
                border-radius: 2rem;
            }

table {
    background: #FFFFFF;
    margin-bottom: 1.25rem;
    border: solid 1px #DDDDDD;
    table-layout: auto;
}

    table caption {
        background: transparent;
        color: #222222;
        font-size: 1rem;
        font-weight: bold;
    }

    table thead {
        background: #F5F5F5;
    }

        table thead tr th, table thead tr td {
            padding: 0.5rem 0.625rem 0.625rem;
            font-size: 0.875rem;
            font-weight: bold;
            color: #222222;
        }

    table tfoot {
        background: #F5F5F5;
    }

        table tfoot tr th, table tfoot tr td {
            padding: 0.5rem 0.625rem 0.625rem;
            font-size: 0.875rem;
            font-weight: bold;
            color: #222222;
        }

    table tr th, table tr td {
        padding: 0.5625rem 0.625rem;
        font-size: 0.875rem;
        color: #222222;
        text-align: left;
    }

    table tr.even, table tr.alt, table tr:nth-of-type(even) {
        background: #F9F9F9;
    }

    table thead tr th, table tfoot tr th, table tfoot tr td, table tbody tr th, table tbody tr td, table tr td {
        display: table-cell;
        line-height: 1.125rem;
    }

.tabs {
    margin-bottom: 0 !important;
    margin-left: 0;
}

    .tabs:before, .tabs:after {
        content: " ";
        display: table;
    }

    .tabs:after {
        clear: both;
    }

    .tabs dd, .tabs .tab-title {
        position: relative;
        margin-bottom: 0 !important;
        list-style: none;
        float: left;
    }

        .tabs dd > a, .tabs .tab-title > a {
            display: block;
            background-color: #EFEFEF;
            color: #222222;
            padding: 1rem 2rem;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
        }

            .tabs dd > a:hover, .tabs .tab-title > a:hover {
                background-color: #e1e1e1;
            }

            .tabs dd > a:focus, .tabs .tab-title > a:focus {
                outline: none;
            }

        .tabs dd.active a, .tabs .tab-title.active a {
            background-color: #FFFFFF;
            color: #222222;
        }

    .tabs.radius dd:first-child a, .tabs.radius .tab:first-child a {
        -webkit-border-bottom-left-radius: 5px;
        -webkit-border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        border-top-left-radius: 5px;
    }

    .tabs.radius dd:last-child a, .tabs.radius .tab:last-child a {
        -webkit-border-bottom-right-radius: 5px;
        -webkit-border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        border-top-right-radius: 5px;
    }

    .tabs.vertical dd, .tabs.vertical .tab-title {
        position: inherit;
        float: none;
        display: block;
        top: auto;
    }

.tabs-content {
    margin-bottom: 1.5rem;
    width: 100%;
}

    .tabs-content:before, .tabs-content:after {
        content: " ";
        display: table;
    }

    .tabs-content:after {
        clear: both;
    }

    .tabs-content > .content {
        display: none;
        float: left;
        padding: 0.9375rem 0;
        width: 100%;
    }

        .tabs-content > .content.active {
            display: block;
            float: none;
        }

        .tabs-content > .content.contained {
            padding: 0.9375rem;
        }

    .tabs-content.vertical {
        display: block;
    }

        .tabs-content.vertical > .content {
            padding: 0 0.9375rem;
        }

@media only screen and (min-width:40.063em) {
    .tabs.vertical {
        width: 20%;
        max-width: 20%;
        float: left;
        margin: 0 0 1.25rem;
    }

    .tabs-content.vertical {
        width: 80%;
        max-width: 80%;
        float: left;
        margin-left: -1px;
        padding-left: 1rem;
    }
}

.no-js .tabs-content > .content {
    display: block;
    float: none;
}

/* Image Thumbnails */
.th {
    line-height: 0;
    display: inline-block;
    border: solid 4px #FFFFFF;
    max-width: 100%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
    transition: all 200ms ease-out;
}

    .th:hover, .th:focus {
        box-shadow: 0 0 6px 1px rgba(0, 117, 201, 0.5);
    }

    .th.radius {
        border-radius: 5px;
    }

/* Tooltips */
.has-tip {
    border-bottom: dotted 1px #CCCCCC;
    cursor: help;
    font-weight: bold;
    color: #333333;
}

    .has-tip:hover, .has-tip:focus {
        border-bottom: dotted 1px #00355a;
        color: #046B99;
    }

    .has-tip.tip-left, .has-tip.tip-right {
        float: none !important;
    }

.tooltip {
    display: none;
    position: absolute;
    z-index: 1006;
    font-weight: normal;
    font-size: 0.875rem;
    line-height: 1.3;
    padding: 0.75rem;
    max-width: 300px;
    left: 50%;
    width: 100%;
    color: #FFFFFF;
    background: #333333;
}

    .tooltip > .nub {
        display: block;
        left: 5px;
        position: absolute;
        width: 0;
        height: 0;
        border: solid 5px;
        border-color: transparent transparent #333333 transparent;
        top: -10px;
        pointer-events: none;
    }

        .tooltip > .nub.rtl {
            left: auto;
            right: 5px;
        }

    .tooltip.radius {
        border-radius: 5px;
    }

    .tooltip.round {
        border-radius: 1000px;
    }

        .tooltip.round > .nub {
            left: 2rem;
        }

    .tooltip.opened {
        color: #046B99 !important;
        border-bottom: dotted 1px #00355a !important;
    }

.tap-to-close {
    display: block;
    font-size: 0.625rem;
    color: #777777;
    font-weight: normal;
}

@media only screen and (min-width:40.063em) {
    .tooltip > .nub {
        border-color: transparent transparent #333333 transparent;
        top: -10px;
    }

    .tooltip.tip-top > .nub {
        border-color: #333333 transparent transparent transparent;
        top: auto;
        bottom: -10px;
    }

    .tooltip.tip-left, .tooltip.tip-right {
        float: none !important;
    }

        .tooltip.tip-left > .nub {
            border-color: transparent transparent transparent #333333;
            right: -10px;
            left: auto;
            top: 50%;
            margin-top: -5px;
        }

        .tooltip.tip-right > .nub {
            border-color: transparent #333333 transparent transparent;
            right: auto;
            left: -10px;
            top: 50%;
            margin-top: -5px;
        }
}

meta.foundation-mq-topbar {
    font-family: "/only screen and (min-width:767px)/";
    width: 767px;
}

/* Wrapped around .top-bar to contain to grid width */
.contain-to-grid {
    width: 100%;
    background: #fff;
}

    .contain-to-grid .top-bar {
        margin-bottom: 0;
    }

.fixed {
    width: 100%;
    left: 0;
    position: fixed;
    top: 0;
    z-index: 99;
}

    .fixed.expanded:not(.top-bar) {
        overflow-y: auto;
        height: auto;
        width: 100%;
        max-height: 100%;
    }

        .fixed.expanded:not(.top-bar) .title-area {
            position: fixed;
            width: 100%;
            z-index: 99;
        }

        .fixed.expanded:not(.top-bar) .top-bar-section {
            z-index: 98;
            margin-top: 2.8125rem;
        }

.top-bar {
    overflow: hidden;
    height: 2.8125rem;
    line-height: 2.8125rem;
    position: relative;
    background: #fff;
    margin-bottom: 0;
}

    .top-bar ul {
        margin-bottom: 0;
        list-style: none;
    }

    .top-bar .row {
        max-width: none;
    }

    .top-bar form, .top-bar input {
        margin-bottom: 0;
    }

    .top-bar input {
        height: 1.75rem;
        padding-top: 0.35rem;
        padding-bottom: 0.35rem;
        font-size: 0.75rem;
    }

@media only screen and (min-width: 772px) {
    .top-bar input {
        font-size: 0.875rem;
    }
}

.top-bar .button, .top-bar button {
    padding-top: 0.4125rem;
    padding-bottom: 0.4125rem;
    margin-bottom: 0;
    font-size: 0.75rem;
}

@media only screen and (max-width: 40em) {
    .top-bar .button, .top-bar button {
        position: relative;
        top: -1px;
    }
}

.top-bar .title-area {
    position: relative;
    margin: 0;
}

.top-bar .name {
    height: 2.8125rem;
    margin: 0;
    font-size: 16px;
}

    .top-bar .name h1, .top-bar .name h2, .top-bar .name h3, .top-bar .name h4, .top-bar .name p, .top-bar .name span {
        line-height: 2.8125rem;
        font-size: 1.0625rem;
        margin: 0;
    }

        .top-bar .name h1 a, .top-bar .name h2 a, .top-bar .name h3 a, .top-bar .name h4 a, .top-bar .name p a, .top-bar .name span a {
            font-weight: normal;
            color: #333333;
            width: 75%;
            display: block;
            padding: 0 1.125rem;
        }

.top-bar .toggle-topbar {
    position: absolute;
    right: 0;
    top: 0;
}

    .top-bar .toggle-topbar a {
        color: #333333;
        text-transform: uppercase;
        font-size: 0.8125rem;
        font-weight: bold;
        position: relative;
        display: block;
        padding: 0 1.125rem;
        height: 2.8125rem;
        line-height: 2.8125rem;
    }

    .top-bar .toggle-topbar.menu-icon {
        top: 50%;
        margin-top: -16px;
    }

        .top-bar .toggle-topbar.menu-icon a {
            height: 34px;
            line-height: 33px;
            padding: 0 2.6875rem 0 1.125rem;
            color: #FFFFFF;
            position: relative;
        }

            .top-bar .toggle-topbar.menu-icon a span::after {
                content: "";
                position: absolute;
                display: block;
                height: 0;
                top: 50%;
                margin-top: -8px;
                right: 1.125rem;
                box-shadow: 0 0 0 1px #FFFFFF, 0 7px 0 1px #FFFFFF, 0 14px 0 1px #FFFFFF;
                width: 16px;
            }

            .top-bar .toggle-topbar.menu-icon a span:hover:after {
                box-shadow: 0 0 0 1px #f9f9f9, 0 7px 0 1px #f9f9f9, 0 14px 0 1px #f9f9f9;
            }

.top-bar.expanded {
    height: auto;
    background: transparent;
}

    .top-bar.expanded .title-area {
        background: #fff;
    }

    .top-bar.expanded .toggle-topbar a {
        color: #888888;
    }

        .top-bar.expanded .toggle-topbar a span::after {
            box-shadow: 0 0 0 1px #888888, 0 7px 0 1px #888888, 0 14px 0 1px #888888;
        }

.top-bar-section {
    left: 0;
    position: relative;
    width: auto;
    transition: left 200ms ease-out;
}

    .top-bar-section ul {
        padding: 0;
        width: 100%;
        height: auto;
        display: block;
        font-size: 16px;
        margin: 0;
    }

.nav-desktop-bottom-half .top-bar-section ul.right {
    width: 100%;
}

.nav-desktop-bottom-half .top-bar-section ul li {
    float: none;
    display: inline-block;
}

.nav-desktop-bottom-half .top-bar-section > ul > li:last-child a {
    padding-right: 15px !important;
}

.top-bar-section ul.right {
    height: 44px;
}

.top-bar-section .divider, .top-bar-section [role="separator"] {
    border-top: solid 1px gray;
    clear: both;
    height: 1px;
    width: 100%;
}

.top-bar-section ul li > a {
    display: block;
    width: 100%;
    color: #777676;
    padding: 12px 0 12px 0;
    /* MENUMARGIN */
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: normal;
    text-transform: none;
}

    .top-bar-section ul li > a.text-red, .top-bar-section ul li > a.text-red:hover {
        color: #B40814;
    }

    .top-bar-section ul li > a.button {
        font-size: 0.875rem;
        padding-right: 1.125rem;
        padding-left: 1.125rem;
        background-color: #046B99;
        border-color: #005ea1;
        color: #FFFFFF;
    }

        .top-bar-section ul li > a.button:hover, .top-bar-section ul li > a.button:focus {
            background-color: #005ea1;
        }

        .top-bar-section ul li > a.button:hover, .top-bar-section ul li > a.button:focus {
            color: #FFFFFF;
        }

        .top-bar-section ul li > a.button.secondary {
            background-color: #e7e7e7;
            border-color: #b9b9b9;
            color: #333333;
        }

            .top-bar-section ul li > a.button.secondary:hover, .top-bar-section ul li > a.button.secondary:focus {
                background-color: #b9b9b9;
            }

            .top-bar-section ul li > a.button.secondary:hover, .top-bar-section ul li > a.button.secondary:focus {
                color: #333333;
            }

        .top-bar-section ul li > a.button.success {
            background-color: #43AC6A;
            border-color: #368a55;
            color: #FFFFFF;
        }

            .top-bar-section ul li > a.button.success:hover, .top-bar-section ul li > a.button.success:focus {
                background-color: #368a55;
            }

            .top-bar-section ul li > a.button.success:hover, .top-bar-section ul li > a.button.success:focus {
                color: #FFFFFF;
            }

        .top-bar-section ul li > a.button.alert {
            background-color: #f04124;
            border-color: #cf2a0e;
            color: #FFFFFF;
        }

            .top-bar-section ul li > a.button.alert:hover, .top-bar-section ul li > a.button.alert:focus {
                background-color: #cf2a0e;
            }

            .top-bar-section ul li > a.button.alert:hover, .top-bar-section ul li > a.button.alert:focus {
                color: #FFFFFF;
            }

        .top-bar-section ul li > a.button.warning {
            background-color: #f08a24;
            border-color: #cf6e0e;
            color: #FFFFFF;
        }

            .top-bar-section ul li > a.button.warning:hover, .top-bar-section ul li > a.button.warning:focus {
                background-color: #cf6e0e;
            }

            .top-bar-section ul li > a.button.warning:hover, .top-bar-section ul li > a.button.warning:focus {
                color: #FFFFFF;
            }

.top-bar-section ul li > button {
    font-size: 0.875rem;
    padding-right: 1.125rem;
    padding-left: 1.125rem;
    background-color: #046B99;
    border-color: #005ea1;
    color: #FFFFFF;
}

    .top-bar-section ul li > button:hover, .top-bar-section ul li > button:focus {
        background-color: #005ea1;
    }

    .top-bar-section ul li > button:hover, .top-bar-section ul li > button:focus {
        color: #FFFFFF;
    }

    .top-bar-section ul li > button.secondary {
        background-color: #e7e7e7;
        border-color: #b9b9b9;
        color: #333333;
    }

        .top-bar-section ul li > button.secondary:hover, .top-bar-section ul li > button.secondary:focus {
            background-color: #b9b9b9;
        }

        .top-bar-section ul li > button.secondary:hover, .top-bar-section ul li > button.secondary:focus {
            color: #333333;
        }

    .top-bar-section ul li > button.success {
        background-color: #43AC6A;
        border-color: #368a55;
        color: #FFFFFF;
    }

        .top-bar-section ul li > button.success:hover, .top-bar-section ul li > button.success:focus {
            background-color: #368a55;
        }

        .top-bar-section ul li > button.success:hover, .top-bar-section ul li > button.success:focus {
            color: #FFFFFF;
        }

    .top-bar-section ul li > button.alert {
        background-color: #f04124;
        border-color: #cf2a0e;
        color: #FFFFFF;
    }

        .top-bar-section ul li > button.alert:hover, .top-bar-section ul li > button.alert:focus {
            background-color: #cf2a0e;
        }

        .top-bar-section ul li > button.alert:hover, .top-bar-section ul li > button.alert:focus {
            color: #FFFFFF;
        }

    .top-bar-section ul li > button.warning {
        background-color: #f08a24;
        border-color: #cf6e0e;
        color: #FFFFFF;
    }

        .top-bar-section ul li > button.warning:hover, .top-bar-section ul li > button.warning:focus {
            background-color: #cf6e0e;
        }

        .top-bar-section ul li > button.warning:hover, .top-bar-section ul li > button.warning:focus {
            color: #FFFFFF;
        }

.top-bar-section ul li:hover:not(.has-form) > a {
    color: #4d4d4d;
}

.top-bar-section ul li.active > a {
    color: #333333;
}

    .top-bar-section ul li.active > a:hover {
        color: #333333;
    }

.top-bar-section .has-form {
    padding: 1.125rem;
}

.top-bar-section .has-dropdown {
    position: relative;
}

    .top-bar-section .has-dropdown > a:after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border: inset 5px;
        border-color: transparent transparent transparent rgba(255, 255, 255, 0.4);
        border-left-style: solid;
        /* MENUMARGIN */
        margin-right: 1.125rem;
        margin-top: -4.5px;
        position: absolute;
        top: 50%;
        right: 0;
    }

    .top-bar-section .has-dropdown.moved {
        position: static;
    }

        .top-bar-section .has-dropdown.moved > .dropdown {
            display: block;
            position: static !important;
            height: auto;
            width: auto;
            overflow: visible;
            clip: auto;
            position: absolute !important;
            width: 100%;
        }

        .top-bar-section .has-dropdown.moved > a:after {
            display: none;
        }

.top-bar-section .dropdown {
    padding: 0;
    position: absolute;
    left: 100%;
    top: 0;
    z-index: 99;
    display: block;
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

    .top-bar-section .dropdown li {
        width: 100%;
        height: auto;
    }

        .top-bar-section .dropdown li a {
            font-weight: normal;
            padding: 8px 1.125rem;
        }

            .top-bar-section .dropdown li a.parent-link {
                font-weight: normal;
            }

        .top-bar-section .dropdown li.title h5, .top-bar-section .dropdown li.parent-link {
            margin-bottom: 0;
            margin-top: 0;
            font-size: 1.125rem;
        }

            .top-bar-section .dropdown li.title h5 a, .top-bar-section .dropdown li.parent-link a {
                color: #777676;
                display: block;
            }

                .top-bar-section .dropdown li.title h5 a:hover, .top-bar-section .dropdown li.parent-link a:hover {
                    background: none;
                }

        .top-bar-section .dropdown li.has-form {
            padding: 8px 1.125rem;
        }

        .top-bar-section .dropdown li .button, .top-bar-section .dropdown li button {
            top: auto;
        }

    .top-bar-section .dropdown label {
        padding: 8px 1.125rem 2px;
        margin-bottom: 0;
        text-transform: uppercase;
        color: #777777;
        font-weight: bold;
        font-size: 0.625rem;
    }

.js-generated {
    display: block;
}

@media only screen and (min-width:767px) {
    .top-bar {
        background: #fff;
        overflow: visible;
    }

        .top-bar:before, .top-bar:after {
            content: " ";
            display: table;
        }

        .top-bar:after {
            clear: both;
        }

        .top-bar .toggle-topbar {
            display: none;
        }

        .top-bar .title-area {
            float: left;
        }

        .top-bar .name h1 a, .top-bar .name h2 a, .top-bar .name h3 a, .top-bar .name h4 a, .top-bar .name h5 a, .top-bar .name h6 a {
            width: auto;
        }

        .top-bar input, .top-bar .button, .top-bar button {
            position: relative;
            height: 1.75rem;
            top: 0.53125rem;
        }

        .top-bar.expanded {
            background: #fff;
        }

    .contain-to-grid .top-bar {
        max-width: 75rem;
        margin: 0 auto;
        margin-bottom: 0;
    }

    .top-bar-section {
        transition: none 0 0;
        left: 0 !important;
    }

        .top-bar-section ul {
            width: auto;
            display: inline;
        }

            .top-bar-section ul li {
                float: left;
            }

                .top-bar-section ul li .js-generated {
                    display: none;
                }

        .top-bar-section li.hover > a:not(.button) {
            color: #4d4d4d;
        }

        .top-bar-section li:not(.has-form) a:not(.button) {
            /* MENUMARGIN */
            padding: 0 1em 0 0;
            line-height: 2.8125rem;
        }

        .top-bar-section li.active:not(.has-form) a:not(.button) {
            /* MENUMARGIN */
            /*padding: 0 1.125rem;*/
            line-height: 2.8125rem;
            color: #333333;
        }

            .top-bar-section li.active:not(.has-form) a:not(.button):hover {
                color: #333333;
            }

        .top-bar-section .has-dropdown > a {
            /* MENUMARGIN */
            /*padding-right: 2.375rem !important;*/
        }

            .top-bar-section .has-dropdown > a:after {
                content: "";
                display: block;
                width: 0;
                height: 0;
                border: inset 5px;
                border-color: rgba(255, 255, 255, 0.4) transparent transparent transparent;
                border-top-style: solid;
                margin-top: -2.5px;
                top: 1.40625rem;
            }

        .top-bar-section .has-dropdown.moved {
            position: relative;
        }

            .top-bar-section .has-dropdown.moved > .dropdown {
                display: block;
                position: absolute !important;
                height: 1px;
                width: 1px;
                overflow: hidden;
                clip: rect(1px, 1px, 1px, 1px);
            }

        .top-bar-section .has-dropdown.hover > .dropdown, .top-bar-section .has-dropdown.not-click:hover > .dropdown {
            display: block;
            position: static !important;
            height: auto;
            width: auto;
            overflow: visible;
            clip: auto;
            position: absolute !important;
        }

        .top-bar-section .has-dropdown > a:focus + .dropdown {
            display: block;
            position: static !important;
            height: auto;
            width: auto;
            overflow: visible;
            clip: auto;
            position: absolute !important;
        }

        .top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after {
            border: none;
            content: "\00bb";
            top: 1rem;
            margin-top: -1px;
            right: 5px;
            line-height: 1.2;
        }

        .top-bar-section .dropdown {
            left: 0;
            top: auto;
            background: transparent;
            min-width: 100%;
        }

            .top-bar-section .dropdown li a {
                color: #333333;
                line-height: 2.8125rem;
                white-space: nowrap;
                /*padding: 12px 1.125rem;*/
                background: #fff;
            }

            .top-bar-section .dropdown li:not(.has-form):not(.active) > a:not(.button) {
                color: #333333;
                background: #fff;
            }

            .top-bar-section .dropdown li:not(.has-form):not(.active):hover > a:not(.button) {
                color: #046B99;
                background-color: #555555;
                background: #fff;
            }

            .top-bar-section .dropdown li label {
                white-space: nowrap;
                background: #333333;
            }

            .top-bar-section .dropdown li .dropdown {
                left: 100%;
                top: 0;
            }

        .top-bar-section > ul > .divider, .top-bar-section > ul > [role="separator"] {
            border-bottom: none;
            border-top: none;
            border-right: solid 1px white;
            clear: none;
            height: 2.8125rem;
            width: 0;
        }

        .top-bar-section .has-form {
            background: #fff;
            /*padding: 0 1.125rem;*/
            height: 2.8125rem;
        }

        .top-bar-section .right li .dropdown {
            left: auto;
            right: 0;
        }

            .top-bar-section .right li .dropdown li .dropdown {
                right: 100%;
            }

        .top-bar-section .left li .dropdown {
            right: auto;
            left: 0;
        }

            .top-bar-section .left li .dropdown li .dropdown {
                left: 100%;
            }

    .no-js .top-bar-section ul li:hover > a {
        color: #4d4d4d;
    }

    .no-js .top-bar-section ul li:active > a {
        color: #333333;
    }

    .no-js .top-bar-section .has-dropdown:hover > .dropdown {
        display: block;
        position: static !important;
        height: auto;
        width: auto;
        overflow: visible;
        clip: auto;
        position: absolute !important;
    }

    .no-js .top-bar-section .has-dropdown > a:focus + .dropdown {
        display: block;
        position: static !important;
        height: auto;
        width: auto;
        overflow: visible;
        clip: auto;
        position: absolute !important;
    }
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-justify {
    text-align: justify !important;
}

.text-uppercase {
    text-transform: uppercase;
}

@media only screen and (max-width: 40em) {
    .small-only-text-left {
        text-align: left !important;
    }

    .small-only-text-right {
        text-align: right !important;
    }

    .small-only-text-center {
        text-align: center !important;
    }

    .small-only-text-justify {
        text-align: justify !important;
    }
}

@media only screen {
    .small-text-left {
        text-align: left !important;
    }

    .small-text-right {
        text-align: right !important;
    }

    .small-text-center {
        text-align: center !important;
    }

    .small-text-justify {
        text-align: justify !important;
    }
}

@media only screen and (min-width:40.063em) and (max-width:64em) {
    .medium-only-text-left {
        text-align: left !important;
    }

    .medium-only-text-right {
        text-align: right !important;
    }

    .medium-only-text-center {
        text-align: center !important;
    }

    .medium-only-text-justify {
        text-align: justify !important;
    }
}

@media only screen and (min-width:40.063em) {
    .medium-text-left {
        text-align: left !important;
    }

    .medium-text-right {
        text-align: right !important;
    }

    .medium-text-center {
        text-align: center !important;
    }

    .medium-text-justify {
        text-align: justify !important;
    }
}

@media only screen and (min-width:64.063em) and (max-width:90em) {
    .large-only-text-left {
        text-align: left !important;
    }

    .large-only-text-right {
        text-align: right !important;
    }

    .large-only-text-center {
        text-align: center !important;
    }

    .large-only-text-justify {
        text-align: justify !important;
    }
}

@media only screen and (min-width:64.063em) {
    .large-text-left {
        text-align: left !important;
    }

    .large-text-right {
        text-align: right !important;
    }

    .large-text-center {
        text-align: center !important;
    }

    .large-text-justify {
        text-align: justify !important;
    }
}

@media only screen and (min-width:90.063em) and (max-width:120em) {
    .xlarge-only-text-left {
        text-align: left !important;
    }

    .xlarge-only-text-right {
        text-align: right !important;
    }

    .xlarge-only-text-center {
        text-align: center !important;
    }

    .xlarge-only-text-justify {
        text-align: justify !important;
    }
}

@media only screen and (min-width:90.063em) {
    .xlarge-text-left {
        text-align: left !important;
    }

    .xlarge-text-right {
        text-align: right !important;
    }

    .xlarge-text-center {
        text-align: center !important;
    }

    .xlarge-text-justify {
        text-align: justify !important;
    }
}

@media only screen and (min-width:120.063em) and (max-width:99999999em) {
    .xxlarge-only-text-left {
        text-align: left !important;
    }

    .xxlarge-only-text-right {
        text-align: right !important;
    }

    .xxlarge-only-text-center {
        text-align: center !important;
    }

    .xxlarge-only-text-justify {
        text-align: justify !important;
    }
}

@media only screen and (min-width:120.063em) {
    .xxlarge-text-left {
        text-align: left !important;
    }

    .xxlarge-text-right {
        text-align: right !important;
    }

    .xxlarge-text-center {
        text-align: center !important;
    }

    .xxlarge-text-justify {
        text-align: justify !important;
    }
}

/* Typography resets */
div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

/* Default Link Styles */
a {
    color: #046B99;
    text-decoration: none;
    line-height: inherit;
}

    a:hover, a:focus {
        color: #0065ad;
    }

    a img {
        border: none;
    }

/* Default paragraph styles */
p {
    font-family: inherit;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    text-rendering: optimizeLegibility;
}

    p.lead {
        font-size: 1.21875rem;
        line-height: 1.6;
    }

    p aside {
        font-size: 0.875rem;
        line-height: 1.35;
        font-style: italic;
    }

/* Default header styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #333333;
    text-rendering: optimizeLegibility;
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

    h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
        font-size: 60%;
        color: #7a7a7a;
        line-height: 0;
    }

h1 {
    font-size: 2.1rem;
    text-transform: uppercase;
}

h2 {
    font-size: 1.6875rem;
}

h3 {
    font-size: 1.375rem;
}

h4 {
    font-size: 1.125rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

.subheader {
    line-height: 1.4;
    color: #7a7a7a;
    font-weight: normal;
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
}

hr {
    border: solid #333333;
    border-width: 1px 0 0;
    clear: both;
    margin: 1.25rem 0 1.1875rem;
    height: 0;
}

/* Helpful Typography Defaults */
em, i {
    font-style: italic;
    line-height: inherit;
}

strong, b {
    font-weight: bold;
    line-height: inherit;
}

small {
    font-size: 60%;
    line-height: inherit;
}

code {
    font-family: Consolas, "Liberation Mono", Courier, monospace;
    font-weight: normal;
    color: #333333;
    background-color: #f8f8f8;
    border-width: 1px;
    border-style: solid;
    border-color: #dfdfdf;
    padding: 0.125rem 0.3125rem 0.0625rem;
}

/* Lists */
ul, ol, dl {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    list-style-position: outside;
    font-family: inherit;
}

ul {
    margin-left: 1.1rem;
}

    ul.no-bullet {
        margin-left: 0;
    }

        ul.no-bullet li ul, ul.no-bullet li ol {
            margin-left: 1.25rem;
            margin-bottom: 0;
            list-style: none;
        }

    /* Unordered Lists */
    ul li ul, ul li ol {
        margin-left: 1.25rem;
        margin-bottom: 0;
    }

    ul.square li ul, ul.circle li ul, ul.disc li ul {
        list-style: inherit;
    }

    ul.square {
        list-style-type: square;
        margin-left: 1.1rem;
    }

    ul.circle {
        list-style-type: circle;
        margin-left: 1.1rem;
    }

    ul.disc {
        list-style-type: disc;
        margin-left: 1.1rem;
    }

    ul.no-bullet {
        list-style: none;
    }

/* Ordered Lists */
ol {
    margin-left: 1.4rem;
}

    ol li ul, ol li ol {
        margin-left: 1.25rem;
        margin-bottom: 0;
    }

/* Definition Lists */
dl dt {
    margin-bottom: 0.3rem;
    font-weight: bold;
}

dl dd {
    margin-bottom: 0.75rem;
}

/* Abbreviations */
abbr, acronym {
    text-transform: uppercase;
    font-size: 90%;
    color: #333333;
    cursor: help;
}

abbr {
    text-transform: none;
}

    abbr[title] {
        border-bottom: 1px dotted #DDDDDD;
    }

/* Blockquotes */
blockquote {
    margin: 0 0 1.25rem;
    padding: 0.5625rem 1.25rem 0 1.1875rem;
    border-left: 1px solid #DDDDDD;
}

    blockquote cite {
        display: block;
        font-size: 0.8125rem;
        color: #626262;
    }

        blockquote cite:before {
            content: "\2014 \0020";
        }

        blockquote cite a, blockquote cite a:visited {
            color: #626262;
        }

    blockquote, blockquote p {
        line-height: 1.6;
        color: #7a7a7a;
    }

/* Microformats */
.vcard {
    display: inline-block;
    margin: 0 0 1.25rem 0;
    border: 1px solid #DDDDDD;
    padding: 0.625rem 0.75rem;
}

    .vcard li {
        margin: 0;
        display: block;
    }

    .vcard .fn {
        font-weight: bold;
        font-size: 0.9375rem;
    }

.vevent .summary {
    font-weight: bold;
}

.vevent abbr {
    cursor: default;
    text-decoration: none;
    font-weight: bold;
    border: none;
    padding: 0 0.0625rem;
}

@media only screen and (min-width:40.063em) {
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.4;
    }

    /*
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2.3125rem;
    }

    h3 {
        font-size: 1.6875rem;
    }

    h4 {
        font-size: 1.4375rem;
    }

    h5 {
        font-size: 1.125rem;
    }

    h6 {
        font-size: 1rem;
    }
        */
}

.off-canvas-wrap {
    -webkit-backface-visibility: hidden;
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .off-canvas-wrap.move-right, .faceted-move-right > ul.off-canvas-wrap, .off-canvas-wrap.move-left {
        min-height: 100%;
        -webkit-overflow-scrolling: touch;
    }

.inner-wrap {
    position: relative;
    width: 100%;
    -webkit-transition: -webkit-transform 500ms ease;
    -moz-transition: -moz-transform 500ms ease;
    -ms-transition: -ms-transform 500ms ease;
    -o-transition: -o-transform 500ms ease;
    transition: transform 500ms ease;
}

    .inner-wrap:before, .inner-wrap:after {
        content: " ";
        display: table;
    }

    .inner-wrap:after {
        clear: both;
    }

.tab-bar {
    -webkit-backface-visibility: hidden;
    background: #fff;
    color: #FFFFFF;
    height: 3.4375rem;
    line-height: 3.4375rem;
    position: relative;
}

    .tab-bar h1, .tab-bar h2, .tab-bar h3, .tab-bar h4, .tab-bar h5, .tab-bar h6 {
        color: #FFFFFF;
        font-weight: bold;
        line-height: 3.4375rem;
        margin: 0;
    }

    .tab-bar h1, .tab-bar h2, .tab-bar h3, .tab-bar h4 {
        font-size: 1.125rem;
    }

.left-small {
    width: 3.4375rem;
    height: 3.4375rem;
    position: absolute;
    top: 0;
    border-right: solid 0 gray;
    left: 0;
}

.right-small {
    width: 3.4375rem;
    height: 3.4375rem;
    position: absolute;
    top: 0;
    border-left: solid 0 gray;
    right: 0;
}

.tab-bar-section {
    padding: 0 0.625rem;
    position: absolute;
    text-align: center;
    height: 3.4375rem;
    top: 0;
}

@media only screen and (min-width:40.063em) {
    .tab-bar-section.left {
        text-align: left;
    }

    .tab-bar-section.right {
        text-align: right;
    }
}

.tab-bar-section.left {
    left: 0;
    right: 3.4375rem;
}

.tab-bar-section.right {
    left: 3.4375rem;
    right: 0;
}

.tab-bar-section.middle {
    left: 3.4375rem;
    right: 3.4375rem;
}

.tab-bar .menu-icon {
    text-indent: 2.1875rem;
    width: 3.4375rem;
    height: 3.0625rem;
    display: block;
    padding: 0;
    color: #046B99;
    position: relative;
    transform: translate3d(0, 0, 0);
}

    .tab-bar .menu-icon span::after {
        content: "";
        position: absolute;
        display: block;
        height: 0;
        top: 50%;
        margin-top: -0.625rem;
        left: 1.09375rem;
        box-shadow: 0 0 0 2px #046B99, 0 8px 0 2px #046B99, 0 16px 0 2px #046B99;
        width: 1.25rem;
    }

    .tab-bar .menu-icon span:hover:after {
        box-shadow: 0 0 0 2px #00528d, 0 8px 0 2px #00528d, 0 16px 0 2px #00528d;
    }

.left-off-canvas-menu {
    -webkit-backface-visibility: hidden;
    width: 15.625rem;
    top: 0;
    bottom: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: auto;
    background: #333333;
    z-index: 1001;
    box-sizing: content-box;
    transition: transform 500ms ease 0s;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -ms-transform: translate(-100%, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
}

    .left-off-canvas-menu * {
        -webkit-backface-visibility: hidden;
    }

.right-off-canvas-menu {
    -webkit-backface-visibility: hidden;
    width: 15.625rem;
    top: 0;
    bottom: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: auto;
    background: #333333;
    z-index: 1001;
    box-sizing: content-box;
    transition: transform 500ms ease 0s;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -ms-transform: translate(100%, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    right: 0;
}

    .right-off-canvas-menu * {
        -webkit-backface-visibility: hidden;
    }

ul.off-canvas-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

    ul.off-canvas-list li label {
        display: block;
        padding: 0.3rem 0.9375rem;
        color: #fff;
        text-transform: uppercase;
        font-size: 0.75rem;
        font-weight: lighter;
        background: #046B99;
        border-top: 1px solid #008ef4;
        border-bottom: none;
        margin: 0;
    }

    ul.off-canvas-list li a {
        display: block;
        padding: 0.6666666667rem;
        color: #333333;
        border-bottom: 1px solid #bfbfbf;
        transition: background 200ms ease;
    }

        ul.off-canvas-list li a:hover {
            background: #b3b3b3;
        }

.move-right > .inner-wrap, .faceted-move-right > ul > .inner-wrap {
    -ms-transform: translate(15.625rem, 0);
    -webkit-transform: translate3d(15.625rem, 0, 0);
    -moz-transform: translate3d(15.625rem, 0, 0);
    -ms-transform: translate3d(15.625rem, 0, 0);
    -o-transform: translate3d(15.625rem, 0, 0);
    transform: translate3d(15.625rem, 0, 0);
}

.move-right .exit-off-canvas, .faceted-move-right > ul .exit-off-canvas {
    -webkit-backface-visibility: hidden;
    transition: background 200ms ease;
    cursor: pointer;
    box-shadow: 0;
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media only screen and (min-width:40.063em) {
    .move-right .exit-off-canvas:hover, .faceted-move-right > ul .exit-off-canvas:hover {
        background: rgba(255, 255, 255, 0.05);
    }
}

.move-left > .inner-wrap {
    -ms-transform: translate(-15.625rem, 0);
    -webkit-transform: translate3d(-15.625rem, 0, 0);
    -moz-transform: translate3d(-15.625rem, 0, 0);
    -ms-transform: translate3d(-15.625rem, 0, 0);
    -o-transform: translate3d(-15.625rem, 0, 0);
    transform: translate3d(-15.625rem, 0, 0);
}

.move-left .exit-off-canvas {
    -webkit-backface-visibility: hidden;
    transition: background 200ms ease;
    cursor: pointer;
    box-shadow: 0;
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media only screen and (min-width:40.063em) {
    .move-left .exit-off-canvas:hover {
        background: rgba(255, 255, 255, 0.05);
    }
}

.offcanvas-overlap .left-off-canvas-menu, .offcanvas-overlap .right-off-canvas-menu {
    -ms-transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    transform: none;
    z-index: 1003;
}

.offcanvas-overlap .exit-off-canvas {
    -webkit-backface-visibility: hidden;
    transition: background 200ms ease;
    cursor: pointer;
    box-shadow: 0;
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media only screen and (min-width:40.063em) {
    .offcanvas-overlap .exit-off-canvas:hover {
        background: rgba(255, 255, 255, 0.05);
    }
}

.offcanvas-overlap-left .right-off-canvas-menu {
    -ms-transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    transform: none;
    z-index: 1003;
}

.offcanvas-overlap-left .exit-off-canvas {
    -webkit-backface-visibility: hidden;
    transition: background 200ms ease;
    cursor: pointer;
    box-shadow: 0;
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media only screen and (min-width:40.063em) {
    .offcanvas-overlap-left .exit-off-canvas:hover {
        background: rgba(255, 255, 255, 0.05);
    }
}

.offcanvas-overlap-right .left-off-canvas-menu {
    -ms-transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    transform: none;
    z-index: 1003;
}

.offcanvas-overlap-right .exit-off-canvas {
    -webkit-backface-visibility: hidden;
    transition: background 200ms ease;
    cursor: pointer;
    box-shadow: 0;
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media only screen and (min-width:40.063em) {
    .offcanvas-overlap-right .exit-off-canvas:hover {
        background: rgba(255, 255, 255, 0.05);
    }
}

.no-csstransforms .left-off-canvas-menu {
    left: -15.625rem;
}

.no-csstransforms .right-off-canvas-menu {
    right: -15.625rem;
}

.no-csstransforms .move-left > .inner-wrap {
    right: 15.625rem;
}

.no-csstransforms .move-right > .inner-wrap, .no-csstransforms .faceted-move-right > ul > .inner-wrap {
    left: 15.625rem;
}

.left-submenu {
    -webkit-backface-visibility: hidden;
    width: 15.625rem;
    top: 0;
    bottom: 0;
    position: absolute;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background: #333333;
    z-index: 1002;
    box-sizing: content-box;
    -webkit-overflow-scrolling: touch;
    -ms-transform: translate(-100%, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
    -webkit-transition: -webkit-transform 500ms ease;
    -moz-transition: -moz-transform 500ms ease;
    -ms-transition: -ms-transform 500ms ease;
    -o-transition: -o-transform 500ms ease;
    transition: transform 500ms ease;
}

    .left-submenu * {
        -webkit-backface-visibility: hidden;
    }

    .left-submenu .back > a {
        padding: 0.3rem 0.9375rem;
        color: #fff;
        text-transform: uppercase;
        font-weight: lighter;
        background: #e6e7e8;
        border-top: 1px solid #008ef4;
        border-bottom: none;
        margin: 0;
    }

        .left-submenu .back > a:hover {
            background: #9ea2a6;
            border-top: 1px solid #008ef4;
            border-bottom: none;
        }

        .left-submenu .back > a:before {
            content: "\AB";
            margin-right: 0.5rem;
            display: inline;
        }

    .left-submenu.move-right, .faceted-move-right > ul.left-submenu, .left-submenu.offcanvas-overlap-right, .left-submenu.offcanvas-overlap {
        -ms-transform: translate(0%, 0);
        -webkit-transform: translate3d(0%, 0, 0);
        -moz-transform: translate3d(0%, 0, 0);
        -ms-transform: translate3d(0%, 0, 0);
        -o-transform: translate3d(0%, 0, 0);
        transform: translate3d(0%, 0, 0);
    }

.right-submenu {
    -webkit-backface-visibility: hidden;
    width: 15.625rem;
    top: 0;
    bottom: 0;
    position: absolute;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background: #333333;
    z-index: 1002;
    box-sizing: content-box;
    -webkit-overflow-scrolling: touch;
    -ms-transform: translate(100%, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    right: 0;
    -webkit-transition: -webkit-transform 500ms ease;
    -moz-transition: -moz-transform 500ms ease;
    -ms-transition: -ms-transform 500ms ease;
    -o-transition: -o-transform 500ms ease;
    transition: transform 500ms ease;
}

    .right-submenu * {
        -webkit-backface-visibility: hidden;
    }

    .right-submenu .back > a {
        padding: 0.3rem 0.9375rem;
        color: #fff;
        text-transform: uppercase;
        font-weight: lighter;
        background: #e6e7e8;
        border-top: 1px solid #008ef4;
        border-bottom: none;
        margin: 0;
    }

        .right-submenu .back > a:hover {
            background: #9ea2a6;
            border-top: 1px solid #008ef4;
            border-bottom: none;
        }

        .right-submenu .back > a:after {
            content: "\BB";
            margin-left: 0.5rem;
            display: inline;
        }

    .right-submenu.move-left, .right-submenu.offcanvas-overlap-left, .right-submenu.offcanvas-overlap {
        -ms-transform: translate(0%, 0);
        -webkit-transform: translate3d(0%, 0, 0);
        -moz-transform: translate3d(0%, 0, 0);
        -ms-transform: translate3d(0%, 0, 0);
        -o-transform: translate3d(0%, 0, 0);
        transform: translate3d(0%, 0, 0);
    }

.left-off-canvas-menu ul.off-canvas-list li.has-submenu > a:after {
    content: "\BB";
    margin-left: 0.5rem;
    display: inline;
}

.right-off-canvas-menu ul.off-canvas-list li.has-submenu > a:before {
    content: "\AB";
    margin-right: 0.5rem;
    display: inline;
}

/* small displays */
@media only screen {
    .show-for-small-only, .show-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
        display: inherit !important;
    }

    .hide-for-small-only, .hide-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
        display: none !important;
    }

    .visible-for-small-only, .visible-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
        position: static !important;
        height: auto;
        width: auto;
        overflow: visible;
        clip: auto;
    }

    .hidden-for-small-only, .hidden-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
        position: absolute !important;
        height: 1px;
        width: 1px;
        overflow: hidden;
        clip: rect(1px, 1px, 1px, 1px);
    }

    table.show-for-small-only, table.show-for-small-up, table.show-for-small, table.show-for-small-down, table.hide-for-medium-only, table.hide-for-medium-up, table.hide-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
        display: table !important;
    }

    thead.show-for-small-only, thead.show-for-small-up, thead.show-for-small, thead.show-for-small-down, thead.hide-for-medium-only, thead.hide-for-medium-up, thead.hide-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
        display: table-header-group !important;
    }

    tbody.show-for-small-only, tbody.show-for-small-up, tbody.show-for-small, tbody.show-for-small-down, tbody.hide-for-medium-only, tbody.hide-for-medium-up, tbody.hide-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
        display: table-row-group !important;
    }

    tr.show-for-small-only, tr.show-for-small-up, tr.show-for-small, tr.show-for-small-down, tr.hide-for-medium-only, tr.hide-for-medium-up, tr.hide-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
        display: table-row;
    }

    th.show-for-small-only, td.show-for-small-only, th.show-for-small-up, td.show-for-small-up, th.show-for-small, td.show-for-small, th.show-for-small-down, td.show-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.hide-for-medium-up, td.hide-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
        display: table-cell !important;
    }
}

/* medium displays */
@media only screen and (min-width:40.063em) {
    .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
        display: inherit !important;
    }

    .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
        display: none !important;
    }

    .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
        position: static !important;
        height: auto;
        width: auto;
        overflow: visible;
        clip: auto;
    }

    .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
        position: absolute !important;
        height: 1px;
        width: 1px;
        overflow: hidden;
        clip: rect(1px, 1px, 1px, 1px);
    }

    table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.show-for-medium-only, table.show-for-medium-up, table.show-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
        display: table !important;
    }

    thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.show-for-medium-only, thead.show-for-medium-up, thead.show-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
        display: table-header-group !important;
    }

    tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.show-for-medium-only, tbody.show-for-medium-up, tbody.show-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
        display: table-row-group !important;
    }

    tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.show-for-medium-only, tr.show-for-medium-up, tr.show-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
        display: table-row;
    }

    th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.show-for-medium-only, td.show-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.show-for-medium, td.show-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
        display: table-cell !important;
    }
}

/* large displays */
@media only screen and (min-width:64.063em) {
    .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
        display: inherit !important;
    }

    .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
        display: none !important;
    }

    .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
        position: static !important;
        height: auto;
        width: auto;
        overflow: visible;
        clip: auto;
    }

    .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
        position: absolute !important;
        height: 1px;
        width: 1px;
        overflow: hidden;
        clip: rect(1px, 1px, 1px, 1px);
    }

    table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.show-for-large-only, table.show-for-large-up, table.show-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
        display: table !important;
    }

    thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.show-for-large-only, thead.show-for-large-up, thead.show-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
        display: table-header-group !important;
    }

    tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.show-for-large-only, tbody.show-for-large-up, tbody.show-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
        display: table-row-group !important;
    }

    tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.show-for-large-only, tr.show-for-large-up, tr.show-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
        display: table-row;
    }

    th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.show-for-large-only, td.show-for-large-only, th.show-for-large-up, td.show-for-large-up, th.show-for-large, td.show-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
        display: table-cell !important;
    }
}

/* xlarge displays */
@media only screen and (min-width:90.063em) {
    .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
        display: inherit !important;
    }

    .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
        display: none !important;
    }

    .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
        position: static !important;
        height: auto;
        width: auto;
        overflow: visible;
        clip: auto;
    }

    .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
        position: absolute !important;
        height: 1px;
        width: 1px;
        overflow: hidden;
        clip: rect(1px, 1px, 1px, 1px);
    }

    table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.show-for-xlarge-only, table.show-for-xlarge-up, table.show-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
        display: table !important;
    }

    thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.show-for-xlarge-only, thead.show-for-xlarge-up, thead.show-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
        display: table-header-group !important;
    }

    tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.show-for-xlarge-only, tbody.show-for-xlarge-up, tbody.show-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
        display: table-row-group !important;
    }

    tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.show-for-xlarge-only, tr.show-for-xlarge-up, tr.show-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
        display: table-row;
    }

    th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.show-for-xlarge-only, td.show-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.show-for-xlarge, td.show-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
        display: table-cell !important;
    }
}

/* xxlarge displays */
@media only screen and (min-width:120.063em) {
    .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .hide-for-xlarge-only, .show-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .show-for-xxlarge-down {
        display: inherit !important;
    }

    .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .show-for-xlarge-only, .hide-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .hide-for-xxlarge-down {
        display: none !important;
    }

    .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .hidden-for-xlarge-only, .visible-for-xlarge-up, .hidden-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .visible-for-xxlarge-down {
        position: static !important;
        height: auto;
        width: auto;
        overflow: visible;
        clip: auto;
    }

    .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .visible-for-xlarge-only, .hidden-for-xlarge-up, .visible-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .hidden-for-xxlarge-down {
        position: absolute !important;
        height: 1px;
        width: 1px;
        overflow: hidden;
        clip: rect(1px, 1px, 1px, 1px);
    }

    table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.hide-for-xlarge-only, table.show-for-xlarge-up, table.hide-for-xlarge, table.hide-for-xlarge-down, table.show-for-xxlarge-only, table.show-for-xxlarge-up, table.show-for-xxlarge, table.show-for-xxlarge-down {
        display: table !important;
    }

    thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.hide-for-xlarge-only, thead.show-for-xlarge-up, thead.hide-for-xlarge, thead.hide-for-xlarge-down, thead.show-for-xxlarge-only, thead.show-for-xxlarge-up, thead.show-for-xxlarge, thead.show-for-xxlarge-down {
        display: table-header-group !important;
    }

    tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.hide-for-xlarge-only, tbody.show-for-xlarge-up, tbody.hide-for-xlarge, tbody.hide-for-xlarge-down, tbody.show-for-xxlarge-only, tbody.show-for-xxlarge-up, tbody.show-for-xxlarge, tbody.show-for-xxlarge-down {
        display: table-row-group !important;
    }

    tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.hide-for-xlarge-only, tr.show-for-xlarge-up, tr.hide-for-xlarge, tr.hide-for-xlarge-down, tr.show-for-xxlarge-only, tr.show-for-xxlarge-up, tr.show-for-xxlarge, tr.show-for-xxlarge-down {
        display: table-row;
    }

    th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.hide-for-xlarge-down, td.hide-for-xlarge-down, th.show-for-xxlarge-only, td.show-for-xxlarge-only, th.show-for-xxlarge-up, td.show-for-xxlarge-up, th.show-for-xxlarge, td.show-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
        display: table-cell !important;
    }
}

/* Orientation targeting */
.show-for-landscape, .hide-for-portrait {
    display: inherit !important;
}

.hide-for-landscape, .show-for-portrait {
    display: none !important;
}

/* Specific visibility for tables */
table.hide-for-landscape, table.show-for-portrait {
    display: table !important;
}

thead.hide-for-landscape, thead.show-for-portrait {
    display: table-header-group !important;
}

tbody.hide-for-landscape, tbody.show-for-portrait {
    display: table-row-group !important;
}

tr.hide-for-landscape, tr.show-for-portrait {
    display: table-row !important;
}

td.hide-for-landscape, td.show-for-portrait, th.hide-for-landscape, th.show-for-portrait {
    display: table-cell !important;
}

@media only screen and (orientation: landscape) {
    .show-for-landscape, .hide-for-portrait {
        display: inherit !important;
    }

    .hide-for-landscape, .show-for-portrait {
        display: none !important;
    }

    /* Specific visibility for tables */
    table.show-for-landscape, table.hide-for-portrait {
        display: table !important;
    }

    thead.show-for-landscape, thead.hide-for-portrait {
        display: table-header-group !important;
    }

    tbody.show-for-landscape, tbody.hide-for-portrait {
        display: table-row-group !important;
    }

    tr.show-for-landscape, tr.hide-for-portrait {
        display: table-row !important;
    }

    td.show-for-landscape, td.hide-for-portrait, th.show-for-landscape, th.hide-for-portrait {
        display: table-cell !important;
    }
}

@media only screen and (orientation: portrait) {
    .show-for-portrait, .hide-for-landscape {
        display: inherit !important;
    }

    .hide-for-portrait, .show-for-landscape {
        display: none !important;
    }

    /* Specific visibility for tables */
    table.show-for-portrait, table.hide-for-landscape {
        display: table !important;
    }

    thead.show-for-portrait, thead.hide-for-landscape {
        display: table-header-group !important;
    }

    tbody.show-for-portrait, tbody.hide-for-landscape {
        display: table-row-group !important;
    }

    tr.show-for-portrait, tr.hide-for-landscape {
        display: table-row !important;
    }

    td.show-for-portrait, td.hide-for-landscape, th.show-for-portrait, th.hide-for-landscape {
        display: table-cell !important;
    }
}

/* Touch-enabled device targeting */
.show-for-touch {
    display: none !important;
}

.hide-for-touch {
    display: inherit !important;
}

.touch .show-for-touch {
    display: inherit !important;
}

.touch .hide-for-touch {
    display: none !important;
}

/* Specific visibility for tables */
table.hide-for-touch {
    display: table !important;
}

.touch table.show-for-touch {
    display: table !important;
}

thead.hide-for-touch {
    display: table-header-group !important;
}

.touch thead.show-for-touch {
    display: table-header-group !important;
}

tbody.hide-for-touch {
    display: table-row-group !important;
}

.touch tbody.show-for-touch {
    display: table-row-group !important;
}

tr.hide-for-touch {
    display: table-row !important;
}

.touch tr.show-for-touch {
    display: table-row !important;
}

td.hide-for-touch {
    display: table-cell !important;
}

.touch td.show-for-touch {
    display: table-cell !important;
}

th.hide-for-touch {
    display: table-cell !important;
}

.touch th.show-for-touch {
    display: table-cell !important;
}

/*
       * Print styles.
       *
       * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
       * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
      */
.print-only {
    display: none !important;
}

@media (max-width: 767px) {
    .hide-for-topbar-bp {
        display: none !important;
    }
}

.show-for-topbar-bp {
    display: none !important;
}

@media (max-width: 767px) {
    .show-for-topbar-bp {
        display: block !important;
    }
}

.left {
    float: left;
}

.right {
    float: right;
}


.button {
    border-radius: 4px;
}

.button-green {
    background: #94d600;
}

    .button-green:hover {
        background: #82bd00;
    }

.social li {
    display: inline-block;
}

    .social li a {
        display: block;
        color: #666666;
        padding-right: 1em;
    }

.cat-separator {
    text-align: center;
    border-bottom: 2px solid #666;
    height: 1.3em;
    max-width: 75rem;
    width: 100%;
    margin: 0 auto 3.5em;
}

.section-separator {
    text-align: center;
    border-bottom: 2px solid #666;
    height: 1.3em;
    max-width: 75rem;
    margin: 0 auto 1.5em;
}

h1.cat-box, h2.cat-box, h3.cat-box, h4.cat-box {
    font-size: 1em;
}

.cat-box {
    border: 2px solid #666666;
    text-align: center;
    text-transform: uppercase;
    color: #666666;
    padding: 0.4em 2.2em;
    height: auto;
    display: block;
    background: #fff;
    border-radius: 5px;
    display: inline-block;
}

.flag {
    display: table;
    max-width: 75rem;
    margin: 0 auto;
}

.flag-image, .flag-body {
    display: table-cell;
    vertical-align: middle;
}

.flag-image {
    padding-right: 10px;
}

    .flag-image > img {
        display: block;
        max-width: none;
    }

.flag-rev .flag-image {
    padding-right: 0;
    padding-left: 10px;
}

.flag-body {
    width: 100%;
    text-align: center;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: currentColor;
    font-size: 1.2em;
}

.icon-arrow-right {
    vertical-align: middle;
    margin-top: -3px;
    font-size: 0.9em;
}

.glyph svg {
    color: #444444;
}

.category-ages li:hover {
    cursor: pointer;
}

.category-ages .link-group {
    text-align: center;
    text-transform: uppercase;
}

    .category-ages .link-group .number {
        font-size: 2em;
        font-weight: bold;
    }

    .category-ages .link-group a {
        border: 2px solid #046B99;
        text-align: center;
        text-transform: uppercase;
        color: #046B99;
        padding: 0.4em 2.2em;
        height: auto;
        display: block;
        background: #fff;
        border-radius: 5px;
        box-shadow: 0 0 0 3px #fff, 0 0 0 5px #046B99;
        display: inline-block;
        color: #046B99;
        padding: 0.5em 0.5em;
        width: 100px;
        transition: background-color 200ms ease-out;
    }

        .category-ages .link-group a:active, .category-ages .link-group a:hover {
            background: #046B99;
            color: #fff !important;
        }

            .category-ages .link-group a:active *, .category-ages .link-group a:hover * {
                color: #fff;
            }

        .category-ages .link-group a span {
            display: block;
        }

    .category-ages .link-group p {
        padding-top: 0.8em;
    }

.category-list-row {
    padding-bottom: 1em;
}

    .category-list-row .category-item {
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 1em;
        border-bottom: 1px solid #e6e7e8;
    }

        .category-list-row .category-item:last-child {
            border-bottom: none;
        }

@media only screen and (min-width:40.063em) {
    .category-list-row .category-item {
        border-right: 1px solid #e6e7e8;
        border-bottom: none;
    }

        .category-list-row .category-item:last-child {
            border: none;
        }
}

.category-list-row a {
    color: #333333;
}

.category-list-row .category-title {
    line-height: 1.3em;
    margin: 0 1.3em 0.5em;
    font-size: 1.4em;
}

@media (max-width: 1000px) {
    .category-list-row .category-title {
        font-size: 1.2em;
    }
}

.category-list-row .category-img {
    margin-bottom: 1em;
}

.category-list-row .category-link {
    display: block;
    font-size: 0.9em;
    padding-bottom: 1em;
}

/* Shop By Category */
#ShopByCategory li > .link-group {
    text-decoration: none;
}


/* Recommended Area Flag */

.recommended-list-flag {
    display: inline-block;
    font-size: 0.8em;
    margin-bottom: 0;
    margin-top: 0.4em;
    text-transform: uppercase;
}

    .recommended-list-flag.best-seller {
        background: rgba(0, 0, 0, 0) url("../../images/icon_sm_flag-bestseller.png") no-repeat scroll left center;
        color: #046B99;
        padding-left: 1.5em;
    }

    .recommended-list-flag.free-shipping {
        background: rgba(0, 0, 0, 0) url("../../images/icon_sm_flag-freeshipping.png") no-repeat scroll left center;
        color: #94d600;
        padding-left: 2em;
    }

    .recommended-list-flag.award {
        background: rgba(0, 0, 0, 0) url("../../images/icon_sm_flag-award.png") no-repeat scroll left center;
        color: #9e1d97;
        padding-left: 2em;
    }


.filter-topbar .filter-text-numprods {
    font-weight: bold;
    margin-right: 0.5em;
}

@media only screen and (min-width:40.063em) {
    .filter-topbar .filter-text-numprods {
        float: left;
    }
}

.filter-topbar .filter-text-select {
    font-weight: bold;
    line-height: 2.3;
}

.filter-topbar .filter-text-numprods, .filter-topbar .filter-text-select, .filter-topbar .pagination, .filter-topbar select {
    margin-bottom: 0;
}

.filter-topbar .filter-text-select-col {
    padding-right: 0;
}

@media only screen and (min-width:40.063em) {
    .filter-topbar .filter-text-select-col {
        text-align: right;
    }
}

#product-category h1 {
    margin-bottom: 0.15em;
}

#product-category .cat-separator {
    height: 1em;
}

.pagination li.current a {
    background: #333333 !important;
}

.pagination li a {
    border: 1px solid #e6e7e8;
}

.pagination-bottom-bar {
    float: right;
}

.center-text-group {
    text-align: center;
    padding: 0 5%;
}

    .center-text-group .center-text-body {
        color: #666666;
    }

    .center-text-group .center-text-link {
        text-transform: uppercase;
    }

.rating .star-ratings-css {
    unicode-bidi: bidi-override;
    color: #c5c5c5;
    font-size: 18px;
    height: 18px;
    width: 90px;
    margin: 0 auto;
    position: relative;
    padding: 0;
}

    .rating .star-ratings-css .star-ratings-css-top {
        color: #ffb81d;
        padding: 0;
        position: absolute;
        z-index: 1;
        display: block;
        left: 0px;
        overflow: hidden;
    }

        .rating .star-ratings-css .star-ratings-css-top > span {
            width: 20%;
        }

    .rating .star-ratings-css .star-ratings-css-bottom {
        z-index: 0;
    }

.product-link {
    display: block;
    margin: 0 1em;
}

.product-image {
    margin-bottom: 1em;
}

.product-title {
    border-bottom: 2px solid #999999;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
}

.price-group {
    color: #333333;
}

/* Slick Carousel */

/* Home page images slightly smaller */
#BrandCarousel .slick-slide img {
    max-width: 90%;
}

.slick-slide img {
    cursor: pointer;
}

/* Help reduce FoUC */
.product-image-thumb .slick-slide {
    visibility: hidden;
}

    .product-image-thumb .slick-slide:first-child {
        visibility: visible;
    }

.product-image-thumb.slick-initialized .slick-slide {
    visibility: visible;
}

.slick-prev, .slick-next {
    background: url(../../images/icon-arrow-right.svg) !important;
}

    .slick-prev:before, .slick-prev:after, .slick-next:before, .slick-next:after {
        display: none;
    }

    .slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
        background: url(../../images/icon-arrow-right.svg) !important;
    }

.slick-prev {
    background: url(../../images/icon-arrow-left.svg) !important;
}

    .slick-prev:hover, .slick-prev:focus {
        background: url(../../images/icon-arrow-left.svg) !important;
    }

/* Smaller thumb images*/
.product-image-thumb .slick-list .slick-slide img {
    width: 90%;
}

.has-5 li:nth-child(1) {
    width: 50%;
}

.has-5 li:nth-of-type(1n) {
    clear: none;
}

.has-5 li:nth-child(2) {
    width: 50%;
}

.has-5 li:nth-child(3) {
    clear: none;
}

@media only screen and (max-width: 40em) {
    .has-5 li:last-child {
        float: none;
        clear: both;
        margin: 0 auto;
    }
}

@media only screen and (min-width:40.063em) and (max-width:64em) {
    .has-5 li:last-child {
        float: none;
        clear: both;
        margin: 0 auto;
    }
}


/* RESET ----------------------------- */
/* s2core ----------------------------- */
#nav-desktop {
    z-index: 900;
    position: relative;
    /* TOP HALF ----------------------------- */
    /* BOTTOM HALF ----------------------------- */
    /* EVENTS ----------------------------- */
}

@media (max-width: 767px) {
    #nav-desktop {
        display: none !important;
    }
}

#nav-desktop .fixed {
    border-bottom: 2px solid #666666;
}

    #nav-desktop .fixed:before {
        content: "";
        display: block;
        z-index: 2;
        position: relative;
        border-top: 5px solid #046B99;
    }

#nav-desktop * {
    text-transform: uppercase !important;
}

#nav-desktop .top-bar .top-bar-section .has-dropdown ul a {
    line-height: 2.5em;
    text-align: left;
}

@media (max-width: 1000px) {
    #nav-desktop .top-bar .top-bar-section .has-dropdown > a {
        /* MENUMARGIN */
        /*padding-right: 0.7em !important;*/
    }

        #nav-desktop .top-bar .top-bar-section .has-dropdown > a:after {
            display: none;
        }
}

#nav-desktop .nav-logo {
    z-index: 100;
    position: absolute;
    top: -36px;
}

    #nav-desktop .nav-logo img {
        max-width: 122px;
        position: relative;
    }

/* Logo Shrink */
@media (max-width: 1140px) {
    #nav-desktop .nav-logo img {
        max-width: 96px !important;
    }
}

@media (max-width: 1100px) {

    #nav-desktop .nav-logo img {
        /*max-width: 67px !important;*/
        margin-top: 0;
    }
}

@media (min-width: 1230px) {

    #nav-desktop .nav-logo img {
        margin: 0;
    }
}

#nav-desktop .button-cart {
    border: 2px solid #046B99;
    text-align: center;
    text-transform: uppercase;
    color: #046B99;
    padding: 0.4em 2.2em;
    height: auto;
    display: block;
    background: #fff;
    border-radius: 5px;
    padding: 0.4em 1.3em;
    margin-top: -0.35em;
}

    #nav-desktop .button-cart:active, #nav-desktop .button-cart:hover {
        background: #046B99;
        color: #fff !important;
    }

        #nav-desktop .button-cart:active *, #nav-desktop .button-cart:hover * {
            color: #fff;
        }

#nav-desktop .dropdown {
    left: 0;
    right: auto;
    /*top: 51px;*/
}

#nav-desktop .nav-desktop-top-half {
    position: relative;
}

    #nav-desktop .nav-desktop-top-half a {
        color: #777676 !important;
        font-size: 0.6875rem !important;
        padding: 0 1em;
    }

@media (max-width: 800px) {
    #nav-desktop .nav-desktop-top-half a {
        padding: 0 .5em;
    }
}

#nav-desktop .nav-desktop-top-half .has-dropdown {
    transition: all ease-in-out 300ms;
}

    #nav-desktop .nav-desktop-top-half .has-dropdown a {
        padding-right: 2.3em !important;
    }

        #nav-desktop .nav-desktop-top-half .has-dropdown a:after {
            margin-right: 0.5em;
        }

    #nav-desktop .nav-desktop-top-half .has-dropdown:hover > a {
        background: #EFEFEF;
        box-shadow: 0 0 0 2px #DCDCDC;
    }

    #nav-desktop .nav-desktop-top-half .has-dropdown:hover .dropdown {
        box-shadow: 0 0 0 2px #DCDCDC;
        top: 44px;
    }

        #nav-desktop .nav-desktop-top-half .has-dropdown:hover .dropdown li:nth-child(3) a {
            padding-top: 1em;
        }

        #nav-desktop .nav-desktop-top-half .has-dropdown:hover .dropdown li:last-child a {
            padding-bottom: 1em;
        }

#nav-desktop .nav-desktop-top-half .top-bar-section .right li {
    margin-right: 2px;
}

@media (min-width: 1020px) {
    #nav-desktop .nav-desktop-top-half .top-bar-section .right .fa-phone {
        display: none;
    }
}

.top-bar-section ul li.search-form {
    background: #fff;
}

#nav-desktop .search-form {
    padding-right: 0;
}

    #nav-desktop .search-form form {
        margin-right: -25px;
    }

    #nav-desktop .search-form a {
        font-size: 14px;
    }

        #nav-desktop .search-form a .fa {
            font-size: 32px;
        }

    #nav-desktop .search-form .cart-group {
        padding-top: 4px;
    }

        #nav-desktop .search-form .cart-group a {
            float: right;
        }


@media (max-width: 1030px) {
    #nav-desktop .search-form .cart-group {
        padding-top: 6px;
    }

        #nav-desktop .search-form .cart-group a {
            font-size: 13px !important;
        }

    #nav-desktop .search-form a .fa {
        font-size: 29px;
    }
}

#TriggerSearch {
    color: #777676;
    font-size: 0.6875rem !important;
    padding: 0 1em;
    cursor: pointer;
    line-height: 2.8125rem;
}

    #TriggerSearch:hover {
        color: #046B99;
    }

#sli_search_1 {
    /*
    margin-bottom: 8px; 
    border: 1px solid #b7b7b7;
    text-transform: none !important;
    */
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

#SearchButton {
    margin-bottom: 0;
    font-size: 12px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    transition: all ease-in-out 200ms;
}

#nav-desktop .nav-desktop-top-half .search-form .search-form-toggle {
    margin-right: 1em;
    transition: opacity ease-in-out 200ms;
}

#nav-desktop .nav-desktop-top-half .has-dropdown > a:after {
    content: "";
    display: block;
    width: 20px;
    height: 11px;
    border: 0;
    background-size: 12px;
    background-position: center;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2018.1.1%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%20250%20250%22%20enable-background%3D%22new%200%200%20250%20250%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpolygon%20id%3D%22arrow-25-icon%22%20fill%3D%22%23BEC1C3%22%20points%3D%22198.8%2C61.5%20225.6%2C88.4%20125%2C188.5%2024.4%2C88.4%2051.2%2C61.5%20125%2C134.9%20%22/%3E%0D%0A%3C/svg%3E%0D%0A');
    background-repeat: no-repeat;
    margin-top: -6px;
}

#nav-desktop .nav-desktop-bottom-half {
    position: relative;
}

    #nav-desktop .nav-desktop-bottom-half ul.right {
        text-align: right;
    }

    #nav-desktop .nav-desktop-bottom-half .top-bar-section .right .has-form {
        /*padding-left: 0.4em;*/
    }

    #nav-desktop .nav-desktop-bottom-half .top-bar-section .right a .cart-num {
        display: none;
    }

@media (max-width: 920px) {
    #nav-desktop .nav-desktop-bottom-half .top-bar-section .right a .cart-num {
        display: inline;
    }
}

@media (min-width: 64.063em) {
    #nav-desktop .nav-desktop-bottom-half .top-bar-section .right a .show-for-large-up {
        display: inline !important;
    }
}

#nav-desktop .nav-desktop-bottom-half .top-bar-section .right a {
    padding: 0 0.7em;
}

@media (max-width: 1180px) {
    #nav-desktop .nav-desktop-bottom-half .top-bar-section .right a {
        font-size: 0.8rem;
        /* MENUMARGIN */
        padding: 0 0.7em;
        border: 0;
    }

    #nav-desktop .nav-desktop-bottom-half .top-bar-section .right li:first-child a {
        /* MENUMARGIN */
        /*padding-left: 1.125rem;*/
    }

    #nav-desktop .nav-desktop-bottom-half .top-bar-section .right a.button-cart {
        margin-top: 0.35em;
        padding-right: 0;
        padding-left: 0;
    }

        #nav-desktop .nav-desktop-bottom-half .top-bar-section .right a.button-cart:hover {
            background: #fff;
        }

            #nav-desktop .nav-desktop-bottom-half .top-bar-section .right a.button-cart:hover span, #nav-desktop .nav-desktop-bottom-half .top-bar-section .right a.button-cart:hover i {
                color: #046B99 !important;
            }
}

@media (max-width: 950px) {
    #nav-desktop .nav-desktop-bottom-half .top-bar-section .right a {
        font-size: 0.688rem;
    }

        #nav-desktop .nav-desktop-bottom-half .top-bar-section .right a .icon-cart-text {
            display: none;
        }

        #nav-desktop .nav-desktop-bottom-half .top-bar-section .right a.button-cart {
            padding: 0;
        }
}

@media (max-width: 830px) {
    #nav-desktop .nav-desktop-bottom-half .top-bar-section .right a {
        padding: 0 0.3em;
    }
}



#nav-desktop .nav-desktop-bottom-half .dropdown {
    border: 2px solid #333333;
}

@media (max-width: 920px) {
    #nav-desktop .nav-desktop-bottom-half .has-dropdown > a {
        /* MENUMARGIN */
        /*padding-right: 2em !important;*/
    }
}

#nav-desktop .has-dropdown > a > .fa {
    display: none;
}

@media (min-width: 1001px) {
    #nav-desktop .has-dropdown > a > .fa {
        color: #000;
        vertical-align: text-top;
        display: inline;
    }
}

/* Not used anymore */
/*
#nav-desktop .nav-desktop-bottom-half .has-dropdown > a:after {
    content: "";
    display: block;
    width: 15px;
    height: 11px;
    border: 0;
    background-size: 14px;
    background-position: center;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2018.1.1%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%22131%20-131%20512%20512%22%20enable-background%3D%22new%20131%20-131%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpolygon%20id%3D%22arrow-25-icon%22%20points%3D%22554.5%2C-5.1%20609.4%2C50.1%20403.4%2C255.1%20197.4%2C50.1%20252.3%2C-5.1%20403.4%2C145.3%20%22/%3E%0D%0A%3C/svg%3E%0D%0A');
    background-repeat: no-repeat;
    margin-top: -6px;
}
*/

/* Not used anymore */
/* MENUMARGIN */
/*margin-right: 0.8em;*/
/*
@media (max-width: 920px) {
    #nav-desktop .nav-desktop-bottom-half .has-dropdown > a:after {
        width: 13px;
        height: 11px;
        background-size: 13px;
    }
}


*/
#nav-desktop.is-hidden .nav-desktop-top-half {
    opacity: 0;
    margin-top: -35px;
    -webkit-transition: margin-top 0.3s;
    -moz-transition: margin-top 0.3s;
    transition: margin-top 0.3s;
}

#nav-desktop.is-hidden .top-bar {
    margin-top: -0.4em;
    margin-bottom: 0.3em;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

#nav-desktop.is-hidden .nav-logo img {
    max-width: 85px !important;
    margin-top: 34px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

/*@media (min-width: 768px) {
    #nav-desktop.is-hidden + .banner-ad-top {
        transition: top 0.3s;
        top: 116px !important;
    }

    #nav-desktop.is-visible + .banner-ad-top {
        transition: top 0.3s;
        top: 152px !important;
    }
}*/

#nav-desktop.is-visible .nav-desktop-top-half {
    opacity: 1;
    margin-top: 0;
    -webkit-transition: margin-top 0.3s;
    -moz-transition: margin-top 0.3s;
    transition: margin-top 0.3s;
}

#nav-desktop.is-visible .top-bar {
    margin-top: 0;
    margin-bottom: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

#nav-desktop.is-visible .nav-logo img {
    max-width: 122px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

@media (min-width: 1060px) {
    #nav-desktop.is-visible .nav-logo img.bigger {
        max-width: 100px !important;
    }
}

#nav-desktop .nav-desktop-top-half .top-bar-section ul.is-moved > li:nth-last-child(2) {
    margin-right: 140px;
}

#nav-mobile {
    /* TAB BAR --------------------------- */
    /* MENU ------------------------------ */
    /* EVENTS ---------------------------- */
}

    #nav-mobile .tab-bar {
        border-top: 5px solid #046B99;
        border-bottom: 2px solid #666666;
    }

        #nav-mobile .tab-bar.is-visible {
            height: 102px;
        }

            #nav-mobile .tab-bar.is-visible .nav-shopping {
                height: 100%;
                width: 100%;
                left: 0;
            }

    #nav-mobile .tab-bar-section {
        line-height: 2.6em;
        padding-top: 0.13em;
    }

        #nav-mobile .tab-bar-section .fa {
            margin-right: 0.3em;
        }

    #nav-mobile .middle {
        text-align: left;
        padding-left: 0;
    }

    #nav-mobile .nav-logo {
        text-align: left;
        position: relative;
        z-index: 10;
        max-width: 35px;
    }

    #nav-mobile .nav-shopping {
        text-align: right;
    }

        #nav-mobile .nav-shopping i {
            color: #046B99;
        }

    #nav-mobile .mobile-search-form {
        display: inline-block;
        height: 2.55em;
        position: absolute;
        top: 48px;
        left: 0;
        width: 100%;
        padding: 0 10px;
    }

    #nav-mobile .mobile-search-field {
        /*height: 2.4em;*/
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        border-width: 1px;
    }

    #nav-mobile .search-form-toggle {
        cursor: pointer;
    }

    #nav-mobile .left-off-canvas-menu {
        border-right: 1px solid #bfbfbf;
    }

    #nav-mobile .off-canvas-list .mobile-login .mobile-login-button {
        border-bottom: 1px solid #bfbfbf;
        text-align: center;
    }

    #nav-mobile .off-canvas-list .mobile-login .mobile-login-intro {
        margin: 0;
        font-size: 0.9em;
        border-bottom: 1px solid #bfbfbf;
        padding: 1em 0;
        text-transform: uppercase;
    }

    #nav-mobile .off-canvas-list .mobile-login .mobile-login-toggle {
        padding: 0.4em 0;
        position: relative;
        border: 0;
        font-size: 0.85em;
        color: #046B99;
        font-weight: normal;
        text-transform: uppercase;
        background-image: url('data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2018.1.1%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%22131%20-131%20512%20512%22%20enable-background%3D%22new%20131%20-131%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpolygon%20id%3D%22arrow-25-icon%22%20fill%3D%22%230075C9%22%20points%3D%22538.1%2C-5.1%20593%2C50.1%20387%2C255.1%20181%2C50.1%20235.9%2C-5.1%20387%2C145.3%20%22/%3E%0D%0A%3C/svg%3E%0D%0A');
        background-repeat: no-repeat;
        background-position: 200px;
        background-size: 16px;
    }

        #nav-mobile .off-canvas-list .mobile-login .mobile-login-toggle:hover {
            background-color: none;
            cursor: pointer;
        }

    #nav-mobile .off-canvas-list .mobile-login .mobile-login-toggle-container {
        display: none;
        background: #fff;
        padding: 1.2em 0.8em 0.8em;
    }

        #nav-mobile .off-canvas-list .mobile-login .mobile-login-toggle-container form input {
            border-radius: 5px;
        }

            #nav-mobile .off-canvas-list .mobile-login .mobile-login-toggle-container form input.button {
                padding: 0.7em;
            }

        #nav-mobile .off-canvas-list .mobile-login .mobile-login-toggle-container a {
            border: none;
            padding: 0.2em 0;
        }

            #nav-mobile .off-canvas-list .mobile-login .mobile-login-toggle-container a:hover {
                background: none;
            }

    #nav-mobile .off-canvas-list .mobile-login.is-visible .mobile-login-toggle {
        background-image: url('data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2018.1.1%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%22131%20-131%20512%20512%22%20enable-background%3D%22new%20131%20-131%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpolygon%20id%3D%22arrow-25-icon%22%20fill%3D%22%230075C9%22%20points%3D%22235.9%2C255.1%20181%2C199.9%20387%2C-5.1%20593%2C199.9%20538.1%2C255.1%20387%2C104.7%20%22/%3E%0D%0A%3C/svg%3E%0D%0A');
    }

    #nav-mobile .off-canvas-list .mobile-login.is-visible .mobile-login-toggle-container {
        display: block;
    }

    #nav-mobile .off-canvas-list .util a {
        background: #fff;
        color: #777676;
        font-size: 0.85em;
        font-weight: normal;
    }

        #nav-mobile .off-canvas-list .util a:hover {
            background: #e6e6e6;
        }

    #nav-mobile .off-canvas-list a {
        text-transform: uppercase;
        font-weight: bold;
        font-size: 0.9em;
    }

        #nav-mobile .off-canvas-list a:hover {
            background: #bec1c3;
        }

    #nav-mobile .off-canvas-list .parent {
        position: relative;
    }

    #nav-mobile .off-canvas-list .children {
        list-style: none;
        background: #fff;
        margin-left: 0;
        display: none;
    }

        #nav-mobile .off-canvas-list .children a {
            padding-left: 1.7em;
        }

    #nav-mobile .off-canvas-list .toggle {
        background-image: url('data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2018.1.1%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%22131%20-131%20512%20512%22%20enable-background%3D%22new%20131%20-131%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpolygon%20id%3D%22arrow-25-icon%22%20points%3D%22554.5%2C-5.1%20609.4%2C50.1%20403.4%2C255.1%20197.4%2C50.1%20252.3%2C-5.1%20403.4%2C145.3%20%22/%3E%0D%0A%3C/svg%3E%0D%0A');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 16px;
        background-color: #bec1c3;
        opacity: 0.5;
        display: block;
        position: absolute;
        width: 43px;
        height: 44px;
        right: 0;
        top: 0;
    }

        #nav-mobile .off-canvas-list .toggle:hover {
            cursor: pointer;
        }

    #nav-mobile .left-off-canvas-menu {
        background: #e6e7e8;
    }

    #nav-mobile .parent.is-visible > .toggle {
        background-image: url('data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2018.1.1%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%20250%20250%22%20enable-background%3D%22new%200%200%20250%20250%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpolygon%20id%3D%22arrow-25-icon%22%20points%3D%2251.2%2C188.5%2024.4%2C161.6%20125%2C61.5%20225.6%2C161.6%20198.8%2C188.5%20125%2C115.1%20%22/%3E%0D%0A%3C/svg%3E%0D%0A');
    }

    #nav-mobile .parent.is-visible > .children {
        display: block;
    }

    #nav-mobile .mobile-search-form {
        opacity: 0;
    }

        #nav-mobile .mobile-search-form .mobile-search-field {
            display: none;
        }

        #nav-mobile .mobile-search-form.is-visible {
            opacity: 1;
        }

            #nav-mobile .mobile-search-form.is-visible .mobile-search-field {
                display: block;
            }

.color-options-modal {
    max-width: 470px;
}

.color-options .color-options-title {
    font-size: 1.2em;
    border-bottom: 2px solid #333;
    padding-bottom: 0.3em;
    margin-bottom: 0.7em;
    text-transform: uppercase;
}

.color-options a:hover p {
    color: #046B99;
}

.color-options p {
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 0;
}

.color-options li {
    text-align: center;
}

#footer {
    background: #e6e7e8;
    padding: 3.5em 0 5em;
}

    #footer h5 {
        text-transform: uppercase;
        font-weight: normal;
        font-size: 1rem;
    }

    #footer .categories ul {
        list-style: none;
        margin-left: 0;
    }

        #footer .categories ul a {
            color: #5C6975;
            font-size: 0.75rem;
        }

@media only screen and (max-width: 40em) {
    #footer .categories ul a {
        font-size: 0.875rem;
    }
}

@media only screen and (min-width:64.063em) {
    #footer .categories ul a {
        font-size: 0.875rem;
    }
}

#footer .social ul {
    margin-left: 0;
}

#footer label, #footer h6 {
    color: #046B99;
    text-transform: uppercase;
    font-size: 1.125rem;
    line-height: 1.4em;
    margin-bottom: 0.8em;
}

#footer .newsletter-signup {
    margin-bottom: 2.4em;
}

    #footer .newsletter-signup .button {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    #footer .newsletter-signup .newsletter-signup-email {
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }

#footer .bottom {
    border-top: 1px solid #666666;
    margin-top: 1em;
    padding-top: 1em;
}

@media only screen and (min-width:40.063em) {
    #footer .bottom {
        margin-top: 2em;
    }
}

#footer .bottom .logo-footer {
    max-width: 45px;
    float: left;
    margin-right: 1em;
}

#footer .bottom p {
    padding-top: 0.5em;
    font-size: 12px;
}

    #footer .bottom p span {
        /* border-left: 2px solid #666666; */
        margin-top: 2em;
        /* margin-left: 1em; */
        /* padding-left: 1em; */
    }

        #footer .bottom p span.footer-span-block {
            border-left: 2px solid #666;
            padding-left: 1em;
            margin-left: 1em;
        }



@media only screen and (max-width: 61em) {
    #footer .bottom p span {
        /* display: block; */
        margin-top: 1em;
        margin-left: 0;
        padding-left: 0;
        border: 0;
    }

        #footer .bottom p span.footer-span-block {
            display: block;
            margin-top: 0;
            border-left: none;
            padding-left: 0;
            margin-left: 0;
        }
}

@media only screen and (max-width: 40em) {
    #footer .bottom p span {
        margin-top: 0;
        text-align: center;
    }
}



.has-submenu.faceted {
    list-style: none;
}

.faceted .back a {
    display: block;
    background: #046B99;
}

    .faceted .back a:hover {
        background: #046B99;
    }

.left-off-canvas-menu .left-submenu {
    background: #e6e7e8;
}

.left-off-canvas-menu .nav-faceted {
    margin: 0 0.5em;
}

    .left-off-canvas-menu .nav-faceted .filter-head {
        margin-top: 1.3em;
    }

.nav-faceted .filter-group label {
    display: inline-block;
    padding: inherit;
    background: none;
    border: none;
    color: inherit;
    text-transform: inherit;
}

.nav-faceted .button {
    color: #fff;
}

.nav-faceted .filter-group {
    margin-bottom: 1.2em;
}

    .nav-faceted .filter-group.price .button {
        padding: 0.2em .5em;
    }

    .nav-faceted .filter-group.price .form .row {
        margin: auto;
    }

    .nav-faceted .filter-group.price .form * {
        text-align: center;
    }

    .nav-faceted .filter-group.rating label {
        line-height: 1.9em;
    }

    .nav-faceted .filter-group.rating label, .nav-faceted .filter-group.rating .rating, .nav-faceted .filter-group.rating .checkbox-filter {
        float: left;
    }

    .nav-faceted .filter-group.rating .filter-title-group {
        margin-bottom: 0.5em;
    }

    .nav-faceted .filter-group.rating .checkbox-row:before, .nav-faceted .filter-group.rating .checkbox-row:after {
        content: " ";
        display: table;
    }

    .nav-faceted .filter-group.rating .checkbox-row:after {
        clear: both;
    }

    .nav-faceted .filter-group.rating .rating {
        margin-right: 0.3em;
    }

    .nav-faceted .filter-group .rating-link {
        padding: 0;
        border: none;
    }

        .nav-faceted .filter-group .rating-link:hover {
            background: none !important;
        }

    .nav-faceted .filter-group .checkbox-filter {
        margin: 0.4em 0.3em 0 0;
    }

.nav-faceted .filter-head {
    padding-bottom: 0.7em;
    margin-top: 1em;
    margin-bottom: 0.7em;
    border-bottom: 2px solid #666666;
}

    .nav-faceted .filter-head .section-label {
        background: #666666;
        border-radius: 5px;
        color: #fff;
        text-align: center;
        padding: 0.7em 0;
        font-weight: lighter;
        text-transform: uppercase;
        font-size: 0.85em;
        margin-bottom: 0.6em;
    }

    .nav-faceted .filter-head .form-clear {
        float: none;
        display: block;
        margin-top: 1em;
        margin-bottom: 0.4em;
    }

.nav-faceted .form-clear {
    float: right;
    color: #046B99;
    font-size: 0.9em;
    display: block;
    margin-top: 0.5em;
    border-bottom: none;
    transition: none;
    text-transform: inherit !important;
    font-weight: normal !important;
    padding: 0;
}

    .nav-faceted .form-clear:hover {
        background: none !important;
    }

    .nav-faceted .form-clear .fa {
        margin-right: 0.2em;
    }

    .nav-faceted .form-clear.is-visible {
        display: block;
    }

.nav-faceted .pricing-form label {
    padding: 0;
    line-height: 2.5em;
}

.nav-faceted .filter-title-group:before, .nav-faceted .filter-title-group:after {
    content: " ";
    display: table;
}

.nav-faceted .filter-title-group:after {
    clear: both;
}

.nav-faceted .filter-title-group .filter-title {
    text-transform: uppercase;
    font-size: 1.1em;
    float: left;
    margin-bottom: 0.1em;
}

.nav-faceted .checkbox-row .checkbox-filter {
    margin-bottom: 0;
    background: #ccc;
}

.nav-faceted .checkbox-row label.is-checked {
    font-weight: bold;
}

.nav-faceted .see-more {
    font-size: 0.85em !important;
    color: #687D7D;
    margin-top: 0.2em;
    display: block;
    text-transform: inherit !important;
    font-weight: normal !important;
    padding: 0;
    border-bottom: none;
}

    .nav-faceted .see-more:hover {
        background: none !important;
    }

    .nav-faceted .see-more .fa {
        margin-right: 0.2em;
    }

.nav-faceted .square-row li.is-active a {
    opacity: 1;
}

.nav-faceted .square-row li a {
    background: #046B99;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    font-weight: lighter;
    padding: 0.5em 0.1em;
    display: block;
    opacity: 0.4;
}

.step2-kids .olapic .olapic-slider-header {
    display: none;
}

.step2-kids .olapic .olapic-slider-footer {
    display: none;
}

.step2-kids .olapic .olapic-slider-wrapper {
    display: inline-block;
    float: none;
    margin-left: -2px;
}

@media (max-width: 493px) {
    /* Smaller width for small breakpoint */
    .olapic .olapic-slider-wrapper {
        width: 82% !important;
    }
}

.step2-kids .olapic .olapic-nav-button {
    display: inline-block;
    float: none;
    position: relative;
}

    .step2-kids .olapic .olapic-nav-button .olapic-nav-prev {
        left: -0.2em;
    }

    .step2-kids .olapic .olapic-nav-button .olapic-nav-next {
        left: 0.25em;
    }

.step2-kids .olapic .newcopyright-olapic {
    display: none;
}


.logo-group {
    padding-bottom: 1.5em;
    margin-bottom: 2.5em;
}

    .logo-group li {
        text-align: center;
    }

        .logo-group li:nth-child(even):last-child {
            float: left;
        }

@media only screen and (max-width: 40em) {
    .logo-group li:last-child {
        float: none;
        margin: 0 auto;
    }
}

.best-sellers-carousel {
    margin-bottom: 2.8em;
}

.custom-carousel .slick-prev, .custom-carousel .slick-next {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    opacity: 0;
}

.custom-carousel:hover .slick-prev, .custom-carousel:hover .slick-next {
    opacity: 1;
}

.best-sellers-carousel .product-link {
    display: block;
    position: relative;
    margin: 0 1em;
}

    .best-sellers-carousel .product-link img {
        -webkit-transition: all ease-in-out 400ms;
        -moz-transition: all ease-in-out 400ms;
        transition: all ease-in-out 400ms;
    }

    .best-sellers-carousel .product-link:hover img {
        opacity: 0.7;
    }

    .best-sellers-carousel .product-link:hover .quick-look {
        opacity: 1;
    }

.best-sellers-carousel .quick-look {
    opacity: 0;
    position: absolute;
    background: #ffb81d;
    padding: 0.3em 1em;
    border-radius: 5px;
    border: 2px solid #fff;
    top: 45%;
    color: #fff;
    left: 50%;
    margin-left: -75px;
    width: 150px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    -webkit-transition: all ease-in-out 500ms;
    -moz-transition: all ease-in-out 500ms;
    transition: all ease-in-out 500ms;
}

.best-sellers-carousel .featured-product-group {
    position: absolute;
    width: 100%;
    bottom: -118px;
}

.custom-carousel button {
    background-size: 50px !important;
    background-position: center;
    width: 50px;
    height: 50px;
    top: 35%;
}

.custom-carousel .slick-next {
    background: url('../../images/icon-arrow-right-blue.png');
    right: 0;
}

.custom-carousel .slick-prev {
    background: url('../../images/icon-arrow-left-blue.png');
    left: 0;
}

.custom-carousel .slick-dots {
    bottom: -50px;
    margin-left: 0;
}

    .custom-carousel .slick-dots .slick-active button {
        background: #046B99;
    }

    .custom-carousel .slick-dots button {
        height: 6px;
        width: 6px;
        border-radius: 50%;
        border: 2px solid #666666;
    }

        .custom-carousel .slick-dots button:before {
            display: none;
        }

.home-ad-space img {
    border: 3px solid #046B99;
    background: radial-gradient(#cfe5f5 15%, transparent 16%) 0 0, radial-gradient(#cfe5f5 15%, transparent 16%) 8px 8px;
    background-color: #ffffff;
    background-size: 16px 16px;
}

@media (max-width: 75rem) {
    .home-ad-space {
        padding: 0 2em;
    }
}

.step2-kids {
    margin: 0 auto;
    padding: 1em 0;
    text-align: center;
}

    .step2-kids.bordered {
        margin: 3em auto 2.5em;
        padding: 2em 0;
        border-top: 2px solid #666666;
        border-bottom: 2px solid #666666;
        text-align: center;
    }

    .step2-kids .copy {
        padding: 0 5%;
        margin-top: 0.8em;
    }

@media only screen and (max-width: 40em) {
    .step2-kids .copy {
        margin-bottom: 2em;
    }
}

.step2-kids a {
    text-transform: uppercase;
}

.step2-kids #insta-carousel button {
    width: 16px;
    height: 18px;
}

@media only screen and (max-width: 40em) {
    .step2-kids #insta-carousel .slick-prev {
        left: -16px;
    }
}

@media only screen and (max-width: 40em) {
    .step2-kids #insta-carousel .slick-next {
        right: -16px;
    }
}

.step2-kids #insta-carousel .slick-slide {
    position: relative;
}

@media (min-width: 768px) {
    .step2-kids #insta-carousel .slick-slide:hover .share {
        opacity: 0.9;
        background: #fff;
    }
}

.step2-kids #insta-carousel .share {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    padding-top: 24%;
    -webkit-transition: all ease-in-out 400ms;
    -moz-transition: all ease-in-out 400ms;
    transition: all ease-in-out 400ms;
}

    .step2-kids #insta-carousel .share.is-visible {
        opacity: 0.9;
        background-color: #fff;
    }

    .step2-kids #insta-carousel .share span {
        display: block;
    }

    .step2-kids #insta-carousel .share .posted-by, .step2-kids #insta-carousel .share .user {
        text-transform: uppercase;
    }

    .step2-kids #insta-carousel .share .posted-by {
        margin-bottom: 0.4em;
    }

    .step2-kids #insta-carousel .share .shop-share {
        text-decoration: underline;
        color: #333333;
    }

    .step2-kids #insta-carousel .share .user {
        font-weight: bold;
        margin-bottom: 2em;
    }

@media only screen and (max-width: 40em) {
    .step2-kids #insta-carousel .share {
        padding-top: 10%;
    }

        .step2-kids #insta-carousel .share span, .step2-kids #insta-carousel .share .shop-share {
            font-size: 0.75em;
        }

        .step2-kids #insta-carousel .share .user {
            margin-bottom: 1em;
        }
}

.step2-kids #insta-carousel .button-share {
    display: none;
    color: #666666;
    position: absolute;
}

@media (max-width: 768px) {
    .step2-kids #insta-carousel .button-share {
        display: block;
        text-align: center;
        line-height: 1.6em;
        font-size: 1.3em;
        width: 30px;
        height: 30px;
        background: white;
        bottom: 0;
        left: 0;
    }
}

@media (max-width: 480px) {
    .step2-kids #insta-carousel .button-share {
        line-height: 1.55em;
        font-size: 1em;
        width: 20px;
        height: 20px;
    }
}

.split {
    margin-bottom: 3em;
}

    .split .split-icon {
        max-width: 70px;
        margin-bottom: 0.5em;
    }

    .split .center-text-group:first-child {
        border-right: 2px solid #e6e7e8;
    }

@media only screen and (max-width: 40em) {
    .split .center-text-group:first-child {
        border-bottom: 2px solid #e6e7e8;
        margin-bottom: 2.5em;
        padding-bottom: 2em;
        border-right: 0;
    }
}

.hero-group {
    margin: 0 auto 2.5em;
    max-width: 1600px;
}

.hero-copy {
    max-width: 350px;
    margin-left: 5%;
    margin-top: 10%;
}

@media only screen and (max-width: 40em) {
    .hero-copy {
        max-width: 200px;
        margin-left: 0;
        margin-top: 7%;
    }

        .hero-copy h2 {
            font-size: 1.2em;
        }

        .hero-copy .center-text-link {
            font-size: 1em;
        }

        .hero-copy .center-text-body {
            font-size: 0.8em;
            margin-bottom: 0.8em;
        }
}

.hero-copy h2, .hero-copy a {
    text-transform: uppercase;
    color: #4c9d2f;
}

.hero-strip {
    position: relative;
    background: #e6e7e8;
    padding: 1.5em 0.75em;
}

@media only screen and (max-width: 40em) {
    .hero-strip {
        text-align: center;
    }
}

.hero-strip * {
    margin-bottom: 0 !important;
}

.hero-strip .social-group {
    margin-top: 0.5em;
    position: relative;
}

@media only screen and (min-width:64.063em) {
    .hero-strip .social {
        text-align: right;
        margin-right: 1.5em;
    }
}

.hero-strip .social a {
    color: #046B99;
}

.hero-strip p {
    text-transform: uppercase;
    font-size: 14px;
}

@media only screen and (min-width:40.063em) {
    .hero-strip p {
        float: left;
    }
}

@media only screen and (max-width: 40em) {
    .hero-strip .newsletter-signup {
        margin-top: 1.2em;
        border-top: 2px solid #666666;
    }
}

.hero-strip .newsletter-signup label {
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 0.5em;
}

@media only screen and (max-width: 40em) {
    .hero-strip .newsletter-signup label {
        margin-bottom: 0.8em !important;
        margin-top: 1.3em;
    }
}

.hero-strip .newsletter-signup .email-input {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.hero-strip .button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.product-intro-group {
    margin-bottom: 2em;
}

    .product-intro-group .product-image-large {
        max-width: 550px;
        max-height: 550px;
        overflow: hidden;
    }

    .product-intro-group .product-image-thumb {
        max-width: 550px;
        max-height: 135px;
        overflow: hidden;
    }

        .product-intro-group .product-image-thumb .slick-prev, .product-intro-group .product-image-thumb .slick-next {
            background-color: #fff !important;
            border: 5px solid #fff;
            width: 30px;
            height: 30px;
            margin-top: -15px;
        }

        .product-intro-group .product-image-thumb .slick-prev {
            left: -1em;
        }

        .product-intro-group .product-image-thumb .slick-next {
            right: -1em;
        }

    .product-intro-group h1 {
        text-transform: uppercase;
        font-size: 1.8em;
        border-bottom: 2px solid #333;
        padding-bottom: 0.3em;
        margin-top: 0;
        margin-bottom: 0.7em;
    }

    .product-intro-group .shipping {
        color: #666666;
        font-size: 0.75em;
        margin-bottom: 0.5em;
    }

    .product-intro-group .rating {
        margin-bottom: 0.8em;
    }

    .product-intro-group .rating-link {
        color: #666666;
    }

    .product-intro-group .star-ratings-css {
        float: left;
        margin-right: 0.5em;
    }

    .product-intro-group .ratings-total {
        font-size: 0.7em;
    }

    .product-intro-group .award-copy p {
        font-size: 0.9em;
    }

    .product-intro-group .award-copy .text-green {
        text-transform: uppercase;
        margin-bottom: 0;
        font-size: 0.8em;
    }

    .product-intro-group .award-copy .award-body-copy {
        margin-bottom: 0.5em;
    }

    .product-intro-group .read-more {
        color: #333333;
        float: right;
        text-transform: uppercase;
        text-decoration: underline;
        margin-bottom: 1em;
        font-size: 0.9em;
    }

    .product-intro-group .add-cart-group {
        padding: 1.2em;
        border: 1px solid #cccccc;
        border-radius: 10px;
        background: #f6f7f7;
    }

@media only screen and (max-width: 40em) {
    .product-intro-group .add-cart-group {
        padding-bottom: 1.2em;
    }
}

.product-intro-group .add-cart-group .button-wrap {
    text-align: center;
}

.product-intro-group .add-cart-group .button {
    background: #B40814;
    margin-bottom: 0;
    text-transform: uppercase;
    padding: 1em 3em;
}

.product-intro-group .add-cart-group .hr {
    border-bottom: 2px solid #666666;
    height: 1em;
    margin-bottom: 1em;
}

.product-intro-group .add-cart-group .social {
    margin-top: -0.2em;
    float: right;
}

@media (max-width: 1115px) {
    .product-intro-group .add-cart-group .social {
        float: left;
        margin-left: 0;
    }
}

@media only screen and (max-width: 40em) {
    .product-intro-group .add-cart-group .social {
        float: right;
    }
}

.product-intro-group .add-cart-group .social a {
    color: #333333;
    font-size: 0.9em;
}

.product-intro-group .add-cart-group p {
    margin: 0;
    padding: 0;
}

.product-intro-group .add-cart-group .social {
    margin-bottom: 0;
}

.product-intro-group .add-cart-group .share-this, .product-intro-group .add-cart-group .find-retailer {
    text-transform: uppercase;
    font-size: 0.9em;
}

.product-intro-group .add-cart-group .share-this {
    float: left;
}

@media only screen and (max-width: 40em) {
    .product-intro-group .add-cart-group .retailer-col {
        text-align: center;
    }

        .product-intro-group .add-cart-group .retailer-col a {
            float: none;
        }
}

.product-intro-group .add-cart-group .find-retailer {
    float: right;
    color: #333333;
}

.product-intro-group .add-cart-copy {
    margin-bottom: 0;
}

.product-also-like {
    padding-bottom: 1.5em;
}

    .product-also-like .product-list-item-container {
        border: none;
        min-height: 290px;
    }

.product-details-copy img {
    margin-bottom: 1.5em;
}

.product-details-list li {
    text-align: center;
}

    .product-details-list li img {
        margin-bottom: 0.5em;
    }

    .product-details-list li p {
        font-size: 0.8em;
    }

.product {
    float: left;
}

#details {
    margin-top: 2em;
}

.product-detail-nav {
    -webkit-transition: margin-top 0.3s;
    -moz-transition: margin-top 0.3s;
    transition: margin-top 0.3s;
}

    .product-detail-nav.is-up #jumpnav:before {
        right: -1px;
    }

    .product-detail-nav #jumpnav:before {
        content: "";
        display: block;
        height: 100%;
        width: 2px;
        background: #fff;
        position: absolute;
        right: -2px;
    }


@media (max-width: 1116px) {
    .product-detail-nav {
        display: none;
    }
}

.product-detail-nav:before, .product-detail-nav:after {
    content: " ";
    display: table;
}

.product-detail-nav:after {
    clear: both;
}

.product-detail-nav.stick {
    position: fixed;
    top: 0;
    z-index: 5;
    margin-top: 12px;
    width: 75rem;
}

    .product-detail-nav.stick.is-up {
        margin-top: 150px;
    }

    .product-detail-nav.stick.is-down {
        margin-top: 120px;
    }

.product-detail-nav ul {
    margin: 0;
    list-style-type: none;
    text-align: center;
    position: relative;
    float: left;
    width: 100%;
}

    .product-detail-nav ul li {
        display: block;
        width: 20%;
        float: left;
    }

        .product-detail-nav ul li a {
            border: 3px solid #046B99;
            background-color: #046B99;
            text-align: center;
            text-transform: uppercase;
            font-size: 0.85em;
            color: #fff;
            display: block;
            margin: 0 1%;
            padding: 7px 0;
            color: #fff;
        }

            .product-detail-nav ul li a.nav-active {
                color: #046B99;
                background: #fff;
                border: 3px solid #046B99;
                position: relative;
            }

                .product-detail-nav ul li a.nav-active:before {
                    content: "";
                    display: block;
                    position: absolute;
                    background: url('../../images/nav-detail-arrowdown.png') no-repeat;
                    background-size: 20px;
                    width: 20px;
                    height: 20px;
                    left: 50%;
                    margin-left: -10px;
                    bottom: -20px;
                }

/* nav-anchor-right not used anymore */

@media only screen and (max-width: 40em) {
    .product-detail-nav {
        position: fixed;
        top: 0;
        z-index: 5;
        margin-top: 0;
        width: 75rem;
    }
}

.product-detail-accordion {
    margin: 0;
    margin-bottom: 1.5em;
    list-style-type: none;
}

@media (max-width: 1116px) {
    .product-detail-accordion .cat-separator {
        display: none;
    }
}

.product-detail-accordion__trigger {
    margin: 0 0 0.2em 0;
    display: none;
    padding: 1em;
    background: #046B99;
    color: #ccc !important;
    text-transform: uppercase;
    border: 4px solid #046B99;
}

@media (max-width: 1116px) {
    .product-detail-accordion__trigger {
        display: block;
    }
}

.product-detail-accordion__trigger .fa {
    float: right;
    line-height: 1.2em;
    font-size: 1.5em;
}

.product-detail-accordion__trigger.active {
    background: #fff;
    border: 4px solid #046B99;
    color: #046B99;
}

    .product-detail-accordion__trigger.active:hover {
        color: #046B99;
    }

.product-detail-accordion__trigger:hover {
    color: #fff;
}

.product-detail-accordion__copy {
    margin-top: 1.5em;
    display: block;
}

@media (max-width: 1116px) {
    .product-detail-accordion__copy {
        display: none;
    }
}

.product-detail-accordion__copy.show {
    display: block;
}

.assembly-section .footnote-group p {
    font-size: 0.85em;
}

.category-hero-img {
    margin-bottom: 2em;
}

@media only screen and (max-width: 40em) {
    .cart .cart-item__remove {
        padding: 0.5em 0;
    }
}

.cart .cart-item__total-group {
    width: 85%;
    margin: 0 auto;
}

    .cart .cart-item__total-group:before, .cart .cart-item__total-group:after {
        content: " ";
        display: table;
    }

    .cart .cart-item__total-group:after {
        clear: both;
    }

.checkout-group {
    margin-bottom: 3em;
}

    .checkout-group p {
        font-size: 14px;
        line-height: 1.5em;
        margin-bottom: 1em;
    }

@media only screen and (min-width:40.063em) {
    .checkout-group__order {
        padding-left: 0;
    }
}

.checkout-group__order .checkout-group__order__section {
    border-bottom: 1px solid;
    margin-bottom: 1em;
}

.checkout-group__order .checkout-panel {
    background: #f0f0f0;
    padding: 15px;
    border: 1px solid #666666;
    border-left: none;
    border-right: none;
}

@media only screen and (min-width:40.063em) {
    .checkout-group__order .checkout-panel {
        padding: 23px;
        margin-top: -1px;
        border-left: 1px solid #666666;
        border-right: 1px solid #666666;
    }
}

@media only screen and (max-width: 40em) {
    .checkout-group__order {
        padding: 0;
    }
}

.checkout-group__order .checkout-code-label {
    font-size: 13px;
    margin-bottom: 0;
}

@media only screen and (min-width:40.063em) {
    .checkout-group__order .checkout-code {
        padding: 0;
    }
}

/*
@media only screen and (max-width: 40em) {
    .checkout-group__order .checkout-button {
        padding-left: 0;
    }
}
*/

.checkout-button {
    padding-left: 0;
}

.checkout-group__order .item .columns:last-child p {
    text-align: right;
}

.checkout-group__order .checkout-buttons {
    text-align: center;
}

    .checkout-group__order .checkout-buttons .or {
        color: #666;
        margin: 0.8em 0;
    }

    .checkout-group__order .checkout-buttons .button {
        display: inline-block;
        padding: 0.8em 65px;
        margin-bottom: 0;
    }

    .checkout-group__order .checkout-buttons .button-paypal {
        padding: 0.8em 15px;
    }

.sub-text {
    color: #666666;
    font-size: 11px;
}

.checkout-group__details {
    padding-top: 1em;
}

    .checkout-group__details .gift-text {
        font-weight: bold;
        margin-bottom: 0;
    }

    .checkout-group__details .shipping {
        margin-bottom: 0;
        font-weight: bold;
    }

    .checkout-group__details .calculate {
        margin-bottom: 0;
    }

.product-also-like .product-title {
    border-bottom: 1px solid #e9e9eb;
    text-transform: uppercase;
    color: #333333;
}

.product-also-like .strike {
    font-size: 0.8em;
}

.delivery-options {
    display: block;
    margin: 1em 0;
}

.delivery-option {
    margin-bottom: 0.4em;
}

@media only screen and (max-width: 40em) {
    .delivery-option {
        padding: 1em;
        border: 1px solid #989898;
        border-radius: 4px;
        margin-bottom: 0.5em;
        background: linear-gradient(to bottom, #fff, #efefef);
    }

        .delivery-option:hover {
            cursor: pointer;
        }
}

.delivery-option input, .delivery-term input {
    display: inline;
    margin-bottom: 0;
    margin-top: 0.3em;
    vertical-align: top;
}

.delivery-option label, .delivery-term label {
    width: 85%;
}

.delivery-term {
    padding: 1em;
    background: #f0f0f0;
    margin-bottom: 1em;
}

    .delivery-term input {
        margin-bottom: 0;
    }

    .delivery-term label {
        font-size: 11px;
    }

.payment .input-label-group label {
    font-size: 14px;
    margin-bottom: 0.8em;
}

.payment .promo-code-applied {
    margin-bottom: 0;
}

    .payment .promo-code-applied a {
        display: inline-block;
        margin-left: 3em;
        text-decoration: underline;
    }

    .payment .promo-code-applied + p {
        margin-bottom: 1em !important;
    }

.payment .payment-credit {
    margin-bottom: 0.5em;
}

.payment .payment-secure-copy i {
    display: inline-block;
    padding-right: 0.5em;
}

.payment .payment-secure-copy img {
    max-width: 170px;
}

.payment .payment-billing-section {
    margin-top: 1.5em;
}

.payment .toggle-radio-content > p {
    margin-bottom: 0.5em;
}

.payment .create-account-group {
    margin-bottom: 1em;
}

.receipt .checkout-bread-crumbs {
    border-bottom: 0;
}

.receipt h1 {
    margin-top: 0;
    text-transform: none;
}

.receipt .receipt-summary-header {
    border-top: 1px solid #999;
    padding-top: 1em;
    text-transform: uppercase;
}

    .receipt .receipt-summary-header:before, .receipt .receipt-summary-header:after {
        content: " ";
        display: table;
    }

    .receipt .receipt-summary-header:after {
        clear: both;
    }

    .receipt .receipt-summary-header h2 {
        font-size: 1.3em;
        margin-bottom: 0.5em;
    }

    .receipt .receipt-summary-header .print {
        float: right;
        font-size: 0.6em;
        margin-top: 8px;
    }

@media only screen and (min-width:40.063em) {
    .receipt .top-widget-group {
        margin-bottom: 1em;
    }
}

@media only screen and (max-width: 40em) {
    .receipt .review-table p[class^='text-'] {
        text-align: left !important;
    }

    .receipt .review-table .text-right p {
        text-align: right !important;
    }
}

@media only screen and (min-width:40.063em) {
    .receipt .review-table {
        margin-bottom: 1.8em;
    }

        .receipt .review-table .co-widget__body p:last-child {
            margin-bottom: 1em;
        }
}

.receipt .review-table .co-widget__body {
    text-transform: uppercase;
}

    .receipt .review-table .co-widget__body .co-widget__body-section-top .row:last-child p, .receipt .review-table .co-widget__body .co-widget__body-section-bottom .row:last-child p {
        margin-bottom: 0;
    }

@media only screen and (max-width: 40em) {
    .receipt .review-table .co-widget__body .co-widget__body-section-top .row {
        margin-bottom: 1.2em;
    }

    .receipt .review-table .co-widget__body .co-widget__body-section-bottom .row {
        margin-bottom: 0.5em;
    }
}

@media only screen and (max-width: 40em) {
    .receipt .assistance {
        margin: 1em 0;
    }
}

.receipt .advertisement {
    margin-bottom: 1em;
}

@media only screen and (min-width:40.063em) {
    .receipt .advertisement {
        margin-bottom: 2em;
    }
}

.receipt .letus-know {
    padding: 1em;
    background: #f0f0f0;
    border: 1px solid #666666;
    margin-bottom: 2em;
}

    .receipt .letus-know .intro-copy {
        border-bottom: 1px solid #999;
        margin-bottom: 1.5em;
    }

    .receipt .letus-know h3 {
        text-transform: uppercase;
        font-size: 1em;
        font-weight: bold;
    }

    .receipt .letus-know textarea {
        color: #999999;
        border-radius: 4px;
        margin-top: 1em;
        margin-bottom: 1.2em;
    }

@media only screen and (max-width: 40em) {
    .receipt .letus-know .luk-col-group {
        border-bottom: 1px solid #999;
        margin-bottom: 1.2em;
    }
}

.receipt .letus-know .luk-media {
    margin-bottom: 1em;
}

.receipt .letus-know .luk-header {
    padding-left: 0;
}

    .receipt .letus-know .luk-header p {
        font-weight: bold;
    }

.receipt .letus-know .button-container {
    text-align: right;
}



@media print {
    #footer, .nav-desktop-bottom-half, #nav-mobile .off-canvas-wrap .inner-wrap .tab-bar, .left-off-canvas-menu, .receipt .order-copy, .receipt .receipt-summary-header h2 a, .receipt .letus-know, .receipt .product-also-like, .receipt .cat-separator, .receipt .advertisement, .receipt .assistance, .receipt h1, .receipt .checkout-bread-crumbs {
        display: none !important;
    }

    .receipt .price-th, .receipt .qty-th, .receipt .total-th {
        display: none;
    }

    .receipt .text-center, .receipt .subtotal-copy {
        text-align: left !important;
    }

    .receipt .row-space {
        margin-bottom: 1em;
    }

    .receipt h1 {
        font-size: 12px;
    }

    .receipt h2 {
        font-size: 13px !important;
    }

    .receipt p, .receipt a {
        font-size: 11px;
    }

    .checkout.receipt .co-widget__body .co-widget__body-section-bottom p {
        margin-bottom: 0 !important;
    }

    .co-widget__footer .text-right {
        float: none;
        text-align: left !important;
    }

    .receipt .logo-for-print {
        position: absolute;
        right: 0;
        display: block !important;
        width: 80px;
    }

    .col-md-4 {
        width: 33.333%;
    }
}

pre, textarea {
    overflow: auto;
}

body, legend, td, th {
    padding: 0;
}

.alert-box, body, sub, sup {
    position: relative;
}

.accordion:after, .clearfix:after, .row .row.collapse:after, .row .row:after, .row:after, [class*=block-grid-]:after {
    clear: both;
}

.alert-box, .button, body, button, label {
    font-weight: 400;
}

.invisible {
    visibility: hidden;
}

.icon-bar .item.disabled, .tooltip > .nub {
    pointer-events: none;
}

.left-off-canvas-menu, .left-submenu, .right-off-canvas-menu, .right-submenu, hr {
    box-sizing: content-box;
}
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */



.checkout .co-widget {
    border: 1px solid #666;
    margin-bottom: 1em;
}

.checkout .co-widget__footer, .checkout .co-widget__header {
    background: #f0f0f0;
    text-transform: uppercase;
    padding: .8em 1em;
}

    .checkout .co-widget__footer p, .checkout .co-widget__header p {
        margin: 0;
    }

.checkout .co-widget__header {
    border-bottom: 1px solid #666;
}

.checkout .co-widget__title {
    float: left;
    font-weight: 700;
}

.checkout .co-widget__edit {
    font-size: 12px;
    float: right;
    text-transform: none;
    margin-top: .2em;
}

.checkout form .columns:last-child, .header-checkout__logo-group {
    float: left;
}

.checkout .co-widget__body {
    background: #fff;
    padding: 1em;
}

    .checkout .co-widget__body p {
        margin-bottom: 1em;
    }

        .checkout .co-widget__body p:last-child {
            margin-bottom: 0;
        }

    .checkout .co-widget__body small {
        color: #666;
    }

@media only screen and (max-width:40em) {
    .checkout .co-widget__body .show-for-small {
        font-weight: 700;
        display: inline !important;
    }
}

.checkout .co-widget__body .co-widget__body-section-bottom {
    border-top: 1px solid #ccc;
    padding-top: 1em;
    margin-top: 1em;
}

    .checkout .co-widget__body .co-widget__body-section-bottom p {
        margin-bottom: .5em !important;
    }

.checkout .co-widget__body__cart-list .row {
    margin-bottom: 1.6em;
}

    .checkout .co-widget__body__cart-list .row:last-child {
        margin-bottom: 0;
    }

.checkout .co-widget__body__cart-list .item-title {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: .5em;
}

.checkout .co-widget__body__cart-list p {
    margin-bottom: .1em;
    font-size: 12px !important;
}

.checkout .co-widget__footer {
    border-top: 1px solid #666;
}

    .checkout .co-widget__footer p strong {
        font-size: 18px;
    }

    .checkout .co-widget__footer .sub-text {
        font-size: 12px;
        font-weight: 400;
        text-transform: none;
        margin-top: .6em;
        padding-top: .7em;
        border-top: 1px solid #9f9f9f;
    }

.checkout .checkout-bread-crumbs {
    border-bottom: 1px solid #e4e4e4;
    padding: 1.5em 0 0;
}

    .checkout .checkout-bread-crumbs ul {
        margin-left: 0;
        margin-bottom: .6rem;
        list-style: none;
    }

        .checkout .checkout-bread-crumbs ul li {
            font-size: .8em;
            color: #999;
            display: inline-block;
            margin-right: .8em;
            text-transform: uppercase;
            font-weight: 700;
            padding-left: 2em;
            position: relative;
        }

            .checkout .checkout-bread-crumbs ul li:before {
                position: absolute;
                display: inline-block;
                width: 21px;
                left: 0;
                border-radius: 50%;
                height: 21px;
                background: #999;
                color: #fff;
                text-align: center;
            }

@media screen and (max-width:768px) {
    .checkout .checkout-bread-crumbs ul li {
        display: block;
        margin-bottom: .5em;
    }
}

.checkout .button, .checkout input, .checkout select {
    border-radius: 4px;
}

.checkout .checkout-bread-crumbs ul li:nth-child(1):before {
    content: '1';
}

.checkout .checkout-bread-crumbs ul li:nth-child(2):before {
    content: '2';
}

.checkout .checkout-bread-crumbs ul li:nth-child(3):before {
    content: '3';
}

.checkout .checkout-bread-crumbs ul li:nth-child(4):before {
    content: '4';
}

.checkout .checkout-bread-crumbs ul li.active {
    color: #333;
}

    .checkout .checkout-bread-crumbs ul li.active:before {
        background: #333;
    }

.checkout .section-checkout-steps {
    border-bottom: 1px solid #999;
    padding: 1.4em 0;
}

    .checkout .section-checkout-steps .button:last-child, .checkout .section-checkout-steps p:last-child {
        margin-bottom: 0;
    }

    .checkout .section-checkout-steps h2 {
        padding: 0 0 .6em;
        margin: 0;
    }

@media screen and (max-width:768px) {
    .checkout .section-checkout-steps h2 {
        font-size: 1.2em;
    }
}

.checkout .section-checkout-steps.collapsed h2 {
    padding-bottom: 0;
}

.checkout .section-checkout-steps:last-child {
    margin-bottom: 3em;
}

.checkout h2 {
    font-size: 1.5em;
    margin-bottom: .8em;
}

.checkout p {
    font-size: 14px;
}

    .checkout p.text-small {
        font-size: 11px;
    }

.checkout label:hover {
    cursor: initial;
}

.checkout label span {
    color: #B40814;
}

.checkout .has-tip {
    color: #046B99;
}

    .checkout .has-tip:hover {
        cursor: help;
    }

.checkout .button {
    font-size: .9em;
}

.checkout form label.error {
    color: #333;
}

.checkout form .error {
    color: #B40814;
    background: 0 0;
    font-style: normal;
    padding-left: 0;
}

    .checkout form .error input {
        border-color: #B40814;
    }

.checkout small {
    font-size: 11px;
}

.checkout .sub-header {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: .54em;
}

.checkout .note {
    background: #ffc;
    padding: 1em;
    margin-bottom: 1em;
}

    .checkout .note p {
        font-size: 11px;
        margin-bottom: .5em;
    }

.checkout .strike {
    color: #999;
    text-decoration: line-through;
}

.checkout .text-medium {
    font-size: 0.875em;
}

.checkout .text-large {
    font-size: 1.3em;
    line-height: 1.5em;
    font-weight: 700;
}

.checkout .prod-status--in {
    color: #060;
    font-size: .9em;
}

.checkout .prod-status--limited {
    color: #B40814;
    font-size: .9em;
}

.checkout .edit-text {
    font-size: 12px;
}

.checkout .faded-content h2 {
    color: #333;
}

    .checkout .faded-content h2 .edit-text a {
        color: #046B99;
    }

.checkout .faded-content * {
    color: #999;
}

.checkout .faded-content-group, .checkout .review-content-group {
    margin-bottom: 1em;
}

    .checkout .faded-content-group p, .checkout .faded-content-group:last-child, .checkout .review-content-group p, .checkout .review-content-group:last-child {
        margin-bottom: 0;
    }

.checkout .assistance a {
    display: inline-block;
    padding: 0 0.6em 0 0em;
}

.checkout .input-label-group input {
    display: inline;
    margin-bottom: 0;
    margin-top: .3em;
    vertical-align: top;
}

.checkout .input-label-group label {
    width: 85%;
    font-size: 11px;
}

.checkout .input-label-group ul {
    font-size: 12px;
    margin-left: 3em;
}

.checkout .has-under-input .button, .checkout .has-under-input input {
    margin-bottom: .3em;
}

.checkout .has-under-input + p {
    margin-bottom: 1em !important;
}

.checkout .toggle-content {
    width: 95%;
    margin-left: 5%;
}

    .checkout .toggle-content li {
        font-size: 11px;
    }

.checkout .button-paypal {
    background: #fff;
    border: 1px solid #ccc;
    color: #555;
    box-shadow: inset 0 1px 0 #e4e4e4;
    font-size: 12px;
    padding: .8em 15px;
    margin-bottom: 0;
}

    .checkout .button-paypal:hover {
        color: #222;
        transition: color 400ms ease-out 0s;
    }

    .checkout .button-paypal img {
        max-width: 90px;
        margin-bottom: -3px;
        padding-left: 5px;
    }

@media (max-width: 1150px) {
    .checkout .paypal-text {
        display: none;
    }
}

.checkout .paypal-stroke {
    max-width: 90px;
}

.checkout .cc-list {
    max-width: 150px;
}

.checkout .card-img {
    max-width: 50px;
    margin-right: .8em;
}

.checkout .paypal-img {
    max-width: 150px;
    margin-right: .8em;
}

.header-checkout {
    border-top: 5px solid #046B99;
}

.header-checkout__container {
    border-bottom: 1px solid #ddd;
    padding: 0.625em;
}

    .header-checkout__container:after, .header-checkout__container:before {
        content: " ";
        display: table;
    }

.header-checkout__logo-group img {
    max-width: 55px;
}

.header-checkout__logo-group h1 {
    display: inline;
    vertical-align: middle;
    font-size: 1.2em;
    margin-left: .3em;
}

.header-checkout__button {
    float: right;
    margin-top: .8em;
}

@media only screen and (min-width:40.063em) {
    .header-checkout__logo-group img {
        max-width: 70px;
    }

    .header-checkout__logo-group h1 {
        font-size: 2em;
    }

    .header-checkout__button {
        margin-top: 1.6em;
    }
}

.header-checkout__button .button {
    background: 0 0;
    margin-bottom: 0;
    color: #046B99;
    border: 2px solid #046B99;
    padding: .4em 1em;
}

.sub-header-user-info {
    text-align: right;
    margin-top: 1em;
    font-size: .85em;
}

    .sub-header-user-info a {
        display: inline-block;
        margin-right: .5em;
    }

.signin-main {
    position: relative;
    margin: 1.3em 0 12em;
}

.signin-border {
    height: 2px;
    background: #ccc;
    margin: 1em 15px;
    border: none;
}

.signin__col:first-child {
    padding-bottom: 1em;
}

.signin__col:last-child {
    padding-top: 1em;
}

@media only screen and (min-width:40.063em) {
    .signin-border {
        position: absolute;
        height: 100%;
        width: 2px;
        left: 50%;
        transform: translateX(-50%);
    }

    .signin__col:first-child {
        padding-bottom: 0;
        padding-right: 0;
    }

    .signin__col:last-child {
        padding-top: 0;
        padding-left: 0;
    }
}

.signin__col.returning:after, .signin__col.returning:before {
    content: " ";
    display: table;
}

.signin__col.returning .forgot {
    display: block;
    float: right;
    font-size: .85em;
}

.signin__col.returning .button {
    float: left;
}

/* Cart Header */
@media (min-width:768px) {
    .cart__header {
        margin-top: 3em;
    }
}

.cart__header h1 {
    text-transform: none;
    margin-top: 0;
}

.cart__header p {
    font-size: .9em;
}

.cart__header-right {
    text-align: right !important;
}

@media (max-width: 767px) {
    .cart__header-right p {
        margin-top: 8px;
        margin-bottom: 5px;
        font-size: 0.7em;
    }
}

.cart .cart__table-header:before, .cart .cart__table-header:after {
    content: " ";
    display: table;
}

.cart .cart__table-header:after {
    clear: both;
}


@media only screen and (max-width:641px) {
    .cart__header-right p {
        display: none;
    }

    .cart__header-right {
        text-align: left !important;
    }

        .cart__header-right .button {
            float: none;
            text-align: left;
            display: inline-block;
            /* padding: 0; */
            width: 100%;
            text-align: center;
        }

    .cart__header-right {
        border-bottom: 1px solid #000;
    }
}

.cart__header-right img {
    max-width: 150px;
    margin-bottom: .5em;
}

.cart .cart__table-header {
    text-align: center;
    background: #e6e7e8;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
    padding: .5em 0;
    display: none;
}

    .cart .cart__table-header:after, .cart .cart__table-header:before {
        content: " ";
        display: table;
    }

/* Cart */

.cart .cart__col {
    float: none;
    font-size: 14px;
}

@media only screen and (min-width:44em) {
    .cart .cart__table-header {
        display: block;
    }

    .cart .cart__col {
        float: left;
        font-size: .85em;
        width: 16.66666%;
        text-align: center;
    }

        .cart .cart__col:nth-child(2) {
            width: 14%;
        }

        .cart .cart__col:nth-child(3) {
            width: 18%;
        }

        .cart .cart__col:first-child {
            width: 45%;
        }

        .cart .cart__col:last-child {
            width: 23%;
        }
}

@media (min-width:980px) {
    .cart .cart__col:first-child {
        width: 48%;
    }

    .cart .cart__col:last-child {
        width: 20%;
    }
}
/* *** New Cart *** */

#sli_cart_trending {
    padding: 0 1em;
}

/* Show & Hide for Cart */
@media only screen and (max-width: 43.999em) {
    .cart-hide-for-small {
        display: none;
    }
}

@media only screen and (min-width:44em) {
    .cart-show-for-small {
        display: none;
    }
}

.cart .cart-item__remove-mobile {
    display: inline;
    padding: 0 0 0 1.2em;
    font-size: 0.9em;
}

/* Cart Row */
.cart .cart-items__row {
    padding: 1.5em 0;
    border-bottom: 1px solid #ccc;
}

    .cart .cart-items__row:after, .cart .cart-items__row:before {
        content: " ";
        display: table;
    }

.cart .cart-item__title-row {
    text-align: left;
}

    .cart .cart-item__title-row:after, .cart .cart-item__title-row:before {
        content: " ";
        display: table;
    }

.cart .cart-items__row:before, .cart .cart-items__row:after {
    content: " ";
    display: table;
}

.cart .cart-items__row:after {
    clear: both;
}

.cart .cart-item__title-row:before, .cart .cart-item__title-row:after {
    content: " ";
    display: table;
}


.cart .cart-item__title-row .cart-item__img {
    float: left;
    width: 25%;
    margin-right: 4%;
}

.cart .cart-item__title-row .cart-item__title-group {
    float: left;
    width: 71%;
}

    .cart .cart-item__title-row .cart-item__title-group p {
        margin-bottom: 0;
        font-size: .9em;
    }

    .cart .cart-item__title-row .cart-item__title-group .cart-item__title {
        display: block;
        text-transform: uppercase;
        font-size: 1em;
        font-weight: bold;
    }

.cart .cart-items .cart__col:nth-child(n+2):after, .cart .cart-items .cart__col:nth-child(n+2):before {
    content: " ";
    display: table;
}

.cart .cart-items .cart__col:nth-child(n+2):before {
    display: block;
    content: '';
    width: 29%;
    float: left;
    height: 10px;
}

.cart .cart-items .cart__col:nth-child(n+2):before, .cart .cart-items .cart__col:nth-child(n+2):after {
    content: " ";
    display: table;
}

.cart .cart-items .cart__col:nth-child(n+2):after {
    clear: both;
}

.cart .cart-items .cart__col:nth-child(n+2):before {
    display: block;
    content: '';
    width: 29%;
    float: left;
    height: 10px;
}


@media only screen and (max-width: 43.99em) {
    .cart .cart-item__title-row .cart-item__title-group .cart-item__prod-number strong, .cart .cart-item__title-row .cart-item__title-group .cart-item__prod-color strong {
        font-weight: normal;
    }
}

@media only screen and (min-width:44em) {
    .cart .cart-item__title-row .cart-item__title-group .cart-item__prod-status {
        margin: 1em 0;
    }

    .cart .cart-items .cart__col:nth-child(n+2):before {
        display: none;
    }
}

@media only screen and (max-width:43.99em) {
    .cart .cart-items:last-child .cart-items__row {
        border-bottom: none;
    }

    .cart .cart-item__title-row .cart-item__title-group .cart-item__prod-color strong, .cart .cart-item__title-row .cart-item__title-group .cart-item__prod-number strong {
        font-weight: 400;
    }

    .cart .cart__col__group {
        float: left;
        width: 71%;
    }
}

.cart .cart-item__price, .cart .cart-item__retail {
    font-weight: bold;
    font-size: 1em;
}

    .cart .cart-item__price .hidden-label, .cart .cart-item__retail .hidden-label {
        display: inline;
        color: #333;
        font-weight: 400;
    }

@media only screen and (min-width:44em) {
    .cart .cart-item__price .hidden-label, .cart .cart-item__retail .hidden-label, .cart-item-price .hidden-label {
        display: none;
    }
}

@media (max-width:490px) {
    .cart .cart-item__price {
        margin-top: 10px;
    }
}

@media only screen and (min-width:44em) {
    .cart .cart-item__price .hidden-label, .cart .cart-item__price .strike, .cart .cart-item__retail .hidden-label {
        display: none;
    }
}
/*Fix medium resolution between breakpoints. Not used */

@media only screen and (max-width:50em) and (min-width: 44em) {

    .cart__col button.link-button {
        margin-left: 0;
    }
}

@media only screen and (max-width:43.99em) {
    .cart .cart-item__retail {
        display: none;
    }
}

.cart .cart-item__total .hidden-label {
    font-weight: 400;
}

.cart .cart-item__total, .checkout-group__details .gift-text, .receipt .letus-know .luk-header p, .receipt .letus-know h3 {
    font-weight: 700;
}

.cart .cart-item__qty, .cart .cart-item__qty__update, .cart .cart-item__remove, .cart .cart-item__total {
    float: left;
    display: block;
}

.cart .cart-item__qty {
    width: 20%;
    margin-bottom: 0;
}

.cart .cart-item__total {
    width: 40%;
    font-size: 1.4em;
    margin-right: 5%;
    display: none;
}

    .cart .cart-item__total.total-mobile {
        font-size: 1em;
        margin-bottom: 10px;
        display: block;
    }

@media only screen and (max-width:43.99em) {

    .cart .cart-item__total.total-mobile {
        width: 80%;
    }

    .cart .cart-item__qty {
        width: 4em;
    }
}

@media only screen and (min-width:44em) {
    .cart .cart-item__qty {
        width: 38%;
        min-width: 3.2em;
    }

    .cart .cart-item__total.total-mobile {
        font-size: 1.4em;
        display: none;
    }

    .cart .cart-item__total {
        display: block;
    }
}

.cart .cart-item__qty__update, .cart .cart-item__remove {
    font-size: .9em;
    margin-top: .5em;
}

.cart .cart-item__qty__update {
    width: 50%;
    padding-left: 1em;
}

@media only screen and (min-width:44em) {
    .cart .cart-item__qty__update {
        width: 45%;
        padding-left: 0;
    }
}

.cart .cart-item__remove {
    width: 55%;
}

@media only screen and (max-width:43.99em) {
    .cart .cart-item__remove {
        padding: .5em 0;
    }
}

.cart .cart-item__total-group {
    width: 85%;
    margin: 0 auto;
}

    .cart .cart-item__total-group:after, .cart .cart-item__total-group:before {
        content: " ";
        display: table;
    }

.checkout-group {
    margin-bottom: 3em;
}

    .checkout-group p {
        font-size: 14px;
        line-height: 1.5em;
        margin-bottom: 1em;
    }

@media only screen and (min-width:44em) {
    .checkout-group__order {
        padding-left: 0;
    }
}

.checkout-group__order .checkout-group__order__section {
    border-bottom: 1px solid;
    margin-bottom: 1em;
}

/* Old */
.checkout-group__order .checkout-panel {
    background: #f0f0f0;
    padding: 15px;
    border: 1px solid #666;
    border-left: none;
    border-right: none;
}

@media only screen and (min-width: 641px) {
    .checkout-group__order .checkout-panel {
        padding: 23px;
        margin-top: -1px;
        border-left: 1px solid #666;
        border-right: 1px solid #666;
    }
}

.checkout-group__order .checkout-code-label {
    font-size: 13px;
    margin-bottom: 0;
}

@media only screen and (min-width:44em) {
    .checkout-group__order .checkout-code {
        padding: 0;
    }
}

@media only screen and (max-width:43.99em) {
    .checkout-group__order {
        padding: 0;
    }

        .checkout-group__order .checkout-button {
            padding-left: 0;
        }
}

.checkout-group__order .item .columns:last-child p {
    text-align: right;
}

.checkout-group__order .checkout-buttons {
    text-align: center;
    padding-top: 25px;
}

@media (max-width: 641px) {
    .checkout-group__order .checkout-buttons {
        padding-left: 15px;
        padding-right: 15px;
    }

        .checkout-group__order .checkout-buttons .button-paypal {
            /*margin-bottom: 20px !important;*/
            margin-top: 1.5em;
        }
}

.checkout-group__order .checkout-buttons .col-md-6 {
}

.checkout-group__order .checkout-buttons .or {
    color: #666;
    margin: .8em 0;
}


.sub-text {
    color: #666;
    font-size: 11px;
}

.checkout-group__details {
    padding-top: 1em;
}

    .checkout-group__details .shipping {
        margin-bottom: 0;
        font-weight: 700;
    }

    .checkout-group__details .calculate {
        margin-bottom: 0;
    }

/* New Cart and Checkout Panel */
.checkout .cart-checkout-panel {
    background: #f0f0f0;
    padding: 2px 6px 6px;
    border: 1px solid #656565;
}

    .checkout .cart-checkout-panel p {
        margin: 3px 0;
        font-size: 0.75em;
    }

    .checkout .cart-checkout-panel .checkout-code-label {
        font-size: 0.74em;
        margin-bottom: 0;
    }

.cart-table {
    background: #fff;
    padding-left: 0.5em;
}

.cart-notes .heading {
    font-weight: bold;
    color: #444;
}

.cart-notes p {
    margin: 0;
}

.assistance-panel p {
    margin: 0 0 0.75em 0;
}

h4.assistance {
    color: #444;
    font-size: 0.875em;
    margin: 0;
}

/* Product Details */
.product-also-like .product-title {
    border-bottom: 1px solid #e9e9eb;
    text-transform: uppercase;
    color: #333;
}

.product-also-like .strike {
    font-size: .8em;
}

.delivery-options {
    display: block;
    margin: 1em 0;
}

.delivery-option {
    margin-bottom: .4em;
}

@media only screen and (max-width:40em) {
    .delivery-option {
        padding: 1em;
        border: 1px solid #989898;
        border-radius: 4px;
        margin-bottom: .5em;
        background: linear-gradient(to bottom,#fff,#efefef);
    }

        .delivery-option:hover {
            cursor: pointer;
        }
}

.delivery-option input, .delivery-term input {
    display: inline;
    margin-bottom: 0;
    margin-top: .3em;
    vertical-align: top;
}

.delivery-option label, .delivery-term label {
    width: 85%;
}

.delivery-term {
    padding: 1em;
    background: #f0f0f0;
    margin-bottom: 1em;
}

    .delivery-term input {
        margin-bottom: 0;
    }

    .delivery-term label {
        font-size: 11px;
    }

.payment .input-label-group label {
    font-size: 14px;
    margin-bottom: .8em;
}

.payment .promo-code-applied {
    margin-bottom: 0;
}

    .payment .promo-code-applied a {
        display: inline-block;
        margin-left: 3em;
        text-decoration: underline;
    }

    .payment .promo-code-applied + p {
        margin-bottom: 1em !important;
    }

.payment .payment-credit, .payment .toggle-radio-content > p {
    margin-bottom: .5em;
}

.payment .payment-secure-copy i {
    display: inline-block;
    padding-right: .5em;
}

.payment .payment-secure-copy img {
    max-width: 170px;
}

.payment .payment-billing-section {
    margin-top: 1.5em;
}

.payment .create-account-group {
    margin-bottom: 1em;
}

.receipt h1 {
    margin-top: 0;
    text-transform: none;
}

.receipt .letus-know h3, .receipt .review-table .co-widget__body {
    text-transform: uppercase;
}

.receipt .receipt-summary-header {
    border-top: 1px solid #999;
    padding-top: 1em;
    text-transform: uppercase;
}

    .receipt .receipt-summary-header:after, .receipt .receipt-summary-header:before {
        content: " ";
        display: table;
    }

    .receipt .receipt-summary-header h2 {
        font-size: 1.3em;
        margin-bottom: .5em;
    }

    .receipt .receipt-summary-header .print {
        float: right;
        font-size: .6em;
        margin-top: 8px;
    }

@media only screen and (min-width:40.063em) {
    .receipt .top-widget-group {
        margin-bottom: 1em;
    }

    .receipt .review-table {
        margin-bottom: 1.8em;
    }

        .receipt .review-table .co-widget__body p:last-child {
            margin-bottom: 1em;
        }
}

.receipt .review-table .co-widget__body .co-widget__body-section-bottom .row:last-child p, .receipt .review-table .co-widget__body .co-widget__body-section-top .row:last-child p {
    margin-bottom: 0;
}

@media only screen and (max-width:40em) {
    .receipt .review-table p[class^=text-] {
        text-align: left !important;
    }

    .receipt .review-table .text-right p {
        text-align: right !important;
    }

    .receipt .review-table .co-widget__body .co-widget__body-section-top .row {
        margin-bottom: 1.2em;
    }

    .receipt .review-table .co-widget__body .co-widget__body-section-bottom .row {
        margin-bottom: .5em;
    }

    .receipt .assistance {
        margin: 1em 0;
    }
}

.receipt .advertisement {
    margin-bottom: 1em;
}

@media only screen and (min-width:40.063em) {
    .receipt .advertisement {
        margin-bottom: 2em;
    }
}

.receipt .letus-know {
    padding: 1em;
    background: #f0f0f0;
    border: 1px solid #666;
    margin-bottom: 2em;
}

    .receipt .letus-know .intro-copy {
        border-bottom: 1px solid #999;
        margin-bottom: 1.5em;
    }

    .receipt .letus-know h3 {
        font-size: 1em;
    }

    .receipt .letus-know textarea {
        color: #999;
        border-radius: 4px;
        margin-top: 1em;
        margin-bottom: 1.2em;
    }

@media only screen and (max-width:40em) {
    .receipt .letus-know .luk-col-group {
        border-bottom: 1px solid #999;
        margin-bottom: 1.2em;
    }
}

.receipt .letus-know .luk-media {
    margin-bottom: 1em;
}

.receipt .letus-know .luk-header {
    padding-left: 0;
}

.receipt .letus-know .button-container {
    text-align: right;
}

#footer-checkout {
    padding: 2.5em 0;
}

    #footer-checkout .footer-checkout__logos {
        text-align: center;
        margin-bottom: 1em;
    }

        #footer-checkout .footer-checkout__logos img {
            max-width: 120px;
            margin-left: 1em;
        }

    #footer-checkout .footer-checkout__contact a, #footer-checkout .footer-checkout__contact p {
        font-size: .85em;
    }

    #footer-checkout .footer-checkout__contact p, #footer-checkout .footer-checkout__contact ul {
        margin-bottom: .5em;
    }

    #footer-checkout .footer-checkout__nav li:first-child {
        margin-left: 1.375rem;
    }

    #footer-checkout .footer-checkout__nav li:last-child {
        border: none;
    }

@media only screen and (min-width:40.063em) {
    #footer-checkout .footer-checkout__logos {
        text-align: right;
    }

    #footer-checkout .footer-checkout__nav li {
        border-right: 1px solid;
        padding-right: 12px;
        margin: 10px 0 10px 10px;
        line-height: 12px;
    }
}

#footer-checkout .footer-checkout__nav a {
    color: #333;
}

@media print {
    #footer, #nav-mobile .off-canvas-wrap .inner-wrap .tab-bar, .left-off-canvas-menu, .nav-desktop-bottom-half, .receipt .advertisement, .receipt .assistance, .receipt .cat-separator, .receipt .checkout-bread-crumbs, .receipt .letus-know, .receipt .order-copy, .receipt .product-also-like, .receipt .receipt-summary-header h2 a, .receipt h1 {
        display: none !important;
    }

    .receipt .price-th, .receipt .qty-th, .receipt .total-th {
        display: none;
    }

    .receipt .subtotal-copy, .receipt .text-center {
        text-align: left !important;
    }

    .receipt .row-space {
        margin-bottom: 1em;
    }

    .receipt h1 {
        font-size: 12px;
    }

    .receipt h2 {
        font-size: 13px !important;
    }

    .receipt a, .receipt p {
        font-size: 11px;
    }

    .checkout.receipt .co-widget__body .co-widget__body-section-bottom p {
        margin-bottom: 0 !important;
    }

    .co-widget__footer .text-right {
        float: none;
        text-align: left !important;
    }

    .receipt .logo-for-print {
        position: absolute;
        right: 0;
        display: block !important;
        width: 80px;
    }

    .col-md-4 {
        width: 33.333%;
    }
}

.input-validation-error small.input-validation-error, small.input-validation-error, span.input-validation-error {
    margin-top: -1px;
    font-size: .75rem;
    font-style: italic;
}

.input-validation-error small.input-validation-error, small.input-validation-error, span.input-validation-error {
    font-weight: 400;
    background: #B40814;
    padding: .375rem .5625rem .5625rem;
}

[data-abide] .input-validation-error small.input-validation-error, [data-abide] .input-validation-error span.input-validation-error, [data-abide] small.input-validation-error, [data-abide] span.input-validation-error {
    display: block;
    padding: .375rem .5625rem .5625rem;
    margin-top: -1px;
    margin-bottom: 1rem;
    font-size: .75rem;
    font-weight: 400;
    font-style: italic;
    background: #B40814;
    color: #FFF;
}

[data-abide] small.input-validation-error, [data-abide] span.input-validation-error {
    display: none;
}

small.input-validation-error, span.input-validation-error {
    display: block;
    margin-bottom: 1rem;
    color: #FFF;
}

.input-validation-error input, .input-validation-error select, .input-validation-error textarea {
    /* margin-bottom: 0; */
}

    .input-validation-error input[type=checkbox], .input-validation-error input[type=radio], .input-validation-error small.input-validation-error {
        margin-bottom: 1rem;
    }

.input-validation-error label, .input-validation-error label.input-validation-error {
    color: #B40814;
}

.input-validation-error small.input-validation-error {
    display: block;
    color: #FFF;
}

.input-validation-error > label > small {
    color: #676767;
    background: 0 0;
    padding: 0;
    text-transform: capitalize;
    font-style: normal;
    font-size: 60%;
    margin: 0;
    display: inline;
}

.input-validation-error span.error-message {
    display: block;
}

input.input-validation-error, select.input-validation-error, textarea.input-validation-error {
    /* margin-bottom: 0; */
}

label.input-validation-error {
    color: #B40814;
}

.checkout form label.input-validation-error {
    color: #333;
}

.checkout form .error {
    color: #B40814;
    background: 0 0;
    font-style: normal;
    padding-left: 0;
}

.checkout form input.input-validation-error, .checkout form select.input-validation-error, .checkout form textarea.input-validation-error {
    border-color: #B40814;
}

#CheckoutAsCustomer, #CheckoutAsNewCustomer, .CheckoutAsNewCustomer, .CheckoutAsCustomer {
    margin-right: 5px;
}

.credit-debit-required-ind {
    display: none;
}

/* Custom overrides */
/*
    Notes:
        link hover (blue): #0065ad
*/
/******************************************************** HELPERS ********************************************************/
img.alignleft {
    display: inline;
    float: left;
    margin: 0 4px 4px 0;
}

img.alignright {
    float: right;
    margin: 0 0 4px 4px;
}

img.aligncenter {
    display: block;
    margin: 0 auto 4px;
}

.rounded_container {
    padding: .5em;
    border: 1px solid #CDCDCD;
    border-radius: .7em;
    -webkit-border-radius: .7em;
    -moz-border-radius: .7em;
    margin-bottom: .4em;
}

img.responsive {
    width: 100%;
}

.ui-state-error {
    color: #b50000;
}

.myacct_goodmsg {
    background: #fffef0;
    font-size: 1.2em;
    padding: 0.6em;
}

.padded {
    padding: .8em;
}

.padding-top-2 {
    padding-top: 2em;
}

.padding-top-3 {
    padding-top: 3em;
}

.padding-top-35 {
    padding-top: 3.5em;
}

.padding-top-38 {
    padding-top: 3.8em;
}

.padding-top-4 {
    padding-top: 4em;
}

.margin-top-5 {
    margin-top: .5em;
}

.margin-top-10 {
    margin-top: .8em;
}

.margin-top-16 {
    margin-top: 1em;
}

.margin-top-20 {
    margin-top: 1.25em;
}

.margin-top-24 {
    margin-top: 1.5em;
}

.margin-top-32 {
    margin-top: 2em;
}

.margin-top-48 {
    margin-top: 3em;
}

.margin-bottom-5 {
    margin-bottom: .5em;
}

.margin-bottom-10 {
    margin-bottom: .8em;
}

.margin-bottom-16 {
    margin-bottom: 1em;
}

.margin-bottom-20 {
    margin-bottom: 1.25em;
}

.border-bottom {
    border-bottom: 1px solid #ccc;
}

.border-top {
    border-top: 1px solid #ccc;
}

.border-left {
    border-left: 1px solid #ccc;
}

.border-right {
    border-right: 1px solid #ccc;
}

.font-07 {
    font-size: 0.7em;
}

.font-075 {
    font-size: 0.75em;
}

.font-08 {
    font-size: 0.8em;
}

.font-085 {
    font-size: 0.85em;
}

.font-09 {
    font-size: 0.9em;
}

.bold {
    font-weight: bold;
}

.bold-500 {
    font-weight: 500;
}

.bold-600 {
    font-weight: 600;
}

.bold-700 {
    font-weight: 700;
}

.bold-800 {
    font-weight: 800;
}

.bold-900 {
    font-weight: 900;
}
/******************************************************** s2core ********************************************************/

.panel {
    background: #f9f9f9;
}
/* Move up z-index */
#nav-desktop {
    z-index: 10000;
}
/* rating fix */
.rating .star-ratings-css .star-ratings-css-top > span, .rating .star-ratings-css {
    width: auto;
}

.ratings-total {
    color: #0075c9;
}

.rating .star-ratings-css {
    margin-right: 14px;
}

.button-red {
    background: #B40814;
    color: #fff !important;
}

.button-wide {
    padding: .8em 65px;
}

.button-red:hover, .button-red:active, .button-red:focus {
    background: #FF3B48 !important;
    color: #fff;
}

.button.active {
    background: #a7d3f3;
}

button.xs, .button.xs {
    font-size: 0.6rem;
    padding: 0.2rem 0.35rem;
}

#nav-desktop .nav-desktop-top-half a:hover {
    color: #0075c9 !important;
}

.s2-left-nav {
    padding: 0.4em 0 0 0;
}

#QuickLoader {
    padding: 2em 0;
    text-align: center;
}


.social li a:hover {
    color: #fff;
}

#footer .categories ul a:hover {
    color: #0065ad;
}


.strike {
    text-decoration: line-through;
}

.centered-footer-row {
    margin-top: 1em;
}

/* Checkboxes that look like buttons */
.checkbox-clickthrough input {
    display: none;
}

/* Temporary Override */
.checkbox-filter {
    margin-right: 0.5rem !important;
}

.nav-faceted .blue-bubble {
    line-height: 1.8em;
    min-width: 3em;
}

#nav-faceted .filter-group label.blue-bubble, .nav-faceted .filter-group label.blue-bubble {
    background: #0075c9;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    opacity: 0.4;
    padding: 0.5em 0.1em;
    text-align: center;
    cursor: pointer;
    display: block;
    font-size: 0.9em;
    border-bottom: 1px solid #bfbfbf;
}

#nav-faceted label.blue-bubble:hover, .nav-faceted label.blue-bubble:hover {
    background: #0065ad;
    opacity: 1;
}

.clickthrough, .pointer {
    cursor: pointer;
}

.hidden {
    display: none;
}

.invisible {
    visibility: hidden;
}

.row-centered {
    margin-top: 0.8em;
    text-align: center;
}

/* Breadcrumbs */
.breadcrumb-step2 {
    font-size: 0.8em;
    text-transform: uppercase;
    font-weight: 300;
    color: #555555;
    margin: 0.7em 0 0;
}

    .breadcrumb-step2 a {
        color: #0075c9;
        transition: all 300ms ease-out 0s;
    }

        .breadcrumb-step2 a:hover {
            color: #0065ad;
            text-decoration: underline;
        }

    .breadcrumb-step2.padding-top {
        padding: 3.4em 0 0 0;
    }

@media screen and (max-width: 768px) {

    .breadcrumb-step2 {
        margin: 0.3em 0 0 .2em;
    }

        .breadcrumb-step2.padding-top {
            padding: .2em 0 0 0.4em;
            margin: 0;
        }
}

@media screen and (min-width: 768px) and (max-width:1088px) {
    .breadcrumb-step2.padding-top {
        padding: 1em 0 0 0.4em;
    }
}

/* Pricing */
.product-price {
    margin-bottom: 0;
}

.sale-price {
    color: #b50000;
}

.original-price {
    color: #6F7593;
    font-size: 0.8em;
}

.product-detail-price-group .original-price {
    font-size: 1em;
    font-weight: lighter;
}

.product-detail-price-group .sale-price, .product-detail-price-group .regular-price {
    font-size: 1.3em;
}

.label-big {
    font-size: 1.4em;
    margin: 0 0.6em;
}

.label-medium {
    font-size: 1.2em;
    margin: 0 0.5em;
}

.label-small {
    font-size: 1em;
    margin: 0 0.3em;
}

/* Remove spinner from input[type=number] */
.no-spinner {
    -moz-appearance: textfield;
}

    .no-spinner::-webkit-inner-spin-button,
    .no-spinner::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

/******************************************************** HOME ********************************************************/

#HomeHero {
    min-height: 120px;
    /* Home Garden does not have margin-top because landing-hg adds it */
}

@media screen and (min-width: 640px) {
    #HomeHero {
        min-height: 190px;
    }
}

@media screen and (min-width: 640px) and (max-width: 671px){
    #HeroText {
        font-size: 0.8em;
    }
}

@media screen and (min-width: 768px) and (max-width: 960px) {
    #HeroText {
        font-size: 0.65em;
    }
}

@media screen and (min-width: 1024px) {
    #HomeHero {
        min-height: 315px;
    }
}

@media screen and (min-width: 1600px) {
    #HomeHero {
        min-height: 440px;
    }
}
/* Home page category graphics*/
.branded-hover img {
    /* IE */
    filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'https://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
    -webkit-transition: opacity .2s;
    filter: gray;
    filter: opacity(60%) grayscale(95%);
    -webkit-filter: grayscale(95%);
    opacity: .6;
    transition: all 200ms ease-out 0s;
}

    .branded-hover img:hover {
        filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'https://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale"); /* Firefox 10+, Firefox on Android */
        filter: opacity(100%) grayscale(0%);
        -webkit-filter: grayscale(0%);
        opacity: 1;
        transition: all 200ms ease-in 0s;
    }

.category-flag .category-group-title.deep-purple {
    border: 2px solid #9c2695;
    text-align: center;
    text-transform: uppercase;
    color: #9c2695;
    padding: 0.4em 2.2em;
    height: auto;
    display: block;
    background: #fff;
    border-radius: 5px;
}


/******************************************************* CATEGORY ******************************************************/

/*Price Filters*/
.nav-faceted .row .row .column, .nav-faceted .row .row .columns {
    padding: 0 0.5rem;
}

#CategoryProductGrid, #ExclusiveProductGrid {
    margin-bottom: 1em;
}

#TopContentHTML {
    font-size: .9em;
    color: #333;
}

    #TopContentHTML p {
        font-size: .9em;
    }

/* Custom Product Badge */
.custom-product-badge {
    background: #f7f7f7;
    border-radius: 5px;
    color: #b50000;
    letter-spacing: 0;
    padding: 4px 5px;
    font-size: .7em;
}

@media screen and (min-width: 640px) {
    .custom-product-badge {
        font-size: 1em;
        letter-spacing: 0.05em;
        padding: 4px 1.5em;
    }
}

.custom-recommended-badge {
    background: #f7f7f7;
    border-radius: 5px;
    color: #b50000;
    font-size: 1em;
    letter-spacing: 0.03em;
    padding: 4px 5px;
    width: 98%;
    text-align: center;
}
/******************************************************* PRODUCT PDP *******************************************************/

.product-intro-group .add-cart-group .button:hover {
    background: #FF3B48;
}

#QuickProductLink {
    text-decoration: underline;
    text-transform: capitalize;
}

/* Product List Image Dimensions*/

.invodo-overlay {
    position: absolute;
    top: 0;
    z-index: auto;
}

.has-video > img {
    opacity: 0.5;
    transition: all 250ms ease-in-out 0s;
}

    .has-video > img:hover {
        opacity: 1;
    }


/* Webcollage Overrides; make button*/
#wcsb-text-link-steptwo.wcsb-text-link {
    background: #94d600;
    -moz-appearance: none;
    border-radius: 4px;
    border-style: solid;
    border-width: 0;
    color: #fff !important;
    cursor: pointer;
    display: inline-block !important;
    font-size: 1rem !important;
    line-height: normal;
    margin: 0 0 1.25rem;
    padding: 1rem 2rem 1.0625rem;
    position: relative;
    text-align: center;
    transition: background-color 200ms ease-out 0s;
    font-family: 'Montserrat',​sans-serif !important;
}

    #wcsb-text-link-steptwo.wcsb-text-link:hover {
        text-decoration: none !important;
        background: #82bd00;
    }

.product-intro-group .add-cart-group .social a:hover {
    color: #0075c9;
}

/* PriceSpider Overrides */
div.retailer-col .ps_ResponsiveContainerStyle.ps_WtbButtonStyle {
    background: none !important;
    color: #333;
    border: none !important;
    font-size: 1.1em !important;
    text-transform: uppercase;
    text-shadow: none !important;
    font-family: 'Montserrat',​sans-serif !important;
    text-align: center;
    line-height: 1.1em !important;
    width: auto;
    border-radius: initial !important;
}


    div.retailer-col .ps_ResponsiveContainerStyle.ps_WtbButtonStyle:hover, div.retailer-col .ps_ResponsiveContainerStyle.ps_WtbButtonStyle:active {
        text-decoration: none;
        color: #0065ad;
    }

.shipping small {
    font-size: 85%;
    font-weight: normal;
}

.see-more {
    border-top: 1px dashed #e4e4e4;
}

.see-more-target {
    overflow: hidden;
}

/* JPList */
.jplist-panel .jplist-pagination .jplist-pagesbox button {
    color: #999;
}

.jplist-panel .jplist-pagination .jplist-pagingprev button, .jplist-panel .jplist-pagination .jplist-pagingmid button, .jplist-panel .jplist-pagination .jplist-pagingnext button {
    text-shadow: none;
    background: #fff;
    color: #999;
}

.jplist-panel .jplist-pagination button:hover {
    background: #e6e6e6;
}

.jplist-panel .jplist-pagination button.jplist-current {
    background: #000;
    color: #fff;
}

.jplist-panel.panel-bottom {
    margin: 0 0 2em;
}

/* Filter By Custom Button */

.jplist-drop-down .jplist-dd-panel.filter-by::after {
    font-family: FontAwesome;
    content: "\f067" !important;
}

.panel-top .jplist-drop-down {
    width: 100%;
}

.go-configure-product, p.go-configure-product, .product-intro-group .add-cart-group p.go-configure-product {
    text-align: center;
    font-weight: normal;
    margin: .8em 0 0 0;
    vertical-align: middle;
}

    .go-configure-product > label {
        display: inline;
        font-size: .8rem;
        vertical-align: middle;
    }

    .go-configure-product > a {
        font-weight: normal;
        font-size: .8rem;
        vertical-align: middle;
    }

input[type="checkbox"].go-configure-checkbox {
    margin: 0 2px 3px 0;
    vertical-align: middle;
}

@media screen and (max-width: 400px) {
    .go-configure-product > label {
        font-size: .65rem;
    }

    .go-configure-product > a {
        font-size: .6rem;
    }
}
/* H2s only */
#details .product-details-copy h2 {
    display: inline;
    font-size: 1rem;
    font-weight: normal;
    text-rendering: optimizelegibility;
}

@media screen and (min-width: 600px) {
    .panel-top .jplist-drop-down {
        width: 150px;
    }
}

@media screen and (min-width: 1116px) {
    #JpOpenAside {
        display: none;
    }
}
/*************************************************** Power Reviews PWR ***************************************************/

.pr-snapshot-rating .pr-stars, .pr-review-faceoff .pr-stars, .pr-modal-container .pr-stars, .pr-modal-container .pr-review-faceoff-review-content .pr-stars {
    background-image: url("/images/stars.gif") !important;
}

.pr-stars-small {
    background-image: url("/images/stars_small.gif") !important;
}

.pr-snippet-stars .pr-stars-small, .pr-modal-container .pr-stars {
    background-image: url("/images/stars_small.gif") !important;
}

.pr-stars-small-subrating {
    /*background-image: url("/images/stars_subrating.gif") !important;*/
}

.pr-snapshot-write-review-social-loyalty {
    margin-top: 0 !important;
}

.pr-snapshot-write-review {
    padding-left: 0 !important;
}

.pr-share-earn-link {
    text-transform: capitalize;
}

.pr-review-author-info-wrapper {
    padding-right: 1em;
}

/* For modals */

input[type="text"].pr-fb-follow-email-input {
    margin: 0 4px 0 0;
    width: 140px;
    max-width: 140px !important;
    display: inline !important;
    font-size: .7em;
}

.pr-fb-follow-body p {
    font-size: 1em;
}

.pr-fb-follow-info {
    font-size: .6em;
}

.pr-profile-author-container, .pr-profile-author-container p {
    font-size: 0.6rem;
    line-height: 1em;
}

.pr-profile-histogram-container .pr-histogram-label span {
    font-size: .6rem;
}

.pr-profile-author-container, .pr-profile-author-container p.pr-profile-nickname {
    font-size: 0.8rem;
}

.pr-ratings-histogram-bar {
    width: 120px;
}

div.pr-ratings-histogram-bar {
    height: 18px;
    width: 110px;
}

.pr-profile-reviews-wrapper {
    font-size: 0.6rem;
}

.pr-fb-follow-body .pr-fb-follow-info-wrapper {
    padding: 1em;
}

.pr-fb-follow-body .pr-fb-follow-info p {
    line-height: 1.5em;
    font-size: 1.1em;
}

.pr-snapshot-body-wrapper .pr-snapshot-no-ratings {
    margin-bottom: 0;
}

    .pr-snapshot-body-wrapper .pr-snapshot-no-ratings .pr-write-review-link,
    .pr-product-follow-link-container.pr-fb-needs-merchant.pr-no-reviews a {
        float: none;
    }

@media screen and (max-width: 650px) {
    .pr-snapshot-body-wrapper .pr-snapshot-no-ratings .pr-write-review-link {
        display: block;
        margin-top: .5em;
        margin-bottom: .5em;
    }
}

/******************************************************** FOUNDATION ********************************************************/

/* Foundation Accordion Overrides*/

.accordion .accordion-navigation.active > a, .accordion dd.active > a {
    background: none;
}

.accordion .accordion-navigation > a:hover, .accordion dd > a:hover {
    background: none;
}

.accordion .accordion-navigation > a, .accordion dd > a {
    background: none;
    padding: 0;
}


/******************************************************* CF Product *******************************************************/

.pagination_controls {
    margin: 0.8em 0 0.5em;
}

.product-grid {
    margin: .6em 0;
}

    .product-grid .product_price > span {
        color: #ccc;
        font-size: 0.8em;
        text-decoration: line-through;
    }

.product_name_and_price {
    margin: 0.6em 0 0;
    min-height: 75px;
}

.product-grid .product_name {
    font-size: 1em;
    line-height: 1.4em;
    min-height: 3em;
    text-transform: uppercase;
}

.product-grid .product_image {
    min-height: 125px;
    text-align: center;
}

    .product-grid .product_image img {
        height: 200px;
        width: 200px;
    }

.add_to_cart_container {
    margin: 0.3em 0 0;
    text-align: center;
}


/******************************************************* Cart and Cart Asides *******************************************************/

.is-gift {
    color: #CC2D45;
    font-weight: bold;
}

.left-nav-ul {
    line-height: 1.0em;
    margin-top: 5px;
    list-style: outside none none;
    margin-left: 0;
}

    .left-nav-ul li {
        font-size: .8em;
        margin-bottom: .7em;
    }

.left-nav-gift-box {
    margin-left: 8px;
    margin-top: 0px;
    position: absolute;
    right: 20px;
}

#spoilerAlert {
    padding: 8px 8px 0 8px;
    overflow: hidden;
}

#MainCartBody #CartLeadIn {
    background-color: #e4e4e4;
    border-radius: 10px;
    display: table-cell;
    font-size: .9em;
    font-weight: bold;
    height: 1.4em;
    line-height: 1.4em;
    overflow: hidden;
    padding: 2px 8px;
    vertical-align: middle;
}

#CartTotalsTable, #CartCouponTable {
    width: 100%;
}

#ErrorMessage {
    color: #D8000C;
    background-color: #FFEDED;
    border-radius: 1em;
    padding: 1em;
    margin-bottom: 1em;
}

    #ErrorMessage > h3 {
        font-size: 1.2em;
    }

/* Match Vantiv PayPage */
#NameOnCard {
    font-family: "Lucida Sans Unicode", Geneva, Arial, Verdana, sans-serif;
    font-size: 0.875rem;
}

/************************************************** MY ACCOUNT (Profile) ***********************************************/

.childRecordDiv {
    margin: 1em;
}

/******************************************************** MEDIA ********************************************************/

.highprice.no-spinner, .lowprice.no-spinner {
    font-size: 0.7em;
}

@media only screen and (max-width: 40em) {
    input.no-mobile-padding, .no-mobile-padding {
        padding: 0;
    }
}

@media all and (min-width: 40.0625em) {
    /*641+*/

    /* explicit width for category titles on homepage - mockup faked it with <br />'s */
    .category-genres li .link-group div.left {
        max-width: 54%;
    }

    /* social links fix */
    .hero-strip p {
        margin-right: 1rem;
    }

    .hero-strip .social {
        margin-left: 0;
        float: left;
        white-space: nowrap;
    }

    .social li a {
        font-size: .8rem;
    }
}

/* social links fix - home */
@media only screen and (min-width:64.063em) {
    .social li a {
        font-size: 1rem;
    }
}

/******************************************************** CHECKOUT ********************************************************/

/* checkout modals */
.checkout_modal_alert h1 {
    margin-top: 0px;
}

/* checkout error (coupon) */
#errorDiv {
    display: none;
    background-color: rgb(255, 255, 204);
    margin-bottom: 10px;
    padding: 1rem;
}

    #errorDiv h3 {
        font-size: 1.375rem !important;
    }

.link-button, .link-button:hover {
    background: none !important;
    border: none;
    padding: 0 !important;
    font: inherit;
    cursor: pointer;
    color: #0075c9;
    font-size: 0.9em;
    margin-top: 0.5em;
    margin-left: 2px;
}

.checkout input[type="checkbox"] {
    cursor: pointer;
    border-radius: 1px;
    box-sizing: border-box;
    position: relative;
    box-sizing: content-box;
    width: 20px;
    height: 20px;
    border-width: 0;
}

.input-icon {
    color: #ccc;
    margin-top: 10px;
    position: absolute;
    width: 0;
    z-index: 1;
}

.columns.new-style {
    padding: 0 .3rem !important;
}

input.new-style {
    margin: 0 0 .6rem 0 !important;
}

/* Okay button on modal in checkout */
.modal-button .close-reveal-modal {
    position: relative !important;
    border-style: solid !important;
    border-width: 0 !important;
    cursor: pointer !important;
    line-height: normal !important;
    margin: 0 0 1.25rem !important;
    text-align: center !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    border-radius: 0 !important;
    display: inline-block !important;
    padding: 1rem 2rem 1.0625rem !important;
    font-size: 1rem !important;
    background-color: #0075c9 !important;
    border-color: #005ea1 !important;
    color: #FFF !important;
    transition: background-color 300ms ease-out !important;
}

#needItSoonerDiv, #expedited-options-spinner {
    margin-bottom: 1.25rem;
}

.inline-block-label {
    display: inline-block !important;
}

/* Hamburger rounded float container */
.hamburger-container {
    /* NOTE no width here ! */
    max-height: 500px;
    margin: 10px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

.hamburger-mainbody,
.hamburger-header,
.hamburger-footer {
    padding: .4em .5em .4em .9em;
}

.hamburger-mainbody {
    margin-top: 0;
    min-height: 50px;
    overflow: auto;
}

.hamburger-large-centered {
    font-size: 2em;
    font-weight: bold;
    padding-top: 10px;
    text-align: center;
}

.hamburger-header {
    font-size: 0.8em;
    border-bottom: 1px solid #ccc;
    background-color: #ccc;
    color: #fff;
    text-align: center;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.hamburger-footer {
    height: 1.2em;
    max-height: 1.2em;
    background-color: #ccc;
    color: #fff;
    border-top: 1px solid #ccc;
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-bottomright: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* ---------------- product page ------------------- */
.product-intro-group .product-image-large {
    max-width: 550px;
}

@media (max-width: 641px) {
    .product-intro-group .product-image-large {
        margin-bottom: 40px;
    }

        .product-intro-group .product-image-large .slick-dots {
            margin-left: 0;
        }

            .product-intro-group .product-image-large .slick-dots li {
                width: 20px;
                height: 20px;
                padding: 5px;
            }

                .product-intro-group .product-image-large .slick-dots li button {
                    font-size: 0;
                    line-height: 0;
                    display: block;
                    height: 6px;
                    width: 6px;
                    border-radius: 50%;
                    border: 2px solid #666666;
                }

                    .product-intro-group .product-image-large .slick-dots li button:before {
                        display: none;
                    }

                .product-intro-group .product-image-large .slick-dots li.slick-active button {
                    background: #0075c9;
                }
}

/*BV BazaarVoice*/
.bv-content-list-container .bv-content-list > li.bv-content-item.bv-content-review,
.bv-content-item.bv-content-top-review.bv-content-review {
    border-bottom: 1px solid #ccc !important;
}

/* Hide Q&A Answers */
#BVQAContainer .bv-cv2-cleanslate li.bv-content-item.bv-secondary-content-answer.bv-secondary-content-item {
    display: none !important;
}

/* Make the answers more visible */
#BVQAContainer .bv-cv2-cleanslate a.bv-content-data-count {
    color: #fff !important;
    background: #0075c9 !important;
}

div#BVQAContainer div.bv-cv2-cleanslate .bv-shared ol li {
    font-weight: 400 !important;
    font-family: 'Montserrat',sans-serif !important;
}

div#BVQAContainer div.bv-cv2-cleanslate div.bv-shared div.bv-content-list-container h4.bv-content-title, div#BVQAContainer > div.bv-cv2-cleanslate > div.bv-shared ol li div.bv-content-data-summary > div.bv-content-title-container > div.bv-content-summary-title > p {
    font-weight: 400 !important;
    font-family: 'Montserrat',sans-serif !important;
    color: #0065ad !important;
    font-size: .9rem !important;
}

div#BVQAContainer div.bv-cv2-cleanslate div.bv-shared div.bv-content-list-container ol li.bv-content-item.bv-content-question {
    border-bottom: 1px solid #e4e4e4 !important;
}


/* Banner Ad */
.banner-ad-top {
    text-align: center;
}

    .banner-ad-top.blue {
        background: #0075c9;
    }

    .banner-ad-top.red {
        background: #ec164f;
    }

    .banner-ad-top.gold {
        background: #ffb81d;
    }

    .banner-ad-top.purple {
        background: #9e1d97;
    }

    .banner-ad-top.hg-green {
        background: #5D6670;
    }

    .banner-ad-top.green {
        background: #96d425;
    }

body.home-design-wrapper .banner-ad-top {
    /* Always HG Blue */
    background: #5D6670 !important;
}

.banner-ad-top a {
    display: block;
    color: #fff;
    padding: 13px 0 11px;
}

    .banner-ad-top a .text-small {
        margin-left: 0.5em;
    }

@media only screen and (max-width: 40em) {
    /*for spans in messages*/
    .temp-promo-p {
        margin: 2px 0 3px 0;
        display: block;
    }

    .banner-ad-top a {
        padding: 4px 0 2px 0;
        line-height: 0.95em;
    }

        .banner-ad-top a .text-small {
            display: block;
            margin-top: 0.5em;
        }
}

.banner-ad-bottom {
    position: relative;
    margin-bottom: 1.5em;
    margin-top: 1.5em;
}




.category-flag {
    text-align: center;
    color: #666666;
    margin-bottom: 3em;
}

    .category-flag h3 {
        text-transform: uppercase;
    }

    .category-flag a {
        text-transform: uppercase;
        font-size: 0.875rem;
    }

@media only screen and (min-width:40.063em) {
    .category-flag.image-right .category-flag-image-group {
        padding-right: 0;
    }

    .category-flag.image-left .category-flag-image-group {
        padding-left: 0;
    }
}

.category-flag .category-flag-image {
    background: url('https://images.step2.com/images/ph.png?height=300&width=300') center center;
    background-size: cover;
    height: 200px;
}

@media only screen and (max-width: 40em) {

    .category-flag .category-flag-image {
        margin-bottom: 1em;
    }
}

.category-flag .category-group-title {
    display: inline-block !important;
    font-size: 0.875rem;
}

    .category-flag .category-group-title.red {
        border: 2px solid #b50000;
        text-align: center;
        text-transform: uppercase;
        color: #b50000;
        padding: 0.4em 2.2em;
        height: auto;
        display: block;
        background: #fff;
        border-radius: 5px;
    }

    .category-flag .category-group-title.gold {
        border: 2px solid #ffb81d;
        text-align: center;
        text-transform: uppercase;
        color: #ffb81d;
        padding: 0.4em 2.2em;
        height: auto;
        display: block;
        background: #fff;
        border-radius: 5px;
    }

.category-flag .category-flag-borders {
    border-top: 2px solid #666666;
    border-bottom: 2px solid #666666;
    background-size: 22px 22px;
    background-image: -moz-linear-gradient(135deg, rgba(0, 0, 0, 0) 45%, #f2f2f2 49%, #f2f2f2 51%, rgba(0, 0, 0, 0) 55%);
    background-image: -webkit-linear-gradient(135deg, rgba(0, 0, 0, 0) 45%, #f2f2f2 49%, #f2f2f2 51%, rgba(0, 0, 0, 0) 55%);
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0) 45%, #f2f2f2 49%, #f2f2f2 51%, rgba(0, 0, 0, 0) 55%);
}

.category-flag-solid {
    background: #fffbde;
}

    .category-flag-solid .category-flag-text p {
        color: #000;
    }

    .category-flag-solid img {
        margin-bottom: 1.5em;
        max-width: 250px;
    }

@media only screen and (min-width:40.063em) {
    .category-flag .category-flag-borders {
        height: 400px;
    }
}

.category-flag .category-flag-text {
    max-width: 340px;
    margin: 12% auto;
}

@media only screen and (min-width:40.063em) {
    .category-flag .category-flag-text {
        margin: 16% auto;
    }
}

.category-flag .borders {
    border-top: 2px solid #666666;
    border-bottom: 2px solid #666666;
}

@media only screen and (min-width:40.063em) {
    .category-flag .category-flag-borders, .category-flag .category-flag-image {
        height: 300px;
    }
}

@media only screen and (min-width:64.063em) {
    .category-flag .category-flag-borders, .category-flag .category-flag-image {
        height: 400px;
    }
}

.category-genres {
    margin-bottom: 1.6em;
}

@media only screen and (min-width:64.063em) {

    .category-genres {
        padding: 0 15px;
    }
}

@media (min-width: 1230px) {

    .category-genres {
        padding: 0;
    }
}


@media (max-width: 400px) {

    .category-genres li .link-group span {
        font-size: 0.8em;
    }
}

/* category-genres headings */
.category-genres li .link-group h2, .category-genres li .link-group h3 {
    font-size: 1em;
    margin: 1em 0 0;
}

.category-genres li a {
    height: 11.5em !important;
}

@media only screen and (min-width:40.063em) {
    .category-genres li a {
        height: auto !important;
    }
}

.category-genres li .link-group {
    overflow: hidden;
    position: relative;
    border: 2px solid #94d600;
    text-align: center;
    text-transform: uppercase;
    color: #94d600;
    padding: 1em;
    height: auto;
    display: block;
    background: #fff;
    border-radius: 5px;
    transition: all 200ms ease-out;
}


    .category-genres li .link-group h3.break-word {
        word-wrap: break-word;
    }


    .category-genres li .link-group > img {
        width: 100%;
        display: block;
    }

.category-genres li.all-blue:hover .link-group {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #0075c9;
}

.category-genres li.all-green:hover .link-group {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #94d600;
}

.category-genres li.all-red:hover .link-group {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #f32836;
}

.category-genres li.all-purple:hover .link-group {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #9e1d97;
}

.category-genres li.all-gold:hover .link-group {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #ffb81d;
}

.category-genres .fa {
    position: absolute;
    bottom: -0.1em;
    right: -0.1em;
    font-size: 11em;
    opacity: 0.3;
}

/* home-layout */
.category-genres li.all-blue-light:hover .link-group {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #00b3e3;
}

.category-genres li.all-hg-green:hover .link-group {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #5D6670;
}

.category-genres li.all-hg-orange:hover .link-group {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #d1720b;
}

.category-genres li.all-hg-blue:hover .link-group {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #3d749e;
}

.category-genres li.all-hg-gold:hover .link-group {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #cfa56e;
}

.category-genres li.all-hg-purple:hover .link-group {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #855386;
}

.category-genres li.all-hg-red:hover .link-group {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #b63928;
}

.category-flag h3 {
    text-transform: uppercase;
    font-size: 1.4em;
}

.category-flag p {
    font-size: 0.95em;
}

.category-flag .category-group-title {
    display: inline-block !important;
    font-size: rem-calc(14);
}

    .category-flag .category-group-title.blue {
        border: 2px solid #0075c9;
        text-align: center;
        text-transform: uppercase;
        color: #0075c9;
        padding: 0.4em 2.2em;
        height: auto;
        display: block;
        background: #fff;
        border-radius: 5px;
    }

/* _home-category-ages */
.category-ages li img {
    display: none;
}

    .category-ages li img.up {
        display: block;
    }

.category-ages li a:hover .link-group-img.up {
    display: none;
}

.category-ages li a:hover .link-group-img.down {
    display: block;
}

.category-ages li:hover {
    cursor: pointer;
}

@media only screen and (max-width: 40em) {
    .category-ages li.link-group-imgs {
        float: none;
        margin: 0 auto;
    }
}

/* top-bar */
#nav-desktop .lowercase {
    text-transform: none !important;
}

body.home-design-wrapper #nav-desktop .fixed::before {
    border-top: 5px solid #5D6670;
}

#nav-desktop .new {
    font-style: italic;
    color: #b50000;
    font-size: 0.75em;
}

.nav-desktop-top-half .has-dropdown > a:after {
    background-image: none;
}

.nav-desktop-bottom-half .has-dropdown > a.text-hg-green:after {
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2018.1.1%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%22131%20-131%20512%20512%22%20enable-background%3D%22new%20131%20-131%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpolygon%20id%3D%22arrow-25-icon%22%20fill%3D%22%23567657%22%20points%3D%22554.5%2C-5.1%20609.4%2C50.1%20403.4%2C255.1%20197.4%2C50.1%20252.3%2C-5.1%20403.4%2C145.3%20%22/%3E%0D%0A%3C/svg%3E%0D%0A');
}

.nav-desktop-bottom-half .has-dropdown > a.text-hg-green + .dropdown li:hover a {
    color: #567657 !important;
}

/* _home-hero-group */
.hero-ad {
    max-width: 1200px;
    display: block;
    width: 100%;
    margin: 0 auto;
}

/* landing */
.landing .category-genres {
    margin-bottom: 1.6em;
}

.landing-intro h1 {
    font-size: 1.35em;
}

.landing-intro h2 {
    font-size: 1.2em;
}

.landing-intro p:last-child {
    margin-bottom: 1.6em;
}

.landing-banner {
    margin: 1.5em 0 1.3em;
}

.landing-hg .landing-intro h1, .landing-hg .landing-intro h2 {
    color: #5D6670;
}



.product-list-item {
    text-transform: uppercase;
    margin-bottom: 0.5em;
}

.product-list-link {
    display: block;
    text-align: center;
}

.product-list-title {
    text-align: left;
    margin-bottom: 0.5em;
    color: #333333;
}

    .product-list-title:hover {
        color: #0075c9;
    }

.product-list-rating-row {
    margin-bottom: 0.1em;
}

    .product-list-rating-row .star-ratings-css {
        margin: 0 !important;
    }

    .product-list-rating-row .rating {
        float: left;
        margin-bottom: 0.49em;
    }


.product-list-flag {
    text-transform: uppercase;
    font-size: 0.8em;
    margin-top: 0.4em;
    margin-bottom: 0;
    float: right;
}

    .product-list-flag.best-seller {
        color: #0075c9;
        background: url('../../images/icon_sm_flag-bestseller.png') no-repeat right;
        padding-right: 1.5em;
    }

    .product-list-flag.free-shipping {
        color: #94d600;
        background: url('../../images/icon_sm_flag-freeshipping.png') no-repeat right;
        padding-right: 2em;
    }

    .product-list-flag.award {
        color: #9e1d97;
        background: url('../../images/icon_sm_flag-award.png') no-repeat right;
        padding-right: 2em;
    }


.product-list-img {
    margin-bottom: 0.5em;
    text-align: center;
}

/* Remove border on carousels */
#RecommendedProductGroup .product-list-item-container, .custom-carousel .product-list-item-container {
    border-bottom: none;
}

.product-list-item-container p {
    margin-bottom: 0;
}

.product-list-quicklook {
    display: block;
    position: relative;
    text-align: center;
}

p.product-list-title {
    font-size: .9em;
    overflow: hidden;
    text-transform: uppercase;
    font-weight: bold;
}

h2.product-list-title {
    font-size: .9em;
    text-transform: uppercase;
    font-weight: bold;
}

/* Vertical Stacked product list for Home Garden */

.stacked .product-list-flag {
    display: block;
    font-size: 0.8em;
    margin-bottom: 0;
    margin-top: 0.4em;
    text-transform: uppercase;
    float: left;
}

.stacked .product-list-item {
    border-bottom: none;
    margin-bottom: 0;
}

.stacked .product-list-title {
    clear: both;
    display: block;
    text-align: left;
}

.stacked .product-list-flag.best-seller {
    background: rgba(0, 0, 0, 0) url("../../images/icon_sm_flag-bestseller.png") no-repeat scroll left center;
    color: #0075c9;
    padding-left: 1.5em;
}

.stacked .product-list-flag.free-shipping {
    background: rgba(0, 0, 0, 0) url("../../images/icon_sm_flag-freeshipping.png") no-repeat scroll left center;
    color: #94d600;
    padding-left: 2em;
}

.stacked .product-list-flag.award {
    background: rgba(0, 0, 0, 0) url("../../images/icon_sm_flag-award.png") no-repeat scroll left center;
    color: #9e1d97;
    padding-left: 2em;
}

.stacked p.product-list-title {
    height: auto;
}

.stacked .product-price {
    color: #999;
}

/* Base classes for font color */
.all-green * {
    color: #578000;
    border-color: #578000 !important;
}

.all-red * {
    color: #B40814;
    border-color: #B40814 !important;
}

.all-purple * {
    color: #9e1d97;
    border-color: #9e1d97 !important;
}

.all-gold * {
    color: #d43900;
    border-color: #d43900 !important;
}

.all-blue * {
    color: #046B99;
    border-color: #046B99 !important;
}

.all-blue-light * {
    color: #00b3e3;
    border-color: #00b3e3 !important;
}

.all-hg-green * {
    color: #5D6670;
    border-color: #5D6670 !important;
}

.all-hg-orange * {
    color: #d1720b;
    border-color: #d1720b !important;
}

.all-hg-blue * {
    color: #3d749e;
    border-color: #3d749e !important;
}

.all-hg-gold * {
    color: #cfa56e;
    border-color: #cfa56e !important;
}

.all-hg-purple * {
    color: #855386;
    border-color: #855386 !important;
}

.all-hg-red * {
    color: #b63928;
    border-color: #b63928 !important;
}

.text-small {
    font-size: 0.688em;
}

.text-underline {
    text-decoration: underline;
}

.text-red {
    color: #B40814;
}

.l-text-red {
    color: #B40814;
}

    .l-text-red:hover {
        color: #c40b18;
    }

.text-blue, .text-blue * {
    color: #046B99;
}

.text-purple {
    color: #9e1d97;
}

.l-text-purple {
    color: #9e1d97;
}

    .l-text-purple:hover {
        color: #5d1159;
    }

.text-deep-purple {
    color: #9c2695;
}

.l-text-deep-purple {
    color: #9c2695;
}

    .l-text-deep-purple:hover {
        color: #b42cac;
    }

.text-gold {
    color: #ffb81d;
}

.l-text-gold {
    color: #ffb81d;
}

    .l-text-gold:hover {
        color: #d08e00;
    }

.text-green {
    color: #94d600;
}

.l-text-green {
    color: #94d600;
}

    .l-text-green:hover {
        color: #5f8a00;
    }

.text-hg-green {
    color: #5D6670 !important;
}

.s2-subpage-h2 {
    color: #046B99;
    font-size: 1.28em;
    text-transform: uppercase;
}

.bold-warning, .checkout-group p.bold-warning {
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 0.2px;
}

.bold-warning.red {
    color: #B40814;
}
.lato{font-family:Lato,sans-serif}.jplist-hidden{display:none}.jplist-sticky{position:fixed;width:100%;left:0;top:0;z-index:1000;background:#f1f1f1;padding-bottom:5px}.sticky-demo .panel>.center{max-width:100%}.sticky-demo .jplist-sticky>.center{max-width:95%}.no-cssgradients .jplist-panel button:hover{background:#f4f4f4}.jplist-panel{color:#27252a}.jplist-panel button{float:left;height:30px;box-shadow:0 0 1px #fff;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;border:1px solid #dbdbdb;border-radius:3px;text-shadow:1px 1px 1px #fff;color:#27252a;background:#fff;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(100%,#efefef));background:-webkit-linear-gradient(top,#fff 0,#efefef 100%);background:linear-gradient(to bottom,#fff 0,#efefef 100%);margin:10px 10px 0 0}.jplist-panel button:hover{color:#0381bb;background:#f2f2f2;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fafafa),color-stop(100%,#ededed));background:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background:linear-gradient(to bottom,#fafafa 0,#ededed 100%)}.jplist-panel button.jplist-disabled{background:#e3e3e3;color:#6c6c6c;cursor:default}.jplist-panel button.jplist-selected{color:#f03800}.jplist-panel input[type=text]{float:left;height:30px;box-shadow:0 0 1px #fff;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;border:1px solid #dbdbdb;border-radius:3px;text-shadow:1px 1px 1px #fff;color:#27252a;width:150px;text-indent:5px;background:#fff}.jplist-panel input[type=checkbox],.jplist-panel input[type=radio]{float:left;display:inline-block;height:30px;background:#fff;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;color:#27252a}.jplist-panel label{float:left;height:30px;line-height:30px;padding:0 5px;display:inline-block;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;color:#27252a;cursor:pointer}.jplist-panel input.jplist-no-right-border{border-right:0;border-top-right-radius:0;border-bottom-right-radius:0}.jplist-icon{float:left;height:30px;box-shadow:0 0 1px #fff;background:#fff;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;border:1px solid #dbdbdb;border-radius:3px;text-shadow:1px 1px 1px #fff;color:#27252a;display:inline-block;line-height:30px;padding:0 10px;border-right:0}.jplist-icon:hover{color:#0381bb}.jplist-label{float:left;height:30px;box-shadow:0 0 1px #fff;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;border:1px solid #dbdbdb;border-radius:3px;text-shadow:1px 1px 1px #fff;color:#27252a;line-height:30px;padding:0 10px;margin:10px 10px 0 0;background:#fff;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(100%,#efefef));background:-webkit-linear-gradient(top,#fff 0,#efefef 100%);background:linear-gradient(to bottom,#fff 0,#efefef 100%)}.jplist-clear{color:#666;cursor:pointer;float:left;height:30px;line-height:27px;padding:0 4px;background:#fff;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;border:1px solid #dbdbdb;border-left:0;border-radius:0 3px 3px 0;text-shadow:1px 1px 1px #fff}.jplist-clear:hover{color:#444}.jplist-selected{color:#CA3F1A}.jplist-box{float:left;height:30px;margin:10px 10px 0 0}@media only screen and (max-width:600px){.jplist-panel{display:none}}.jplist-drop-down{float:left;height:30px;box-shadow:0 0 1px #fff;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;border:1px solid #dbdbdb;border-radius:3px;text-shadow:1px 1px 1px #fff;color:#27252a;width:150px;background:#fff;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(100%,#efefef));background:-webkit-linear-gradient(top,#fff 0,#efefef 100%);background:linear-gradient(to bottom,#fff 0,#efefef 100%);margin:10px 10px 0 0;position:relative}.jplist-drop-down .jplist-dd-panel{float:left;width:150px;height:30px;line-height:30px;overflow:hidden;text-indent:10px;cursor:pointer}.jplist-drop-down .jplist-dd-panel:after{content:'\25BC';color:#111;display:inline-block;position:absolute;right:10px;z-index:1000}.jplist-drop-down ul{-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;border:1px solid #dbdbdb;border-radius:0 0 3px 3px;position:relative;top:0;z-index:1000;width:148px;display:none;overflow:hidden;background:#fff;list-style:none;margin:0;padding:0;box-shadow:0 3px 6px #bbb}.jplist-drop-down ul li{width:100%;float:left;height:30px;line-height:30px;text-indent:10px;cursor:pointer}.jplist-drop-down ul li:hover{background-color:#ececec}.jplist-drop-down:hover .jplist-dd-panel{color:#0381bb}.jplist-drop-down:hover .jplist-dd-panel:after{color:#0381bb}.jplist-select{height:30px;box-shadow:0 0 1px #fff;background:#fff;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;border:1px solid #dbdbdb;border-radius:3px;text-shadow:1px 1px 1px #fff;color:#27252a;float:left;margin:10px 10px 0 0;padding:5px;text-shadow:none}.jplist-ios-button{display:none}@media only screen and (max-width:600px){.jplist-ios-button{display:block;width:100%;text-align:center;cursor:pointer;font-size:15px;line-height:30px;float:left;height:30px;box-shadow:0 0 1px #fff;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;border:1px solid #dbdbdb;border-radius:3px;text-shadow:1px 1px 1px #fff;color:#27252a;background:#fff;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(100%,#efefef));background:-webkit-linear-gradient(top,#fff 0,#efefef 100%);background:linear-gradient(to bottom,#fff 0,#efefef 100%)}.jplist-ios-button:hover{background:#f2f2f2;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fafafa),color-stop(100%,#ededed));background:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background:linear-gradient(to bottom,#fafafa 0,#ededed 100%)}.jplist-ios-show{display:block}}
/**jPList - jQuery Data Grid Controls - http://jplist.com Copyright 2014 jPList Software. All rights reserved.*/.jplist-panel .jplist-pagination{cursor:pointer;float:left;line-height:30px}.jplist-panel .jplist-pagination button{display:inline-block;color:#0381bb;height:30px;line-height:30px;padding:0 10px}.jplist-panel .jplist-pagination .jplist-current{font-weight:bold;color:#f03800}.jplist-panel .jplist-pagination .jplist-pagingprev,.jplist-panel .jplist-pagination .jplist-pagingmid,.jplist-panel .jplist-pagination .jplist-pagingnext{float:left}.jplist-panel .jplist-pagination .jplist-pagingprev button,.jplist-panel .jplist-pagination .jplist-pagingnext button{font-size:20px;font-family:"Courier New",Courier,monospace}.jplist-one-page{display:none}.jplist-empty{display:none}

@media print {
    * {
        background: transparent !important;
        color: #000000 !important;
        /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    .show-for-print {
        display: block;
    }

    .hide-for-print {
        display: none;
    }

    table.show-for-print {
        display: table !important;
    }

    thead.show-for-print {
        display: table-header-group !important;
    }

    tbody.show-for-print {
        display: table-row-group !important;
    }

    tr.show-for-print {
        display: table-row !important;
    }

    td.show-for-print {
        display: table-cell !important;
    }

    th.show-for-print {
        display: table-cell !important;
    }

    a, a:visited {
        text-decoration: underline;
    }

        a[href]:after {
            content: " (" attr(href) ")";
        }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
        content: "";
    }

    pre, blockquote {
        border: 1px solid #999999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
        /* h5bp.com/t */
    }

    tr, img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }

    h2, h3 {
        page-break-after: avoid;
    }

    .hide-on-print {
        display: none !important;
    }

    .print-only {
        display: block !important;
    }

    .hide-for-print {
        display: none !important;
    }

    .show-for-print {
        display: inherit !important;
    }


    /* Print visibility */
    .show-for-print {
        display: block;
    }

    .hide-for-print {
        display: none;
    }

    table.show-for-print {
        display: table !important;
    }

    thead.show-for-print {
        display: table-header-group !important;
    }

    tbody.show-for-print {
        display: table-row-group !important;
    }

    tr.show-for-print {
        display: table-row !important;
    }

    td.show-for-print {
        display: table-cell !important;
    }

    th.show-for-print {
        display: table-cell !important;
    }

    a[href]:after {
        content: none !important;
    }

    .tab-bar {
        display: none !important;
    }

    /* PRODUCT DETAIL
	----------------------------------- */
    .product-image-large {
        margin: 0 auto !important;
        text-align: center !important;
    }

    .product-intro-group .slider-nav {
        display: none !important;
    }

    .product-detail-accordion__panel .fa {
        display: none !important;
    }

    .product-detail-accordion__copy {
        display: block !important;
    }

    .cat-separator {
        display: none !important;
    }

    .category-ages ul {
        text-align: center !important;
        margin: 0 auto !important;
        width: 525px !important;
    }

        .category-ages ul li {
            display: inline-block !important;
        }

    .category-list-row .category-item {
        width: 242px !important;
    }

    .link-group img {
        display: none !important;
    }

    .newsletter-signup .icon-arrow-right {
        display: none !important;
    }
}

/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
	position: relative;
	margin: 0 auto 60px;
	padding: 0;
	*zoom: 1;
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

/** THEME
===================================*/

.bx-wrapper .bx-viewport {
		
	/*fix other elements on the page moving (on Chrome)*/
	-webkit-transform: translatez(0);
	-moz-transform: translatez(0);
    	-ms-transform: translatez(0);
    	-o-transform: translatez(0);
    	transform: translatez(0);
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/* LOADER */

.bx-wrapper .bx-loading {
	min-height: 50px;
	background: url(images/bx_loader.gif) center center no-repeat #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/* PAGER */

.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	left: 10px;
	background: url(images/controls.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-next {
	right: 10px;
	background: url(images/controls.png) no-repeat -43px -32px;
}

.bx-wrapper .bx-prev:hover {
	background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
	background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
	text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(images/controls.png) -86px -11px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(images/controls.png) -86px -44px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}

.loyalty-points-for-purchase {
    color: #a8a8a8;
    font-size: .8em;
    clear: both;
}

    .loyalty-points-for-purchase span {
        color: #eea402;
    }

.s2-rewards .row-blue {
    background: #02a4d3;
    font-size: 1.4em;
    padding: 0.45em 0;
    text-align: center;
    text-transform: uppercase;
}
.s2-rewards .row-blue i {
    color: #fff;
    font-style: normal;
    font-weight: bold;
}
.s2-rewards .row-purple {
    background: #9e1d97;
    font-size: 1.4em;
    padding: 0.45em 0;
    text-align: center;
    text-transform: uppercase;
    color: #ffb81d;
}
.s2-rewards .row-purple i {
    color: #fff;
    font-style: normal;
    font-weight: bold;
}

.rewards-header {
    margin: 0 0 .3em 0;
}

    .rewards-header h2 {
        margin: 0;
        padding: 0;
        text-align: center;
        font-size: 1.2em;
        font-weight: bold;
    }

    .rewards-header img {
        clear: both;
        margin: 0 0 3em 0;
    }

    .rewards-header h3 {
        color: #a1a3a5;
        margin: 0;
        padding: 0;
        text-align: center;
        font-size: 1.1em;
    }



/*Floating Corner Style*/
#RNChatCircle {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    cursor:pointer;
}

.chatsprite {
    display: inline-block;
    position: relative;
    text-indent: -9999px;
    width: 60px;
    height: 60px;
    background: url(/images/graphics/chat-sprite.png) no-repeat;
}

    .chatsprite:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: url(/images/graphics/chat-sprite.png) no-repeat;
        background-position: 0 -60px;
        opacity: 0;
        -webkit-transition: opacity 0.5s;
        -moz-transition: opacity 0.5s;
        -o-transition: opacity 0.5s;
    }

    .chatsprite:hover:after {
        opacity: 1;
    }


/*Obsolete Inline*/
.rn-click-chat-button {
    font-size: 80%;
    position: fixed;
    bottom: 15px;
    right: 20px;
    width: auto;
    z-index: 10000000;
    background: #94d600;
    border: 0;
    border-radius: 100px;
    box-shadow: 0 3px 12px 0 rgba(0,0,0,.25);
    box-sizing: border-box;
    outline: 0;
    margin: 0;
    padding: .3em 1.2em;
    color: #fff;
}

.rn-p {
    text-align: right;
    margin-bottom: 0;
}

.rn-chat-label {
    font-size: .9em;
    margin-right: .5em;
}

    .rn-chat-label.rn-wrap {
        float: left;
    }

.rn-chat-icon.rn-wrap {
    float: right;
    width: 46%;
}

/* Small to Medium*/
@media only screen and (min-width:29.625em) {

    .rn-chat-icon.rn-wrap {
        float: right;
        width: 27%;
    }
}

/*Medium 641*/
@media only screen and (min-width:40.063em) {

    .rn-chat-icon.rn-wrap {
        float: left;
        width: 50%;
    }
}

/*Medium to large */
@media only screen and (min-width:50em) {

    .rn-chat-icon.rn-wrap {
        float: left;
        margin: 0 0 0 1.4em;
    }
}

/*Large 1045*/
@media only screen and (min-width:65.3125em) {
    .rn-chat-icon.rn-wrap {
        float: left;
        margin: 0 0 0 2em;
    }
}

#MainHeader {
    border-top: 2px solid #046b99;
    border-bottom: 1px solid #666;
}

    #MainHeader .nav-item .nav-link {
        text-transform: uppercase;
        padding-right: .5em;
        padding-left: 0;
    }


#topRowNav {
    text-transform: uppercase;
}

    #topRowNav .top-item {
        margin: 0 0 0 0.8em;
    }

    #topRowNav .top-link {
        color: #727272;
    }

        #topRowNav .top-link:hover {
            color: #046b99;
        }
/*#topRowNav ul.navbar-nav, #topRowNav .nav-item {
    line-height: 10px;
}*/
.header-container {
    width: 100%;
}
/* Dropdown */
.dropdown-item.active, .dropdown-item:active {
    color: #000;
    background: #e9e9e9;
}

.dropdown-menu {
    font-size: 0.85rem;
}

.dropdown-item {
    padding: .2rem 0.8rem;
}

/* ---------- Breakpoints ----------- */
/* Mobile */
@media (max-width: 575px) {
    #MainHeader .nav-item .nav-link {
        font-size: 0.9rem;
        font-weight: bold;
        padding: 0.4em 1em;
    }

    #MainHeader .nav-item {
        border-top: 1px solid #ccc;
    }

    /* Deals to black */
    #MainHeader .nav-link span.text-red {
        color: #000;
    }

    /*Triangles*/
    #MainHeader .dropdown-toggle::after {
        float: right;
        margin-top: 0.6em;
    }
}

/* Other breakpoints */
@media (min-width: 576px) {

    .top-link {
        font-size: 0.5rem;
    }

    .dropdown-menu {
        font-size: 0.52rem;
    }

    #navCollapse .dropdown-menu {
        margin: 0;
    }

    #MainHeader .nav-item .nav-link {
        font-size: 0.55rem;
        padding-left: .5em;
    }
}

@media (min-width: 768px) {
    .header-container {
        max-width: 98%;
        margin: 0 auto;
    }

    .top-link {
        font-size: 0.55rem;
        padding-left: 1.3em;
    }

    .dropdown-menu {
        font-size: 0.6rem;
    }

    #MainHeader .nav-item .nav-link {
        font-size: 0.56rem;
        padding-left: 0.6em;
    }

    #MainHeader #sli_search_1 {
        width: 343px;
    }
}

@media (min-width: 800px) {
    #MainHeader .nav-item .nav-link {
        font-size: 0.56rem;
        padding-left: .5em;
    }
}


@media (min-width: 992px) {
    .header-container {
        max-width: 96%;
        margin: 0 auto;
    }

    .top-link {
        font-size: 0.65rem;
        padding-left: 1.3em;
    }

    .dropdown-menu {
        font-size: 0.7rem;
    }

    #MainHeader .nav-item .nav-link {
        font-size: 0.7rem;
        padding: 0 0 0 0.7rem;
    }
}

@media (min-width: 1200px) {
    .header-container {
        max-width: 1140px;
        margin: 0 auto;
    }

    .top-link {
        font-size: 0.62rem;
        padding-left: 1.3em;
    }

    .dropdown-menu {
        font-size: 0.75rem;
    }

    #MainHeader .nav-item .nav-link {
        font-size: 0.75rem;
        padding: 0 0 0 1.8rem;
    }
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #0075c9;
}

.navbar-brand {
    min-width: 50px;
}

form.has-touch [data-provide="rac"] {
    min-height: 38px !important;
    max-height: 38px;
    padding: 0.375rem 0.7rem;
}

.navbar-light .navbar-nav .nav-link {
    color: #000000;
}

    .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
        color: #046b99;
    }

/* Mobile */
#MainHeader .quick-link {
    background-color: #757575;
}

    #MainHeader .quick-link .nav-link {
        color: #fff;
        padding: 0.5em 0 0.5em 0.6em;
        font-size: 0.7rem;
    }

/* Mobile Hamburger Toggle */
#MainHeader button:hover, #MainHeader button:focus, #MainHeader .button:hover, #MainHeader .button:focus {
    background: #e9e9e9;
}

/* Home */
.product-info-title {
    clear: both;
    margin: 0;
}

    .product-info-title a {
        text-align: left;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 0.9em;
    }


/* PDP */
.btn-primary {
    color: #fff !important;
}

/* General blue buttons */
.btn-outline-blue {
    color: #fff;
    background-color: #046b99;
    border-color: #046b99;
}

    .btn-outline-blue:hover {
        color: #fff;
        background-color: #0d86bb;
        border-color: #333;
    }

    .btn-outline-blue.focus, .btn-outline-blue:focus {
        box-shadow: 0 0 0 .2rem rgba(108,117,125,.5);
    }


/* GDPR */
#CookieTerms {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.bg-grey {
    background: #757575;
}

    .bg-grey .btn-secondary {
        background-color: #5678A4;
    }

/* SLI Fix for BS4 */
.bs4-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}
