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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ms-container {
  background: transparent url("../images/switch.png") no-repeat 50% 50%;
  width: 370px;
}

.ms-container:after {
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  font-size: 0;
  clear: both;
  min-height: 0;
  visibility: hidden;
}

.ms-container .ms-selectable, .ms-container .ms-selection {
  background: #fff;
  color: #555555;
  float: left;
  width: 45%;
}

.ms-container .ms-selection {
  float: right;
}

.ms-container .ms-list {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border linear 0.2s, box-shadow linear 0.2s;
  border: 1px solid #ccc;
  border-radius: 3px;
  position: relative;
  height: 200px;
  padding: 0;
  overflow-y: auto;
}

.ms-container .ms-list.ms-focus {
  border-color: rgba(82, 168, 236, 0.8);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  outline: 0;
  outline: thin dotted \9 ;
}

.ms-container ul {
  margin: 0;
  list-style-type: none;
  padding: 0;
}

.ms-container .ms-optgroup-container {
  width: 100%;
}

.ms-container .ms-optgroup-label {
  margin: 0;
  padding: 5px 0px 0px 5px;
  cursor: pointer;
  color: #999;
}

.ms-container .ms-selectable li.ms-elem-selectable,
.ms-container .ms-selection li.ms-elem-selection {
  border-bottom: 1px #eee solid;
  padding: 2px 10px;
  color: #555;
  font-size: 14px;
}

.ms-container .ms-selectable li.ms-hover,
.ms-container .ms-selection li.ms-hover {
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  background-color: #1E90FA;
}

.ms-container .ms-selectable li.disabled,
.ms-container .ms-selection li.disabled {
  background-color: #eee;
  color: #aaa;
  cursor: text;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

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

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.trade-in-pricing-ctrl {
  text-align: center;
  margin: 1rem 0;
  opacity: 0;
}
.trade-in-pricing-ctrl .product-image-2 {
  display: none;
}
.trade-in-pricing-ctrl.initialized {
  transition: opacity 1000ms ease-in;
  opacity: 1;
}
.trade-in-pricing-ctrl h1 {
  margin: 0 0 1.5rem !important;
  width: 100%;
  color: #fff;
  font-size: 1.33rem;
  color: #f4f4f4;
}
.trade-in-pricing-ctrl h1 strong {
  color: #fff;
  font-size: 1.88rem;
}
.trade-in-pricing-ctrl h5 {
  color: #fff;
  margin: 0 0 1rem;
  font-size: 1.75rem;
  text-align: left;
}
.trade-in-pricing-ctrl > div {
  min-height: 15rem;
}
.trade-in-pricing-ctrl .guarantee-weight {
  font-weight: 700;
}
.trade-in-pricing-ctrl .answer-history {
  margin-top: 2rem;
  text-align: left;
}
.trade-in-pricing-ctrl .answer-history.ng-hide-add {
  transform: rotateZ(0);
  transform-origin: top;
  transition: all 0.5s ease-in-out;
}
.trade-in-pricing-ctrl .answer-history h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.trade-in-pricing-ctrl .answer-history .history-answer {
  font-size: 1rem;
  font-weight: bold;
  color: #ddd;
  display: inline-block;
}
.trade-in-pricing-ctrl .answer-history a {
  font-size: 0.8rem;
  color: #ccc;
  display: inline-block;
  margin-left: 10px;
  line-height: 1.1rem;
}
.trade-in-pricing-ctrl .answer-history a i {
  font-size: 0.7rem;
}
.trade-in-pricing-ctrl .answer-history a:hover {
  text-decoration: none;
}
.trade-in-pricing-ctrl .answer-history hr {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin: 1.75rem 0;
}
.trade-in-pricing-ctrl .answer-tooltip {
  display: inline-block;
  font-size: 0.7rem;
  text-align: center;
  margin: 0.25rem 0;
}
.trade-in-pricing-ctrl .answer-selections {
  list-style-type: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.trade-in-pricing-ctrl .answer-selections * {
  cursor: pointer;
}
.trade-in-pricing-ctrl .answer-selections li {
  cursor: pointer;
  position: relative;
  font-size: 1.1rem;
  transition: all 0.2s;
  color: #fff;
  margin-bottom: 0.5rem;
  text-align: center;
  display: flex;
  padding: 0;
}
.trade-in-pricing-ctrl .answer-selections li:hover .box {
  background: #f1fbeb;
}
.trade-in-pricing-ctrl .answer-selections li:focus, .trade-in-pricing-ctrl .answer-selections li:hover {
  outline: 0;
  color: #C8E1BA;
}
.trade-in-pricing-ctrl .answer-selections li:focus .box, .trade-in-pricing-ctrl .answer-selections li:hover .box {
  border-color: #C8E1BA;
}
.trade-in-pricing-ctrl .answer-selections li.selected {
  color: #C8E1BA;
}
.trade-in-pricing-ctrl .answer-selections li.selected .box {
  border-color: #C8E1BA;
}
.trade-in-pricing-ctrl .answer-selections li.inactive-with-message .box {
  opacity: 0.66;
}
.trade-in-pricing-ctrl .answer-selections li.inactive-with-message .box:hover {
  opacity: 0.9;
}
@media (max-width: 850px) {
  .trade-in-pricing-ctrl .answer-selections.has-answer-message {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}
@media (max-width: 490px) {
  .trade-in-pricing-ctrl .answer-selections.has-answer-message {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }
}
@media (max-width: 420px) {
  .trade-in-pricing-ctrl .answer-selections.has-answer-message {
    margin-left: -1.95rem;
    margin-right: -1.95rem;
  }
}
@media (max-width: 850px) {
  .trade-in-pricing-ctrl .answer-selections.has-answer-message li {
    transition: none;
    width: 8.5rem;
    font-size: 1rem;
  }
}
@media (max-width: 775px) {
  .trade-in-pricing-ctrl .answer-selections.has-answer-message li {
    width: 7.5rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 690px) {
  .trade-in-pricing-ctrl .answer-selections.has-answer-message li {
    width: 6.75rem;
    font-size: 0.8rem;
  }
  .trade-in-pricing-ctrl .answer-selections.has-answer-message li .box {
    margin: 0.1rem;
    min-height: 3rem;
  }
}
@media (max-width: 625px) {
  .trade-in-pricing-ctrl .answer-selections.has-answer-message li {
    width: 6.25rem;
    font-size: 0.7rem;
  }
  .trade-in-pricing-ctrl .answer-selections.has-answer-message li .box {
    min-height: 2.5rem;
  }
}
@media (max-width: 580px) {
  .trade-in-pricing-ctrl .answer-selections.has-answer-message li {
    width: 5.25rem;
    font-size: 0.675rem;
  }
}
@media (max-width: 490px) {
  .trade-in-pricing-ctrl .answer-selections.has-answer-message li {
    width: 4.33rem;
    font-size: 0.65rem;
  }
}
@media (max-width: 370px) {
  .trade-in-pricing-ctrl .answer-selections.has-answer-message li {
    width: 3.66rem;
    font-size: 0.6rem;
  }
}
.trade-in-pricing-ctrl .disc {
  position: relative;
  display: inline-block;
  margin: 0.5rem auto 0;
  display: inline-block;
  float: none;
}
.trade-in-pricing-ctrl .disc span {
  position: absolute;
  top: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.trade-in-pricing-ctrl .box {
  transition: all 0.5s;
  padding: 0.25rem;
  background: #fff;
  color: #333;
  font-weight: 500;
  border-radius: 5px;
  border: 1px solid #77bdda;
  text-align: center;
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 8.7rem;
  margin: 0.5rem;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
  position: relative;
}
.trade-in-pricing-ctrl .box.selectedWithMessage {
  border-bottom: 3px solid #C8E1BA;
}
.trade-in-pricing-ctrl .box.selectedWithMessage:after {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-top: 8px solid #C8E1BA;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
}
.trade-in-pricing-ctrl .box .image-wrap {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: none;
  line-height: 0;
  margin: 0.5rem 0;
}
.trade-in-pricing-ctrl .box .image-wrap .answer-icon {
  background: rgba(255, 255, 255, 0) no-repeat center center;
  background-size: contain;
  display: inline-block;
  width: 100%;
  height: 2.5rem;
}
.trade-in-pricing-ctrl .box .answer-txt {
  flex: 1;
}
.trade-in-pricing-ctrl .box .answer-txt.has-indicator {
  padding: 0.5rem 0.25rem 0.5rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.2rem;
  text-align: left;
}
.trade-in-pricing-ctrl .box .answer-txt.has-indicator .selected-indicator {
  float: left;
  position: absolute;
  top: 50%;
  height: 1rem;
  margin-top: -0.5rem;
  left: 9px;
}
.trade-in-pricing-ctrl .box .answer-txt .selected-indicator {
  font-size: 94%;
  display: inline-block;
}
.trade-in-pricing-ctrl .box .answer-txt .selected-indicator span {
  display: inline-block;
  padding: 0 3px 0 0;
}
.trade-in-pricing-ctrl .back-btn {
  color: #eee;
  border-bottom: #ddd 1px dotted;
  float: left;
  display: inline-block;
  margin: 0.375rem 0;
}
.trade-in-pricing-ctrl .back-btn:hover {
  text-decoration: none;
}
.trade-in-pricing-ctrl .next-btn {
  outline: 0 !important;
  float: right;
}
.trade-in-pricing-ctrl .next-btn.secondary {
  opacity: 0.5;
}
.trade-in-pricing-ctrl .next-btn.secondary.success {
  opacity: 1;
}
.trade-in-pricing-ctrl .btn-barrier {
  clear: both;
  height: 1.5rem;
}
.trade-in-pricing-ctrl .btn-wrap {
  min-height: 2.5rem;
}
.trade-in-pricing-ctrl .offer hr {
  border-color: #eee;
  border-style: dotted;
}
.trade-in-pricing-ctrl .offer button {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  text-align: center;
}
.trade-in-pricing-ctrl .offer button.success {
  width: 62.5%;
}
.trade-in-pricing-ctrl .offer button.secondary {
  width: 30%;
  color: #888;
  background: #eee;
  font-weight: 400;
}
.trade-in-pricing-ctrl .offer button.secondary:hover {
  background: #ccc;
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .trade-in-pricing-ctrl .offer button.success {
    width: 55%;
  }
  .trade-in-pricing-ctrl .offer button.secondary {
    width: 35%;
  }
}
@media only screen and (min-width:992px) and (max-width:1199px) {
  .trade-in-pricing-ctrl .offer button.success {
    width: 42.5%;
  }
  .trade-in-pricing-ctrl .offer button.secondary {
    width: 42.5%;
  }
}
.trade-in-pricing-ctrl .offer-loading {
  height: 25rem;
  position: relative;
}
.trade-in-pricing-ctrl .offer-loading span {
  width: 100%;
  text-align: center;
  display: inline-block;
  margin-top: 2rem;
  color: #444;
}
.trade-in-pricing-ctrl .question-tooltip-2 {
  display: none;
}
.trade-in-pricing-ctrl .question-tooltip {
  position: relative;
  width: 100%;
  display: inline-block;
}
.trade-in-pricing-ctrl .question-tooltip .tip-body {
  cursor: pointer;
  cursor: help;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.8rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  font-weight: 500;
  color: #EEE;
  float: left;
  font-size: 0.8rem;
  cursor: pointer;
  cursor: help;
  margin-bottom: 1rem;
}
.trade-in-pricing-ctrl .question-tooltip.esn-imei {
  font-weight: 500;
  color: #999;
  font-size: 0.75rem;
}
.trade-in-pricing-ctrl .question-tooltip-window {
  display: none;
  font-weight: 500;
}
.trade-in-pricing-ctrl .question-tooltip-window .modal-body {
  text-align: left;
  font-size: 0.8rem;
}
.trade-in-pricing-ctrl .answer-message-box {
  color: #EEE;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 0.9rem 1.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  max-width: 40rem;
  margin: 0.5rem auto;
}
.trade-in-pricing-ctrl .answer-message-box p {
  margin-bottom: 0.5rem;
}
.trade-in-pricing-ctrl .answer-message-box *:last-child {
  margin-bottom: 0;
}
.trade-in-pricing-ctrl .quote-list {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding: 2rem 0 0 0;
  margin: 0;
}
.trade-in-pricing-ctrl .quote-list li {
  width: 100%;
  float: left;
  box-sizing: border-box;
  padding: 0 5px 0 25px;
  list-style: none;
  background: url(https://s3.amazonaws.com/bbt-site/checkmark.png) 0 0 no-repeat;
  background-size: 18px 18px;
  margin: 0 0 10px 0;
  line-height: 21px;
}

.pricing-form-final-offer h3 {
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
}
.pricing-form-final-offer h4 {
  font-size: 0.9rem;
  color: #eee;
  margin-bottom: 2rem;
}
.pricing-form-final-offer h4 span {
  border-bottom: 1px solid #d5d5d5;
}
.pricing-form-final-offer .product-img {
  margin-bottom: 2rem;
  float: right;
}
@media only screen and (max-width: 767px) {
  .pricing-form-final-offer .product-img {
    float: none;
  }
}
.pricing-form-final-offer .offer-box {
  max-width: 24rem;
  text-align: left;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .pricing-form-final-offer .offer-box {
    margin: 0 auto;
  }
}
.pricing-form-final-offer .offer-box .name {
  font-size: 1rem;
  letter-spacing: 2px;
}
.pricing-form-final-offer .offer-box .price {
  font-size: 3.66rem;
  line-height: 3.66rem;
  display: inline-block;
}
.pricing-form-final-offer ul.circles .disc {
  width: 4rem;
  height: 4rem;
  border-width: 3px;
  margin: 0 auto;
}
.pricing-form-final-offer ul.circles .disc:hover {
  margin-bottom: 0;
  margin-top: 0;
}
.pricing-form-final-offer .breadcrumb {
  background: 0;
  margin: 1rem 0 0.5rem;
}
.pricing-form-final-offer .breadcrumb .crumb {
  text-align: center;
  max-width: 4rem;
  color: #fff;
  font-size: 0.85rem;
  margin: 0 1rem 1rem 0;
}
.pricing-form-final-offer .text-breadcrumb {
  text-align: center;
  margin: 0 0 1.5rem;
  font-size: 1.2rem;
}
.pricing-form-final-offer .text-breadcrumb .text {
  color: #eee;
}
.pricing-form-final-offer .guarantee {
  font-size: 0.9rem;
  color: #fff;
  text-align: left;
  font-weight: 300;
  margin: 1.5rem 0 2rem;
}
.pricing-form-final-offer .guarantee .guarantee-image-2 {
  display: none;
}
.pricing-form-final-offer .guarantee img {
  float: left;
  padding: 0.25rem 0.75rem 0.25rem 0;
  margin-top: -8px;
}
.pricing-form-final-offer .btn-accept {
  border: 2px solid #bfdc50;
  background: #cfe57c;
  color: #555;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem 0.65rem;
  margin-top: 1.6rem !important;
  float: none;
}
.pricing-form-final-offer .btn-accept:hover {
  border-color: rgb(197.4, 223.5, 97.5);
  background-color: rgb(216.6, 234.2, 150.2);
}
.pricing-form-final-offer .back-btn-edit {
  display: none !important;
}
.pricing-form-final-offer .back-btn {
  float: none;
  margin-top: 1rem;
  display: inline-block;
  font-size: 0.85rem;
  border-bottom: #ddd 1px dotted;
}
.pricing-form-final-offer .back-btn.final {
  border-bottom: none;
  padding: 1.6rem 0.5rem 0.65rem;
  margin-top: 1rem;
  font-size: 0.85rem;
}
.pricing-form-final-offer .review-widget-ratings-wrap {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  border: rgba(255, 255, 255, 0.5) 1px solid;
}
.pricing-form-final-offer .review-widget-ratings-wrap .rating-msg {
  font-size: 0.85rem;
  margin: 0.5rem 0 1rem;
}
.pricing-form-final-offer .review-widget-ratings-wrap .rating-msg .stars {
  margin-top: -5px;
}
.pricing-form-final-offer .review-widget-ratings-wrap .rating-msg .stars > span {
  width: 93px;
}
.pricing-form-final-offer .review-widget-ratings-wrap .rating-msg .rating {
  color: #ddd;
  margin-top: -10px;
  display: inline-block;
}
.pricing-form-final-offer .review-widget-ratings-wrap .rating-msg .extra-text {
  display: none;
}
.pricing-form-final-offer .review-widget-ratings-wrap .rating-msg .logo img {
  width: 100px;
}
.pricing-form-final-offer .review-widget-ratings-wrap .col.bbb {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.trade-in-pricing-ctrl-2 {
  text-align: center;
  margin: 1rem 0;
  opacity: 0;
  color: #000;
  background: #EDEFF0;
  padding: 2rem;
  border-radius: 6px;
}
.trade-in-pricing-ctrl-2 .product-image {
  display: none;
}
.trade-in-pricing-ctrl-2.initialized {
  transition: opacity 1000ms ease-in;
  opacity: 1;
}
.trade-in-pricing-ctrl-2 h1 {
  margin: 0 0 1.5rem !important;
  width: 100%;
  color: #212529;
  font-size: 1.33rem;
  color: #333;
}
.trade-in-pricing-ctrl-2 h1 strong {
  color: #212529;
  font-size: 1.88rem;
}
.trade-in-pricing-ctrl-2 h5 {
  color: #212529;
  margin: 0 0 1rem;
  font-size: 1.3rem;
  text-align: left;
}
.trade-in-pricing-ctrl-2 > div {
  min-height: 0rem;
}
.trade-in-pricing-ctrl-2 .guarantee-weight {
  font-weight: 700;
}
.trade-in-pricing-ctrl-2 .answer-history {
  margin-top: 2rem;
  text-align: left;
}
.trade-in-pricing-ctrl-2 .answer-history.ng-hide-add {
  transform: rotateZ(0);
  transform-origin: top;
  transition: all 0.5s ease-in-out;
}
.trade-in-pricing-ctrl-2 .answer-history h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.trade-in-pricing-ctrl-2 .answer-history .history-answer {
  font-size: 1rem;
  font-weight: bold;
  color: #666;
  display: inline-block;
}
.trade-in-pricing-ctrl-2 .answer-history a {
  font-size: 0.8rem;
  color: #328bf2;
  display: inline-block;
  margin-left: 10px;
  line-height: 1.1rem;
}
.trade-in-pricing-ctrl-2 .answer-history a i {
  font-size: 0.7rem;
}
.trade-in-pricing-ctrl-2 .answer-history a:hover {
  text-decoration: none;
}
.trade-in-pricing-ctrl-2 .answer-history hr {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin: 1.75rem 0;
}
.trade-in-pricing-ctrl-2 .answer-tooltip {
  display: inline-block;
  font-size: 0.7rem;
  text-align: center;
  margin: 0.25rem 0;
}
.trade-in-pricing-ctrl-2 .answer-selections {
  list-style-type: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.trade-in-pricing-ctrl-2 .answer-selections * {
  cursor: pointer;
}
.trade-in-pricing-ctrl-2 .answer-selections li {
  cursor: pointer;
  position: relative;
  font-size: 1.1rem;
  transition: all 0.2s;
  color: #212529;
  margin-bottom: 0.5rem;
  text-align: center;
  display: flex;
  padding: 0;
}
.trade-in-pricing-ctrl-2 .answer-selections li:hover .box {
  background: #f1fbeb;
}
.trade-in-pricing-ctrl-2 .answer-selections li:focus, .trade-in-pricing-ctrl-2 .answer-selections li:hover {
  outline: 0;
  color: #C8E1BA;
}
.trade-in-pricing-ctrl-2 .answer-selections li:focus .box, .trade-in-pricing-ctrl-2 .answer-selections li:hover .box {
  border-color: #C8E1BA;
}
.trade-in-pricing-ctrl-2 .answer-selections li.selected {
  color: #C8E1BA;
}
.trade-in-pricing-ctrl-2 .answer-selections li.selected .box {
  border-color: #C8E1BA;
}
.trade-in-pricing-ctrl-2 .answer-selections li.inactive-with-message .box {
  opacity: 0.66;
}
.trade-in-pricing-ctrl-2 .answer-selections li.inactive-with-message .box:hover {
  opacity: 0.9;
}
@media (max-width: 850px) {
  .trade-in-pricing-ctrl-2 .answer-selections.has-answer-message {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}
@media (max-width: 490px) {
  .trade-in-pricing-ctrl-2 .answer-selections.has-answer-message {
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }
}
@media (max-width: 420px) {
  .trade-in-pricing-ctrl-2 .answer-selections.has-answer-message {
    margin-left: -1.95rem;
    margin-right: -1.95rem;
  }
}
@media (max-width: 850px) {
  .trade-in-pricing-ctrl-2 .answer-selections.has-answer-message li {
    transition: none;
    width: 8.5rem;
    font-size: 1rem;
  }
}
@media (max-width: 775px) {
  .trade-in-pricing-ctrl-2 .answer-selections.has-answer-message li {
    width: 7.5rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 690px) {
  .trade-in-pricing-ctrl-2 .answer-selections.has-answer-message li {
    width: 6.75rem;
    font-size: 0.8rem;
  }
  .trade-in-pricing-ctrl-2 .answer-selections.has-answer-message li .box {
    margin: 0.1rem;
    min-height: 3rem;
  }
}
@media (max-width: 625px) {
  .trade-in-pricing-ctrl-2 .answer-selections.has-answer-message li {
    width: 6.25rem;
    font-size: 0.7rem;
  }
  .trade-in-pricing-ctrl-2 .answer-selections.has-answer-message li .box {
    min-height: 2.5rem;
  }
}
@media (max-width: 580px) {
  .trade-in-pricing-ctrl-2 .answer-selections.has-answer-message li {
    width: 5.25rem;
    font-size: 0.675rem;
  }
}
@media (max-width: 490px) {
  .trade-in-pricing-ctrl-2 .answer-selections.has-answer-message li {
    width: 4.33rem;
    font-size: 0.65rem;
  }
}
@media (max-width: 370px) {
  .trade-in-pricing-ctrl-2 .answer-selections.has-answer-message li {
    width: 3.66rem;
    font-size: 0.6rem;
  }
}
.trade-in-pricing-ctrl-2 .disc {
  position: relative;
  display: inline-block;
  margin: 0.5rem auto 0;
  display: inline-block;
  float: none;
}
.trade-in-pricing-ctrl-2 .disc span {
  position: absolute;
  top: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.trade-in-pricing-ctrl-2 .indicator-boxes {
  width: 8.5rem !important;
}
.trade-in-pricing-ctrl-2 .box {
  transition: all 0.5s;
  padding: 0.25rem;
  background: #fff;
  color: #333;
  font-weight: 500;
  border-radius: 5px;
  text-align: center;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 6.7rem;
  margin: 0.5rem;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
  position: relative;
}
.trade-in-pricing-ctrl-2 .box.selectedWithMessage {
  border-bottom: 3px solid #C8E1BA;
}
.trade-in-pricing-ctrl-2 .box.selectedWithMessage:after {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-top: 8px solid #C8E1BA;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
}
.trade-in-pricing-ctrl-2 .box .image-wrap {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: none;
  line-height: 0;
  margin: 0.5rem 0;
}
.trade-in-pricing-ctrl-2 .box .image-wrap .answer-icon {
  background: rgba(255, 255, 255, 0) no-repeat center center;
  background-size: contain;
  display: inline-block;
  width: 100%;
  height: 2.5rem;
}
.trade-in-pricing-ctrl-2 .box .answer-txt {
  flex: 1;
}
.trade-in-pricing-ctrl-2 .box .answer-txt.has-indicator {
  padding: 0.5rem 0.25rem 0.5rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.2rem;
  text-align: left;
}
.trade-in-pricing-ctrl-2 .box .answer-txt.has-indicator .selected-indicator {
  float: left;
  position: absolute;
  top: 50%;
  height: 1rem;
  margin-top: -0.5rem;
  left: 9px;
}
.trade-in-pricing-ctrl-2 .box .answer-txt .selected-indicator {
  font-size: 94%;
  display: inline-block;
}
.trade-in-pricing-ctrl-2 .box .answer-txt .selected-indicator span {
  display: inline-block;
  padding: 0 3px 0 0;
}
.trade-in-pricing-ctrl-2 .back-btn-go-back {
  display: none !important;
}
.trade-in-pricing-ctrl-2 .back-btn {
  color: #328bf2;
  border-bottom: #ddd 1px dotted;
  float: left;
  display: inline-block;
  margin: 0.375rem 0;
}
.trade-in-pricing-ctrl-2 .back-btn:hover {
  text-decoration: none;
}
.trade-in-pricing-ctrl-2 .next-btn {
  outline: 0 !important;
  float: right;
}
.trade-in-pricing-ctrl-2 .next-btn.secondary {
  opacity: 0.5;
}
.trade-in-pricing-ctrl-2 .next-btn.secondary.success {
  opacity: 1;
}
.trade-in-pricing-ctrl-2 .btn-barrier {
  clear: both;
  height: 1.5rem;
}
.trade-in-pricing-ctrl-2 .btn-wrap {
  min-height: 2.5rem;
}
.trade-in-pricing-ctrl-2 .offer hr {
  border-color: #333;
  border-style: dotted;
}
.trade-in-pricing-ctrl-2 .offer button {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  text-align: center;
}
.trade-in-pricing-ctrl-2 .offer button.success {
  width: 62.5%;
}
.trade-in-pricing-ctrl-2 .offer button.secondary {
  width: 30%;
  color: #888;
  background: #333;
  font-weight: 400;
}
.trade-in-pricing-ctrl-2 .offer button.secondary:hover {
  background: #ccc;
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .trade-in-pricing-ctrl-2 .offer button.success {
    width: 55%;
  }
  .trade-in-pricing-ctrl-2 .offer button.secondary {
    width: 35%;
  }
}
@media only screen and (min-width:992px) and (max-width:1199px) {
  .trade-in-pricing-ctrl-2 .offer button.success {
    width: 42.5%;
  }
  .trade-in-pricing-ctrl-2 .offer button.secondary {
    width: 42.5%;
  }
}
.trade-in-pricing-ctrl-2 .offer-loading {
  height: 25rem;
  position: relative;
}
.trade-in-pricing-ctrl-2 .offer-loading span {
  width: 100%;
  text-align: center;
  display: inline-block;
  margin-top: 2rem;
  color: #444;
}
.trade-in-pricing-ctrl-2 .question-tooltip {
  display: none;
}
.trade-in-pricing-ctrl-2 .question-tooltip-2 {
  display: inline-block;
}
.trade-in-pricing-ctrl-2 .question-tooltip-2 .tip-body {
  cursor: pointer;
  cursor: help;
  padding: 0rem 0rem;
  border: 1px solid #328bf2;
  padding: 0.3rem 0.5rem;
  border-radius: 50%;
  display: inline-block;
  font-weight: 500;
  color: #328bf2;
  float: left;
  font-size: 0.6rem;
  cursor: pointer;
  cursor: help;
  margin-bottom: -0.2rem;
}
.trade-in-pricing-ctrl-2 .question-tooltip-2.esn-imei {
  font-weight: 500;
  color: #999;
  font-size: 0.75rem;
}
.trade-in-pricing-ctrl-2 .question-tooltip-window {
  display: none;
  font-weight: 500;
}
.trade-in-pricing-ctrl-2 .question-tooltip-window .modal-body {
  text-align: left;
  font-size: 0.8rem;
}
.trade-in-pricing-ctrl-2 .answer-message-box {
  color: #333;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 0.9rem 1.4rem 0.8rem;
  max-width: 40rem;
  margin: 0.5rem auto;
}
.trade-in-pricing-ctrl-2 .answer-message-box p {
  margin-bottom: 0.5rem;
}
.trade-in-pricing-ctrl-2 .answer-message-box *:last-child {
  margin-bottom: 0;
}
.trade-in-pricing-ctrl-2 .quote-list {
  border-top: 1px solid rgb(213, 213, 213);
  padding: 2rem 0 0 0;
  margin: 0;
}
.trade-in-pricing-ctrl-2 .quote-list li {
  width: 100%;
  float: left;
  box-sizing: border-box;
  padding: 0 5px 0 25px;
  list-style: none;
  background: url(https://s3.amazonaws.com/bbt-site/checkmark.png) 0 0 no-repeat;
  background-size: 18px 18px;
  margin: 0 0 10px 0;
  line-height: 21px;
}

.pricing-form-final-offer-2 h3 {
  font-size: 2rem;
  text-transform: uppercase;
  color: #212529;
}
.pricing-form-final-offer-2 h4 {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 2rem;
}
.pricing-form-final-offer-2 h4 span {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #d5d5d5;
}
.pricing-form-final-offer-2 .name {
  color: #333 !important;
}
.pricing-form-final-offer-2 .product-img {
  margin-bottom: 2rem;
  float: right;
}
@media only screen and (max-width: 767px) {
  .pricing-form-final-offer-2 .product-img {
    float: none;
  }
}
.pricing-form-final-offer-2 .product-img .name {
  color: #333 !important;
}
.pricing-form-final-offer-2 .product-img img {
  max-height: 115px !important;
}
.pricing-form-final-offer-2 .offer-box {
  max-width: 24rem;
  text-align: left;
  color: #333;
}
@media only screen and (max-width: 767px) {
  .pricing-form-final-offer-2 .offer-box {
    margin: 0 auto;
  }
}
.pricing-form-final-offer-2 .offer-box .name {
  font-size: 1rem;
  letter-spacing: 2px;
}
.pricing-form-final-offer-2 .offer-box .price {
  font-size: 3.66rem;
  line-height: 3.66rem;
  display: inline-block;
}
.pricing-form-final-offer-2 ul.circles .disc {
  width: 4rem;
  height: 4rem;
  border-width: 3px;
  margin: 0 auto;
}
.pricing-form-final-offer-2 ul.circles .disc:hover {
  margin-bottom: 0;
  margin-top: 0;
}
.pricing-form-final-offer-2 .breadcrumb {
  background: 0;
  margin: 1rem 0 0.5rem;
}
.pricing-form-final-offer-2 .breadcrumb .crumb {
  text-align: center;
  max-width: 4rem;
  color: #fff;
  font-size: 0.85rem;
  margin: 0 1rem 1rem 0;
}
.pricing-form-final-offer-2 .text-breadcrumb {
  text-align: center;
  margin: 0 0 1.5rem;
  font-size: 1.2rem;
}
.pricing-form-final-offer-2 .text-breadcrumb .text {
  color: #333;
}
.pricing-form-final-offer-2 .text-breadcrumb .divider {
  color: #333;
}
.pricing-form-final-offer-2 .guarantee {
  font-size: 0.9rem;
  color: #333;
  text-align: left;
  font-weight: 300;
  margin: 1.5rem 0 2rem;
}
.pricing-form-final-offer-2 .guarantee .guarantee-image {
  display: none;
}
.pricing-form-final-offer-2 .guarantee img {
  float: left;
  padding: 0.25rem 0.75rem 0.25rem 0;
  margin-top: -8px;
}
.pricing-form-final-offer-2 .btn-checkout {
  border: 2px solid #bfdc50;
  background: #cfe57c;
  color: #555;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 2.5rem;
  padding: 0.3rem 1.2rem 0.3rem;
  margin-top: 1rem !important;
  float: none;
}
.pricing-form-final-offer-2 .btn-checkout:hover {
  border-color: rgb(197.4, 223.5, 97.5);
  background-color: rgb(216.6, 234.2, 150.2);
}
.pricing-form-final-offer-2 .btn-accept {
  border: 2px solid #333;
  background: transparent;
  color: #555;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 2.5rem;
  padding: 0.3rem 1.2rem 0.3rem;
  margin-top: 1rem !important;
  float: none;
}
.pricing-form-final-offer-2 .btn-accept:hover {
  border-color: #b0b0b0;
  background-color: #d4d4d4;
}
.pricing-form-final-offer-2 .back-btn {
  float: none;
  margin-top: 1rem;
  display: inline-block;
  font-size: 0.85rem;
  border-bottom: #ddd 1px dotted;
}
.pricing-form-final-offer-2 .back-btn.final {
  border-bottom: none;
  padding: 0.5rem 0.5rem 0.5rem;
  background: #999;
  color: #fff;
  border-radius: 6px;
  margin-top: 0.7rem;
  font-size: 0.85rem;
}
.pricing-form-final-offer-2 .review-widget-ratings-wrap {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  border: rgba(255, 255, 255, 0.5) 1px solid;
}
.pricing-form-final-offer-2 .review-widget-ratings-wrap .rating-msg {
  font-size: 0.85rem;
  margin: 0.5rem 0 1rem;
}
.pricing-form-final-offer-2 .review-widget-ratings-wrap .rating-msg .stars {
  margin-top: -5px;
}
.pricing-form-final-offer-2 .review-widget-ratings-wrap .rating-msg .stars > span {
  width: 93px;
}
.pricing-form-final-offer-2 .review-widget-ratings-wrap .rating-msg .rating {
  color: #666;
  margin-top: -10px;
  display: inline-block;
}
.pricing-form-final-offer-2 .review-widget-ratings-wrap .rating-msg .extra-text {
  display: none;
}
.pricing-form-final-offer-2 .review-widget-ratings-wrap .rating-msg .logo img {
  width: 100px;
}
.pricing-form-final-offer-2 .review-widget-ratings-wrap .col.bbb {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.trade-in-pricing-ctrl.compact {
  margin: 0;
}
.trade-in-pricing-ctrl.compact h5 {
  font-size: 1.33rem;
  color: #333;
}
.trade-in-pricing-ctrl.compact .answer-txt {
  color: #333;
  font-size: 0.9rem;
  padding-bottom: 0;
}
.trade-in-pricing-ctrl.compact .answer-history {
  margin: 1rem 0;
}
.trade-in-pricing-ctrl.compact .answer-history hr {
  display: none;
}
.trade-in-pricing-ctrl.compact .answer-history .history-answer {
  color: #666;
  font-weight: normal;
}
.trade-in-pricing-ctrl.compact .answer-history a {
  color: #999;
}
.trade-in-pricing-ctrl.compact .answer-history h5 {
  font-weight: 500;
}
.trade-in-pricing-ctrl.compact .question-tooltip {
  display: none;
}
.trade-in-pricing-ctrl.compact .box {
  border-width: 3px;
  margin: 5px 20px;
  border-color: #333;
}
.trade-in-pricing-ctrl.compact .box.selectedWithMessage {
  border-bottom: 3px solid #333;
}
.trade-in-pricing-ctrl.compact .answer-selections li {
  line-height: 1rem;
  padding-right: 5px;
  padding-left: 5px;
  transition: none !important;
}
.trade-in-pricing-ctrl.compact .answer-selections li:hover .box, .trade-in-pricing-ctrl.compact .answer-selections li:focus .box, .trade-in-pricing-ctrl.compact .answer-selections li.selected .box {
  outline: 0;
  border-color: #333;
}
.trade-in-pricing-ctrl.compact .answer-selections li.has-previous-answer {
  margin-bottom: 1rem;
}
.trade-in-pricing-ctrl.compact .label.secondary {
  font-size: 0.7rem;
  position: absolute;
  bottom: -1.1rem;
  width: 100%;
  border-radius: 5px;
  left: 0;
}
.trade-in-pricing-ctrl.compact .back-btn {
  color: #555;
  border-color: #BBB;
}
.trade-in-pricing-ctrl.compact .answer-message-box {
  color: #333;
}
.trade-in-pricing-ctrl.compact .pricing-form-final-offer h3 {
  color: #333;
}
.trade-in-pricing-ctrl.compact .pricing-form-final-offer h4 {
  color: #555;
}
.trade-in-pricing-ctrl.compact .pricing-form-final-offer .offer-box {
  color: #333;
}
.trade-in-pricing-ctrl.compact .pricing-form-final-offer .guarantee {
  color: #555;
}
.trade-in-pricing-ctrl.compact .pricing-form-final-offer .text-breadcrumb {
  display: none;
}
.trade-in-pricing-ctrl.compact .pricing-form-final-offer .breadcrumb {
  margin: 0.25rem 0 0 5rem;
}
.trade-in-pricing-ctrl.compact .pricing-form-final-offer .breadcrumb .crumb {
  color: #555;
}
.trade-in-pricing-ctrl.compact .pricing-form-final-offer .compact-product-image {
  width: 5rem;
  float: left;
}
.trade-in-pricing-ctrl.compact .pricing-form-final-offer .offer-box {
  max-width: 100%;
}
.trade-in-pricing-ctrl.compact .pricing-form-final-offer .back-btn {
  margin-top: 0;
}
@media only screen and (max-width: 575px) {
  .trade-in-pricing-ctrl.compact .pricing-form-final-offer .breadcrumb {
    display: none;
  }
  .trade-in-pricing-ctrl.compact .pricing-form-final-offer .btn-accept {
    width: 100%;
    margin: 1.5rem 0 1rem 0 !important;
  }
}
.trade-in-pricing-ctrl.compact .pricing-form-final-offer .review-widget-ratings-wrap .col.bbt {
  padding-top: 0;
}
.trade-in-pricing-ctrl.compact .pricing-form-final-offer .review-widget-ratings-wrap .rating-msg {
  font-size: 0.85rem;
}
.trade-in-pricing-ctrl.compact .pricing-form-final-offer .review-widget-ratings-wrap .rating-msg .rating {
  color: #AAA;
}
.trade-in-pricing-ctrl.compact .pricing-form-final-offer .review-widget-ratings-wrap .logo img {
  width: 100px;
}

.trade-in-pricing-ctrl-3 .btn-checkout {
  border: 2px solid #bfdc50;
  background: #cfe57c;
  color: #555;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 2.5rem;
  padding: 0.3rem 1.2rem 0.3rem;
  margin-top: 1rem !important;
  float: none;
}
.trade-in-pricing-ctrl-3 .btn-checkout:hover {
  border-color: rgb(197.4, 223.5, 97.5);
  background-color: rgb(216.6, 234.2, 150.2);
}
.trade-in-pricing-ctrl-3 .btn-accept {
  border: 2px solid #333;
  background: #fff;
  color: #555;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 2.5rem;
  padding: 0.3rem 1.2rem 0.3rem;
  margin-top: 1rem !important;
  float: none;
}
.trade-in-pricing-ctrl-3 .btn-accept:hover {
  border-color: #b0b0b0;
  background-color: #d4d4d4;
}

.pricing-form-final-offer-3 .btn-checkout {
  display: inline-block;
}
.pricing-form-final-offer-3 .back-btn.final {
  padding: 0rem 0.5rem 0rem;
}

.select2.select2-container {
  width: 100% !important;
  margin: 0;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif !important;
}
.select2.select2-container .select2-selection--multiple {
  background-color: #FFFFFF;
  border-color: #cccccc;
  border-radius: 0;
  border-style: solid;
  border-width: 1px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.75);
  display: block;
  font-family: inherit;
  font-size: 0.875rem;
  margin: 0;
  min-height: 2.3125rem;
  width: 100%;
}
.select2.select2-container .select2-selection--multiple .select2-selection:before {
  content: "▾";
  color: #444;
  font-size: 13px;
  margin-top: -8px;
  top: 50%;
  right: 10px;
  position: absolute;
  display: block;
}
.select2.select2-container .select2-selection--multiple .select2-selection__choice {
  font-size: 12px;
  line-height: 14px;
  padding: 4px 6px;
}
.select2.select2-container .select2-selection--multiple .select2-search--inline,
.select2.select2-container .select2-selection--multiple .select2-search__field {
  height: 26px;
  font-size: 0.85rem;
  line-height: 1rem;
  margin: 3px 0 0 3px;
}
.select2.select2-container .select2-selection--multiple .select2-selection__rendered {
  overflow: visible;
  padding: 0 1.5rem 0 0.5rem;
}
.select2.select2-container .select2-selection--single {
  background-color: #f5f5f5;
  border-radius: 0;
  border: 0;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.75);
  display: block;
  font-family: inherit;
  font-size: 0.75rem !important;
  margin: 0;
  width: 100%;
}
.select2.select2-container .select2-selection--single .select2-selection__choice {
  font-size: 12px;
  line-height: 14px;
  padding: 4px 6px;
}
.select2.select2-container .select2-selection--single .select2-search--inline,
.select2.select2-container .select2-selection--single .select2-search__field {
  height: 26px;
  font-size: 0.75rem !important;
  line-height: 0.95rem;
  margin: 3px 0 0 3px;
}
.select2.select2-container .select2-selection--single .select2-selection__rendered {
  color: #333 !important;
  line-height: 26px !important;
  overflow: visible;
  padding: 0 1.5rem 0 0.5rem;
}

.select2-container .select2-dropdown {
  background: #f5f5f5;
  border-left: 1px solid #ccc !important;
  border-right: 1px solid #ccc !important;
  border-bottom: 1px solid #ccc !important;
  margin-left: 0px !important;
}
.select2-container .select2-dropdown .select2-results .select2-results__option {
  font-size: 0.825rem;
  padding: 5px;
}
.select2-container .select2-dropdown .select2-search__field {
  height: 28px !important;
  font-size: 0.75rem !important;
  line-height: 1rem;
  margin: 0 !important;
  border: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #000 transparent transparent transparent;
  border-width: 3px 3px 0 3px;
}
.select2-container--default .select2-search--dropdown {
  padding: 0 !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: none !important;
  border-right: 1px solid #ccc !important;
  border-bottom: 1px solid #ccc !important;
  width: calc(100% + 1px);
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #000 transparent !important;
  border-width: 0 3px 3px 3px !important;
}

.select2-normal .select2.select2-container .select2-selection--single {
  background-color: #FFFFFF;
  border-radius: 0;
  border: 1px solid #cccccc;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.75);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  display: block;
  font-family: inherit;
  font-size: 0.75rem !important;
  margin: 0;
  height: 37px;
  width: 100%;
}
.select2-normal .select2.select2-container .select2-selection--single .select2-selection__rendered {
  color: #333 !important;
  line-height: 35px !important;
  font-size: 0.875rem;
  overflow: visible;
  padding: 0 1.5rem 0 0.5rem;
}
.select2-normal .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 35px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

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

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

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

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

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

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

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

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

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

@media only screen and (min-width:768px) {
  .download-shipping-label-modal.downloading {
    width: 90%;
    max-width: 30rem;
  }
  .download-shipping-label-modal.downloading.label-preview {
    width: 70%;
    max-width: 60rem;
  }
}
.download-shipping-label-modal .download-label .loader {
  margin-top: -3px;
}
.download-shipping-label-modal .download-label .downloading-box iframe {
  width: 100%;
  height: 500px;
  height: 60vh;
  border: 0;
}
.download-shipping-label-modal .download-label .download-options {
  margin: -0.5rem 0;
}
.download-shipping-label-modal .download-label .download-options a {
  display: inline-block;
  padding: 1rem;
  margin: 0.5rem 0;
  border: 1px solid #ccc;
  width: 100%;
  transition: all 0.5s;
  color: #328bf2;
}
.download-shipping-label-modal .download-label .download-options a strong {
  transition: all 0.5s;
  font-size: 1.05rem;
  width: 100%;
  display: inline-block;
  padding-bottom: 0.25rem;
}
.download-shipping-label-modal .download-label .download-options a span {
  transition: all 0.5s;
  color: #888;
  font-size: 0.9rem;
  display: inline-block;
  line-height: 1.3rem;
}
.download-shipping-label-modal .download-label .download-options a span > span {
  font-weight: bold;
}
@media only screen and (min-width:768px) {
  .download-shipping-label-modal .download-label .download-options a span > span {
    display: none;
  }
}
.download-shipping-label-modal .download-label .download-options a:hover {
  background: rgb(234.5, 243.4, 253.7);
}
.download-shipping-label-modal .download-label .download-options a:hover strong {
  color: rgb(13.9302752294, 109.2990825688, 219.6697247706);
}
.download-shipping-label-modal .download-label .download-options a:hover span {
  color: #666;
}
.download-shipping-label-modal .remember-pref {
  text-align: left;
  font-size: 0.8rem;
  color: #777;
}
.download-shipping-label-modal .btn.bbt {
  margin-bottom: 10px;
  color: #fff;
}

.shipping-label-modal-wrap .show-for-large-up {
  display: none;
}
.shipping-label-modal-wrap .hide-for-large-only {
  display: block;
}

@media only screen and (min-width:992px) {
  .shipping-label-modal-wrap .show-for-large-up {
    display: block;
  }
  .shipping-label-modal-wrap .hide-for-large-only {
    display: none;
  }
}
.shipping-label-grid-ctrl hr {
  margin: 0.33rem 0;
}
.shipping-label-grid-ctrl .labels-col .disabled {
  opacity: 0.3;
}

.hidden {
  display: none !important;
}

.clear {
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

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

.wow {
  visibility: hidden;
}

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

.white-color {
  color: #fff;
}

.black-color {
  color: #333;
}

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

html,
html body {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  background: #fff;
  height: auto;
}

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

small {
  font-size: 70%;
}

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

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

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

h1.page-title {
  font-weight: 600;
  letter-spacing: 1px;
  color: #333;
}

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

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

fieldset {
  margin: 1.125rem 0 !important;
}

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

body .btn.bbt,
body .button.bbt,
body button.bbt {
  border: none;
  border-radius: 4px;
  padding: 0.55rem 1.5rem 0.475rem;
  line-height: 0.95rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #555;
  color: #fff;
  transition: 0.2s all;
}
body .btn.bbt:hover,
body .button.bbt:hover,
body button.bbt:hover {
  background: rgb(127.5, 127.5, 127.5);
}
body .btn.bbt.blue,
body .button.bbt.blue,
body button.bbt.blue {
  background: #328bf2;
}
body .btn.bbt.blue:hover,
body .button.bbt.blue:hover,
body button.bbt.blue:hover {
  background: rgb(70.5, 150.6, 243.3);
}
body .btn.bbt.green,
body .button.bbt.green,
body button.bbt.green {
  background: #78b556;
}
body .btn.bbt.green:hover,
body .button.bbt.green:hover,
body button.bbt.green:hover {
  background: rgb(133.5, 188.4, 102.9);
}
body .btn.bbt.mini,
body .button.bbt.mini,
body button.bbt.mini {
  font-size: 0.7rem;
  padding: 0.35rem 1.1rem 0.315rem;
}

.icon-container {
  width: 18px;
  height: 18px;
  display: inline-block;
  position: relative;
  margin-bottom: -5px;
}

.opacity-50 {
  opacity: 0.5;
}

.money {
  color: #78b556;
}

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

.bold {
  font-weight: 700;
}

.thin {
  font-weight: 300;
}

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

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

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

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

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

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

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

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

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

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

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

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

.nowrap {
  white-space: nowrap;
}

.yeswrap {
  white-space: normal;
}

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

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

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

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

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

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

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

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

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

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

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

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

hr.half {
  margin: 0.5rem 0;
}

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

.primary-color {
  color: #5a5a5a !important;
}

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

.success-color {
  color: #78b556 !important;
}

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

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

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

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

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

#bbt span.label.status-label {
  display: inline-block;
  background: #f4f4f4;
  border-radius: 0.25rem;
  color: #444;
  font-size: 0.8rem;
  font-weight: 500;
  overflow: hidden;
  padding: 0.32rem 0 0.3125em 0;
  position: relative;
  text-align: center;
  width: 11rem;
  border-radius: 16px;
  border: 1px solid transparent;
}
#bbt span.label.status-label.primary {
  color: #484848;
  border-color: #9c9c9c;
  background-color: #dedede;
}
#bbt span.label.status-label.secondary {
  color: #a4a4a4;
  border-color: #e1e1e1;
  background-color: #f0f0f0;
}
#bbt span.label.status-label.info {
  color: rgb(65.1894736842, 161.7894736842, 251.6105263158);
  border-color: rgb(187.8, 222, 253.8);
  background-color: rgb(232.6, 244, 254.6);
}
#bbt span.label.status-label.warning {
  color: rgb(212.4370044053, 104.7224669604, 13.9629955947);
  border-color: rgb(246.6, 181.8, 127.2);
  background-color: rgb(252.2, 230.6, 212.4);
}
#bbt span.label.status-label.alert {
  color: rgb(182.8345679012, 30.7654320988, 30.7654320988);
  border-color: rgb(234, 130.2, 130.2);
  background-color: rgb(248, 213.4, 213.4);
}
#bbt span.label.status-label.success {
  color: rgb(94.9333333333, 148.5530864198, 65.0469135802);
  border-color: rgb(174, 210.6, 153.6);
  background-color: rgb(228, 240.2, 221.2);
}

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

body .page-item.active .page-link {
  background-color: #328bf2;
  border-color: #328bf2;
}
body .page-link {
  color: #328bf2;
}

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

[ng-cloak] {
  display: none;
}

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

img.loader {
  background: transparent;
}

body .btn-loading {
  position: relative;
  cursor: wait;
  opacity: 0.5;
}
body .btn-loading:before {
  content: "";
  display: block;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body .btn-loading.round:before {
  border-radius: 1000px;
}

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

.is-processing:after {
  opacity: 0.3;
}

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

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

.address-box {
  background: #fff;
  border-radius: 3px;
  padding: 0.6rem 0.8rem 0.8rem;
  border: 1px solid #ccc;
}

.address-multiline {
  font-size: 0.85rem;
}
.address-multiline u {
  font-size: 1rem;
}
.address-multiline .show-default-label {
  background: #f4f4f4;
  border: #aaa 1px solid;
  border-radius: 3px;
  padding: 0.25rem 0.5rem;
  margin: 0.5rem 0 0 0;
  width: auto;
}
.address-multiline .show-default-label input {
  margin-right: 0.5rem;
}

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

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

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

.question-answer-block {
  padding: 0.25rem;
  border: solid 1px #DDDDDD;
}
.question-answer-block table {
  border: none;
  margin: 0;
  font-size: 0.9rem;
}
.question-answer-block table tr th, .question-answer-block table tr td {
  padding: 0.4rem 0.5rem;
}
.question-answer-block table span {
  font-weight: 600;
  color: #444;
  white-space: nowrap;
}

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

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

.numbered-list {
  list-style-type: decimal;
}

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

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

/*!
 * Bootstrap v4.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 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,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%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -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, 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 {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.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;
}

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: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

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: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.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;
}

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

[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;
}

input[type=date], input[type=datetime-local], input[type=month], input[type=time] {
  -webkit-appearance: listbox;
}

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: 0.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-cancel-button, [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: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

.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, 0.1);
}

.small, small {
  font-size: 80%;
  font-weight: 400;
}

.mark, mark {
  padding: 0.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: 0.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: "— ";
}

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.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 {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  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%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.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 {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-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 {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-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 {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-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 {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-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;
  background-color: transparent;
}

.table td, .table th {
  padding: 0.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 .table {
  background-color: #fff;
}

.table-sm td, .table-sm th {
  padding: 0.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, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary, .table-primary > td, .table-primary > th {
  background-color: #b8daff;
}

.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-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-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-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-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-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-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-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, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td, .table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #212529;
  border-color: #32383e;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #212529;
}

.table-dark td, .table-dark th, .table-dark thead th {
  border-color: #32383e;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .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;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .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;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .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;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

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(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  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.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(2.875rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.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: 0.25rem;
}

.form-row {
  display: flex;
  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: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}

.custom-select.is-valid, .form-control.is-valid, .was-validated .custom-select:valid, .was-validated .form-control:valid {
  border-color: #28a745;
}

.custom-select.is-valid:focus, .form-control.is-valid:focus, .was-validated .custom-select:valid:focus, .was-validated .form-control:valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.custom-select.is-valid ~ .valid-feedback, .custom-select.is-valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, .form-control.is-valid ~ .valid-tooltip, .was-validated .custom-select:valid ~ .valid-feedback, .was-validated .custom-select:valid ~ .valid-tooltip, .was-validated .form-control:valid ~ .valid-feedback, .was-validated .form-control:valid ~ .valid-tooltip {
  display: block;
}

.form-control-file.is-valid ~ .valid-feedback, .form-control-file.is-valid ~ .valid-tooltip, .was-validated .form-control-file:valid ~ .valid-feedback, .was-validated .form-control-file:valid ~ .valid-tooltip {
  display: block;
}

.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 {
  background-color: #71dd8a;
}

.custom-control-input.is-valid ~ .valid-feedback, .custom-control-input.is-valid ~ .valid-tooltip, .was-validated .custom-control-input:valid ~ .valid-feedback, .was-validated .custom-control-input:valid ~ .valid-tooltip {
  display: block;
}

.custom-control-input.is-valid:checked ~ .custom-control-label::before, .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before {
  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 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.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 ~ .custom-file-label::after, .was-validated .custom-file-input:valid ~ .custom-file-label::after {
  border-color: inherit;
}

.custom-file-input.is-valid ~ .valid-feedback, .custom-file-input.is-valid ~ .valid-tooltip, .was-validated .custom-file-input:valid ~ .valid-feedback, .was-validated .custom-file-input:valid ~ .valid-tooltip {
  display: block;
}

.custom-file-input.is-valid:focus ~ .custom-file-label, .was-validated .custom-file-input:valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.custom-select.is-invalid, .form-control.is-invalid, .was-validated .custom-select:invalid, .was-validated .form-control:invalid {
  border-color: #dc3545;
}

.custom-select.is-invalid:focus, .form-control.is-invalid:focus, .was-validated .custom-select:invalid:focus, .was-validated .form-control:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.custom-select.is-invalid ~ .invalid-feedback, .custom-select.is-invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, .form-control.is-invalid ~ .invalid-tooltip, .was-validated .custom-select:invalid ~ .invalid-feedback, .was-validated .custom-select:invalid ~ .invalid-tooltip, .was-validated .form-control:invalid ~ .invalid-feedback, .was-validated .form-control:invalid ~ .invalid-tooltip {
  display: block;
}

.form-control-file.is-invalid ~ .invalid-feedback, .form-control-file.is-invalid ~ .invalid-tooltip, .was-validated .form-control-file:invalid ~ .invalid-feedback, .was-validated .form-control-file:invalid ~ .invalid-tooltip {
  display: block;
}

.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 {
  background-color: #efa2a9;
}

.custom-control-input.is-invalid ~ .invalid-feedback, .custom-control-input.is-invalid ~ .invalid-tooltip, .was-validated .custom-control-input:invalid ~ .invalid-feedback, .was-validated .custom-control-input:invalid ~ .invalid-tooltip {
  display: block;
}

.custom-control-input.is-invalid:checked ~ .custom-control-label::before, .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before {
  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 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.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 ~ .custom-file-label::after, .was-validated .custom-file-input:invalid ~ .custom-file-label::after {
  border-color: inherit;
}

.custom-file-input.is-invalid ~ .invalid-feedback, .custom-file-input.is-invalid ~ .invalid-tooltip, .was-validated .custom-file-input:invalid ~ .invalid-feedback, .was-validated .custom-file-input:invalid ~ .invalid-tooltip {
  display: block;
}

.custom-file-input.is-invalid:focus ~ .custom-file-label, .was-validated .custom-file-input:invalid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    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: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:focus, .btn:hover {
  text-decoration: none;
}

.btn.focus, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled, .btn:disabled {
  opacity: 0.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 {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.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 0.2rem rgba(0, 123, 255, 0.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 {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.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 0.2rem rgba(108, 117, 125, 0.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 {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.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 0.2rem rgba(40, 167, 69, 0.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 {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.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 0.2rem rgba(23, 162, 184, 0.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 {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.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 0.2rem rgba(255, 193, 7, 0.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 {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.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 0.2rem rgba(220, 53, 69, 0.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 {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.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 0.2rem rgba(248, 249, 250, 0.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 {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.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 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  background-color: transparent;
  background-image: none;
  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 0.2rem rgba(0, 123, 255, 0.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 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  background-color: transparent;
  background-image: none;
  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 0.2rem rgba(108, 117, 125, 0.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 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  background-color: transparent;
  background-image: none;
  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 0.2rem rgba(40, 167, 69, 0.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 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  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 0.2rem rgba(23, 162, 184, 0.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 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  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 0.2rem rgba(255, 193, 7, 0.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 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  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 0.2rem rgba(220, 53, 69, 0.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 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  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 0.2rem rgba(248, 249, 250, 0.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 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  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 0.2rem rgba(52, 58, 64, 0.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 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  background-color: transparent;
}

.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}

.btn-link.focus, .btn-link:focus {
  text-decoration: underline;
  border-color: transparent;
  box-shadow: none;
}

.btn-link.disabled, .btn-link:disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-group-lg > .btn, .btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-group-sm > .btn, .btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=button].btn-block, input[type=reset].btn-block, input[type=submit].btn-block {
  width: 100%;
}

.fade {
  transition: opacity 0.15s linear;
}

@media screen and (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 0.35s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.dropdown, .dropleft, .dropright, .dropup {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.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: 0.5rem 0;
  margin: 0.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, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.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: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.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: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.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: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.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;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group, .btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group-vertical > .btn, .btn-group > .btn {
  position: relative;
  flex: 0 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-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group, .btn-group-vertical .btn + .btn, .btn-group-vertical .btn + .btn-group, .btn-group-vertical .btn-group + .btn, .btn-group-vertical .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}

.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: 0.5625rem;
  padding-left: 0.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: 0.375rem;
  padding-left: 0.375rem;
}

.btn-group-lg > .btn + .dropdown-toggle-split, .btn-lg + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.btn-group-vertical .btn, .btn-group-vertical .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical > .btn-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: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group > .custom-file, .input-group > .custom-select, .input-group > .form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  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 {
  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: flex;
  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: flex;
}

.input-group-append .btn, .input-group-prepend .btn {
  position: relative;
  z-index: 2;
}

.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: flex;
  align-items: center;
  padding: 0.375rem 0.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: 0.25rem;
}

.input-group-text input[type=checkbox], .input-group-text input[type=radio] {
  margin-top: 0;
}

.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 {
  height: calc(2.875rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.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 {
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.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: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  background-color: #007bff;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-control-input:active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
}

.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
}

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #dee2e6;
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #007bff;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  background-color: #007bff;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' 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, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #007bff;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' 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, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(128, 189, 255, 0.5);
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.custom-select::-ms-expand {
  opacity: 0;
}

.custom-select-sm {
  height: calc(1.8125rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 75%;
}

.custom-select-lg {
  height: calc(2.875rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 125%;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin: 0;
  opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-file-input:focus ~ .custom-file-label::after {
  border-color: #80bdff;
}

.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: 2.25rem;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: 1px solid #ced4da;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  padding-left: 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 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}

@media screen and (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: 0.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 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
  appearance: none;
}

@media screen and (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: 0.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: 0.2rem;
  margin-left: 0.2rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media screen and (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: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.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-control-label::before, .custom-file-label, .custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .custom-control-label::before, .custom-file-label, .custom-select {
    transition: none;
  }
}
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:focus, .nav-link:hover {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
}

.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: 0.25rem;
  border-top-right-radius: 0.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: 0.25rem;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}

.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar > .container, .navbar > .container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.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: flex;
  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: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:focus, .navbar-toggler:hover {
  text-decoration: none;
}

.navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.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 {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid {
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar-expand-md > .container, .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container, .navbar-expand-md > .container-fluid {
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid {
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid {
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}

.navbar-expand > .container, .navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container, .navbar-expand > .container-fluid {
  flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 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, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:focus, .navbar-light .navbar-text a:hover {
  color: rgba(0, 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, 0.5);
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.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, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.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: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.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: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
  display: flex;
  flex-direction: column;
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    display: flex;
    flex: 1 0 0%;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}
.card-group {
  display: flex;
  flex-direction: column;
}

.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:first-child .card-header, .card-group > .card:first-child .card-img-top {
    border-top-right-radius: 0;
  }
  .card-group > .card:first-child .card-footer, .card-group > .card:first-child .card-img-bottom {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:last-child .card-header, .card-group > .card:last-child .card-img-top {
    border-top-left-radius: 0;
  }
  .card-group > .card:last-child .card-footer, .card-group > .card:last-child .card-img-bottom {
    border-bottom-left-radius: 0;
  }
  .card-group > .card:only-child {
    border-radius: 0.25rem;
  }
  .card-group > .card:only-child .card-header, .card-group > .card:only-child .card-img-top {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  .card-group > .card:only-child .card-footer, .card-group > .card:only-child .card-img-bottom {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
    border-radius: 0;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer, .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header, .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom, .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top {
    border-radius: 0;
  }
}
.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -moz-column-count: 3;
    column-count: 3;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}
.accordion .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}

.accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}

.accordion .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.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: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.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: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
  z-index: 1;
  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: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #007bff;
}

.badge-primary[href]:focus, .badge-primary[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #0062cc;
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

.badge-secondary[href]:focus, .badge-secondary[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #545b62;
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}

.badge-success[href]:focus, .badge-success[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #1e7e34;
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

.badge-info[href]:focus, .badge-info[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #117a8b;
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

.badge-warning[href]:focus, .badge-warning[href]:hover {
  color: #212529;
  text-decoration: none;
  background-color: #d39e00;
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

.badge-danger[href]:focus, .badge-danger[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #bd2130;
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

.badge-light[href]:focus, .badge-light[href]:hover {
  color: #212529;
  text-decoration: none;
  background-color: #dae0e5;
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

.badge-dark[href]:focus, .badge-dark[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #1d2124;
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}
.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.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: 0.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;
}
@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite;
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:focus, .list-group-item-action:hover {
  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: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.list-group-item:focus, .list-group-item:hover {
  z-index: 1;
  text-decoration: none;
}

.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 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: 0.5;
}

.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -25%);
}

@media screen and (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: translate(0, 0);
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
}

.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: 0.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-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    max-width: 800px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, 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: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-auto[x-placement^=top], .bs-tooltip-top {
  padding: 0.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: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-auto[x-placement^=right], .bs-tooltip-right {
  padding: 0 0.4rem;
}

.bs-tooltip-auto[x-placement^=right] .arrow, .bs-tooltip-right .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-auto[x-placement^=right] .arrow::before, .bs-tooltip-right .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-auto[x-placement^=bottom], .bs-tooltip-bottom {
  padding: 0.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 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-auto[x-placement^=left], .bs-tooltip-left {
  padding: 0 0.4rem;
}

.bs-tooltip-auto[x-placement^=left] .arrow, .bs-tooltip-left .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-auto[x-placement^=left] .arrow::before, .bs-tooltip-left .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.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, 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: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 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: 0.5rem;
}

.bs-popover-auto[x-placement^=top] .arrow, .bs-popover-top .arrow {
  bottom: calc((0.5rem + 1px) * -1);
}

.bs-popover-auto[x-placement^=top] .arrow::after, .bs-popover-auto[x-placement^=top] .arrow::before, .bs-popover-top .arrow::after, .bs-popover-top .arrow::before {
  border-width: 0.5rem 0.5rem 0;
}

.bs-popover-auto[x-placement^=top] .arrow::before, .bs-popover-top .arrow::before {
  bottom: 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[x-placement^=top] .arrow::after, .bs-popover-top .arrow::after {
  bottom: 1px;
  border-top-color: #fff;
}

.bs-popover-auto[x-placement^=right], .bs-popover-right {
  margin-left: 0.5rem;
}

.bs-popover-auto[x-placement^=right] .arrow, .bs-popover-right .arrow {
  left: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-auto[x-placement^=right] .arrow::after, .bs-popover-auto[x-placement^=right] .arrow::before, .bs-popover-right .arrow::after, .bs-popover-right .arrow::before {
  border-width: 0.5rem 0.5rem 0.5rem 0;
}

.bs-popover-auto[x-placement^=right] .arrow::before, .bs-popover-right .arrow::before {
  left: 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[x-placement^=right] .arrow::after, .bs-popover-right .arrow::after {
  left: 1px;
  border-right-color: #fff;
}

.bs-popover-auto[x-placement^=bottom], .bs-popover-bottom {
  margin-top: 0.5rem;
}

.bs-popover-auto[x-placement^=bottom] .arrow, .bs-popover-bottom .arrow {
  top: calc((0.5rem + 1px) * -1);
}

.bs-popover-auto[x-placement^=bottom] .arrow::after, .bs-popover-auto[x-placement^=bottom] .arrow::before, .bs-popover-bottom .arrow::after, .bs-popover-bottom .arrow::before {
  border-width: 0 0.5rem 0.5rem 0.5rem;
}

.bs-popover-auto[x-placement^=bottom] .arrow::before, .bs-popover-bottom .arrow::before {
  top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[x-placement^=bottom] .arrow::after, .bs-popover-bottom .arrow::after {
  top: 1px;
  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: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-auto[x-placement^=left], .bs-popover-left {
  margin-right: 0.5rem;
}

.bs-popover-auto[x-placement^=left] .arrow, .bs-popover-left .arrow {
  right: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-auto[x-placement^=left] .arrow::after, .bs-popover-auto[x-placement^=left] .arrow::before, .bs-popover-left .arrow::after, .bs-popover-left .arrow::before {
  border-width: 0.5rem 0 0.5rem 0.5rem;
}

.bs-popover-auto[x-placement^=left] .arrow::before, .bs-popover-left .arrow::before {
  right: 0;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-auto[x-placement^=left] .arrow::after, .bs-popover-left .arrow::after {
  right: 1px;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: inherit;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  display: none;
  align-items: center;
  width: 100%;
  backface-visibility: hidden;
  perspective: 1000px;
}

.carousel-item-next, .carousel-item-prev, .carousel-item.active {
  display: block;
  transition: transform 0.6s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .carousel-item-next, .carousel-item-prev, .carousel-item.active {
    transition: none;
  }
}
.carousel-item-next, .carousel-item-prev {
  position: absolute;
  top: 0;
}

.carousel-item-next.carousel-item-left, .carousel-item-prev.carousel-item-right {
  transform: translateX(0);
}

@supports (transform-style: preserve-3d) {
  .carousel-item-next.carousel-item-left, .carousel-item-prev.carousel-item-right {
    transform: translate3d(0, 0, 0);
  }
}
.active.carousel-item-right, .carousel-item-next {
  transform: translateX(100%);
}

@supports (transform-style: preserve-3d) {
  .active.carousel-item-right, .carousel-item-next {
    transform: translate3d(100%, 0, 0);
  }
}
.active.carousel-item-left, .carousel-item-prev {
  transform: translateX(-100%);
}

@supports (transform-style: preserve-3d) {
  .active.carousel-item-left, .carousel-item-prev {
    transform: translate3d(-100%, 0, 0);
  }
}
.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 0.6s;
  transition-property: opacity;
}

.carousel-fade .carousel-item-next.carousel-item-left, .carousel-fade .carousel-item-prev.carousel-item-right, .carousel-fade .carousel-item.active {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-prev, .carousel-fade .carousel-item-next, .carousel-fade .carousel-item-prev, .carousel-fade .carousel-item.active {
  transform: translateX(0);
}

@supports (transform-style: preserve-3d) {
  .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-prev, .carousel-fade .carousel-item-next, .carousel-fade .carousel-item-prev, .carousel-fade .carousel-item.active {
    transform: translate3d(0, 0, 0);
  }
}
.carousel-control-next, .carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.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: transparent no-repeat center center;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  position: relative;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators .active {
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

.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 {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-circle {
  border-radius: 50% !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: flex !important;
}

.d-inline-flex {
  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: flex !important;
  }
  .d-sm-inline-flex {
    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: flex !important;
  }
  .d-md-inline-flex {
    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: flex !important;
  }
  .d-lg-inline-flex {
    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: flex !important;
  }
  .d-xl-inline-flex {
    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: flex !important;
  }
  .d-print-inline-flex {
    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 {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

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

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

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

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

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

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    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;
  }
}
.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  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: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  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 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 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;
}

.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: 0.25rem !important;
}

.mt-1, .my-1 {
  margin-top: 0.25rem !important;
}

.mr-1, .mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1, .my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1, .mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2, .my-2 {
  margin-top: 0.5rem !important;
}

.mr-2, .mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2, .my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2, .mx-2 {
  margin-left: 0.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: 0.25rem !important;
}

.pt-1, .py-1 {
  padding-top: 0.25rem !important;
}

.pr-1, .px-1 {
  padding-right: 0.25rem !important;
}

.pb-1, .py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1, .px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2, .py-2 {
  padding-top: 0.5rem !important;
}

.pr-2, .px-2 {
  padding-right: 0.5rem !important;
}

.pb-2, .py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2, .px-2 {
  padding-left: 0.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-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: 0.25rem !important;
  }
  .mt-sm-1, .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1, .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1, .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1, .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2, .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2, .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2, .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2, .mx-sm-2 {
    margin-left: 0.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: 0.25rem !important;
  }
  .pt-sm-1, .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1, .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1, .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1, .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2, .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2, .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2, .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2, .px-sm-2 {
    padding-left: 0.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-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: 0.25rem !important;
  }
  .mt-md-1, .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1, .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1, .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1, .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2, .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2, .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2, .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2, .mx-md-2 {
    margin-left: 0.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: 0.25rem !important;
  }
  .pt-md-1, .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1, .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1, .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1, .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2, .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2, .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2, .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2, .px-md-2 {
    padding-left: 0.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-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: 0.25rem !important;
  }
  .mt-lg-1, .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1, .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1, .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1, .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2, .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2, .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2, .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2, .mx-lg-2 {
    margin-left: 0.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: 0.25rem !important;
  }
  .pt-lg-1, .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1, .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1, .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1, .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2, .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2, .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2, .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2, .px-lg-2 {
    padding-left: 0.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-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: 0.25rem !important;
  }
  .mt-xl-1, .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1, .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1, .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1, .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2, .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2, .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2, .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2, .mx-xl-2 {
    margin-left: 0.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: 0.25rem !important;
  }
  .pt-xl-1, .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1, .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1, .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1, .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2, .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2, .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2, .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2, .px-xl-2 {
    padding-left: 0.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-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;
  }
}
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.text-justify {
  text-align: justify !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-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !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: #0062cc !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:focus, a.text-secondary:hover {
  color: #545b62 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:focus, a.text-success:hover {
  color: #1e7e34 !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:focus, a.text-info:hover {
  color: #117a8b !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:focus, a.text-warning:hover {
  color: #d39e00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:focus, a.text-danger:hover {
  color: #bd2130 !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:focus, a.text-light:hover {
  color: #dae0e5 !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:focus, a.text-dark:hover {
  color: #1d2124 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.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;
  }
}

button,
.button {
  font-weight: 700;
  transition: all 0.5s;
  border-radius: 10rem;
  outline: 0 !important;
  color: #fff;
}
button.square,
.button.square {
  border-radius: 0;
}
button.shadow,
.button.shadow {
  box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.3);
}
button.shadow:hover,
.button.shadow:hover {
  box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.5);
}
button:hover, button:focus,
.button:hover,
.button:focus {
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  text-decoration: none;
}
button:active,
.button:active {
  box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.3);
}
button.prefix, button.postfix,
.button.prefix,
.button.postfix {
  line-height: normal;
}

button.primary,
.button.primary {
  background-color: #7b7b7b;
  border-color: #dedede;
}
button.primary:hover,
.button.primary:hover {
  border-color: rgb(172.5, 172.5, 172.5);
  background-color: rgb(205.5, 205.5, 205.5);
}
button.secondary,
.button.secondary {
  background-color: #e1e1e1;
  border-color: #d7d7d7;
}
button.secondary:hover,
.button.secondary:hover {
  border-color: #ebebeb;
  background-color: whitesmoke;
}
button.success,
.button.success {
  background-color: rgb(174, 210.6, 153.6);
  border-color: rgb(147, 195.8, 119.8);
}
button.success:hover,
.button.success:hover {
  border-color: rgb(201, 225.4, 187.4);
  background-color: rgb(228, 240.2, 221.2);
}
button.warning,
.button.warning {
  background-color: rgb(245.9, 175.7, 116.55);
  border-color: rgb(243.8, 157.4, 84.6);
}
button.warning:hover,
.button.warning:hover {
  border-color: rgb(248.7, 200.1, 159.15);
  background-color: rgb(251.5, 224.5, 201.75);
}
button.alert,
.button.alert {
  background-color: rgb(231.2, 113.56, 113.56);
  border-color: rgb(227, 88.6, 88.6);
}
button.alert:hover,
.button.alert:hover {
  color: #111;
  border-color: rgb(239.25, 161.4, 161.4);
  background-color: rgb(246.25, 203, 203);
}
button.info,
.button.info {
  background-color: rgb(187.8, 222, 253.8);
  border-color: rgb(165.4, 211, 253.4);
}
button.info:hover,
.button.info:hover {
  border-color: rgb(210.2, 233, 254.2);
  background-color: rgb(232.6, 244, 254.6);
}

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

/**
 * * Button sizing
 * */
button,
.button {
  font-size: 0.9rem;
  padding: 0.5rem 1rem 0.35rem;
}
button.mini,
.button.mini {
  font-weight: 500;
  font-size: 0.675rem;
  padding: 0.2rem 0.8rem 0.1rem;
}
button.mini.ghost,
.button.mini.ghost {
  padding: 0.125rem 0.625rem 0.175rem !important;
}
button.small,
.button.small {
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.25rem 1.25rem 0.2rem;
}
button.small.ghost,
.button.small.ghost {
  padding: 0.375rem 1.175rem !important;
}
button.medium,
.button.medium {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem 0.525rem;
}
button.medium.ghost,
.button.medium.ghost {
  padding: 0.625rem 1.375rem !important;
}
button.large,
.button.large {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1rem 2rem 0.7rem;
}
button.large.ghost,
.button.large.ghost {
  padding: 0.875rem 1.875rem !important;
}
button .pill-box,
.button .pill-box {
  width: 100%;
  margin-bottom: 1rem;
}
button .pill-box:after,
.button .pill-box:after {
  display: block;
  content: " ";
  clear: both;
}
button .pill-box .btn.bbt,
button .pill-box .button.bbt,
button .pill-box button.bbt,
.button .pill-box .btn.bbt,
.button .pill-box .button.bbt,
.button .pill-box button.bbt {
  float: left;
  border-radius: 0;
}
button .pill-box .btn.bbt:first-child,
button .pill-box .button.bbt:first-child,
button .pill-box button.bbt:first-child,
.button .pill-box .btn.bbt:first-child,
.button .pill-box .button.bbt:first-child,
.button .pill-box button.bbt:first-child {
  border-radius: 5px 0 0 5px;
}
button .pill-box .btn.bbt:last-child,
button .pill-box .button.bbt:last-child,
button .pill-box button.bbt:last-child,
.button .pill-box .btn.bbt:last-child,
.button .pill-box .button.bbt:last-child,
.button .pill-box button.bbt:last-child {
  border-radius: 0 5px 5px 0;
}

/**
 * * Ghost Buttons
 * */
.button.ghost,
button.ghost {
  box-shadow: none;
  border: 0.125rem solid #5a5a5a;
  background: rgb(251.7, 251.7, 251.7);
  color: #333;
}
.button.ghost:hover,
button.ghost:hover {
  color: #555;
  background-color: rgb(213.75, 213.75, 213.75);
}
.button.ghost:focus, .button.ghost:focus,
button.ghost:focus,
button.ghost:focus {
  color: #555;
}
.button.ghost.primary,
button.ghost.primary {
  border-color: #5a5a5a;
  background-color: rgb(251.7, 251.7, 251.7);
}
.button.ghost.primary:hover,
button.ghost.primary:hover {
  background-color: rgb(213.75, 213.75, 213.75);
}
.button.ghost.secondary,
button.ghost.secondary {
  border-color: #CDCDCD;
  background-color: #fefefe;
}
.button.ghost.secondary:hover,
button.ghost.secondary:hover {
  background-color: rgb(247.5, 247.5, 247.5);
}
.button.ghost.success,
button.ghost.success {
  border-color: #78b556;
  background-color: rgb(252.3, 253.52, 251.62);
}
.button.ghost.success:hover,
button.ghost.success:hover {
  background-color: rgb(234.75, 243.9, 229.65);
}
.button.ghost.warning,
button.ghost.warning {
  border-color: #F1852A;
  background-color: rgb(254.02, 246.46, 240.09);
}
.button.ghost.warning:hover,
button.ghost.warning:hover {
  background-color: rgb(252.2, 230.6, 212.4);
}
.button.ghost.alert,
button.ghost.alert {
  border-color: #dc2f2f;
  background-color: rgb(251.5, 234.2, 234.2);
}
.button.ghost.alert:hover,
button.ghost.alert:hover {
  color: #111;
  background-color: rgb(248, 213.4, 213.4);
}
.button.ghost.info,
button.ghost.info {
  border-color: #8fc8fd;
  background-color: rgb(252.76, 253.9, 254.96);
}
.button.ghost.info:hover,
button.ghost.info:hover {
  background-color: rgb(238.2, 246.75, 254.7);
}
.button.ghost[disabled]:hover,
button.ghost[disabled]:hover {
  color: #555;
  background-color: unset;
}

.alert-box {
  padding: 1rem;
  background: #dc2f2f;
  border: 2px solid rgb(223.5, 67.8, 67.8);
  color: #fff;
}
.alert-box.primary {
  background: #5a5a5a;
  border: 2px solid rgb(106.5, 106.5, 106.5);
}
.alert-box.secondary {
  background: #CDCDCD;
  border: 2px solid #d2d2d2;
}
.alert-box.success, .alert-box.notice {
  background: #78b556;
  border: 2px solid rgb(133.5, 188.4, 102.9);
}
.alert-box.warning {
  background: #F1852A;
  border: 2px solid rgb(242.4, 145.2, 63.3);
}
.alert-box.alert {
  background: #dc2f2f;
  border: 2px solid rgb(223.5, 67.8, 67.8);
}
.alert-box.info {
  background: #8fc8fd;
  border: 2px solid rgb(154.2, 205.5, 253.2);
}

.show-for-small-only {
  display: none;
}
@media only screen and (max-width: 767px) {
  .show-for-small-only {
    display: block;
  }
}

.hide-for-small-only {
  display: block;
}
@media only screen and (max-width: 767px) {
  .hide-for-small-only {
    display: none;
  }
}

.hide-for-small-only-inline {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .hide-for-small-only-inline {
    display: none;
  }
}

.show-for-large-only {
  display: none;
}
@media only screen and (min-width:992px) {
  .show-for-large-only {
    display: block;
  }
}

.hide-for-medium-up {
  display: block;
}
@media only screen and (min-width:768px) {
  .hide-for-medium-up {
    display: none;
  }
}

section.about-page.top-block p {
  max-width: 650px;
}
section.about-page blockquote {
  border: 0;
  text-align: center;
  font-size: 2rem;
  color: #A6A6A6;
  line-height: 1.2;
  padding: 2rem 0;
}
section.about-page img.image-right {
  margin: 0 0 0 2rem;
}
section.about-page img.image-left {
  margin: 0 2rem 0 0;
}
section.about-page img.bordered {
  border-radius: 5px;
  padding: 0;
  max-height: 285px;
  box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 767px) {
  section.about-page img.bordered {
    margin: 0 auto 1rem;
    display: block;
  }
}
@media only screen and (min-width:992px) {
  section.about-page img {
    max-width: 45%;
  }
}
@media only screen and (min-width:768px) and (max-width:991px) {
  section.about-page img {
    max-width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  section.about-page img {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    float: none;
    margin: 0.5rem auto;
  }
}
section.about-page p {
  color: #666;
  font-weight: 300;
  line-height: 1.8;
}
section.about-page h2 {
  margin: 0.5rem 0 1.5rem;
}
section.about-page h3 {
  margin: 2rem 0 1rem;
}

section.bulk-sell.top-block p {
  max-width: 650px;
}
section.bulk-sell blockquote {
  border: 0;
  text-align: center;
  font-size: 2rem;
  color: #A6A6A6;
  line-height: 1.2;
  padding: 2rem 0;
}
section.bulk-sell img {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  float: none;
  margin: 0.5rem auto;
}
section.bulk-sell p {
  color: #666;
  font-weight: 300;
  line-height: 1.8;
}
section.bulk-sell h2 {
  margin: 0.5rem 0 1.5rem;
}
section.bulk-sell h3 {
  margin: 0.5rem 0 1rem;
}
section.bulk-sell h3 span {
  color: #328bf2;
}
section.bulk-sell .bulk-hero {
  padding: 100px 50px;
  margin: 0;
  width: 100%;
  max-width: 100%;
  margin-top: 24px;
  margin-bottom: 55px;
  background-repeat: no-repeat;
  background-color: #eee;
  background-size: cover;
  background-position: center;
}
section.bulk-sell .bulk-card {
  background: rgba(255, 255, 255, 0.85);
  padding: 25px;
}
section.bulk-sell .bulk-card p {
  text-align: center;
}
section.bulk-sell .section-heading {
  margin: 0 !important;
  margin-bottom: 1rem !important;
}
@media only screen and (max-width: 767px) {
  section.bulk-sell .mobile-line-height {
    line-height: 1.8;
  }
  section.bulk-sell .feature-heading {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width:768px) and (max-width:991px) {
  section.bulk-sell .feature-heading {
    font-size: 1.4rem;
  }
}
section.bulk-sell .mini-heading {
  margin: 0rem 0 2rem 0;
}
section.bulk-sell .mini-message {
  margin: 0rem 0 2rem 0;
}
section.bulk-sell .mini-message p {
  font-size: 1.3rem;
  font-weight: inherit !important;
}
@media only screen and (max-width: 575px) {
  section.bulk-sell .col-feature-img {
    flex: 0 0 18% !important;
    max-width: 18% !important;
  }
  section.bulk-sell .col-feature-text {
    flex: 0 0 82% !important;
    max-width: 82% !important;
  }
}
@media only screen and (max-width: 767px) {
  section.bulk-sell .col-feature-img {
    flex: 0 0 20%;
    max-width: 20%;
  }
  section.bulk-sell .col-feature-text {
    flex: 0 0 80%;
    max-width: 80%;
  }
}
section.bulk-sell .bold-blue {
  color: #328bf2;
}

section.bulk-sell-app {
  padding: 3rem 0px;
  margin: 3rem 0 0 0;
  background: #EDEFF0;
}

.account-page .settings {
  padding-top: 1rem;
}
.account-page .settings .password-container {
  position: relative;
  display: block;
}
.account-page .settings .password-container input {
  padding-right: 40px;
}
.account-page .settings .password-container .toggle-password {
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.3rem;
  transition: color 0.2s ease-in-out;
}
.account-page .settings .password-container .is-selected {
  color: #F1852A;
}
.account-page .account-nav {
  padding: 0;
  border: 1px solid #ccc;
  margin-top: 2rem;
  margin-bottom: 2rem;
  overflow: hidden;
}
.account-page .account-nav ul {
  list-style-type: none;
  float: left;
  margin: 0;
  overflow: hidden;
  width: 100%;
}
.account-page .account-nav ul li {
  float: left;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
  width: 25%;
  white-space: nowrap;
}
.account-page .account-nav ul li.active {
  background: #ddd;
}
.account-page .account-nav ul li a {
  width: 100%;
  padding: 1rem 0;
  border-right: 1px solid #ccc;
  float: left;
  white-space: nowrap;
  color: #333;
  font-size: 0.9rem;
  text-align: center;
}
.account-page .account-nav ul li a:hover {
  font-weight: 700;
  background: #eee;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.05);
}
.account-page .account-nav ul li a:hover:active, .account-page .account-nav ul li a:hover:focus {
  background: #eee;
  box-shadow: inset 3px 3px 5px rgba(100, 100, 100, 0.125);
}
@media only screen and (min-width:768px) {
  .account-page .account-nav ul li a {
    font-size: 1rem;
  }
  .account-page .account-nav ul li a > span {
    display: inline !important;
  }
}
@media only screen and (min-width:992px) {
  .account-page .account-nav ul li a {
    font-size: 1.1rem;
  }
}
.account-page .account-nav ul li:last-child a {
  border: 0;
}
.account-page .amended-price {
  font-size: 1rem;
}
.account-page .amended-price strong,
.account-page .amended-price .label {
  color: #666;
}
.account-page .amended-price .old-price {
  color: #bbb;
}
.account-page .offer-items h5,
.account-page .offer-items .button {
  margin: 0;
}
.account-page .offer-items h5 {
  font-weight: 400;
  line-height: 60px;
  font-size: 1.5rem;
  margin-left: 1rem;
}
.account-page .offer-items .trade-in-msg {
  max-width: 25rem;
  width: 100%;
  margin: 0.5rem 0 0;
  padding: 0.5rem;
  float: left;
  line-height: 1.1rem;
  font-size: 0.8rem;
}
.account-page .offer-items .trade-in-msg ul {
  padding: 0.25rem 0 0 1.5rem;
}
.account-page .offer-items .trade-in-msg li {
  font-size: 0.8rem;
}
.account-page .offer-items .amendment-details {
  text-align: left;
  background: rgb(253.6, 242.8, 233.7);
  border: 1px solid rgb(248, 194, 148.5);
}
.account-page .offer-items .amendment-details p {
  margin: 0;
}
.account-page .offer-items .amendment-details p.reasons, .account-page .offer-items .amendment-details p.approve-deny {
  margin-top: 0.5rem;
}
.account-page .offer-items .amendment-details ul {
  margin-bottom: 0;
  text-align: left;
}
.account-page .offer-items .amendment-details .label {
  font-weight: 700;
}
.account-page .offer-items .return-msg {
  background: rgb(251.5, 234.2, 234.2);
  border: 1px solid rgb(237.5, 151, 151);
}
.account-page .offer-items .recycled-msg {
  background: rgb(238.5, 238.5, 238.5);
  border: 1px solid rgb(172.5, 172.5, 172.5);
}
.account-page .offer-items .approved-msg {
  background: rgb(241.5, 247.6, 238.1);
  border: 1px solid rgb(147, 195.8, 119.8);
}
.account-page .cancel-confirmation-message p {
  max-width: 600px;
  margin: 1rem auto 1.5rem;
}
.account-page .offer-listing {
  width: 100%;
  background: none;
  border: none;
  margin: 0;
}
.account-page .offer-listing table {
  width: 100%;
}
.account-page .offer-listing .offer-number {
  display: inline-block;
  color: #555;
  border-bottom: 1px dotted #888;
  margin-bottom: 4px;
}
.account-page .offer-listing .offer-number,
.account-page .offer-listing .money {
  font-weight: bold;
  text-decoration: none;
  font-size: 1.2rem;
}
.account-page .offer-listing .offer-wrap {
  background: #fff;
  border-radius: 3px;
  border: 1px solid #ccc;
  margin: 1rem 0;
  padding: 1rem;
}
.account-page .offer-listing .offer-wrap .offer-details {
  padding-top: 3px;
}
.account-page .offer-listing .offer-wrap small {
  font-size: 0.65rem;
  display: inline-block;
  line-height: 0.9rem;
}
.account-page .offer-listing .offer-wrap .status-label > div {
  max-width: 11rem;
  float: right;
  text-align: center;
}
.account-page .offer-listing .offer-wrap .status-label > div .label {
  margin-bottom: 3px;
}
.account-page .offer-listing .offer-wrap:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .account-page .offer-listing .offer-wrap .status-label > div {
    max-width: 100%;
    width: 100%;
    margin-top: 0.75rem;
  }
}
.account-page .offer-status-section small {
  font-size: 0.9rem;
}
.account-page .shipping-warning {
  text-align: center;
  padding-bottom: 1rem;
}
.account-page .shipping-warning .label {
  width: 100%;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
}
.account-page .show-default-label {
  position: relative;
}
.account-page .show-default-label .loader {
  display: none;
  position: absolute;
  left: -0.15rem;
  top: 0.55rem;
  opacity: 0.5;
}
.account-page .offer-item-quantity {
  text-align: center;
  margin: -1px 0 0 0;
  padding: 0.2rem;
  height: 1.8rem;
  display: inline-block;
  line-height: 1.8rem;
  width: 2.5rem;
}
.account-page .cancel-link {
  color: #666;
  font-size: 0.8rem;
  line-height: 2rem;
  display: inline-block;
}
.account-page .cancel-link i {
  font-size: 0.7rem;
}
.account-page .image-border {
  max-width: 135px;
  width: 100%;
  margin: 0 !important;
  margin-top: 10px !important;
  margin-bottom: 20px !important;
  border: 3px solid #247cc2;
  box-shadow: 4px 4px 2px #bbdca5;
  border-radius: 50%;
}
.account-page .shipping-instructions .shipping-label-ctrl .btn.bbt.shipping-label-btn {
  margin-top: 10px;
}
.account-page .shipping-instructions .hazmat-label-ctrl .btn.bbt.hazmat-label-btn {
  margin-top: 10px;
}
.account-page .trade-in-width {
  max-width: 1000px;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  margin: 0 auto;
  margin-bottom: 20px;
}
.account-page .trade-in-width .panel-spacing {
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.account-page .trade-in-header {
  background: #eee;
  border-radius: 0.25rem;
  padding: 10px;
  margin-bottom: -15px;
  margin-top: 10px;
  color: #444;
}
.account-page .trade-in-header span {
  font-size: 1.75rem;
  font-weight: 700;
}
.account-page .trade-in-message {
  margin: 0 auto;
  margin-top: 0px;
  margin-bottom: 25px;
}
.account-page .trade-in-message span {
  font-size: 2rem;
}
.account-page .steps-div {
  margin-bottom: 2rem;
}
.account-page .image-steps {
  max-height: 100px;
  display: block;
  margin: 0 auto;
}
.account-page .steps-list {
  list-style-type: none;
  padding-inline-start: 0;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.account-page .shipping-time {
  padding-top: 1rem;
}
.account-page .trade-in-hr {
  margin-top: 40px;
  margin-bottom: 60px;
}
.account-page .panel-list {
  font-size: 1rem;
  text-align: left;
  font-weight: 700;
  padding: 10px;
  margin: 0;
  list-style-type: none;
}
.account-page .panel-list li {
  background: #eee;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.account-page .panel-list li.box-request {
  background: #e8f3ff;
  border: 1px solid #a3cbf7;
}

table.style-b.offer-items-table {
  width: 100%;
  border-collapse: separate;
  margin: 0.5rem 0;
  padding: 1rem 1.25rem 1.2rem;
  background: #fff;
  border-radius: 3px;
  border: 1px solid #ccc;
}
table.style-b.offer-items-table .question-answer-block {
  border: none;
  padding: 0;
}
table.style-b.offer-items-table .question-answer-block table {
  margin: 0 -0.5rem;
}
table.style-b.offer-items-table .question-answer-block table tr td {
  padding: 0.2rem 0.5rem;
}
table.style-b.offer-items-table td > strong {
  font-size: 1.1rem;
  line-height: 1.1rem;
  width: 100%;
  color: #333;
}
table.style-b.offer-items-table td > strong.money {
  color: rgb(94.9333333333, 148.5530864198, 65.0469135802);
}
table.style-b.offer-items-table h4.item-title {
  font-weight: bold;
  font-size: 1.2rem;
  display: block;
  padding-bottom: 0.125rem;
  margin-bottom: 0.125rem;
  color: #444;
  line-height: 1.75rem;
}
table.style-b.offer-items-table .incorrect-box {
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
table.style-b.offer-items-table .edit-item {
  float: right;
  font-size: 0.7rem;
  text-align: center;
}
table.style-b.offer-items-table .edit-item .cancel-item {
  font-size: 0.7rem;
  display: inline-block;
  padding: 0.35rem 0 0;
}
@media only screen and (max-width: 767px) {
  table.style-b.offer-items-table {
    padding: 0.5rem 0.725rem 0.6rem;
  }
  table.style-b.offer-items-table .style-c.right {
    float: none;
  }
  table.style-b.offer-items-table h4.item-title {
    padding: 0;
    margin: 0 0 0.5rem 0;
  }
  table.style-b.offer-items-table .price-details {
    width: 100%;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
  }
  table.style-b.offer-items-table .edit-item {
    width: 100%;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
  }
  table.style-b.offer-items-table .edit-item .edit.btn {
    float: left;
  }
  table.style-b.offer-items-table .edit-item .cancel-item {
    float: right;
  }
}

/**
 * * Shipping instructions
 * */
.panel.ship-label {
  background: #fff;
}
.panel.ship-label .label-container {
  text-align: center;
}

.shipping-instructions .instruction-box {
  padding: 0 0 1rem;
  margin-bottom: 1rem;
}
.shipping-instructions .instruction-box p,
.shipping-instructions .instruction-box li {
  text-align: left;
  font-size: 0.8rem;
}
.shipping-instructions .instruction-box ul {
  padding-left: 1.125rem;
}
.shipping-instructions .instruction-box img {
  margin: 2rem 0 1rem;
}
.shipping-instructions .instruction-box h4 {
  color: #7BCAEC;
  font-size: 1.1rem;
}
.shipping-instructions .fa-angle-down {
  font-size: 1.5rem;
  color: #888;
}
.shipping-instructions .shipping-label-ctrl,
.shipping-instructions .hazmat-label-ctrl {
  display: inline-block;
  margin: 0.25rem 0.5rem;
}
.shipping-instructions .shipping-label-ctrl .btn.bbt.shipping-label-btn,
.shipping-instructions .shipping-label-ctrl .btn.bbt.hazmat-label-btn,
.shipping-instructions .hazmat-label-ctrl .btn.bbt.shipping-label-btn,
.shipping-instructions .hazmat-label-ctrl .btn.bbt.hazmat-label-btn {
  width: 8rem;
  font-size: 0.6rem;
  margin: 0;
  padding: 0;
  line-height: 1;
  padding: 5px 10px;
  border: 3px solid #247cc2;
  color: #555;
  background: #f6f6f6;
  box-shadow: 4px 4px 2px #bbdca5;
  border-radius: 6px;
  text-align: center;
}
.shipping-instructions .shipping-label-ctrl object,
.shipping-instructions .hazmat-label-ctrl object {
  height: 35px;
  max-width: 5rem;
  margin-bottom: 5px;
  display: inline-block;
}
.shipping-instructions .shipping-label-ctrl object.fedex,
.shipping-instructions .hazmat-label-ctrl object.fedex {
  margin: 0.5rem 0.25rem;
}
.shipping-instructions .shipping-label-ctrl object.ups,
.shipping-instructions .hazmat-label-ctrl object.ups {
  margin: 0.5rem 0.25rem;
}
.shipping-instructions .shipping-label-ctrl strong,
.shipping-instructions .hazmat-label-ctrl strong {
  display: inline-block;
  margin: 2px 0px;
}

.blog-page .featured-post {
  margin-bottom: 3rem;
}
.blog-page .featured-post .featured-label {
  background: #78b556;
  padding: 0.33rem 1rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.blog-page .blog-categories {
  text-align: center;
  max-width: 900px;
  margin: 1rem auto 2rem;
  border-bottom: 1px solid #efefef;
}
.blog-page .blog-categories li {
  float: none;
  display: inline-block;
  margin: 0.5rem 0.75rem;
}
.blog-page .blog-categories a {
  text-transform: uppercase;
  color: #111;
  font-size: 0.9rem;
  font-weight: 700;
}
.blog-page .blog-categories a.active {
  color: #F1852A;
}
.blog-page .blog-categories a:hover {
  color: #78b556;
}
.blog-page .post-heading {
  margin: 0 0 0.15rem;
  font-size: 1.5rem;
}
.blog-page .post-heading a {
  color: #111;
}
.blog-page .post-heading a:hover {
  color: #444;
}
.blog-page .post-image {
  margin: 2rem auto 1rem;
}
.blog-page .post-content h1, .blog-page .post-content h2, .blog-page .post-content h3, .blog-page .post-content h4, .blog-page .post-content h5, .blog-page .post-content h6 {
  font-weight: bold;
}
.blog-page .post-content h1 {
  font-size: 1.8rem;
}
.blog-page .post-content h2 {
  font-size: 1.6rem;
}
.blog-page .post-content h3 {
  font-size: 1.3rem;
}
.blog-page .post-content h4 {
  font-size: 1.2rem;
}
.blog-page .post-content h5 {
  font-size: 1.1rem;
}
.blog-page .post-content h6 {
  font-size: 1rem;
}
.blog-page .listing-grid li {
  padding: 2%;
}
.blog-page time {
  display: block;
  margin: 0 0 0.25rem;
  color: #999;
}
.blog-page .pagination {
  display: inline-block;
  margin: 0.5rem 0 1.5rem;
}
.blog-page .none {
  padding: 2rem 0 3rem;
}

body.basket {
  color: #333;
}
body.basket .basket-action-link {
  background: none;
  border: none;
  box-shadow: none;
  color: #888;
  border-bottom: 1px dotted #aaa;
  margin: 0.5rem 1rem 0 0;
  outline: 0 !important;
  font-size: 0.9rem;
}
body.basket .basket-action-link:hover {
  text-decoration: none;
}
body.basket .sidebar-totals {
  max-width: 20rem;
  width: 100%;
  margin: 0 auto;
}

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

.empty-cart-block {
  text-align: center;
  font-weight: 400;
  padding: 5rem 0;
}
.empty-cart-block h4 {
  font-size: 1.33rem;
  font-weight: 500;
  margin: 0 0 1.5rem;
}
.empty-cart-block .panel {
  padding: 1.5rem 1.5rem 1rem;
  margin-top: 1rem;
}

#new-item-modal .modal-body {
  text-align: center;
  padding: 3.5rem 1rem 4rem;
}
#new-item-modal .modal-body h5 {
  margin-bottom: 1rem;
}

.checkout-page {
  padding: 2rem 0 4rem;
}
.checkout-page > .row {
  padding: 0 1%;
}
@media only screen and (max-width: 767px) {
  .checkout-page .sidebar {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .checkout-page .sidebar-2 {
    padding: 0;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 1rem;
  }
}
.checkout-page .sidebar-2 h3 {
  padding: 1rem 1.5rem;
}
.checkout-page .sidebar-2 a.edit-link {
  color: #888;
  font-weight: normal;
}
.checkout-page .sidebar-2 ul.product-attributes {
  margin: 0 1rem 0 0;
}
.checkout-page .sidebar-2 h6.product-name {
  margin: 0;
}
.checkout-page .sidebar-2 .product-attributes {
  list-style-type: none;
  font-size: 0.8rem;
  padding: 0;
  margin-left: 0;
  color: #888;
}
.checkout-page .sidebar-2 h6 {
  margin: 0 0 0.1rem;
}
.checkout-page .sidebar-2 h6 span {
  color: #555;
}
.checkout-page .sidebar-2 .image-col {
  width: 27.5%;
}
.checkout-page .sidebar-2 .image-col img {
  min-width: 40%;
}
.checkout-page .sidebar-2 table.style-a tr td {
  border: none;
}
.checkout-page .social-login hr {
  margin: 0.5rem 0;
}
.checkout-page .social-login p {
  margin: 0 0 0.25rem;
  color: #444;
}
.checkout-page input[type=checkbox] {
  margin-bottom: 0;
}
.checkout-page .pill-box .inactive {
  background: #ccc;
  color: #333;
}
.checkout-page .expedited-processing {
  display: none;
}
.checkout-page .lightning-fast-processing {
  display: none;
}
.checkout-page .gift-card-bonus {
  display: none;
}
.checkout-page .new-address [disabled=disabled] {
  background: #eee;
}

.checkout-header {
  margin-top: 2rem;
}

.checkout-ctrl .opener {
  padding: 1rem 0 0;
  font-weight: 400;
}
.checkout-ctrl .checkout-section {
  display: none;
  transition: 1s all;
  opacity: 0;
  margin-bottom: 3rem;
}
.checkout-ctrl .checkout-section h2 {
  color: #328bf2;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.checkout-ctrl .checkout-section.active {
  opacity: 1;
  display: block;
}
.checkout-ctrl .checkout-section .terms-link {
  font-size: 0.85rem;
  color: #777;
  border-bottom: #aaa dotted 1px;
}
.checkout-ctrl .checkout-section .terms-link:hover {
  text-decoration: none;
}
.checkout-ctrl .shipping-method input.error {
  margin-bottom: 1rem;
}
.checkout-ctrl .guest {
  opacity: 0.4;
  cursor: pointer;
}
.checkout-ctrl .guest:hover {
  opacity: 0.66;
}
.checkout-ctrl .btn-loader {
  display: none;
  width: 28px;
  height: 28px;
  background: url("../images/btn-loader.gif") no-repeat;
  opacity: 0.55;
  margin: 9px 0 0 16px;
}
.checkout-ctrl .btn-loader.loading {
  display: inline-block;
}

.checkout-ctrl-2 {
  font-size: 0.9rem;
}
.checkout-ctrl-2 button.bbt.green,
.checkout-ctrl-2 button.bbt.blue {
  background: #4797f3 !important;
  color: #fff !important;
}
.checkout-ctrl-2 button.bbt.green:hover,
.checkout-ctrl-2 button.bbt.blue:hover {
  background: #d9d9d9;
  color: #333;
  box-shadow: none;
}
.checkout-ctrl-2 button.bbt {
  padding: 0.5rem;
  font-size: 0.9rem;
  text-transform: none;
  background: transparent;
  color: #333;
  text-align: left;
}
.checkout-ctrl-2 button.bbt:hover {
  background: #d9d9d9;
  color: #333;
  box-shadow: none;
}
.checkout-ctrl-2 .opener {
  padding: 1rem 0 0;
  font-weight: 400;
}
.checkout-ctrl-2 .checkout-section {
  display: none;
  transition: 1s all;
  opacity: 0;
  margin-bottom: 1rem;
}
.checkout-ctrl-2 .checkout-section h2 {
  color: #328bf2;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 3px solid #c5dfb5;
  padding-bottom: 0.5rem;
  width: auto;
  display: inline-block;
}
.checkout-ctrl-2 .checkout-section.active {
  opacity: 1;
  display: block;
  background: #edeff0;
  padding: 1rem 1rem 0.2rem 1rem;
  border-radius: 6px;
}
.checkout-ctrl-2 .checkout-section .terms-link {
  font-size: 0.85rem;
  color: #777;
  border-bottom: #aaa dotted 1px;
}
.checkout-ctrl-2 .checkout-section .terms-link:hover {
  text-decoration: none;
}
.checkout-ctrl-2 .shipping-method input.error {
  margin-bottom: 1rem;
}
.checkout-ctrl-2 .guest {
  opacity: 0.4;
  cursor: pointer;
}
.checkout-ctrl-2 .guest:hover {
  opacity: 0.66;
}
.checkout-ctrl-2 .btn-loader {
  display: none;
  width: 28px;
  height: 28px;
  background: url("../images/btn-loader.gif") no-repeat;
  opacity: 0.55;
  margin: 9px 0 0 16px;
}
.checkout-ctrl-2 .btn-loader.loading {
  display: inline-block;
}

.checkout-items hr {
  margin: 0.666rem 0;
  border-color: #EEEEEE;
}
.checkout-items .row {
  margin: 0.5rem 0 1.5rem;
}
.checkout-items .row.top .col {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: #328bf2;
}
.checkout-items .row.bottom {
  float: left;
  width: 100%;
}
.checkout-items .row.bottom > div {
  padding-top: 0.5rem;
  width: 100%;
}
.checkout-items table.style-a {
  margin-bottom: 0.5rem;
}
.checkout-items table.style-a .payout td {
  color: #78b556;
}
.checkout-items .insured,
.checkout-items .box-requested-total,
.checkout-items .box-requested {
  display: none;
}
.checkout-items .not-insured,
.checkout-items .box-not-requested-total {
  display: block;
}

.checkout-items-2 {
  font-size: 0.9rem;
  border-radius: 6px;
  padding: 0.5rem 0rem;
  background: #edeff0;
}
.checkout-items-2 hr {
  margin: 0.666rem 0;
  border-color: #EEEEEE;
}
.checkout-items-2 .row {
  margin: 0.5rem 0 1.5rem;
}
.checkout-items-2 .row.top .col {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: #328bf2;
}
.checkout-items-2 .row.top .col .green-border {
  font-size: 0.8rem;
  border-bottom: 3px solid #c5dfb5;
  padding-bottom: 0.5rem;
  display: inline-block;
}
.checkout-items-2 .row.bottom {
  float: left;
  width: 100%;
}
.checkout-items-2 .row.bottom > div {
  padding-top: 0.5rem;
  width: 100%;
}
.checkout-items-2 table.style-a {
  margin-bottom: 0.5rem;
}
.checkout-items-2 table.style-a .payout td {
  color: #78b556;
}
.checkout-items-2 .insured,
.checkout-items-2 .box-requested-total,
.checkout-items-2 .box-requested {
  display: none;
}
.checkout-items-2 .not-insured,
.checkout-items-2 .box-not-requested-total {
  display: block;
}

#terms-and-conditions-link {
  height: 100vh;
  overflow-y: auto;
}
@media only screen and (min-width:768px) {
  #terms-and-conditions-link {
    top: 0 !important;
  }
  #terms-and-conditions-link .modal-dialog {
    width: 80vw;
    max-width: 800px;
  }
}

.site-header {
  height: 7.5rem;
  padding: 0 0 2rem;
  width: 100%;
}
.site-header .navigation {
  position: relative;
}
.site-header .top-nav {
  z-index: 101;
  position: relative;
  float: right;
}
.site-header .top-nav a {
  letter-spacing: 1px;
  float: left;
  margin: 1rem 0.5rem;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.25rem;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .site-header .top-nav a {
    margin: 0.5rem 0.65rem;
  }
}
.site-header .top-nav a.admin {
  color: #c2efff;
}
.site-header .top-nav a.btn-light {
  letter-spacing: 0px;
  color: #333;
  text-transform: none;
  padding: 0.1rem 0.5rem 0.15rem;
  border-radius: 2px;
  font-size: 0.65rem;
  line-height: 0.75rem;
}
.site-header .top-nav a.btn-light img {
  margin-right: 1px;
}
.site-header .top-nav a.btn-light.facebook img {
  margin-right: 2px;
  margin-top: -1px;
}
.site-header .dropdown {
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .site-header .dropdown {
    width: 100%;
  }
}
.site-header .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f4f4f4;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 0;
  z-index: 1;
}
.site-header .dropdown-content a {
  width: 100%;
  color: #444;
  font-weight: 500 !important;
}
.site-header .dropdown-content a:hover {
  color: #444;
}
.site-header .dropdown:hover .dropdown-content {
  display: block;
}
@media only screen and (max-width: 767px) {
  .site-header .dropdown:hover .dropdown-content {
    display: none !important;
  }
}
.site-header .bulk-sell {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .site-header .bulk-sell {
    width: 100%;
  }
}
.site-header .nav-bar {
  width: 100%;
  height: 35px;
  text-align: center;
  background: #fff;
}
.site-header .nav-bar .nav-item {
  float: left;
  margin: 0;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.8rem;
}
.site-header .nav-bar .nav-item a {
  text-transform: uppercase;
  color: #444;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0 1rem;
  height: 35px;
  line-height: 36px;
  text-decoration: none;
  transition: all 0.125s;
  display: inline-block;
}
.site-header .nav-bar .nav-item a:hover {
  color: #000;
  background: #eee;
}
.site-header .nav-bar .nav-item.left-side:nth-child(1) {
  width: 12%;
  text-align: right;
}
.site-header .nav-bar .nav-item.left-side:nth-child(2) {
  width: 28%;
  text-align: left;
}
.site-header .nav-bar .nav-item.logo {
  width: 20%;
  padding: 0;
}
.site-header .nav-bar .nav-item.logo img {
  margin-top: -1.8rem;
  height: 115px;
}
.site-header .nav-bar .nav-item.logo a {
  display: inline;
  height: auto;
  padding: 0;
}
.site-header .nav-bar .nav-item.logo a:hover {
  background: none !important;
}
.site-header .nav-bar .nav-item .christmas-logo {
  position: relative;
}
.site-header .nav-bar .nav-item .christmas-logo img:first-of-type {
  margin-top: -0.8rem;
}
.site-header .nav-bar .nav-item .christmas-logo img:last-of-type {
  position: absolute;
  top: -60px;
  left: 72%;
  transform: translateX(-50%);
  z-index: 2;
  width: 141px;
  height: auto;
}
.site-header .nav-bar .nav-item .new-years-logo {
  position: relative;
}
.site-header .nav-bar .nav-item .new-years-logo img:first-of-type {
  margin-top: -0.8rem;
}
.site-header .nav-bar .nav-item .new-years-logo img:last-of-type {
  position: absolute;
  top: -80px;
  left: 73%;
  transform: translateX(-50%) rotate(21deg);
  z-index: 2;
  width: 110px;
  height: auto;
}
.site-header .nav-bar .nav-item.right-side {
  width: 15%;
}
.site-header .nav-bar .nav-item.right-side:nth-child(4) {
  text-align: right;
}
.site-header .nav-bar .nav-item.right-side:nth-child(5) {
  text-align: left;
}
.site-header .nav-bar .nav-item.cart {
  color: #4C4C4B;
  width: 10%;
  text-align: right;
  white-space: nowrap;
  text-decoration: none;
  font-size: 0.8rem;
}
.site-header .nav-bar .nav-item.cart img {
  margin: -2px 2px 0 0;
  display: inline-block;
}
.site-header .nav-bar img {
  margin-left: 2px;
}
.site-header .nav-bar .mobile-logo {
  display: none;
  float: left;
  margin: -20px 5px 0 9px;
}
.site-header .nav-bar .mobile-logo a {
  color: #555;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}
.site-header .nav-bar .mobile-logo img {
  height: 78.75px;
  margin: 0 7px 0 0;
}
.site-header .nav-bar .mobile-logo .christmas-logo {
  position: relative;
}
.site-header .nav-bar .mobile-logo .christmas-logo img:first-of-type {
  margin-top: 0.5rem;
  margin-right: 1.5rem;
  height: 67px;
}
.site-header .nav-bar .mobile-logo .christmas-logo img:last-of-type {
  position: absolute;
  top: -37px;
  left: 23%;
  transform: translateX(-50%) rotate(14deg);
  z-index: 2;
  width: 88px;
  height: auto;
}
.site-header .nav-bar .mobile-logo .new-years-logo {
  position: relative;
}
.site-header .nav-bar .mobile-logo .new-years-logo img:first-of-type {
  margin-top: 0.8rem;
  margin-right: 1.5rem;
  height: 64px;
}
.site-header .nav-bar .mobile-logo .new-years-logo img:last-of-type {
  position: absolute;
  top: -54px;
  left: 22%;
  transform: translateX(-50%) rotate(18deg);
  z-index: 2;
  width: 77px;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .site-header .nav-bar .mobile-logo {
    display: block;
  }
}
.site-header .nav-bar .mobile-bars {
  padding: 0 1rem;
  font-size: 1.5rem;
  height: 35px;
  color: #666;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .site-header .nav-bar .mobile-bars + .nav-wrap {
    display: none !important;
  }
  .site-header .nav-bar .mobile-bars.open + .nav-wrap {
    display: block !important;
  }
}
@media only screen and (min-width:768px) {
  .site-header .nav-bar .mobile-bars {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .site-header .nav-bar {
    text-align: right;
  }
  .site-header .nav-bar .nav-wrap {
    z-index: 9999999;
    display: block !important;
    width: 10rem;
    position: absolute;
    right: 0;
  }
  .site-header .nav-bar .nav-wrap .nav-item {
    text-align: center !important;
    background: #f4f4f4;
    width: 100% !important;
    float: none;
  }
  .site-header .nav-bar .nav-wrap .nav-item.logo {
    display: none;
  }
  .site-header .nav-bar .nav-wrap .nav-item a {
    padding: 0;
    width: 100%;
  }
  .site-header .nav-bar .nav-wrap .nav-item a:hover {
    background: #fff;
  }
}
.site-header.blue {
  background: #fff url(../images/bg-pattern-white.png) repeat repeat;
}
.site-header.blue .nav-bar {
  background: linear-gradient(to right, #328bf2, #1644ad);
}
.site-header.blue .nav-bar .mobile-logo,
.site-header.blue .nav-bar .mobile-bars {
  color: #fff;
}
.site-header.blue .nav-bar .mobile-logo a,
.site-header.blue .nav-bar .mobile-bars a {
  color: #fff;
}
.site-header.blue .nav-bar .nav-item a {
  color: #fff;
}
.site-header.blue .nav-bar .nav-item a:hover {
  background: #555;
}
.site-header.blue .top-nav a {
  color: #888;
}
.site-header.blue .top-nav a.admin {
  color: #0091c5;
}
.site-header.blue .dropdown-content {
  background-color: #555;
}
.site-header.blue .dropdown-content a {
  width: 100%;
  color: #444;
  font-weight: 500 !important;
}
.site-header.blue .dropdown-content a:hover {
  background: #5e5d5d !important;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .site-header.blue .nav-wrap .nav-item {
    background: #555;
  }
  .site-header.blue .nav-wrap .nav-item a:hover {
    background: rgb(93.5, 93.5, 93.5);
  }
}
@media only screen and (max-width: 767px) {
  .site-header .dropdown-content {
    right: 128px;
    margin-top: -35px;
  }
}

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

section.faq-page .spacer {
  width: 100%;
  height: 2rem;
  display: block;
  clear: both;
}
section.faq-page h2 {
  font-weight: 700;
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
}
section.faq-page h4 {
  font-weight: 500;
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem;
  cursor: pointer;
}
section.faq-page h4 div {
  border-bottom: solid 1px #ddd;
  padding-bottom: 0.45rem;
  color: #328bf2;
  display: inline-block;
  width: calc(100% - 29px);
  vertical-align: middle;
}
section.faq-page h4 i {
  display: inline-block;
  font-size: 1.2rem;
  color: #C5DFB5;
  width: 29px;
}
section.faq-page .answer {
  display: none;
  padding-left: 29px;
}

footer.footer {
  background: radial-gradient(circle at 1% 1%, #328bf2, #1644ad);
}
footer.footer h6 {
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
footer.footer .top {
  padding: 0.5rem 0.5rem;
  color: #fff;
}
footer.footer .top a {
  color: #fff;
}
footer.footer .top ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
footer.footer .top ul.main-links li {
  padding-bottom: 1rem;
}
footer.footer .top ul.main-links li a {
  font-size: 1rem;
}
@media only screen and (max-width: 767px) {
  footer.footer .top ul.main-links li a {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 575px) {
  footer.footer .top ul.main-links li a {
    text-align: center;
    text-align-font-size: 1.3rem;
  }
}
footer.footer .top li a {
  font-size: 0.9rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  footer.footer .top li a {
    font-size: 1rem !important;
  }
}
@media only screen and (max-width: 575px) {
  footer.footer .top li a {
    font-size: 1rem !important;
  }
}
footer.footer .top .contact-block {
  font-size: 0.9rem;
}
@media only screen and (max-width: 767px) {
  footer.footer .top .contact-block {
    font-size: 1rem !important;
  }
}
@media only screen and (max-width: 575px) {
  footer.footer .top .contact-block {
    font-size: 1rem !important;
  }
}
footer.footer .top .contact-block img.hours {
  margin: 1rem 0 0;
}
footer.footer .top .short-time {
  display: none;
}
footer.footer .top .contact-logos {
  padding: 1rem 0 0;
}
@media only screen and (max-width: 575px) {
  footer.footer .top .main-links {
    margin-bottom: 1rem;
  }
  footer.footer .top .short-time {
    display: inline;
  }
  footer.footer .top .long-time {
    display: none;
  }
  footer.footer .top .contact-logos {
    text-align: center;
    padding: 1.5rem 0 0.5rem;
  }
}
footer.footer .bottom {
  text-align: center;
  background: transparent;
  padding: 1rem;
  font-size: 0.8rem;
  line-height: 1.66rem;
}
footer.footer .margin-zero {
  margin: 0 auto !important;
}
footer.footer .hr-separator {
  margin-bottom: 0 !important;
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
}
footer.footer .small-height {
  height: 10px;
}
footer.footer .small-height-2 {
  height: 20px;
}
footer.footer .footer-padding {
  padding-top: 40px;
  padding-bottom: 20px;
}
footer.footer .footer-text {
  color: rgba(255, 255, 255, 0.6) !important;
}
footer.footer .footer-text a {
  color: rgba(255, 255, 255, 0.6) !important;
}

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

section.home-hero h1, section.home-hero h2 {
  text-align: center;
  color: #d1f265;
  font-weight: 500;
  margin: 3.5rem 0 0;
  position: relative;
  font-size: 3rem;
}
@media only screen and (max-width: 767px) {
  section.home-hero h1, section.home-hero h2 {
    margin: 1rem 0 0;
    font-size: 2.5rem;
  }
}
section.home-hero h2 {
  font-weight: 100;
  font-size: 1.5rem;
  margin: 0.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 767px) {
  section.home-hero h2 {
    font-size: 1rem;
  }
}
section.home-hero .primary-container > .row {
  margin-bottom: 5rem;
}
section.home-hero .primary-container > .row div.flex {
  display: flex;
}
section.home-hero .primary-container > .row div.flex.big figcaption {
  font-size: 1.1rem;
}
@media only screen and (max-width: 767px) {
  section.home-hero .primary-container > .row {
    margin-bottom: 0rem;
  }
}
section.home-hero figure {
  margin: 0.5rem 0 0.5rem 0;
  width: 100%;
}
section.home-hero figure img {
  transition: all 0.5s ease-out;
  margin-bottom: 0.33rem;
  padding: 15px;
}
section.home-hero figcaption {
  transition: all 0.5s ease-out;
  letter-spacing: 1px;
  margin-top: 0rem;
  font-weight: 500;
  color: #555;
  height: 50px;
}
section.home-hero a {
  transition: all 0.5s ease-out;
  display: inline-block;
  max-width: 100%;
}
section.home-hero a img {
  max-width: 100%;
}
section.home-hero a:hover, section.home-hero a:focus {
  text-decoration: none;
}
section.home-hero a:hover img, section.home-hero a:focus img {
  margin-top: 0.33rem;
  margin-bottom: 0rem;
}
section.home-hero a:hover figcaption, section.home-hero a:focus figcaption {
  color: #328bf2;
}
@media only screen and (max-width: 767px) {
  section.home-hero {
    margin-bottom: 4rem;
  }
}
section.how-it-works {
  background: #EDEFF0;
  padding: 5rem 0;
}
section.how-it-works .row .row .col-md-4 {
  position: relative;
  padding: 0 3%;
  text-align: center;
}
section.how-it-works .row .row .arrow {
  position: absolute;
  top: 3rem;
  right: 0;
  margin-right: -16px;
  max-height: 28px;
}
@media only screen and (max-width: 767px) {
  section.how-it-works .row .row .arrow {
    display: none;
  }
}
section.how-it-works .row .row strong {
  letter-spacing: 2px;
  font-weight: 500;
  margin: 1rem 0 0.25rem;
  display: inline-block;
  width: 100%;
  font-size: 1.1rem;
}
section.how-it-works .row .row p {
  font-size: 0.9rem;
  color: #555;
  max-width: 20rem;
  margin: 0 auto 2rem;
}
section.how-it-works .row .row img {
  max-height: 128px;
}
section.how-it-works-timeline {
  padding: 5rem 0;
}
section.how-it-works-timeline .stage-details {
  text-align: center;
}
section.how-it-works-timeline .stage-details .timeline {
  margin-top: 2rem;
}
section.how-it-works-timeline .stage-details .timeline .row {
  width: 480px;
  margin: 0.25rem auto 0.8rem auto;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
}
section.how-it-works-timeline .stage-details .timeline .row div {
  padding: 0;
}
section.how-it-works-timeline .stage-details .timeline img {
  margin: 0 auto;
  width: 351px;
  display: block;
}
section.how-it-works-timeline .stage-details .timeline strong {
  font-size: 0.9rem;
  width: 100%;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  section.how-it-works-timeline .stage-details .timeline {
    display: none;
  }
}
section.how-it-works-timeline .stage-details p {
  font-size: 0.9rem;
  margin: 0 0.25rem 2rem;
  color: #555;
}
@media only screen and (max-width: 767px) {
  section.how-it-works-timeline .stage-details p {
    max-width: 400px;
    margin: 0 auto 2rem;
  }
}
section.how-it-works-timeline .stage-overview {
  text-align: center;
  letter-spacing: 2px;
  border-right: 1px solid #ccc;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}
@media only screen and (max-width: 767px) {
  section.how-it-works-timeline .stage-overview {
    padding-bottom: 1rem;
    border: none;
  }
}
section.how-it-works-timeline .stage-overview strong {
  display: inline-block;
  width: 100%;
  font-size: 1rem;
  margin: 0.25rem 0 0 0;
}
section.how-it-works-timeline .stage-overview span {
  display: inline-block;
  font-size: 0.9rem;
  color: #555;
}
section.customer-experiences {
  padding: 5rem 0;
}
section.customer-experiences strong {
  font-weight: 500;
  letter-spacing: 2px;
  padding-bottom: 1rem;
  display: inline-block;
}
section .category-grid {
  margin-top: 8.5rem;
  margin-bottom: 2rem !important;
}
@media only screen and (max-width: 767px) {
  section .category-grid {
    margin-top: 6.5rem;
  }
}
section .hero-left-image {
  position: absolute;
  left: -250px;
  top: 70px;
}
section .hero-right-image {
  position: absolute;
  right: -250px;
  top: 80px;
}
section .hero-left-image img, section .hero-right-image img {
  max-height: 460px;
}
section .hero-h2 {
  margin: 0.5rem 0 2rem !important;
}
@media only screen and (max-width: 767px) {
  section .hero-h2 {
    margin: 0.5rem 0 1rem !important;
  }
}
section .hero-search-bar {
  border: none;
  border-radius: 6px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.2s;
}
section .hero-search-bar:focus {
  outline-offset: 0px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}
section .hero-text {
  color: #fff;
  font-weight: 700;
  margin: 0 auto;
  margin-bottom: 1.5rem !important;
}
section .hero-margin-top {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  section .hero-margin-top {
    margin-top: 2rem;
  }
}
section .check-mark i {
  color: #C5E269;
  margin-left: 20px;
}
section .hero-grid {
  border-bottom: 1px solid #dfdfdf;
}
section .hero-grid img {
  height: 220px;
  width: auto;
}
@media only screen and (max-width: 767px) {
  section .hero-grid img {
    max-width: 220px !important;
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width:768px) {
  section .hero-grid:nth-child(3n+1):nth-last-child(-n+3), section .hero-grid:nth-child(3n+1):nth-last-child(-n+3) ~ div {
    border-bottom: none;
  }
  section .hero-grid:nth-child(3n+0) {
    border-right: none !important;
  }
  section .hero-grid:nth-child(3n+1), section .hero-grid:nth-child(3n+2) {
    border-right: 1px solid #dfdfdf;
  }
}
@media only screen and (max-width: 767px) {
  section .hero-grid:last-child {
    border-bottom: none;
  }
  section .hero-grid:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
  section .hero-grid:nth-child(odd) {
    border-right: 1px solid #dfdfdf;
  }
}
@media only screen and (max-width: 575px) {
  section .hero-grid:last-child {
    border-bottom: none;
  }
  section .hero-grid:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
  section .hero-grid:nth-child(odd) {
    border-right: 1px solid #dfdfdf;
  }
}
@media only screen and (max-width: 767px) {
  section .category-grid > .col-sm-6 {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  section .products-padding > .col-sm-6 {
    width: 50%;
  }
}

#process-fee-waived-popup {
  display: none;
  position: fixed;
  bottom: -1.9rem;
  left: 1rem;
  z-index: 999999;
}
#process-fee-waived-popup .modal-header {
  border: none;
}
#process-fee-waived-popup .modal-body {
  width: 400px;
  border-radius: 6px;
}
#process-fee-waived-popup .modal-content {
  background: url(../images/processing-fee-waived-modal-bg.png) center center #fff;
}
#process-fee-waived-popup .modal-dialog {
  margin: 0;
}
#process-fee-waived-popup .panel {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 6px;
  border: none;
  padding-top: 1rem;
  padding-bottom: 1.4rem;
  margin: 0;
}
#process-fee-waived-popup h4 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  line-height: 1.8rem;
  text-transform: uppercase;
}
#process-fee-waived-popup a.close {
  opacity: 0.666;
  position: absolute;
  right: 1px;
  top: 3px;
  z-index: 9999;
  font-size: 2rem;
  font-weight: 100;
  line-height: 1rem;
  text-shadow: none;
  color: #fff;
}
#process-fee-waived-popup .free-processing {
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}
#process-fee-waived-popup .terms {
  line-height: 1rem;
  color: #666;
  font-size: 0.75rem;
}
@media only screen and (max-width: 540px) {
  #process-fee-waived-popup {
    right: 1rem;
  }
  #process-fee-waived-popup .modal-dialog {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  #process-fee-waived-popup .modal-body {
    width: 100%;
  }
  #process-fee-waived-popup .terms {
    width: 100%;
    line-height: 0.8rem;
  }
}
@media only screen and (max-width: 440px) {
  #process-fee-waived-popup {
    right: 0.2rem;
    left: 0.2rem;
    bottom: -1rem;
  }
  #process-fee-waived-popup h4 {
    font-size: 1rem;
    line-height: 1.5rem;
    max-width: 300px;
    margin: 0 auto;
  }
  #process-fee-waived-popup .modal-body {
    padding: 0.7rem;
  }
  #process-fee-waived-popup br.hidden {
    display: block !important;
  }
  #process-fee-waived-popup .panel {
    padding: 0.7rem;
  }
  #process-fee-waived-popup .terms {
    text-align: center;
  }
  #process-fee-waived-popup a.close {
    right: -2px;
    top: 0px;
    font-size: 1.8rem;
  }
}

#processing-fee-hidden-bg {
  display: none;
}

body.trade-in:before {
  display: none !important;
}
body.trade-in h1 {
  margin: 2rem 0 1rem;
}
body.trade-in .trade-in-cat h1, body.trade-in .trade-in-cat h2 {
  font-size: 2rem;
  color: #444;
}
body.trade-in .trade-in-cat h1 {
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
}
body.trade-in .trade-in-cat h2 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
body.trade-in .trade-in-cat .circles {
  margin-bottom: 2rem;
}
body.trade-in .trade-in-prod .crumbs {
  padding: 1rem;
}
body.trade-in .trade-in-prod .crumbs a {
  color: #999;
}
body.trade-in .trade-in-prod .product-pricing-block {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  padding: 1rem 0 3rem;
}
@media only screen and (max-width: 767px) {
  body.trade-in .trade-in-prod .product-pricing-block {
    padding: 1px 1rem 3rem 1rem;
  }
}
body.trade-in .trade-in-prod .product-pricing-block .columns {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
body.trade-in .products-padding {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
body.trade-in .products-padding img {
  width: auto;
  height: 160px;
}
@media only screen and (max-width: 767px) {
  body.trade-in .products-padding img {
    max-width: 160px;
    width: 100%;
    height: auto;
  }
}
body.trade-in .trade-in-grid {
  border-bottom: 1px solid #dfdfdf;
}
@media only screen and (min-width:992px) {
  body.trade-in .trade-in-grid:nth-child(4n+1):nth-last-child(-n+4), body.trade-in .trade-in-grid:nth-child(4n+1):nth-last-child(-n+4) ~ div {
    border-bottom: none;
  }
  body.trade-in .trade-in-grid:nth-child(4n+0) {
    border-right: none !important;
  }
  body.trade-in .trade-in-grid:nth-child(4n+1), body.trade-in .trade-in-grid:nth-child(4n+2), body.trade-in .trade-in-grid:nth-child(4n+3) {
    border-right: 1px solid #dfdfdf;
  }
}
@media only screen and (min-width:768px) and (max-width:991px) {
  body.trade-in .trade-in-grid:nth-child(3n+1):nth-last-child(-n+3), body.trade-in .trade-in-grid:nth-child(3n+1):nth-last-child(-n+3) ~ div {
    border-bottom: none;
  }
  body.trade-in .trade-in-grid:nth-child(3n+0) {
    border-right: none !important;
  }
  body.trade-in .trade-in-grid:nth-child(3n+1), body.trade-in .trade-in-grid:nth-child(3n+2) {
    border-right: 1px solid #dfdfdf;
  }
}
@media only screen and (max-width: 767px) {
  body.trade-in .trade-in-grid:last-child {
    border-bottom: none;
  }
  body.trade-in .trade-in-grid:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
  body.trade-in .trade-in-grid:nth-child(odd) {
    border-right: 1px solid #dfdfdf;
  }
}
@media only screen and (max-width: 767px) {
  body.trade-in .category-grid > .col-sm-6 {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  body.trade-in .products-padding > .col-sm-6 {
    width: 50%;
  }
}

.discontinued {
  margin: 2rem 0 0;
  color: #555;
  text-align: center;
  padding: 1rem 1.25rem;
  border: 0.125rem solid #777;
  border-radius: 6px;
  background: #fff;
}
.discontinued strong {
  border-bottom: 3px solid #C5DFB5;
  color: #328bf2;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 2px;
  padding-bottom: 0.5rem;
  font-weight: 500;
}
.discontinued p {
  font-size: 0.85rem;
  margin: 2rem 0 0;
}
@media only screen and (min-width:768px) and (max-width:991px) {
  .discontinued {
    margin: 3rem 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .discontinued {
    margin: 2rem 0;
  }
}

section.trade-in-sell.top-block p {
  max-width: 650px;
}
section.trade-in-sell blockquote {
  border: 0;
  text-align: center;
  font-size: 2rem;
  color: #A6A6A6;
  line-height: 1.2;
  padding: 2rem 0;
}
section.trade-in-sell img {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  float: none;
  margin: 0.5rem auto;
}
section.trade-in-sell p {
  color: #666;
  font-weight: 300;
  line-height: 1.8;
}
section.trade-in-sell h2 {
  margin: 0.5rem 0 1.5rem;
}
section.trade-in-sell h3 {
  margin: 0.5rem 0 1rem;
}
section.trade-in-sell h3 span {
  color: #328bf2;
}
section.trade-in-sell .trade-in-hero {
  padding: 100px 50px;
  margin: 0;
  width: 100%;
  max-width: 100%;
  margin-top: 24px;
  margin-bottom: 55px;
  background-repeat: no-repeat;
  background-color: #eee;
  background-size: cover;
  background-position: center;
}
section.trade-in-sell .trade-in-card {
  background: rgba(255, 255, 255, 0.85);
  padding: 25px;
}
section.trade-in-sell .trade-in-card p {
  text-align: center;
}
section.trade-in-sell .section-heading {
  margin: 0 !important;
  margin-bottom: 1rem !important;
}
@media only screen and (max-width: 767px) {
  section.trade-in-sell .mobile-line-height {
    line-height: 1.8;
  }
  section.trade-in-sell .feature-heading {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width:768px) and (max-width:991px) {
  section.trade-in-sell .feature-heading {
    font-size: 1.4rem;
  }
}
section.trade-in-sell .mini-heading {
  margin: 0rem 0 2rem 0;
}
section.trade-in-sell .mini-message {
  margin: 0rem 0 2rem 0;
}
section.trade-in-sell .mini-message p {
  font-size: 1.3rem;
  font-weight: inherit !important;
}
@media only screen and (max-width: 575px) {
  section.trade-in-sell .col-feature-img {
    flex: 0 0 18% !important;
    max-width: 18% !important;
  }
  section.trade-in-sell .col-feature-text {
    flex: 0 0 82% !important;
    max-width: 82% !important;
  }
}
@media only screen and (max-width: 767px) {
  section.trade-in-sell .col-feature-img {
    flex: 0 0 20%;
    max-width: 20%;
  }
  section.trade-in-sell .col-feature-text {
    flex: 0 0 80%;
    max-width: 80%;
  }
}
section.trade-in-sell .bold-blue {
  color: #328bf2;
}

.autocomplete-suggestions {
  border: 1px solid #999;
  background: #FFF;
  overflow: auto;
  cursor: pointer;
}
.autocomplete-suggestions strong {
  font-weight: normal;
  color: #7DB35E;
}

.autocomplete-suggestion {
  padding: 2px 5px;
  white-space: nowrap;
  overflow: hidden;
}

.autocomplete-selected {
  background: #F0F0F0;
}

.autocomplete-group {
  padding: 2px 5px;
}
.autocomplete-group strong {
  display: block;
  border-bottom: 1px solid #000;
}

.faq-block h3 span {
  border-bottom: 3px solid #C5DFB5;
  color: #328bf2;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 2px;
  padding-bottom: 0.5rem;
  font-weight: 500;
}
.faq-block.widget {
  padding: 2rem 0 3rem;
}
.faq-block.white {
  background: #fff;
}
.faq-block .block-wrap {
  border: 1px solid #ddd;
  margin-top: 2rem;
  background: #EDEFF0;
}
.faq-block .question {
  transition: all 250ms;
  position: relative;
  padding: 1rem 1rem 1rem 3.125rem;
  border-bottom: #ddd 1px solid;
}
.faq-block .question:hover {
  color: #328bf2;
  cursor: pointer;
}
.faq-block .question span {
  top: 0.3rem;
  left: 1.2rem;
  transition: color 250ms;
  position: absolute;
  font-size: 2rem;
  transform: rotate(-90deg);
  color: #328bf2;
}
.faq-block .answer {
  background: #eee;
  overflow-y: hidden;
  max-height: 0px;
  transition: all 500ms;
}
.faq-block .answer .answer-wrap {
  padding: 1rem;
}
.faq-block .answer .answer-wrap *:last-child {
  margin-bottom: 0;
}
.faq-block .block.opened .answer {
  max-height: 100rem;
  overflow-y: auto;
}
.faq-block .block.opened .question {
  border-bottom: #328bf2 2px solid;
}
.faq-block .block.opened .question span {
  left: 1.6rem;
  transform: rotate(90deg);
  color: #328bf2;
}
.faq-block .block.opened .question:hover {
  color: #328bf2;
  border-color: #328bf2;
}

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

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

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

.widget.reviews {
  padding: 5rem 0;
}
.widget.reviews .slider {
  position: relative;
}
.widget.reviews .slider .siema {
  margin: 0 1.5rem;
}
.widget.reviews .slider .slide {
  text-align: center;
}
.widget.reviews .review-box {
  background: #eee;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 3px;
  border: #bbb solid 1px;
  width: 95%;
  display: inline-block;
  padding: 1rem;
}
.widget.reviews .review-box .review {
  max-height: 7rem;
  overflow-x: hidden;
  overflow-y: auto;
}
.widget.reviews .quote {
  color: #328bf2;
  font-size: 1rem;
}
.widget.reviews .trade-in-number {
  font-weight: bold;
}
.widget.reviews .slide-control {
  font-size: 3rem;
  top: 3rem;
  position: absolute;
  height: 72px;
  margin-top: -36px;
  cursor: pointer;
}
.widget.reviews .slide-control.slide-next {
  left: 0;
}
.widget.reviews .slide-control.slide-prev {
  right: 0;
}
.widget.reviews .logo {
  text-align: center;
  margin-top: 0.5rem;
}
.widget.reviews .logo img {
  max-width: 100%;
  width: 100px;
}

.review-widget-ratings-wrap .col.bbb {
  text-align: center;
  max-width: 100px !important;
  padding-top: 3rem !important;
}
.review-widget-ratings-wrap .col.bbb a#bbblink {
  display: inline-block !important;
}
.review-widget-ratings-wrap .rating-msg {
  margin: 2rem 0 0 0;
  text-align: center;
  font-size: 1.15rem;
}
.review-widget-ratings-wrap .rating-msg .rating {
  font-weight: bold;
  color: #328bf2;
}
.review-widget-ratings-wrap .rating-msg .rating strong {
  font-size: 1.66rem;
}
.review-widget-ratings-wrap .rating-msg .logo img {
  width: 140px;
}
.review-widget-ratings-wrap .stars {
  text-align: center;
  width: 100%;
  float: left;
  height: 3rem;
}
.review-widget-ratings-wrap .stars > span {
  width: 125px;
  display: inline-block;
  position: relative;
  text-align: left;
  white-space: nowrap;
}
.review-widget-ratings-wrap .stars .icons {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
}
.review-widget-ratings-wrap .stars .empty {
  color: #aaa;
}
.review-widget-ratings-wrap .stars .full {
  color: #f1cf1a;
}

.widget.why-us {
  background: #EDEFF0;
  padding: 5rem 0;
}
.widget.why-us.white {
  background: #fff;
}
.widget.why-us .row > div {
  border-left: 1px solid #ccc;
  text-align: center;
}
.widget.why-us .row > div:first-child {
  border: none;
}
.widget.why-us .row > div strong {
  width: 100%;
  display: inline-block;
  letter-spacing: 2px;
  margin: 1rem 0 0.5rem;
  font-weight: 500;
}
.widget.why-us .row > div span {
  font-size: 0.9rem;
  color: #555;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .widget.why-us .row > div span {
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .widget.why-us .row > div {
    border: none;
  }
}
.widget.why-us .row > div img {
  max-height: 80px;
}

/**
 * * Global Styles
 * */
#bbt {
  overflow: hidden;
}

html body {
  background: #fff;
}
html body:before {
  display: none;
}
html body.has-pattern-hero {
  background: #fff;
}
html body.has-pattern-hero:before {
  top: 0;
  left: 0;
  width: 100%;
  min-height: 10rem;
  background: url(../images/bg-pattern.png), linear-gradient(to right, #328bf2, #1644ad);
  content: "";
  display: block;
  position: absolute;
}
html body.has-pattern-hero.tall:before {
  height: 33rem;
}
@media only screen and (max-width: 767px) {
  html body.has-pattern-hero.tall:before {
    height: 27rem;
  }
}
html body.has-pattern {
  background: url(../images/bg-pattern.png), linear-gradient(to right, #328bf2, #1644ad);
}
html body.has-pattern:before {
  top: 0;
  left: 0;
  width: 100%;
  min-height: 10rem;
  background: url(../images/bg-pattern.png), linear-gradient(to right, #328bf2, #1644ad);
  content: "";
  display: block;
  position: absolute;
}
html body.has-pattern.tall:before {
  height: 31rem;
}
@media only screen and (min-width:768px) and (max-width:991px) {
  html body.has-pattern.tall:before {
    height: 26rem;
  }
}
@media only screen and (max-width: 767px) {
  html body.has-pattern.tall:before {
    height: 25rem;
  }
}
html body .primary-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
html body .primary-container.padded {
  padding: 3rem 1rem;
}
html body a {
  color: #328bf2;
}
html body a:hover {
  color: #1644ad;
}
html body label {
  width: 100%;
}
html body select,
html body input[type=text],
html body input[type=password],
html body input[type=email],
html body input[type=number],
html body input[type=tel],
html body textarea {
  width: 100%;
  font-size: 0.95rem;
  padding: 0.33rem 0.5rem 0.2rem;
  border-radius: 4px;
  border: 1px solid #666;
  outline: 0;
  transition: 0.3s all;
  height: 32px;
  background: #fff;
}
html body select.auto-width, html body select.autowidth, html body select.auto,
html body input[type=text].auto-width,
html body input[type=text].autowidth,
html body input[type=text].auto,
html body input[type=password].auto-width,
html body input[type=password].autowidth,
html body input[type=password].auto,
html body input[type=email].auto-width,
html body input[type=email].autowidth,
html body input[type=email].auto,
html body input[type=number].auto-width,
html body input[type=number].autowidth,
html body input[type=number].auto,
html body input[type=tel].auto-width,
html body input[type=tel].autowidth,
html body input[type=tel].auto,
html body textarea.auto-width,
html body textarea.autowidth,
html body textarea.auto {
  width: auto;
}
html body select:focus,
html body input[type=text]:focus,
html body input[type=password]:focus,
html body input[type=email]:focus,
html body input[type=number]:focus,
html body input[type=tel]:focus,
html body textarea:focus {
  outline: 0;
  background: rgb(245.61, 252.5214213198, 255);
  border-color: #1644ad;
}
html body textarea {
  height: auto;
}
html body input[type=checkbox] {
  width: auto;
}
html body label {
  display: inline-block;
}
html body .error {
  color: #C42323;
}

h3.section-heading {
  padding-bottom: 0.5rem;
  margin: 0 0 3rem;
  width: 100%;
  display: inline-block;
  text-align: center;
}
h3.section-heading span {
  border-bottom: 3px solid #C5DFB5;
  color: #328bf2;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 2px;
  padding-bottom: 0.5rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  h3.section-heading span {
    font-size: 1.4rem;
  }
}

.modal-header button.close:hover, .modal-header button.close:focus {
  border: none !important;
  background: none;
  box-shadow: none !important;
}

.tooltip.show {
  opacity: 1;
}

.banner-coupon {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  background: #EDEFF0;
  color: #328bf2;
  font-weight: 600;
  border-bottom: 3px solid #C5DFB5;
  line-height: 1.2;
  padding: 14px;
  font-size: 1rem;
  z-index: 1001;
  text-decoration: none !important;
  min-height: auto;
}
.banner-coupon strong {
  font-size: 0.9rem;
}
.banner-coupon:hover {
  background: #d6d6d6;
}
@media only screen and (max-width: 767px) {
  .banner-coupon {
    padding: 0.4375rem;
    line-height: 1.3;
  }
}

.home.notices-box-banner {
  top: 2rem !important;
}

body:has(.banner-coupon) .site-header {
  padding-top: calc(var(--banner-height, 48px) + 0px);
}
@media only screen and (max-width: 767px) {
  body:has(.banner-coupon) .site-header {
    padding-top: calc(var(--banner-height, 52px) + 0px);
  }
}

.site-header-banner.blue {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 767px) {
  .site-header-banner.blue {
    margin-bottom: 0;
  }
}

body.trade-in .trade-in-prod .product-pricing-block-banner {
  margin-top: 45px;
}

section.home-hero h1 {
  margin: 6rem 0 0 !important;
}
section .category-grid {
  margin-top: 10.5rem;
}
@media only screen and (max-width: 767px) {
  section .category-grid {
    margin-top: 8.5rem;
  }
}

html body.has-pattern-hero.tall:before {
  height: 37rem;
}
@media only screen and (max-width: 767px) {
  html body.has-pattern-hero.tall:before {
    height: 35rem;
  }
}

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

.panel {
  overflow: hidden;
  background: #fff;
  border: #328bf2 solid 0;
  background: #f6f6f6;
  padding: 1.2rem 1rem;
  margin-bottom: 1rem;
}
@media only screen and (min-width:768px) {
  .panel {
    border-radius: 0.25rem;
    border: #328bf2 solid 0;
  }
}
.panel *:last-child {
  margin-bottom: 0;
}
.panel .panel-heading {
  margin: -1.2rem -1rem 1rem;
  font-size: 1rem;
  padding: 1rem;
  background: #328bf2;
  color: #fff;
}

ul.circles {
  list-style-type: none;
  text-align: center;
  padding: 0;
}
ul.circles li {
  display: inline-block;
}
ul.circles li a {
  display: inline-block;
}
ul.circles li a:hover {
  text-decoration: none;
}
ul.circles li a:hover .title {
  color: #C8E1BA;
}
ul.circles li a:hover .disc {
  background: #0091c5;
  border-color: #C8E1BA;
}
ul.circles li .disc {
  transition: 0.2s all;
  width: 8rem;
  height: 8rem;
  border: 4px solid #fff;
  border-radius: 4rem;
  overflow: hidden;
  position: relative;
  background: #328bf2;
  text-align: center;
  margin: 0.5rem auto 0;
  margin-top: 0.5rem;
}
ul.circles li .disc:hover, ul.circles li .disc:focus {
  margin-bottom: 0.25rem;
  margin-top: 0.25rem;
}
ul.circles li .disc img {
  position: absolute;
  top: 0;
  left: 0;
  height: 75%;
  width: 75%;
  margin: 12.5%;
}
ul.circles li .title {
  display: inline-block;
  padding: 1rem 0;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 500;
  transition: 0.5s all;
}

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

.label {
  display: inline-block;
  font-weight: normal;
  line-height: 1;
  margin-bottom: auto;
  position: relative;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.25rem 0.5rem 0.25rem;
  font-size: 0.6875rem;
  background-color: #1E90FA;
  color: #FFFFFF;
}

.label.radius {
  border-radius: 0.25rem;
}

.label.round {
  border-radius: 1000px;
}

.label.alert {
  background-color: #dc2f2f;
  color: #FFFFFF;
}

.label.warning {
  background-color: #F1852A;
  color: #FFFFFF;
}

.label.success {
  background-color: #78b556;
  color: #FFFFFF;
}

.label.secondary {
  background-color: #CDCDCD;
  color: #333333;
}

.label.info {
  background-color: #8fc8fd;
  color: #333333;
}

label small {
  text-transform: capitalize;
  color: #676767;
  font-size: 70%;
}

input[type=tel][disabled] {
  background-color: rgba(118, 118, 118, 0.3);
  cursor: default;
}
