/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */

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

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

@-webkit-keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

@keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

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

@-webkit-keyframes flash {
    from,
    50%,
    to {
        opacity: 1
    }
    25%,
    75% {
        opacity: 0
    }
}

@keyframes flash {
    from,
    50%,
    to {
        opacity: 1
    }
    25%,
    75% {
        opacity: 0
    }
}

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

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

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

@-webkit-keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1)
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1)
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1)
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1)
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1)
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1)
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1)
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1)
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

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

@-webkit-keyframes shake {
    from,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

@keyframes shake {
    from,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

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

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

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

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

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

@-webkit-keyframes wobble {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes wobble {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes jello {
    from,
    11.1%,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
        transform: skewX(0.39062deg) skewY(0.39062deg)
    }
    88.8% {
        -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
        transform: skewX(-0.19531deg) skewY(-0.19531deg)
    }
}

@keyframes jello {
    from,
    11.1%,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
        transform: skewX(0.39062deg) skewY(0.39062deg)
    }
    88.8% {
        -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
        transform: skewX(-0.19531deg) skewY(-0.19531deg)
    }
}

.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center
}

@-webkit-keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97)
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97)
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

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

@-webkit-keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9)
    }
    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9)
    }
    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
}

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

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

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

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

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

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

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

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

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

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

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

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

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

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

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

@-webkit-keyframes fadeOutDownBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

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

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

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

@-webkit-keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

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

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

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

@-webkit-keyframes fadeOutRightBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

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

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

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

@-webkit-keyframes fadeOutUpBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

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

@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

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

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

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

@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

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

@-webkit-keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

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

@-webkit-keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

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

@-webkit-keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }
    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }
    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

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

@-webkit-keyframes jackInTheBox {
    from {
        opacity: 0;
        -webkit-transform: scale(0.1) rotate(30deg);
        transform: scale(0.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }
    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        -webkit-transform: scale(0.1) rotate(30deg);
        transform: scale(0.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }
    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

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

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

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

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

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

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

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

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    50% {
        opacity: 1
    }
}

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

@-webkit-keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

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

@-webkit-keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

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

@-webkit-keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

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

@-webkit-keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

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

@-webkit-keyframes zoomOut {
    from {
        opacity: 1
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    from {
        opacity: 1
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    to {
        opacity: 0
    }
}

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

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

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

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

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

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

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

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

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

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

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

@-webkit-keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

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

@-webkit-keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

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

@-webkit-keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

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

button[data-balloon] {
    overflow: visible
}

[data-balloon] {
    position: relative;
    cursor: pointer
}

[data-balloon]:after {
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.18s ease-out 0.18s;
    transition: all 0.18s ease-out 0.18s;
    font-family: sans-serif !important;
    font-weight: normal !important;
    font-style: normal !important;
    text-shadow: none !important;
    font-size: .8rem !important;
    background: rgba(33, 37, 41, 0.9);
    border-radius: 4px;
    color: #fff;
    content: attr(data-balloon);
    padding: .5em 1em;
    position: absolute;
    white-space: nowrap;
    z-index: 10
}

[data-balloon]:before {
    background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(0)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
    background-size: 100% auto;
    width: 18px;
    height: 6px;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.18s ease-out 0.18s;
    transition: all 0.18s ease-out 0.18s;
    content: '';
    position: absolute;
    z-index: 10
}

[data-balloon]:hover:before,
[data-balloon]:hover:after,
[data-balloon][data-balloon-visible]:before,
[data-balloon][data-balloon-visible]:after {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    pointer-events: auto
}

[data-balloon].font-awesome:after {
    font-family: FontAwesome
}

[data-balloon][data-balloon-break]:after {
    white-space: pre
}

[data-balloon][data-balloon-blunt]:before,
[data-balloon][data-balloon-blunt]:after {
    -webkit-transition: none;
    transition: none
}

[data-balloon][data-balloon-pos="up"]:after {
    bottom: 100%;
    left: 50%;
    margin-bottom: 11px;
    -webkit-transform: translate(-50%, 10px);
    transform: translate(-50%, 10px);
    -webkit-transform-origin: top;
    transform-origin: top
}

[data-balloon][data-balloon-pos="up"]:before {
    bottom: 100%;
    left: 50%;
    margin-bottom: 5px;
    -webkit-transform: translate(-50%, 10px);
    transform: translate(-50%, 10px);
    -webkit-transform-origin: top;
    transform-origin: top
}

[data-balloon][data-balloon-pos="up"]:hover:after,
[data-balloon][data-balloon-pos="up"][data-balloon-visible]:after {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}

[data-balloon][data-balloon-pos="up"]:hover:before,
[data-balloon][data-balloon-pos="up"][data-balloon-visible]:before {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}

[data-balloon][data-balloon-pos="up-left"]:after {
    bottom: 100%;
    left: 0;
    margin-bottom: 11px;
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
    -webkit-transform-origin: top;
    transform-origin: top
}

[data-balloon][data-balloon-pos="up-left"]:before {
    bottom: 100%;
    left: 5px;
    margin-bottom: 5px;
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
    -webkit-transform-origin: top;
    transform-origin: top
}

[data-balloon][data-balloon-pos="up-left"]:hover:after,
[data-balloon][data-balloon-pos="up-left"][data-balloon-visible]:after {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

[data-balloon][data-balloon-pos="up-left"]:hover:before,
[data-balloon][data-balloon-pos="up-left"][data-balloon-visible]:before {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

[data-balloon][data-balloon-pos="up-right"]:after {
    bottom: 100%;
    right: 0;
    margin-bottom: 11px;
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
    -webkit-transform-origin: top;
    transform-origin: top
}

[data-balloon][data-balloon-pos="up-right"]:before {
    bottom: 100%;
    right: 5px;
    margin-bottom: 5px;
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
    -webkit-transform-origin: top;
    transform-origin: top
}

[data-balloon][data-balloon-pos="up-right"]:hover:after,
[data-balloon][data-balloon-pos="up-right"][data-balloon-visible]:after {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

[data-balloon][data-balloon-pos="up-right"]:hover:before,
[data-balloon][data-balloon-pos="up-right"][data-balloon-visible]:before {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

[data-balloon][data-balloon-pos='down']:after {
    left: 50%;
    margin-top: 11px;
    top: 100%;
    -webkit-transform: translate(-50%, -10px);
    transform: translate(-50%, -10px)
}

[data-balloon][data-balloon-pos='down']:before {
    background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
    background-size: 100% auto;
    width: 18px;
    height: 6px;
    left: 50%;
    margin-top: 5px;
    top: 100%;
    -webkit-transform: translate(-50%, -10px);
    transform: translate(-50%, -10px)
}

[data-balloon][data-balloon-pos='down']:hover:after,
[data-balloon][data-balloon-pos='down'][data-balloon-visible]:after {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}

[data-balloon][data-balloon-pos='down']:hover:before,
[data-balloon][data-balloon-pos='down'][data-balloon-visible]:before {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}

[data-balloon][data-balloon-pos='down-left']:after {
    left: 0;
    margin-top: 11px;
    top: 100%;
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px)
}

[data-balloon][data-balloon-pos='down-left']:before {
    background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
    background-size: 100% auto;
    width: 18px;
    height: 6px;
    left: 5px;
    margin-top: 5px;
    top: 100%;
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px)
}

[data-balloon][data-balloon-pos='down-left']:hover:after,
[data-balloon][data-balloon-pos='down-left'][data-balloon-visible]:after {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

[data-balloon][data-balloon-pos='down-left']:hover:before,
[data-balloon][data-balloon-pos='down-left'][data-balloon-visible]:before {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

[data-balloon][data-balloon-pos='down-right']:after {
    right: 0;
    margin-top: 11px;
    top: 100%;
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px)
}

[data-balloon][data-balloon-pos='down-right']:before {
    background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
    background-size: 100% auto;
    width: 18px;
    height: 6px;
    right: 5px;
    margin-top: 5px;
    top: 100%;
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px)
}

[data-balloon][data-balloon-pos='down-right']:hover:after,
[data-balloon][data-balloon-pos='down-right'][data-balloon-visible]:after {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

[data-balloon][data-balloon-pos='down-right']:hover:before,
[data-balloon][data-balloon-pos='down-right'][data-balloon-visible]:before {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

[data-balloon][data-balloon-pos='left']:after {
    margin-right: 11px;
    right: 100%;
    top: 50%;
    -webkit-transform: translate(10px, -50%);
    transform: translate(10px, -50%)
}

[data-balloon][data-balloon-pos='left']:before {
    background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(-90 18 18)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
    background-size: 100% auto;
    width: 6px;
    height: 18px;
    margin-right: 5px;
    right: 100%;
    top: 50%;
    -webkit-transform: translate(10px, -50%);
    transform: translate(10px, -50%)
}

[data-balloon][data-balloon-pos='left']:hover:after,
[data-balloon][data-balloon-pos='left'][data-balloon-visible]:after {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

[data-balloon][data-balloon-pos='left']:hover:before,
[data-balloon][data-balloon-pos='left'][data-balloon-visible]:before {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

[data-balloon][data-balloon-pos='right']:after {
    left: 100%;
    margin-left: 11px;
    top: 50%;
    -webkit-transform: translate(-10px, -50%);
    transform: translate(-10px, -50%)
}

[data-balloon][data-balloon-pos='right']:before {
    background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(90 6 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
    background-size: 100% auto;
    width: 6px;
    height: 18px;
    left: 100%;
    margin-left: 5px;
    top: 50%;
    -webkit-transform: translate(-10px, -50%);
    transform: translate(-10px, -50%)
}

[data-balloon][data-balloon-pos='right']:hover:after,
[data-balloon][data-balloon-pos='right'][data-balloon-visible]:after {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

[data-balloon][data-balloon-pos='right']:hover:before,
[data-balloon][data-balloon-pos='right'][data-balloon-visible]:before {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

[data-balloon][data-balloon-length='small']:after {
    white-space: normal;
    width: 80px
}

[data-balloon][data-balloon-length='medium']:after {
    white-space: normal;
    width: 150px
}

[data-balloon][data-balloon-length='large']:after {
    white-space: normal;
    width: 260px
}

[data-balloon][data-balloon-length='xlarge']:after {
    white-space: normal;
    width: 380px
}

@media screen and (max-width: 768px) {
    [data-balloon][data-balloon-length='xlarge']:after {
        white-space: normal;
        width: 90vw
    }
}

[data-balloon][data-balloon-length='fit']:after {
    white-space: normal;
    width: 100%
}

code[class*=language-],
pre[class*=language-] {
    color: #ffe8cc;
    font-size: 1em;
    text-shadow: none;
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
    direction: ltr;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none
}

code[class*=language-]::mozselection,
code[class*=language-]::-moz-selection,
pre[class*=language-]::mozselection,
pre[class*=language-]::-moz-selection {
    text-shadow: none;
    background: #ffc078
}

code[class*=language-]::mozselection,
code[class*=language-]::selection,
pre[class*=language-]::mozselection,
pre[class*=language-]::selection {
    text-shadow: none;
    background: #ffc078
}

@media print {
    code[class*=language-],
    pre[class*=language-] {
        text-shadow: none
    }
}

pre[class*=language-] {
    overflow: auto
}

:not(pre)>code[class*=language-] {
    padding: .1em .3em;
    border-radius: .3em;
    color: #ff922b;
    background: #ffe8cc
}

.namespace {
    opacity: .7
}

.token.cdata,
.token.comment,
.token.doctype,
.token.prolog,
.token.punctuation {
    color: #868e96
}

.token.boolean,
.token.constant,
.token.deleted,
.token.number,
.token.property,
.token.symbol,
.token.tag {
    color: #ffd8a8
}

.token.attr-name,
.token.builtin,
.token.char,
.token.inserted,
.token.selector,
.token.string {
    color: #ffa94d
}

.language-css .token.string,
.style .token.string,
.token.entity,
.token.operator,
.token.url {
    color: #e8590c
}

.token.atrule,
.token.attr-value,
.token.keyword {
    color: #fff
}

.token.function {
    color: #ff922b
}

.token.important,
.token.regex,
.token.variable {
    color: #ffa94d
}

.token.bold,
.token.important {
    font-weight: 700
}

.token.italic {
    font-style: italic
}

.token.entity {
    cursor: help
}

pre[data-line] {
    position: relative
}

pre[class*=language-]>code[class*=language-] {
    position: relative;
    z-index: 1
}

.line-highlight {
    position: absolute;
    left: 0;
    right: 0;
    padding: inherit 0;
    margin-top: 1em;
    background: rgba(255, 255, 255, 0.5);
    -webkit-box-shadow: inset 5px 0 0 rgba(0, 0, 0, 0.1);
    box-shadow: inset 5px 0 0 rgba(0, 0, 0, 0.1);
    z-index: 0;
    pointer-events: none;
    line-height: inherit;
    white-space: pre
}


/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */

html {
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article,
aside,
footer,
header,
nav,
section {
    display: block
}

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

figcaption,
figure,
main {
    display: block
}

figure {
    margin: 1em 40px
}

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

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

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: inherit
}

b,
strong {
    font-weight: bolder
}

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

dfn {
    font-style: italic
}

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

small {
    font-size: 80%
}

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

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

audio,
video {
    display: inline-block
}

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

img {
    border-style: none
}

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

button,
input,
optgroup,
select,
textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

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

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: 0.35em 0.75em 0.625em
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    display: inline-block;
    vertical-align: baseline
}

textarea {
    overflow: auto
}

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

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

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

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

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details,
menu {
    display: block
}

summary {
    display: list-item
}

canvas {
    display: inline-block
}

template {
    display: none
}

[hidden] {
    display: none
}

html {
    -ms-overflow-style: -ms-autohiding-scrollbar;
    font-family: fa5-proxima-nova, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px
}

@media screen and (min-width: 30em) {
    html {
        font-size: 16px
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    html {
        font-size: 16px
    }
}

@media screen and (min-width: 60em) {
    html {
        font-size: 16px
    }
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}

button,
input,
optgroup,
select,
textarea {
    font-size: 100%;
    margin: 0
}

abbr[title] {
    border-bottom: none;
    text-decoration: none
}

.button-reset {
    background: rgba(0, 0, 0, 0);
    border: none;
    cursor: pointer;
    font-family: fa5-proxima-nova, "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    -webkit-transition: all .1s ease-in;
    transition: all .1s ease-in
}

.plan-value {
    width: 37%
}

.plan-status {
    width: 25%
}

html,
body,
div,
article,
section,
main,
footer,
header,
form,
fieldset,
legend,
pre,
code,
a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
textarea,
table,
td,
th,
tr,
input[type="email"],
input[type="number"],
input[type="password"],
input[type="tel"],
input[type="text"],
input[type="url"],
.border-box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.aspect-ratio {
    height: 0;
    position: relative
}

.aspect-ratio--16x9 {
    padding-bottom: 56.25%
}

.aspect-ratio--9x16 {
    padding-bottom: 177.77%
}

.aspect-ratio--4x3 {
    padding-bottom: 75%
}

.aspect-ratio--3x4 {
    padding-bottom: 133.33%
}

.aspect-ratio--6x4 {
    padding-bottom: 66.6%
}

.aspect-ratio--4x6 {
    padding-bottom: 150%
}

.aspect-ratio--8x5 {
    padding-bottom: 62.5%
}

.aspect-ratio--5x8 {
    padding-bottom: 160%
}

.aspect-ratio--7x5 {
    padding-bottom: 71.42%
}

.aspect-ratio--5x7 {
    padding-bottom: 140%
}

.aspect-ratio--1x1 {
    padding-bottom: 100%
}

.aspect-ratio--object {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100
}

@media screen and (min-width: 30em) {
    .aspect-ratio-ns {
        height: 0;
        position: relative
    }
    .aspect-ratio--16x9-ns {
        padding-bottom: 56.25%
    }
    .aspect-ratio--9x16-ns {
        padding-bottom: 177.77%
    }
    .aspect-ratio--4x3-ns {
        padding-bottom: 75%
    }
    .aspect-ratio--3x4-ns {
        padding-bottom: 133.33%
    }
    .aspect-ratio--6x4-ns {
        padding-bottom: 66.6%
    }
    .aspect-ratio--4x6-ns {
        padding-bottom: 150%
    }
    .aspect-ratio--8x5-ns {
        padding-bottom: 62.5%
    }
    .aspect-ratio--5x8-ns {
        padding-bottom: 160%
    }
    .aspect-ratio--7x5-ns {
        padding-bottom: 71.42%
    }
    .aspect-ratio--5x7-ns {
        padding-bottom: 140%
    }
    .aspect-ratio--1x1-ns {
        padding-bottom: 100%
    }
    .aspect-ratio--object-ns {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 100
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .aspect-ratio-m {
        height: 0;
        position: relative
    }
    .aspect-ratio--16x9-m {
        padding-bottom: 56.25%
    }
    .aspect-ratio--9x16-m {
        padding-bottom: 177.77%
    }
    .aspect-ratio--4x3-m {
        padding-bottom: 75%
    }
    .aspect-ratio--3x4-m {
        padding-bottom: 133.33%
    }
    .aspect-ratio--6x4-m {
        padding-bottom: 66.6%
    }
    .aspect-ratio--4x6-m {
        padding-bottom: 150%
    }
    .aspect-ratio--8x5-m {
        padding-bottom: 62.5%
    }
    .aspect-ratio--5x8-m {
        padding-bottom: 160%
    }
    .aspect-ratio--7x5-m {
        padding-bottom: 71.42%
    }
    .aspect-ratio--5x7-m {
        padding-bottom: 140%
    }
    .aspect-ratio--1x1-m {
        padding-bottom: 100%
    }
    .aspect-ratio--object-m {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 100
    }
}

@media screen and (min-width: 60em) {
    .aspect-ratio-l {
        height: 0;
        position: relative
    }
    .aspect-ratio--16x9-l {
        padding-bottom: 56.25%
    }
    .aspect-ratio--9x16-l {
        padding-bottom: 177.77%
    }
    .aspect-ratio--4x3-l {
        padding-bottom: 75%
    }
    .aspect-ratio--3x4-l {
        padding-bottom: 133.33%
    }
    .aspect-ratio--6x4-l {
        padding-bottom: 66.6%
    }
    .aspect-ratio--4x6-l {
        padding-bottom: 150%
    }
    .aspect-ratio--8x5-l {
        padding-bottom: 62.5%
    }
    .aspect-ratio--5x8-l {
        padding-bottom: 160%
    }
    .aspect-ratio--7x5-l {
        padding-bottom: 71.42%
    }
    .aspect-ratio--5x7-l {
        padding-bottom: 140%
    }
    .aspect-ratio--1x1-l {
        padding-bottom: 100%
    }
    .aspect-ratio--object-l {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 100
    }
}

img {
    max-width: 100%
}

.cover {
    background-size: cover !important
}

.contain {
    background-size: contain !important
}

@media screen and (min-width: 30em) {
    .cover-ns {
        background-size: cover !important
    }
    .contain-ns {
        background-size: contain !important
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .cover-m {
        background-size: cover !important
    }
    .contain-m {
        background-size: contain !important
    }
}

@media screen and (min-width: 60em) {
    .cover-l {
        background-size: cover !important
    }
    .contain-l {
        background-size: contain !important
    }
}

.bg-center {
    background-repeat: no-repeat;
    background-position: center center
}

.bg-top {
    background-repeat: no-repeat;
    background-position: top center
}

.bg-right {
    background-repeat: no-repeat;
    background-position: center right
}

.bg-bottom {
    background-repeat: no-repeat;
    background-position: bottom center
}

.bg-left {
    background-repeat: no-repeat;
    background-position: center left
}

@media screen and (min-width: 30em) {
    .bg-center-ns {
        background-repeat: no-repeat;
        background-position: center center
    }
    .bg-top-ns {
        background-repeat: no-repeat;
        background-position: top center
    }
    .bg-right-ns {
        background-repeat: no-repeat;
        background-position: center right
    }
    .bg-bottom-ns {
        background-repeat: no-repeat;
        background-position: bottom center
    }
    .bg-left-ns {
        background-repeat: no-repeat;
        background-position: center left
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .bg-center-m {
        background-repeat: no-repeat;
        background-position: center center
    }
    .bg-top-m {
        background-repeat: no-repeat;
        background-position: top center
    }
    .bg-right-m {
        background-repeat: no-repeat;
        background-position: center right
    }
    .bg-bottom-m {
        background-repeat: no-repeat;
        background-position: bottom center
    }
    .bg-left-m {
        background-repeat: no-repeat;
        background-position: center left
    }
}

@media screen and (min-width: 60em) {
    .bg-center-l {
        background-repeat: no-repeat;
        background-position: center center
    }
    .bg-top-l {
        background-repeat: no-repeat;
        background-position: top center
    }
    .bg-right-l {
        background-repeat: no-repeat;
        background-position: center right
    }
    .bg-bottom-l {
        background-repeat: no-repeat;
        background-position: bottom center
    }
    .bg-left-l {
        background-repeat: no-repeat;
        background-position: center left
    }
}

.outline {
    outline: 1px solid
}

.outline-transparent {
    outline: 1px solid transparent
}

.outline-0 {
    outline: 0
}

@media screen and (min-width: 30em) {
    .outline-ns {
        outline: 1px solid
    }
    .outline-transparent-ns {
        outline: 1px solid transparent
    }
    .outline-0-ns {
        outline: 0
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .outline-m {
        outline: 1px solid
    }
    .outline-transparent-m {
        outline: 1px solid transparent
    }
    .outline-0-m {
        outline: 0
    }
}

@media screen and (min-width: 60em) {
    .outline-l {
        outline: 1px solid
    }
    .outline-transparent-l {
        outline: 1px solid transparent
    }
    .outline-0-l {
        outline: 0
    }
}

.outline-0-focus:focus {
    outline: 0
}

@media screen and (min-width: 30em) {
    .outline-0-focus-ns:focus {
        outline: 0
    }
    .outline-transparent-focus-ns:focus {
        outline: 1px solid transparent
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .outline-0-focus-m:focus {
        outline: 0
    }
    .outline-transparent-focus-m:focus {
        outline: 1px solid transparent
    }
}

@media screen and (min-width: 60em) {
    .outline-0-focus-l:focus {
        outline: 0
    }
    .outline-transparent-focus-l:focus {
        outline: 1px solid transparent
    }
}

@media screen and (min-width: 77.5rem) {
    .outline-xl {
        outline: 1px solid
    }
    .outline-transparent-xl {
        outline: 1px solid transparent
    }
    .outline-0-xl {
        outline: 0
    }
    .outline-0-focus-xl:focus {
        outline: 0
    }
    .outline-transparent-focus-xl:focus {
        outline: 1px solid transparent
    }
}

@media screen and (min-width: 91.25rem) {
    .outline-2x {
        outline: 1px solid
    }
    .outline-transparent-2x {
        outline: 1px solid transparent
    }
    .outline-0-2x {
        outline: 0
    }
    .outline-0-focus-2x:focus {
        outline: 0
    }
    .outline-transparent-focus-2x:focus {
        outline: 1px solid transparent
    }
}

.bn {
    border-style: none;
    border-width: 0
}

.ba {
    border-style: solid;
    border-width: 1px
}

.bt {
    border-top-style: solid;
    border-top-width: 1px
}

.br {
    border-right-style: solid;
    border-right-width: 1px
}

.bb {
    border-bottom-style: solid;
    border-bottom-width: 1px
}

.bl {
    border-left-style: solid;
    border-left-width: 1px
}

@media screen and (min-width: 30em) {
    .bn-ns {
        border-style: none;
        border-width: 0
    }
    .ba-ns {
        border-style: solid;
        border-width: 1px
    }
    .bt-ns {
        border-top-style: solid;
        border-top-width: 1px
    }
    .br-ns {
        border-right-style: solid;
        border-right-width: 1px
    }
    .bb-ns {
        border-bottom-style: solid;
        border-bottom-width: 1px
    }
    .bl-ns {
        border-left-style: solid;
        border-left-width: 1px
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .bn-m {
        border-style: none;
        border-width: 0
    }
    .ba-m {
        border-style: solid;
        border-width: 1px
    }
    .bt-m {
        border-top-style: solid;
        border-top-width: 1px
    }
    .br-m {
        border-right-style: solid;
        border-right-width: 1px
    }
    .bb-m {
        border-bottom-style: solid;
        border-bottom-width: 1px
    }
    .bl-m {
        border-left-style: solid;
        border-left-width: 1px
    }
}

@media screen and (min-width: 60em) {
    .bn-l {
        border-style: none;
        border-width: 0
    }
    .ba-l {
        border-style: solid;
        border-width: 1px
    }
    .bt-l {
        border-top-style: solid;
        border-top-width: 1px
    }
    .br-l {
        border-right-style: solid;
        border-right-width: 1px
    }
    .bb-l {
        border-bottom-style: solid;
        border-bottom-width: 1px
    }
    .bl-l {
        border-left-style: solid;
        border-left-width: 1px
    }
}

@media screen and (min-width: 77.5rem) {
    .bn-xl {
        border-style: none;
        border-width: 0
    }
    .ba-xl {
        border-style: solid;
        border-width: 1px
    }
    .bt-xl {
        border-top-style: solid;
        border-top-width: 1px
    }
    .br-xl {
        border-right-style: solid;
        border-right-width: 1px
    }
    .bb-xl {
        border-bottom-style: solid;
        border-bottom-width: 1px
    }
    .bl-xl {
        border-left-style: solid;
        border-left-width: 1px
    }
}

@media screen and (min-width: 91.25rem) {
    .bn-2x {
        border-style: none;
        border-width: 0
    }
    .ba-2x {
        border-style: solid;
        border-width: 1px
    }
    .bt-2x {
        border-top-style: solid;
        border-top-width: 1px
    }
    .br-2x {
        border-right-style: solid;
        border-right-width: 1px
    }
    .bb-2x {
        border-bottom-style: solid;
        border-bottom-width: 1px
    }
    .bl-2x {
        border-left-style: solid;
        border-left-width: 1px
    }
}

.b--black {
    border-color: #000
}

.b--near-black {
    border-color: #212529
}

.b--dark-gray {
    border-color: #868e96
}

.b--mid-gray {
    border-color: #495057
}

.b--gray {
    border-color: #adb5bd
}

.b--silver {
    border-color: #adb5bd
}

.b--light-silver {
    border-color: #ced4da
}

.b--moon-gray {
    border-color: #dee2e6
}

.b--light-gray {
    border-color: #ced4da
}

.b--near-white {
    border-color: #f8f9fa
}

.b--white {
    border-color: #fff
}

.b--white-90 {
    border-color: rgba(255, 255, 255, 0.9)
}

.b--white-80 {
    border-color: rgba(255, 255, 255, 0.8)
}

.b--white-70 {
    border-color: rgba(255, 255, 255, 0.7)
}

.b--white-60 {
    border-color: rgba(255, 255, 255, 0.6)
}

.b--white-50 {
    border-color: rgba(255, 255, 255, 0.5)
}

.b--white-40 {
    border-color: rgba(255, 255, 255, 0.4)
}

.b--white-30 {
    border-color: rgba(255, 255, 255, 0.3)
}

.b--white-20 {
    border-color: rgba(255, 255, 255, 0.2)
}

.b--white-10 {
    border-color: rgba(255, 255, 255, 0.1)
}

.b--white-05 {
    border-color: rgba(255, 255, 255, 0.05)
}

.b--white-025 {
    border-color: rgba(255, 255, 255, 0.025)
}

.b--white-0125 {
    border-color: rgba(255, 255, 255, 0.0125)
}

.b--black-90 {
    border-color: rgba(0, 0, 0, 0.9)
}

.b--black-80 {
    border-color: rgba(0, 0, 0, 0.8)
}

.b--black-70 {
    border-color: rgba(0, 0, 0, 0.7)
}

.b--black-60 {
    border-color: rgba(0, 0, 0, 0.6)
}

.b--black-50 {
    border-color: rgba(0, 0, 0, 0.5)
}

.b--black-40 {
    border-color: rgba(0, 0, 0, 0.4)
}

.b--black-30 {
    border-color: rgba(0, 0, 0, 0.3)
}

.b--black-20 {
    border-color: rgba(0, 0, 0, 0.2)
}

.b--black-10 {
    border-color: rgba(0, 0, 0, 0.1)
}

.b--black-05 {
    border-color: rgba(0, 0, 0, 0.05)
}

.b--black-025 {
    border-color: rgba(0, 0, 0, 0.025)
}

.b--black-0125 {
    border-color: rgba(0, 0, 0, 0.0125)
}

.b--dark-red {
    border-color: #f03e3e
}

.b--red {
    border-color: #fa5252
}

.b--light-red {
    border-color: #ff8787
}

.b--orange {
    border-color: #fd7e14
}

.b--gold {
    border-color: #fcc419
}

.b--yellow {
    border-color: #ffd43b
}

.b--light-yellow {
    border-color: #ffe066
}

.b--purple {
    border-color: #7950f2
}

.b--light-purple {
    border-color: #9775fa
}

.b--dark-pink {
    border-color: #f06595
}

.b--hot-pink {
    border-color: #c2255c
}

.b--pink {
    border-color: #f783ac
}

.b--light-pink {
    border-color: #faa2c1
}

.b--dark-green {
    border-color: #37b24d
}

.b--green {
    border-color: #40c057
}

.b--light-green {
    border-color: #69db7c
}

.b--navy {
    border-color: #1864ab
}

.b--dark-blue {
    border-color: #1c7ed6
}

.b--blue {
    border-color: #228be6
}

.b--light-blue {
    border-color: #4dabf7
}

.b--lightest-blue {
    border-color: #d0ebff
}

.b--washed-blue {
    border-color: #e7f5ff
}

.b--washed-green {
    border-color: #ebfbee
}

.b--washed-yellow {
    border-color: #fff9db
}

.b--washed-red {
    border-color: #fff5f5
}

.b--transparent {
    border-color: rgba(0, 0, 0, 0)
}

.b--inherit {
    border-color: inherit
}

.b--black-030 {
    border-color: rgba(0, 0, 0, 0.03)
}

.b--black-020 {
    border-color: rgba(0, 0, 0, 0.02)
}

.b--white-030 {
    border-color: rgba(255, 255, 255, 0.03)
}

.b--white-020 {
    border-color: rgba(255, 255, 255, 0.02)
}

.b--gray0 {
    border-color: #f8f9fa
}

.b--gray1 {
    border-color: #f1f3f5
}

.b--gray2 {
    border-color: #e9ecef
}

.b--gray3 {
    border-color: #dee2e6
}

.b--gray4 {
    border-color: #ced4da
}

.b--gray5 {
    border-color: #adb5bd
}

.b--gray6 {
    border-color: #868e96
}

.b--gray7 {
    border-color: #495057
}

.b--gray8 {
    border-color: #343a40
}

.b--gray9 {
    border-color: #212529
}

.b--red0 {
    border-color: #fff5f5
}

.b--red1 {
    border-color: #ffe3e3
}

.b--red2 {
    border-color: #ffc9c9
}

.b--red3 {
    border-color: #ffa8a8
}

.b--red4 {
    border-color: #ff8787
}

.b--red5 {
    border-color: #ff6b6b
}

.b--red6 {
    border-color: #fa5252
}

.b--red7 {
    border-color: #f03e3e
}

.b--red8 {
    border-color: #e03131
}

.b--red9 {
    border-color: #c92a2a
}

.b--orange0 {
    border-color: #fff4e6
}

.b--orange1 {
    border-color: #ffe8cc
}

.b--orange2 {
    border-color: #ffd8a8
}

.b--orange3 {
    border-color: #ffc078
}

.b--orange4 {
    border-color: #ffa94d
}

.b--orange5 {
    border-color: #ff922b
}

.b--orange6 {
    border-color: #fd7e14
}

.b--orange7 {
    border-color: #f76707
}

.b--orange8 {
    border-color: #e8590c
}

.b--orange9 {
    border-color: #d9480f
}

.b--yellow0 {
    border-color: #fff9db
}

.b--yellow1 {
    border-color: #fff3bf
}

.b--yellow2 {
    border-color: #ffec99
}

.b--yellow3 {
    border-color: #ffe066
}

.b--yellow4 {
    border-color: #ffd43b
}

.b--yellow5 {
    border-color: #fcc419
}

.b--yellow6 {
    border-color: #fab005
}

.b--yellow7 {
    border-color: #f59f00
}

.b--yellow8 {
    border-color: #f08c00
}

.b--yellow9 {
    border-color: #e67700
}

.b--green0 {
    border-color: #ebfbee
}

.b--green1 {
    border-color: #d3f9d8
}

.b--green2 {
    border-color: #b2f2bb
}

.b--green3 {
    border-color: #8ce99a
}

.b--green4 {
    border-color: #69db7c
}

.b--green5 {
    border-color: #51cf66
}

.b--green6 {
    border-color: #40c057
}

.b--green7 {
    border-color: #37b24d
}

.b--green8 {
    border-color: #2f9e44
}

.b--green9 {
    border-color: #2b8a3e
}

.b--lime {
    border-color: #82c91e
}

.b--lime0 {
    border-color: #f4fce3
}

.b--lime1 {
    border-color: #e9fac8
}

.b--lime2 {
    border-color: #d8f5a2
}

.b--lime3 {
    border-color: #c0eb75
}

.b--lime4 {
    border-color: #a9e34b
}

.b--lime5 {
    border-color: #94d82d
}

.b--lime6 {
    border-color: #82c91e
}

.b--lime7 {
    border-color: #74b816
}

.b--lime8 {
    border-color: #66a80f
}

.b--lime9 {
    border-color: #5c940d
}

.b--teal {
    border-color: #12b886
}

.b--teal0 {
    border-color: #e6fcf5
}

.b--teal1 {
    border-color: #c3fae8
}

.b--teal2 {
    border-color: #96f2d7
}

.b--teal3 {
    border-color: #63e6be
}

.b--teal4 {
    border-color: #38d9a9
}

.b--teal5 {
    border-color: #20c997
}

.b--teal6 {
    border-color: #12b886
}

.b--teal7 {
    border-color: #0ca678
}

.b--teal8 {
    border-color: #099268
}

.b--teal9 {
    border-color: #087f5b
}

.b--cyan {
    border-color: #15aabf
}

.b--cyan0 {
    border-color: #e3fafc
}

.b--cyan1 {
    border-color: #c5f6fa
}

.b--cyan2 {
    border-color: #99e9f2
}

.b--cyan3 {
    border-color: #66d9e8
}

.b--cyan4 {
    border-color: #3bc9db
}

.b--cyan5 {
    border-color: #22b8cf
}

.b--cyan6 {
    border-color: #15aabf
}

.b--cyan7 {
    border-color: #1098ad
}

.b--cyan8 {
    border-color: #0c8599
}

.b--cyan9 {
    border-color: #0b7285
}

.b--blue0 {
    border-color: #e7f5ff
}

.b--blue1 {
    border-color: #d0ebff
}

.b--blue2 {
    border-color: #a5d8ff
}

.b--blue3 {
    border-color: #74c0fc
}

.b--blue4 {
    border-color: #4dabf7
}

.b--blue5 {
    border-color: #339af0
}

.b--blue6 {
    border-color: #228be6
}

.b--blue7 {
    border-color: #1c7ed6
}

.b--blue8 {
    border-color: #1971c2
}

.b--blue9 {
    border-color: #1864ab
}

.b--blue10 {
    border-color: #155592
}

.b--indigo {
    border-color: #4c6ef5
}

.b--indigo0 {
    border-color: #edf2ff
}

.b--indigo1 {
    border-color: #dbe4ff
}

.b--indigo2 {
    border-color: #bac8ff
}

.b--indigo3 {
    border-color: #91a7ff
}

.b--indigo4 {
    border-color: #748ffc
}

.b--indigo5 {
    border-color: #5c7cfa
}

.b--indigo6 {
    border-color: #4c6ef5
}

.b--indigo7 {
    border-color: #4263eb
}

.b--indigo8 {
    border-color: #3b5bdb
}

.b--indigo9 {
    border-color: #364fc7
}

.b--violet {
    border-color: #7950f2
}

.b--violet0 {
    border-color: #f3f0ff
}

.b--violet1 {
    border-color: #e5dbff
}

.b--violet2 {
    border-color: #d0bfff
}

.b--violet3 {
    border-color: #b197fc
}

.b--violet4 {
    border-color: #9775fa
}

.b--violet5 {
    border-color: #845ef7
}

.b--violet6 {
    border-color: #7950f2
}

.b--violet7 {
    border-color: #7048e8
}

.b--violet8 {
    border-color: #6741d9
}

.b--violet9 {
    border-color: #5f3dc4
}

.b--grape {
    border-color: #be4bdb
}

.b--grape0 {
    border-color: #f8f0fc
}

.b--grape1 {
    border-color: #f3d9fa
}

.b--grape2 {
    border-color: #eebefa
}

.b--grape3 {
    border-color: #e599f7
}

.b--grape4 {
    border-color: #da77f2
}

.b--grape5 {
    border-color: #cc5de8
}

.b--grape6 {
    border-color: #be4bdb
}

.b--grape7 {
    border-color: #ae3ec9
}

.b--grape8 {
    border-color: #9c36b5
}

.b--grape9 {
    border-color: #862e9c
}

.b--pink0 {
    border-color: #fff0f6
}

.b--pink1 {
    border-color: #ffdeeb
}

.b--pink2 {
    border-color: #fcc2d7
}

.b--pink3 {
    border-color: #faa2c1
}

.b--pink4 {
    border-color: #f783ac
}

.b--pink5 {
    border-color: #f06595
}

.b--pink6 {
    border-color: #e64980
}

.b--pink7 {
    border-color: #d6336c
}

.b--pink8 {
    border-color: #c2255c
}

.b--pink9 {
    border-color: #a61e4d
}

.b--brown0 {
    border-color: #e6b674
}

.b--brown1 {
    border-color: #c09962
}

.b--brown2 {
    border-color: #9d7e52
}

.b--brown3 {
    border-color: #7e6644
}

.b--brown4 {
    border-color: #665339
}

.b--brown5 {
    border-color: #534532
}

.b--brown6 {
    border-color: #463b2d
}

.b--brown7 {
    border-color: #3c352a
}

.b--brown8 {
    border-color: #36312a
}

.b--brown9 {
    border-color: #332f2b
}

.b--primary0 {
    border-color: #e7f5ff
}

.b--primary1 {
    border-color: #d0ebff
}

.b--primary2 {
    border-color: #a5d8ff
}

.b--primary3 {
    border-color: #74c0fc
}

.b--primary4 {
    border-color: #4dabf7
}

.b--primary5 {
    border-color: #339af0
}

.b--primary6 {
    border-color: #228be6
}

.b--primary7 {
    border-color: #1c7ed6
}

.b--primary8 {
    border-color: #1971c2
}

.b--primary9 {
    border-color: #1864ab
}

.b--primary10 {
    border-color: #155592
}

.b--secondary0 {
    border-color: #f8f9fa
}

.b--secondary1 {
    border-color: #f1f3f5
}

.b--secondary2 {
    border-color: #e9ecef
}

.b--secondary3 {
    border-color: #dee2e6
}

.b--secondary4 {
    border-color: #ced4da
}

.b--secondary5 {
    border-color: #adb5bd
}

.b--secondary6 {
    border-color: #868e96
}

.b--secondary7 {
    border-color: #495057
}

.b--secondary8 {
    border-color: #343a40
}

.b--secondary9 {
    border-color: #212529
}

.b--secondary0 {
    border-color: #f8f9fa
}

.b--secondary1 {
    border-color: #f1f3f5
}

.b--secondary2 {
    border-color: #e9ecef
}

.b--secondary3 {
    border-color: #dee2e6
}

.b--secondary4 {
    border-color: #ced4da
}

.b--secondary5 {
    border-color: #adb5bd
}

.b--secondary6 {
    border-color: #868e96
}

.b--secondary7 {
    border-color: #495057
}

.b--secondary8 {
    border-color: #343a40
}

.b--secondary9 {
    border-color: #212529
}

.b--vip0 {
    border-color: #e6fcf5
}

.b--vip1 {
    border-color: #c3fae8
}

.b--vip2 {
    border-color: #96f2d7
}

.b--vip3 {
    border-color: #63e6be
}

.b--vip4 {
    border-color: #38d9a9
}

.b--vip5 {
    border-color: #20c997
}

.b--vip6 {
    border-color: #12b886
}

.b--vip7 {
    border-color: #0ca678
}

.b--vip8 {
    border-color: #099268
}

.b--vip9 {
    border-color: #087f5b
}

.b--success0 {
    border-color: #ebfbee
}

.b--success1 {
    border-color: #d3f9d8
}

.b--success2 {
    border-color: #b2f2bb
}

.b--success3 {
    border-color: #8ce99a
}

.b--success4 {
    border-color: #69db7c
}

.b--success5 {
    border-color: #51cf66
}

.b--success6 {
    border-color: #40c057
}

.b--success7 {
    border-color: #37b24d
}

.b--success8 {
    border-color: #2f9e44
}

.b--success9 {
    border-color: #2b8a3e
}

.b--danger0 {
    border-color: #fff5f5
}

.b--danger1 {
    border-color: #ffe3e3
}

.b--danger2 {
    border-color: #ffc9c9
}

.b--danger3 {
    border-color: #ffa8a8
}

.b--danger4 {
    border-color: #ff8787
}

.b--danger5 {
    border-color: #ff6b6b
}

.b--danger6 {
    border-color: #fa5252
}

.b--danger7 {
    border-color: #f03e3e
}

.b--danger8 {
    border-color: #e03131
}

.b--danger9 {
    border-color: #c92a2a
}

.b--warning0 {
    border-color: #fff9db
}

.b--warning1 {
    border-color: #fff3bf
}

.b--warning2 {
    border-color: #ffec99
}

.b--warning3 {
    border-color: #ffe066
}

.b--warning4 {
    border-color: #ffd43b
}

.b--warning5 {
    border-color: #fcc419
}

.b--warning6 {
    border-color: #fab005
}

.b--warning7 {
    border-color: #f59f00
}

.b--warning8 {
    border-color: #f08c00
}

.b--warning9 {
    border-color: #e67700
}

.br0 {
    border-radius: 0
}

.br1 {
    border-radius: .125rem
}

.br2 {
    border-radius: .25rem
}

.br3 {
    border-radius: .5rem
}

.br4 {
    border-radius: 1rem
}

.br-100 {
    border-radius: 100%
}

.br-pill {
    border-radius: 9999px
}

.br--bottom {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.br--top {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.br--right {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.br--left {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

@media screen and (min-width: 30em) {
    .br0-ns {
        border-radius: 0
    }
    .br1-ns {
        border-radius: .125rem
    }
    .br2-ns {
        border-radius: .25rem
    }
    .br3-ns {
        border-radius: .5rem
    }
    .br4-ns {
        border-radius: 1rem
    }
    .br-100-ns {
        border-radius: 100%
    }
    .br-pill-ns {
        border-radius: 9999px
    }
    .br--bottom-ns {
        border-top-left-radius: 0;
        border-top-right-radius: 0
    }
    .br--top-ns {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0
    }
    .br--right-ns {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0
    }
    .br--left-ns {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .br0-m {
        border-radius: 0
    }
    .br1-m {
        border-radius: .125rem
    }
    .br2-m {
        border-radius: .25rem
    }
    .br3-m {
        border-radius: .5rem
    }
    .br4-m {
        border-radius: 1rem
    }
    .br-100-m {
        border-radius: 100%
    }
    .br-pill-m {
        border-radius: 9999px
    }
    .br--bottom-m {
        border-top-left-radius: 0;
        border-top-right-radius: 0
    }
    .br--top-m {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0
    }
    .br--right-m {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0
    }
    .br--left-m {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }
}

@media screen and (min-width: 60em) {
    .br0-l {
        border-radius: 0
    }
    .br1-l {
        border-radius: .125rem
    }
    .br2-l {
        border-radius: .25rem
    }
    .br3-l {
        border-radius: .5rem
    }
    .br4-l {
        border-radius: 1rem
    }
    .br-100-l {
        border-radius: 100%
    }
    .br-pill-l {
        border-radius: 9999px
    }
    .br--bottom-l {
        border-top-left-radius: 0;
        border-top-right-radius: 0
    }
    .br--top-l {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0
    }
    .br--right-l {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0
    }
    .br--left-l {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }
}

.br--bottom-left {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.br--top-left {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.br--bottom-right {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.br--top-right {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0
}

@media screen and (min-width: 30em) {
    .br--bottom-left-ns {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }
    .br--top-left-ns {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-top-right-radius: 0
    }
    .br--bottom-right-ns {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0
    }
    .br--top-right-ns {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-top-left-radius: 0
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .br--bottom-left-m {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }
    .br--top-left-m {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-top-right-radius: 0
    }
    .br--bottom-right-m {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0
    }
    .br--top-right-m {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-top-left-radius: 0
    }
}

@media screen and (min-width: 60em) {
    .br--bottom-left-l {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }
    .br--top-left-l {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-top-right-radius: 0
    }
    .br--bottom-right-l {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0
    }
    .br--top-right-l {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-top-left-radius: 0
    }
}

.b--dotted {
    border-style: dotted
}

.b--dashed {
    border-style: dashed
}

.b--solid {
    border-style: solid
}

.b--none {
    border-style: none
}

@media screen and (min-width: 30em) {
    .b--dotted-ns {
        border-style: dotted
    }
    .b--dashed-ns {
        border-style: dashed
    }
    .b--solid-ns {
        border-style: solid
    }
    .b--none-ns {
        border-style: none
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .b--dotted-m {
        border-style: dotted
    }
    .b--dashed-m {
        border-style: dashed
    }
    .b--solid-m {
        border-style: solid
    }
    .b--none-m {
        border-style: none
    }
}

@media screen and (min-width: 60em) {
    .b--dotted-l {
        border-style: dotted
    }
    .b--dashed-l {
        border-style: dashed
    }
    .b--solid-l {
        border-style: solid
    }
    .b--none-l {
        border-style: none
    }
}

.b--double {
    border-style: double
}

@media screen and (min-width: 30em) {
    .b--double-ns {
        border-style: double
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .b--double-m {
        border-style: double
    }
}

@media screen and (min-width: 60em) {
    .b--double-l {
        border-style: double
    }
}

@media screen and (min-width: 77.5rem) {
    .b--dotted-xl {
        border-style: dotted
    }
    .b--dashed-xl {
        border-style: dashed
    }
    .b--solid-xl {
        border-style: solid
    }
    .b--none-xl {
        border-style: none
    }
    .b--double-xl {
        border-style: double
    }
}

@media screen and (min-width: 91.25rem) {
    .b--dotted-2x {
        border-style: dotted
    }
    .b--dashed-2x {
        border-style: dashed
    }
    .b--solid-2x {
        border-style: solid
    }
    .b--none-2x {
        border-style: none
    }
    .b--double-2x {
        border-style: double
    }
}

.bw0 {
    border-width: 0
}

.bw1 {
    border-width: .125rem
}

.bw2 {
    border-width: .25rem
}

.bw3 {
    border-width: .5rem
}

.bw4 {
    border-width: 1rem
}

.bw5 {
    border-width: 2rem
}

.bt-0 {
    border-top-width: 0
}

.br-0 {
    border-right-width: 0
}

.bb-0 {
    border-bottom-width: 0
}

.bl-0 {
    border-left-width: 0
}

@media screen and (min-width: 30em) {
    .bw0-ns {
        border-width: 0
    }
    .bw1-ns {
        border-width: .125rem
    }
    .bw2-ns {
        border-width: .25rem
    }
    .bw3-ns {
        border-width: .5rem
    }
    .bw4-ns {
        border-width: 1rem
    }
    .bw5-ns {
        border-width: 2rem
    }
    .bt-0-ns {
        border-top-width: 0
    }
    .br-0-ns {
        border-right-width: 0
    }
    .bb-0-ns {
        border-bottom-width: 0
    }
    .bl-0-ns {
        border-left-width: 0
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .bw0-m {
        border-width: 0
    }
    .bw1-m {
        border-width: .125rem
    }
    .bw2-m {
        border-width: .25rem
    }
    .bw3-m {
        border-width: .5rem
    }
    .bw4-m {
        border-width: 1rem
    }
    .bw5-m {
        border-width: 2rem
    }
    .bt-0-m {
        border-top-width: 0
    }
    .br-0-m {
        border-right-width: 0
    }
    .bb-0-m {
        border-bottom-width: 0
    }
    .bl-0-m {
        border-left-width: 0
    }
}

@media screen and (min-width: 60em) {
    .bw0-l {
        border-width: 0
    }
    .bw1-l {
        border-width: .125rem
    }
    .bw2-l {
        border-width: .25rem
    }
    .bw3-l {
        border-width: .5rem
    }
    .bw4-l {
        border-width: 1rem
    }
    .bw5-l {
        border-width: 2rem
    }
    .bt-0-l {
        border-top-width: 0
    }
    .br-0-l {
        border-right-width: 0
    }
    .bb-0-l {
        border-bottom-width: 0
    }
    .bl-0-l {
        border-left-width: 0
    }
}

@media screen and (min-width: 30em) {
    .bw6-ns {
        border-width: 3rem
    }
    .bw7-ns {
        border-width: 4rem
    }
    .bw8-ns {
        border-width: 5rem
    }
    .bw9-ns {
        border-width: 6rem
    }
    .bw10-ns {
        border-width: 7rem
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .bw6-m {
        border-width: 3rem
    }
    .bw7-m {
        border-width: 4rem
    }
    .bw8-m {
        border-width: 5rem
    }
    .bw9-m {
        border-width: 6rem
    }
    .bw10-m {
        border-width: 7rem
    }
}

@media screen and (min-width: 60em) {
    .bw6-l {
        border-width: 3rem
    }
    .bw7-l {
        border-width: 4rem
    }
    .bw8-l {
        border-width: 5rem
    }
    .bw9-l {
        border-width: 6rem
    }
    .bw10-l {
        border-width: 7rem
    }
}

@media screen and (min-width: 77.5rem) {
    .bw0-xl {
        border-width: 0
    }
    .bw1-xl {
        border-width: .125rem
    }
    .bw2-xl {
        border-width: .25rem
    }
    .bw3-xl {
        border-width: .5rem
    }
    .bw4-xl {
        border-width: 1rem
    }
    .bw5-xl {
        border-width: 2rem
    }
    .bt-0-xl {
        border-top-width: 0
    }
    .br-0-xl {
        border-right-width: 0
    }
    .bb-0-xl {
        border-bottom-width: 0
    }
    .bl-0-xl {
        border-left-width: 0
    }
    .bw6-xl {
        border-width: 3rem
    }
    .bw7-xl {
        border-width: 4rem
    }
    .bw8-xl {
        border-width: 5rem
    }
    .bw9-xl {
        border-width: 6rem
    }
    .bw10-xl {
        border-width: 7rem
    }
}

@media screen and (min-width: 91.25rem) {
    .bw0-2x {
        border-width: 0
    }
    .bw1-2x {
        border-width: .125rem
    }
    .bw2-2x {
        border-width: .25rem
    }
    .bw3-2x {
        border-width: .5rem
    }
    .bw4-2x {
        border-width: 1rem
    }
    .bw5-2x {
        border-width: 2rem
    }
    .bt-0-2x {
        border-top-width: 0
    }
    .br-0-2x {
        border-right-width: 0
    }
    .bb-0-2x {
        border-bottom-width: 0
    }
    .bl-0-2x {
        border-left-width: 0
    }
    .bw6-2x {
        border-width: 3rem
    }
    .bw7-2x {
        border-width: 4rem
    }
    .bw8-2x {
        border-width: 5rem
    }
    .bw9-2x {
        border-width: 6rem
    }
    .bw10-2x {
        border-width: 7rem
    }
}

.shadow-0 {
    -webkit-box-shadow: none;
    box-shadow: none
}

.shadow-1 {
    -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.025);
    box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.025)
}

.shadow-2 {
    -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.05)
}

.shadow-3 {
    -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.1)
}

.shadow-4 {
    -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.2)
}

.shadow-5 {
    -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.4)
}

.shadow-6 {
    -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.5)
}

.shadow-inset-1 {
    -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.025);
    box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.025)
}

.shadow-inset-2 {
    -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.05)
}

.shadow-inset-3 {
    -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.1)
}

.shadow-inset-4 {
    -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.2)
}

.shadow-inset-5 {
    -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.4);
    box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.4)
}

.shadow-inset-6 {
    -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.5)
}

@media screen and (min-width: 30em) {
    .shadow-1-ns {
        -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.025);
        box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.025)
    }
    .shadow-2-ns {
        -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.05);
        box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.05)
    }
    .shadow-3-ns {
        -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.1);
        box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.1)
    }
    .shadow-4-ns {
        -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.2);
        box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.2)
    }
    .shadow-5-ns {
        -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.4);
        box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.4)
    }
    .shadow-6-ns {
        -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.5);
        box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.5)
    }
    .shadow-inset-1-ns {
        -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.025);
        box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.025)
    }
    .shadow-inset-2-ns {
        -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.05);
        box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.05)
    }
    .shadow-inset-3-ns {
        -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.1);
        box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.1)
    }
    .shadow-inset-4-ns {
        -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.2);
        box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.2)
    }
    .shadow-inset-5-ns {
        -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.4);
        box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.4)
    }
    .shadow-inset-6-ns {
        -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.5);
        box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.5)
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .shadow-1-m {
        -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.025);
        box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.025)
    }
    .shadow-2-m {
        -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.05);
        box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.05)
    }
    .shadow-3-m {
        -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.1);
        box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.1)
    }
    .shadow-4-m {
        -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.2);
        box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.2)
    }
    .shadow-5-m {
        -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.4);
        box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.4)
    }
    .shadow-6-m {
        -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.5);
        box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.5)
    }
    .shadow-inset-1-m {
        -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.025);
        box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.025)
    }
    .shadow-inset-2-m {
        -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.05);
        box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.05)
    }
    .shadow-inset-3-m {
        -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.1);
        box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.1)
    }
    .shadow-inset-4-m {
        -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.2);
        box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.2)
    }
    .shadow-inset-5-m {
        -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.4);
        box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.4)
    }
    .shadow-inset-6-m {
        -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.5);
        box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.5)
    }
}

@media screen and (min-width: 60em) {
    .shadow-1-l {
        -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.025);
        box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.025)
    }
    .shadow-2-l {
        -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.05);
        box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.05)
    }
    .shadow-3-l {
        -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.1);
        box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.1)
    }
    .shadow-4-l {
        -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.2);
        box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.2)
    }
    .shadow-5-l {
        -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.4);
        box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.4)
    }
    .shadow-6-l {
        -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.5);
        box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.5)
    }
    .shadow-inset-1-l {
        -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.025);
        box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.025)
    }
    .shadow-inset-2-l {
        -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.05);
        box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.05)
    }
    .shadow-inset-3-l {
        -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.1);
        box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.1)
    }
    .shadow-inset-4-l {
        -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.2);
        box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.2)
    }
    .shadow-inset-5-l {
        -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.4);
        box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.4)
    }
    .shadow-inset-6-l {
        -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.5);
        box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.5)
    }
}

.pre {
    overflow-x: auto;
    overflow-y: hidden;
    overflow: scroll
}

.top-0 {
    top: 0
}

.right-0 {
    right: 0
}

.bottom-0 {
    bottom: 0
}

.left-0 {
    left: 0
}

.top-1 {
    top: 1rem
}

.right-1 {
    right: 1rem
}

.bottom-1 {
    bottom: 1rem
}

.left-1 {
    left: 1rem
}

.top-2 {
    top: 2rem
}

.right-2 {
    right: 2rem
}

.bottom-2 {
    bottom: 2rem
}

.left-2 {
    left: 2rem
}

.top--1 {
    top: -1rem
}

.right--1 {
    right: -1rem
}

.bottom--1 {
    bottom: -1rem
}

.left--1 {
    left: -1rem
}

.top--2 {
    top: -2rem
}

.right--2 {
    right: -2rem
}

.bottom--2 {
    bottom: -2rem
}

.left--2 {
    left: -2rem
}

.absolute--fill {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

@media screen and (min-width: 30em) {
    .top-0-ns {
        top: 0
    }
    .left-0-ns {
        left: 0
    }
    .right-0-ns {
        right: 0
    }
    .bottom-0-ns {
        bottom: 0
    }
    .top-1-ns {
        top: 1rem
    }
    .left-1-ns {
        left: 1rem
    }
    .right-1-ns {
        right: 1rem
    }
    .bottom-1-ns {
        bottom: 1rem
    }
    .top-2-ns {
        top: 2rem
    }
    .left-2-ns {
        left: 2rem
    }
    .right-2-ns {
        right: 2rem
    }
    .bottom-2-ns {
        bottom: 2rem
    }
    .top--1-ns {
        top: -1rem
    }
    .right--1-ns {
        right: -1rem
    }
    .bottom--1-ns {
        bottom: -1rem
    }
    .left--1-ns {
        left: -1rem
    }
    .top--2-ns {
        top: -2rem
    }
    .right--2-ns {
        right: -2rem
    }
    .bottom--2-ns {
        bottom: -2rem
    }
    .left--2-ns {
        left: -2rem
    }
    .absolute--fill-ns {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .top-0-m {
        top: 0
    }
    .left-0-m {
        left: 0
    }
    .right-0-m {
        right: 0
    }
    .bottom-0-m {
        bottom: 0
    }
    .top-1-m {
        top: 1rem
    }
    .left-1-m {
        left: 1rem
    }
    .right-1-m {
        right: 1rem
    }
    .bottom-1-m {
        bottom: 1rem
    }
    .top-2-m {
        top: 2rem
    }
    .left-2-m {
        left: 2rem
    }
    .right-2-m {
        right: 2rem
    }
    .bottom-2-m {
        bottom: 2rem
    }
    .top--1-m {
        top: -1rem
    }
    .right--1-m {
        right: -1rem
    }
    .bottom--1-m {
        bottom: -1rem
    }
    .left--1-m {
        left: -1rem
    }
    .top--2-m {
        top: -2rem
    }
    .right--2-m {
        right: -2rem
    }
    .bottom--2-m {
        bottom: -2rem
    }
    .left--2-m {
        left: -2rem
    }
    .absolute--fill-m {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0
    }
}

@media screen and (min-width: 60em) {
    .top-0-l {
        top: 0
    }
    .left-0-l {
        left: 0
    }
    .right-0-l {
        right: 0
    }
    .bottom-0-l {
        bottom: 0
    }
    .top-1-l {
        top: 1rem
    }
    .left-1-l {
        left: 1rem
    }
    .right-1-l {
        right: 1rem
    }
    .bottom-1-l {
        bottom: 1rem
    }
    .top-2-l {
        top: 2rem
    }
    .left-2-l {
        left: 2rem
    }
    .right-2-l {
        right: 2rem
    }
    .bottom-2-l {
        bottom: 2rem
    }
    .top--1-l {
        top: -1rem
    }
    .right--1-l {
        right: -1rem
    }
    .bottom--1-l {
        bottom: -1rem
    }
    .left--1-l {
        left: -1rem
    }
    .top--2-l {
        top: -2rem
    }
    .right--2-l {
        right: -2rem
    }
    .bottom--2-l {
        bottom: -2rem
    }
    .left--2-l {
        left: -2rem
    }
    .absolute--fill-l {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0
    }
}

.top-025 {
    top: .25rem
}

.right-025 {
    right: .25rem
}

.bottom-025 {
    bottom: .25rem
}

.left-025 {
    left: .25rem
}

.top--025 {
    top: -0.25rem
}

.right--025 {
    right: -0.25rem
}

.bottom--025 {
    bottom: -0.25rem
}

.left--025 {
    left: -0.25rem
}

.top-050 {
    top: .5rem
}

.right-050 {
    right: .5rem
}

.bottom-050 {
    bottom: .5rem
}

.left-050 {
    left: .5rem
}

.top--050 {
    top: -0.5rem
}

.right--050 {
    right: -0.5rem
}

.bottom--050 {
    bottom: -0.5rem
}

.left--050 {
    left: -0.5rem
}

.top-075 {
    top: .75rem
}

.right-075 {
    right: .75rem
}

.bottom-075 {
    bottom: .75rem
}

.left-075 {
    left: .75rem
}

.top--075 {
    top: -0.75rem
}

.right--075 {
    right: -0.75rem
}

.bottom--075 {
    bottom: -0.75rem
}

.left--075 {
    left: -0.75rem
}

.top--3 {
    top: -3rem
}

.right--3 {
    right: -3rem
}

.bottom--3 {
    bottom: -3rem
}

.left--3 {
    left: -3rem
}

.top--4 {
    top: -4rem
}

.right--4 {
    right: -4rem
}

.bottom--4 {
    bottom: -4rem
}

.left--4 {
    left: -4rem
}

.top-3 {
    top: 3rem
}

.right-3 {
    right: 3rem
}

.bottom-3 {
    bottom: 3rem
}

.left-3 {
    left: 3rem
}

.top-4 {
    top: 4rem
}

.right-4 {
    right: 4rem
}

.bottom-4 {
    bottom: 4rem
}

.left-4 {
    left: 4rem
}

@media screen and (min-width: 30em) {
    .top-025-ns {
        top: .25rem
    }
    .right-025-ns {
        right: .25rem
    }
    .bottom-025-ns {
        bottom: .25rem
    }
    .left-025-ns {
        left: .25rem
    }
    .top--025-ns {
        top: -0.25rem
    }
    .right--025-ns {
        right: -0.25rem
    }
    .bottom--025-ns {
        bottom: -0.25rem
    }
    .left--025-ns {
        left: -0.25rem
    }
    .top-050-ns {
        top: .5rem
    }
    .right-050-ns {
        right: .5rem
    }
    .bottom-050-ns {
        bottom: .5rem
    }
    .left-050-ns {
        left: .5rem
    }
    .top--050-ns {
        top: -0.5rem
    }
    .right--050-ns {
        right: -0.5rem
    }
    .bottom--050-ns {
        bottom: -0.5rem
    }
    .left--050-ns {
        left: -0.5rem
    }
    .top-075-ns {
        top: .75rem
    }
    .right-075-ns {
        right: .75rem
    }
    .bottom-075-ns {
        bottom: .75rem
    }
    .left-075-ns {
        left: .75rem
    }
    .top--075-ns {
        top: -0.75rem
    }
    .right--075-ns {
        right: -0.75rem
    }
    .bottom--075-ns {
        bottom: -0.75rem
    }
    .left--075-ns {
        left: -0.75rem
    }
    .top--3-ns {
        top: -3rem
    }
    .right--3-ns {
        right: -3rem
    }
    .bottom--3-ns {
        bottom: -3rem
    }
    .left--3-ns {
        left: -3rem
    }
    .top--4-ns {
        top: -4rem
    }
    .right--4-ns {
        right: -4rem
    }
    .bottom--4-ns {
        bottom: -4rem
    }
    .left--4-ns {
        left: -4rem
    }
    .top-3-ns {
        top: 3rem
    }
    .right-3-ns {
        right: 3rem
    }
    .bottom-3-ns {
        bottom: 3rem
    }
    .left-3-ns {
        left: 3rem
    }
    .top-4-ns {
        top: 4rem
    }
    .right-4-ns {
        right: 4rem
    }
    .bottom-4-ns {
        bottom: 4rem
    }
    .left-4-ns {
        left: 4rem
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .top-025-m {
        top: .25rem
    }
    .right-025-m {
        right: .25rem
    }
    .bottom-025-m {
        bottom: .25rem
    }
    .left-025-m {
        left: .25rem
    }
    .top--025-m {
        top: -0.25rem
    }
    .right--025-m {
        right: -0.25rem
    }
    .bottom--025-m {
        bottom: -0.25rem
    }
    .left--025-m {
        left: -0.25rem
    }
    .top-050-m {
        top: .5rem
    }
    .right-050-m {
        right: .5rem
    }
    .bottom-050-m {
        bottom: .5rem
    }
    .left-050-m {
        left: .5rem
    }
    .top--050-m {
        top: -0.5rem
    }
    .right--050-m {
        right: -0.5rem
    }
    .bottom--050-m {
        bottom: -0.5rem
    }
    .left--050-m {
        left: -0.5rem
    }
    .top-075-m {
        top: .75rem
    }
    .right-075-m {
        right: .75rem
    }
    .bottom-075-m {
        bottom: .75rem
    }
    .left-075-m {
        left: .75rem
    }
    .top--075-m {
        top: -0.75rem
    }
    .right--075-m {
        right: -0.75rem
    }
    .bottom--075-m {
        bottom: -0.75rem
    }
    .left--075-m {
        left: -0.75rem
    }
    .top--3-m {
        top: -3rem
    }
    .right--3-m {
        right: -3rem
    }
    .bottom--3-m {
        bottom: -3rem
    }
    .left--3-m {
        left: -3rem
    }
    .top--4-m {
        top: -4rem
    }
    .right--4-m {
        right: -4rem
    }
    .bottom--4-m {
        bottom: -4rem
    }
    .left--4-m {
        left: -4rem
    }
    .top-3-m {
        top: 3rem
    }
    .right-3-m {
        right: 3rem
    }
    .bottom-3-m {
        bottom: 3rem
    }
    .left-3-m {
        left: 3rem
    }
    .top-4-m {
        top: 4rem
    }
    .right-4-m {
        right: 4rem
    }
    .bottom-4-m {
        bottom: 4rem
    }
    .left-4-m {
        left: 4rem
    }
}

@media screen and (min-width: 60em) {
    .top-025-l {
        top: .25rem
    }
    .right-025-l {
        right: .25rem
    }
    .bottom-025-l {
        bottom: .25rem
    }
    .left-025-l {
        left: .25rem
    }
    .top--025-l {
        top: -0.25rem
    }
    .right--025-l {
        right: -0.25rem
    }
    .bottom--025-l {
        bottom: -0.25rem
    }
    .left--025-l {
        left: -0.25rem
    }
    .top-050-l {
        top: .5rem
    }
    .right-050-l {
        right: .5rem
    }
    .bottom-050-l {
        bottom: .5rem
    }
    .left-050-l {
        left: .5rem
    }
    .top--050-l {
        top: -0.5rem
    }
    .right--050-l {
        right: -0.5rem
    }
    .bottom--050-l {
        bottom: -0.5rem
    }
    .left--050-l {
        left: -0.5rem
    }
    .top-075-l {
        top: .75rem
    }
    .right-075-l {
        right: .75rem
    }
    .bottom-075-l {
        bottom: .75rem
    }
    .left-075-l {
        left: .75rem
    }
    .top--075-l {
        top: -0.75rem
    }
    .right--075-l {
        right: -0.75rem
    }
    .bottom--075-l {
        bottom: -0.75rem
    }
    .left--075-l {
        left: -0.75rem
    }
    .top--3-l {
        top: -3rem
    }
    .right--3-l {
        right: -3rem
    }
    .bottom--3-l {
        bottom: -3rem
    }
    .left--3-l {
        left: -3rem
    }
    .top--4-l {
        top: -4rem
    }
    .right--4-l {
        right: -4rem
    }
    .bottom--4-l {
        bottom: -4rem
    }
    .left--4-l {
        left: -4rem
    }
    .top-3-l {
        top: 3rem
    }
    .right-3-l {
        right: 3rem
    }
    .bottom-3-l {
        bottom: 3rem
    }
    .left-3-l {
        left: 3rem
    }
    .top-4-l {
        top: 4rem
    }
    .right-4-l {
        right: 4rem
    }
    .bottom-4-l {
        bottom: 4rem
    }
    .left-4-l {
        left: 4rem
    }
}

@media screen and (min-width: 77.5rem) {
    .top-025-xl {
        top: .25rem
    }
    .right-025-xl {
        right: .25rem
    }
    .bottom-025-xl {
        bottom: .25rem
    }
    .left-025-xl {
        left: .25rem
    }
    .top--025-xl {
        top: -0.25rem
    }
    .right--025-xl {
        right: -0.25rem
    }
    .bottom--025-xl {
        bottom: -0.25rem
    }
    .left--025-xl {
        left: -0.25rem
    }
    .top-050-xl {
        top: .5rem
    }
    .right-050-xl {
        right: .5rem
    }
    .bottom-050-xl {
        bottom: .5rem
    }
    .left-050-xl {
        left: .5rem
    }
    .top--050-xl {
        top: -0.5rem
    }
    .right--050-xl {
        right: -0.5rem
    }
    .bottom--050-xl {
        bottom: -0.5rem
    }
    .left--050-xl {
        left: -0.5rem
    }
    .top-075-xl {
        top: .75rem
    }
    .right-075-xl {
        right: .75rem
    }
    .bottom-075-xl {
        bottom: .75rem
    }
    .left-075-xl {
        left: .75rem
    }
    .top--075-xl {
        top: -0.75rem
    }
    .right--075-xl {
        right: -0.75rem
    }
    .bottom--075-xl {
        bottom: -0.75rem
    }
    .left--075-xl {
        left: -0.75rem
    }
    .top-0-xl {
        top: 0
    }
    .right-0-xl {
        right: 0
    }
    .bottom-0-xl {
        bottom: 0
    }
    .left-0-xl {
        left: 0
    }
    .top-1-xl {
        top: 1rem
    }
    .right-1-xl {
        right: 1rem
    }
    .bottom-1-xl {
        bottom: 1rem
    }
    .left-1-xl {
        left: 1rem
    }
    .top-2-xl {
        top: 2rem
    }
    .right-2-xl {
        right: 2rem
    }
    .bottom-2-xl {
        bottom: 2rem
    }
    .left-2-xl {
        left: 2rem
    }
    .top--3-xl {
        top: -3rem
    }
    .right--3-xl {
        right: -3rem
    }
    .bottom--3-xl {
        bottom: -3rem
    }
    .left--3-xl {
        left: -3rem
    }
    .top--4-xl {
        top: -4rem
    }
    .right--4-xl {
        right: -4rem
    }
    .bottom--4-xl {
        bottom: -4rem
    }
    .left--4-xl {
        left: -4rem
    }
    .top-3-xl {
        top: 3rem
    }
    .right-3-xl {
        right: 3rem
    }
    .bottom-3-xl {
        bottom: 3rem
    }
    .left-3-xl {
        left: 3rem
    }
    .top-4-xl {
        top: 4rem
    }
    .right-4-xl {
        right: 4rem
    }
    .bottom-4-xl {
        bottom: 4rem
    }
    .left-4-xl {
        left: 4rem
    }
    .absolute--fill-xl {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0
    }
}

@media screen and (min-width: 91.25rem) {
    .top-025-2x {
        top: .25rem
    }
    .right-025-2x {
        right: .25rem
    }
    .bottom-025-2x {
        bottom: .25rem
    }
    .left-025-2x {
        left: .25rem
    }
    .top--025-2x {
        top: -0.25rem
    }
    .right--025-2x {
        right: -0.25rem
    }
    .bottom--025-2x {
        bottom: -0.25rem
    }
    .left--025-2x {
        left: -0.25rem
    }
    .top-050-2x {
        top: .5rem
    }
    .right-050-2x {
        right: .5rem
    }
    .bottom-050-2x {
        bottom: .5rem
    }
    .left-050-2x {
        left: .5rem
    }
    .top--050-2x {
        top: -0.5rem
    }
    .right--050-2x {
        right: -0.5rem
    }
    .bottom--050-2x {
        bottom: -0.5rem
    }
    .left--050-2x {
        left: -0.5rem
    }
    .top-075-2x {
        top: .75rem
    }
    .right-075-2x {
        right: .75rem
    }
    .bottom-075-2x {
        bottom: .75rem
    }
    .left-075-2x {
        left: .75rem
    }
    .top--075-2x {
        top: -0.75rem
    }
    .right--075-2x {
        right: -0.75rem
    }
    .bottom--075-2x {
        bottom: -0.75rem
    }
    .left--075-2x {
        left: -0.75rem
    }
    .top-0-2x {
        top: 0
    }
    .right-0-2x {
        right: 0
    }
    .bottom-0-2x {
        bottom: 0
    }
    .left-0-2x {
        left: 0
    }
    .top-1-2x {
        top: 1rem
    }
    .right-1-2x {
        right: 1rem
    }
    .bottom-1-2x {
        bottom: 1rem
    }
    .left-1-2x {
        left: 1rem
    }
    .top-2-2x {
        top: 2rem
    }
    .right-2-2x {
        right: 2rem
    }
    .bottom-2-2x {
        bottom: 2rem
    }
    .left-2-2x {
        left: 2rem
    }
    .top--3-2x {
        top: -3rem
    }
    .right--3-2x {
        right: -3rem
    }
    .bottom--3-2x {
        bottom: -3rem
    }
    .left--3-2x {
        left: -3rem
    }
    .top--4-2x {
        top: -4rem
    }
    .right--4-2x {
        right: -4rem
    }
    .bottom--4-2x {
        bottom: -4rem
    }
    .left--4-2x {
        left: -4rem
    }
    .top-3-2x {
        top: 3rem
    }
    .right-3-2x {
        right: 3rem
    }
    .bottom-3-2x {
        bottom: 3rem
    }
    .left-3-2x {
        left: 3rem
    }
    .top-4-2x {
        top: 4rem
    }
    .right-4-2x {
        right: 4rem
    }
    .bottom-4-2x {
        bottom: 4rem
    }
    .left-4-2x {
        left: 4rem
    }
    .absolute--fill-2x {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0
    }
}

.cf:before,
.cf:after {
    content: " ";
    display: table
}

.cf:after {
    clear: both
}

.cf {
    *zoom: 1
}

.cl {
    clear: left
}

.cr {
    clear: right
}

.cb {
    clear: both
}

.cn {
    clear: none
}

@media screen and (min-width: 30em) {
    .cl-ns {
        clear: left
    }
    .cr-ns {
        clear: right
    }
    .cb-ns {
        clear: both
    }
    .cn-ns {
        clear: none
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .cl-m {
        clear: left
    }
    .cr-m {
        clear: right
    }
    .cb-m {
        clear: both
    }
    .cn-m {
        clear: none
    }
}

@media screen and (min-width: 60em) {
    .cl-l {
        clear: left
    }
    .cr-l {
        clear: right
    }
    .cb-l {
        clear: both
    }
    .cn-l {
        clear: none
    }
}

.dn {
    display: none
}

.di {
    display: inline
}

.db {
    display: block
}

.dib {
    display: inline-block
}

.dit {
    display: inline-table
}

.dt {
    display: table
}

.dtc {
    display: table-cell
}

.dt-row {
    display: table-row
}

.dt-row-group {
    display: table-row-group
}

.dt-column {
    display: table-column
}

.dt-column-group {
    display: table-column-group
}

.dt--fixed {
    table-layout: fixed;
    width: 100%
}

@media screen and (min-width: 30em) {
    .dn-ns {
        display: none
    }
    .di-ns {
        display: inline
    }
    .db-ns {
        display: block
    }
    .dib-ns {
        display: inline-block
    }
    .dit-ns {
        display: inline-table
    }
    .dt-ns {
        display: table
    }
    .dtc-ns {
        display: table-cell
    }
    .dt-row-ns {
        display: table-row
    }
    .dt-row-group-ns {
        display: table-row-group
    }
    .dt-column-ns {
        display: table-column
    }
    .dt-column-group-ns {
        display: table-column-group
    }
    .dt--fixed-ns {
        table-layout: fixed;
        width: 100%
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .dn-m {
        display: none
    }
    .di-m {
        display: inline
    }
    .db-m {
        display: block
    }
    .dib-m {
        display: inline-block
    }
    .dit-m {
        display: inline-table
    }
    .dt-m {
        display: table
    }
    .dtc-m {
        display: table-cell
    }
    .dt-row-m {
        display: table-row
    }
    .dt-row-group-m {
        display: table-row-group
    }
    .dt-column-m {
        display: table-column
    }
    .dt-column-group-m {
        display: table-column-group
    }
    .dt--fixed-m {
        table-layout: fixed;
        width: 100%
    }
}

@media screen and (min-width: 60em) {
    .dn-l {
        display: none
    }
    .di-l {
        display: inline
    }
    .db-l {
        display: block
    }
    .dib-l {
        display: inline-block
    }
    .dit-l {
        display: inline-table
    }
    .dt-l {
        display: table
    }
    .dtc-l {
        display: table-cell
    }
    .dt-row-l {
        display: table-row
    }
    .dt-row-group-l {
        display: table-row-group
    }
    .dt-column-l {
        display: table-column
    }
    .dt-column-group-l {
        display: table-column-group
    }
    .dt--fixed-l {
        table-layout: fixed;
        width: 100%
    }
}

@media screen and (min-width: 77.5rem) {
    .dn-xl {
        display: none
    }
    .di-xl {
        display: inline
    }
    .db-xl {
        display: block
    }
    .dib-xl {
        display: inline-block
    }
    .dit-xl {
        display: inline-table
    }
    .dt-xl {
        display: table
    }
    .dtc-xl {
        display: table-cell
    }
    .dt-row-xl {
        display: table-row
    }
    .dt-row-group-xl {
        display: table-row-group
    }
    .dt-column-xl {
        display: table-column
    }
    .dt-column-group-xl {
        display: table-column-group
    }
    .dt--fixed-xl {
        table-layout: fixed;
        width: 100%
    }
}

@media screen and (min-width: 91.25rem) {
    .dn-2x {
        display: none
    }
    .di-2x {
        display: inline
    }
    .db-2x {
        display: block
    }
    .dib-2x {
        display: inline-block
    }
    .dit-2x {
        display: inline-table
    }
    .dt-2x {
        display: table
    }
    .dtc-2x {
        display: table-cell
    }
    .dt-row-2x {
        display: table-row
    }
    .dt-row-group-2x {
        display: table-row-group
    }
    .dt-column-2x {
        display: table-column
    }
    .dt-column-group-2x {
        display: table-column-group
    }
    .dt--fixed-2x {
        table-layout: fixed;
        width: 100%
    }
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.flex-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0
}

.flex-none {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.flex-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse
}

.flex-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
}

.flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.items-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.items-baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline
}

.items-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.self-start {
    -ms-flex-item-align: start;
    align-self: flex-start
}

.self-end {
    -ms-flex-item-align: end;
    align-self: flex-end
}

.self-center {
    -ms-flex-item-align: center;
    align-self: center
}

.self-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline
}

.self-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch
}

.justify-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.justify-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.justify-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.justify-around {
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.content-start {
    -ms-flex-line-pack: start;
    align-content: flex-start
}

.content-end {
    -ms-flex-line-pack: end;
    align-content: flex-end
}

.content-center {
    -ms-flex-line-pack: center;
    align-content: center
}

.content-between {
    -ms-flex-line-pack: justify;
    align-content: space-between
}

.content-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around
}

.content-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch
}

.order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3
}

.order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4
}

.order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5
}

.order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6
}

.order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7
}

.order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8
}

.order-last {
    -webkit-box-ordinal-group: 100000;
    -ms-flex-order: 99999;
    order: 99999
}

.flex-grow-0 {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0
}

.flex-grow-1 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.flex-shrink-0 {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.flex-shrink-1 {
    -ms-flex-negative: 1;
    flex-shrink: 1
}

@media screen and (min-width: 30em) {
    .flex-ns {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
    .inline-flex-ns {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex
    }
    .flex-auto-ns {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        min-width: 0;
        min-height: 0
    }
    .flex-none-ns {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }
    .flex-column-ns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .flex-row-ns {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
    .flex-wrap-ns {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .flex-nowrap-ns {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
    .flex-wrap-reverse-ns {
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse
    }
    .flex-column-reverse-ns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
    .flex-row-reverse-ns {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse
    }
    .items-start-ns {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }
    .items-end-ns {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
    .items-center-ns {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .items-baseline-ns {
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline
    }
    .items-stretch-ns {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }
    .self-start-ns {
        -ms-flex-item-align: start;
        align-self: flex-start
    }
    .self-end-ns {
        -ms-flex-item-align: end;
        align-self: flex-end
    }
    .self-center-ns {
        -ms-flex-item-align: center;
        align-self: center
    }
    .self-baseline-ns {
        -ms-flex-item-align: baseline;
        align-self: baseline
    }
    .self-stretch-ns {
        -ms-flex-item-align: stretch;
        align-self: stretch
    }
    .justify-start-ns {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
    .justify-end-ns {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }
    .justify-center-ns {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
    .justify-between-ns {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
    .justify-around-ns {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
    .content-start-ns {
        -ms-flex-line-pack: start;
        align-content: flex-start
    }
    .content-end-ns {
        -ms-flex-line-pack: end;
        align-content: flex-end
    }
    .content-center-ns {
        -ms-flex-line-pack: center;
        align-content: center
    }
    .content-between-ns {
        -ms-flex-line-pack: justify;
        align-content: space-between
    }
    .content-around-ns {
        -ms-flex-line-pack: distribute;
        align-content: space-around
    }
    .content-stretch-ns {
        -ms-flex-line-pack: stretch;
        align-content: stretch
    }
    .order-0-ns {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }
    .order-1-ns {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
    .order-2-ns {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
    .order-3-ns {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }
    .order-4-ns {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }
    .order-5-ns {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }
    .order-6-ns {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }
    .order-7-ns {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }
    .order-8-ns {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }
    .order-last-ns {
        -webkit-box-ordinal-group: 100000;
        -ms-flex-order: 99999;
        order: 99999
    }
    .flex-grow-0-ns {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0
    }
    .flex-grow-1-ns {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }
    .flex-shrink-0-ns {
        -ms-flex-negative: 0;
        flex-shrink: 0
    }
    .flex-shrink-1-ns {
        -ms-flex-negative: 1;
        flex-shrink: 1
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .flex-m {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
    .inline-flex-m {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex
    }
    .flex-auto-m {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        min-width: 0;
        min-height: 0
    }
    .flex-none-m {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }
    .flex-column-m {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .flex-row-m {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
    .flex-wrap-m {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .flex-nowrap-m {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
    .flex-wrap-reverse-m {
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse
    }
    .flex-column-reverse-m {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
    .flex-row-reverse-m {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse
    }
    .items-start-m {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }
    .items-end-m {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
    .items-center-m {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .items-baseline-m {
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline
    }
    .items-stretch-m {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }
    .self-start-m {
        -ms-flex-item-align: start;
        align-self: flex-start
    }
    .self-end-m {
        -ms-flex-item-align: end;
        align-self: flex-end
    }
    .self-center-m {
        -ms-flex-item-align: center;
        align-self: center
    }
    .self-baseline-m {
        -ms-flex-item-align: baseline;
        align-self: baseline
    }
    .self-stretch-m {
        -ms-flex-item-align: stretch;
        align-self: stretch
    }
    .justify-start-m {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
    .justify-end-m {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }
    .justify-center-m {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
    .justify-between-m {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
    .justify-around-m {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
    .content-start-m {
        -ms-flex-line-pack: start;
        align-content: flex-start
    }
    .content-end-m {
        -ms-flex-line-pack: end;
        align-content: flex-end
    }
    .content-center-m {
        -ms-flex-line-pack: center;
        align-content: center
    }
    .content-between-m {
        -ms-flex-line-pack: justify;
        align-content: space-between
    }
    .content-around-m {
        -ms-flex-line-pack: distribute;
        align-content: space-around
    }
    .content-stretch-m {
        -ms-flex-line-pack: stretch;
        align-content: stretch
    }
    .order-0-m {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }
    .order-1-m {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
    .order-2-m {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
    .order-3-m {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }
    .order-4-m {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }
    .order-5-m {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }
    .order-6-m {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }
    .order-7-m {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }
    .order-8-m {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }
    .order-last-m {
        -webkit-box-ordinal-group: 100000;
        -ms-flex-order: 99999;
        order: 99999
    }
    .flex-grow-0-m {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0
    }
    .flex-grow-1-m {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }
    .flex-shrink-0-m {
        -ms-flex-negative: 0;
        flex-shrink: 0
    }
    .flex-shrink-1-m {
        -ms-flex-negative: 1;
        flex-shrink: 1
    }
}

@media screen and (min-width: 60em) {
    .flex-l {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
    .inline-flex-l {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex
    }
    .flex-auto-l {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        min-width: 0;
        min-height: 0
    }
    .flex-none-l {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }
    .flex-column-l {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .flex-row-l {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
    .flex-wrap-l {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .flex-nowrap-l {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
    .flex-wrap-reverse-l {
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse
    }
    .flex-column-reverse-l {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
    .flex-row-reverse-l {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse
    }
    .items-start-l {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }
    .items-end-l {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
    .items-center-l {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .items-baseline-l {
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline
    }
    .items-stretch-l {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }
    .self-start-l {
        -ms-flex-item-align: start;
        align-self: flex-start
    }
    .self-end-l {
        -ms-flex-item-align: end;
        align-self: flex-end
    }
    .self-center-l {
        -ms-flex-item-align: center;
        align-self: center
    }
    .self-baseline-l {
        -ms-flex-item-align: baseline;
        align-self: baseline
    }
    .self-stretch-l {
        -ms-flex-item-align: stretch;
        align-self: stretch
    }
    .justify-start-l {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
    .justify-end-l {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }
    .justify-center-l {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
    .justify-between-l {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
    .justify-around-l {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
    .content-start-l {
        -ms-flex-line-pack: start;
        align-content: flex-start
    }
    .content-end-l {
        -ms-flex-line-pack: end;
        align-content: flex-end
    }
    .content-center-l {
        -ms-flex-line-pack: center;
        align-content: center
    }
    .content-between-l {
        -ms-flex-line-pack: justify;
        align-content: space-between
    }
    .content-around-l {
        -ms-flex-line-pack: distribute;
        align-content: space-around
    }
    .content-stretch-l {
        -ms-flex-line-pack: stretch;
        align-content: stretch
    }
    .order-0-l {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }
    .order-1-l {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
    .order-2-l {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
    .order-3-l {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }
    .order-4-l {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }
    .order-5-l {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }
    .order-6-l {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }
    .order-7-l {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }
    .order-8-l {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }
    .order-last-l {
        -webkit-box-ordinal-group: 100000;
        -ms-flex-order: 99999;
        order: 99999
    }
    .flex-grow-0-l {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0
    }
    .flex-grow-1-l {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }
    .flex-shrink-0-l {
        -ms-flex-negative: 0;
        flex-shrink: 0
    }
    .flex-shrink-1-l {
        -ms-flex-negative: 1;
        flex-shrink: 1
    }
}

.flex-basis-none {
    -ms-flex-preferred-size: 0;
    flex-basis: 0
}

.flex-basis-auto {
    -ms-flex-preferred-size: auto;
    flex-basis: auto
}

.flex-basis-100 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%
}

.flex-basis-90 {
    -ms-flex-preferred-size: 90%;
    flex-basis: 90%
}

.flex-basis-80 {
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%
}

.flex-basis-70 {
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%
}

.flex-basis-60 {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%
}

.flex-basis-50 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%
}

.flex-basis-40 {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%
}

.flex-basis-30 {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%
}

.flex-basis-20 {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%
}

.flex-basis-10 {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%
}

@media screen and (min-width: 30em) {
    .flex-basis-none-ns {
        -ms-flex-preferred-size: 0;
        flex-basis: 0
    }
    .flex-basis-auto-ns {
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }
    .flex-basis-100-ns {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
    .flex-basis-90-ns {
        -ms-flex-preferred-size: 90%;
        flex-basis: 90%
    }
    .flex-basis-80-ns {
        -ms-flex-preferred-size: 80%;
        flex-basis: 80%
    }
    .flex-basis-70-ns {
        -ms-flex-preferred-size: 70%;
        flex-basis: 70%
    }
    .flex-basis-60-ns {
        -ms-flex-preferred-size: 60%;
        flex-basis: 60%
    }
    .flex-basis-50-ns {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%
    }
    .flex-basis-40-ns {
        -ms-flex-preferred-size: 40%;
        flex-basis: 40%
    }
    .flex-basis-30-ns {
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%
    }
    .flex-basis-20-ns {
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%
    }
    .flex-basis-10-ns {
        -ms-flex-preferred-size: 10%;
        flex-basis: 10%
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .flex-basis-none-m {
        -ms-flex-preferred-size: 0;
        flex-basis: 0
    }
    .flex-basis-auto-m {
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }
    .flex-basis-100-m {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
    .flex-basis-90-m {
        -ms-flex-preferred-size: 90%;
        flex-basis: 90%
    }
    .flex-basis-80-m {
        -ms-flex-preferred-size: 80%;
        flex-basis: 80%
    }
    .flex-basis-70-m {
        -ms-flex-preferred-size: 70%;
        flex-basis: 70%
    }
    .flex-basis-60-m {
        -ms-flex-preferred-size: 60%;
        flex-basis: 60%
    }
    .flex-basis-50-m {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%
    }
    .flex-basis-40-m {
        -ms-flex-preferred-size: 40%;
        flex-basis: 40%
    }
    .flex-basis-30-m {
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%
    }
    .flex-basis-20-m {
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%
    }
    .flex-basis-10-m {
        -ms-flex-preferred-size: 10%;
        flex-basis: 10%
    }
}

@media screen and (min-width: 60em) {
    .flex-basis-none-l {
        -ms-flex-preferred-size: 0;
        flex-basis: 0
    }
    .flex-basis-auto-l {
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }
    .flex-basis-100-l {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
    .flex-basis-90-l {
        -ms-flex-preferred-size: 90%;
        flex-basis: 90%
    }
    .flex-basis-80-l {
        -ms-flex-preferred-size: 80%;
        flex-basis: 80%
    }
    .flex-basis-70-l {
        -ms-flex-preferred-size: 70%;
        flex-basis: 70%
    }
    .flex-basis-60-l {
        -ms-flex-preferred-size: 60%;
        flex-basis: 60%
    }
    .flex-basis-50-l {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%
    }
    .flex-basis-40-l {
        -ms-flex-preferred-size: 40%;
        flex-basis: 40%
    }
    .flex-basis-30-l {
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%
    }
    .flex-basis-20-l {
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%
    }
    .flex-basis-10-l {
        -ms-flex-preferred-size: 10%;
        flex-basis: 10%
    }
}

@media screen and (min-width: 77.5rem) {
    .flex-xl {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
    .inline-flex-xl {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex
    }
    .flex-auto-xl {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        min-width: 0;
        min-height: 0
    }
    .flex-none-xl {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }
    .flex-column-xl {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .flex-row-xl {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
    .flex-wrap-xl {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .flex-nowrap-xl {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
    .flex-wrap-reverse-xl {
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse
    }
    .flex-column-reverse-xl {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
    .flex-row-reverse-xl {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse
    }
    .items-start-xl {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }
    .items-end-xl {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
    .items-center-xl {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .items-baseline-xl {
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline
    }
    .items-stretch-xl {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }
    .self-start-xl {
        -ms-flex-item-align: start;
        align-self: flex-start
    }
    .self-end-xl {
        -ms-flex-item-align: end;
        align-self: flex-end
    }
    .self-center-xl {
        -ms-flex-item-align: center;
        align-self: center
    }
    .self-baseline-xl {
        -ms-flex-item-align: baseline;
        align-self: baseline
    }
    .self-stretch-xl {
        -ms-flex-item-align: stretch;
        align-self: stretch
    }
    .justify-start-xl {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
    .justify-end-xl {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }
    .justify-center-xl {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
    .justify-between-xl {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
    .justify-around-xl {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
    .content-start-xl {
        -ms-flex-line-pack: start;
        align-content: flex-start
    }
    .content-end-xl {
        -ms-flex-line-pack: end;
        align-content: flex-end
    }
    .content-center-xl {
        -ms-flex-line-pack: center;
        align-content: center
    }
    .content-between-xl {
        -ms-flex-line-pack: justify;
        align-content: space-between
    }
    .content-around-xl {
        -ms-flex-line-pack: distribute;
        align-content: space-around
    }
    .content-stretch-xl {
        -ms-flex-line-pack: stretch;
        align-content: stretch
    }
    .order-0-xl {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }
    .order-1-xl {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
    .order-2-xl {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
    .order-3-xl {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }
    .order-4-xl {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }
    .order-5-xl {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }
    .order-6-xl {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }
    .order-7-xl {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }
    .order-8-xl {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }
    .order-last-xl {
        -webkit-box-ordinal-group: 100000;
        -ms-flex-order: 99999;
        order: 99999
    }
    .flex-grow-0-xl {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0
    }
    .flex-grow-1-xl {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }
    .flex-shrink-0-xl {
        -ms-flex-negative: 0;
        flex-shrink: 0
    }
    .flex-shrink-1-xl {
        -ms-flex-negative: 1;
        flex-shrink: 1
    }
    .flex-basis-none-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0
    }
    .flex-basis-auto-xl {
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }
    .flex-basis-100-xl {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
    .flex-basis-90-xl {
        -ms-flex-preferred-size: 90%;
        flex-basis: 90%
    }
    .flex-basis-80-xl {
        -ms-flex-preferred-size: 80%;
        flex-basis: 80%
    }
    .flex-basis-70-xl {
        -ms-flex-preferred-size: 70%;
        flex-basis: 70%
    }
    .flex-basis-60-xl {
        -ms-flex-preferred-size: 60%;
        flex-basis: 60%
    }
    .flex-basis-50-xl {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%
    }
    .flex-basis-40-xl {
        -ms-flex-preferred-size: 40%;
        flex-basis: 40%
    }
    .flex-basis-30-xl {
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%
    }
    .flex-basis-20-xl {
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%
    }
    .flex-basis-10-xl {
        -ms-flex-preferred-size: 10%;
        flex-basis: 10%
    }
}

@media screen and (min-width: 91.25rem) {
    .flex-2x {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
    .inline-flex-2x {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex
    }
    .flex-auto-2x {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        min-width: 0;
        min-height: 0
    }
    .flex-none-2x {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }
    .flex-column-2x {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .flex-row-2x {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
    .flex-wrap-2x {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .flex-nowrap-2x {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
    .flex-wrap-reverse-2x {
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse
    }
    .flex-column-reverse-2x {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
    .flex-row-reverse-2x {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse
    }
    .items-start-2x {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }
    .items-end-2x {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
    .items-center-2x {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .items-baseline-2x {
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline
    }
    .items-stretch-2x {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }
    .self-start-2x {
        -ms-flex-item-align: start;
        align-self: flex-start
    }
    .self-end-2x {
        -ms-flex-item-align: end;
        align-self: flex-end
    }
    .self-center-2x {
        -ms-flex-item-align: center;
        align-self: center
    }
    .self-baseline-2x {
        -ms-flex-item-align: baseline;
        align-self: baseline
    }
    .self-stretch-2x {
        -ms-flex-item-align: stretch;
        align-self: stretch
    }
    .justify-start-2x {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
    .justify-end-2x {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }
    .justify-center-2x {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
    .justify-between-2x {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
    .justify-around-2x {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
    .content-start-2x {
        -ms-flex-line-pack: start;
        align-content: flex-start
    }
    .content-end-2x {
        -ms-flex-line-pack: end;
        align-content: flex-end
    }
    .content-center-2x {
        -ms-flex-line-pack: center;
        align-content: center
    }
    .content-between-2x {
        -ms-flex-line-pack: justify;
        align-content: space-between
    }
    .content-around-2x {
        -ms-flex-line-pack: distribute;
        align-content: space-around
    }
    .content-stretch-2x {
        -ms-flex-line-pack: stretch;
        align-content: stretch
    }
    .order-0-2x {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }
    .order-1-2x {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
    .order-2-2x {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
    .order-3-2x {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }
    .order-4-2x {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }
    .order-5-2x {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }
    .order-6-2x {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }
    .order-7-2x {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }
    .order-8-2x {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }
    .order-last-2x {
        -webkit-box-ordinal-group: 100000;
        -ms-flex-order: 99999;
        order: 99999
    }
    .flex-grow-0-2x {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0
    }
    .flex-grow-1-2x {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }
    .flex-shrink-0-2x {
        -ms-flex-negative: 0;
        flex-shrink: 0
    }
    .flex-shrink-1-2x {
        -ms-flex-negative: 1;
        flex-shrink: 1
    }
    .flex-basis-none-2x {
        -ms-flex-preferred-size: 0;
        flex-basis: 0
    }
    .flex-basis-auto-2x {
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }
    .flex-basis-100-2x {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
    .flex-basis-90-2x {
        -ms-flex-preferred-size: 90%;
        flex-basis: 90%
    }
    .flex-basis-80-2x {
        -ms-flex-preferred-size: 80%;
        flex-basis: 80%
    }
    .flex-basis-70-2x {
        -ms-flex-preferred-size: 70%;
        flex-basis: 70%
    }
    .flex-basis-60-2x {
        -ms-flex-preferred-size: 60%;
        flex-basis: 60%
    }
    .flex-basis-50-2x {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%
    }
    .flex-basis-40-2x {
        -ms-flex-preferred-size: 40%;
        flex-basis: 40%
    }
    .flex-basis-30-2x {
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%
    }
    .flex-basis-20-2x {
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%
    }
    .flex-basis-10-2x {
        -ms-flex-preferred-size: 10%;
        flex-basis: 10%
    }
}

.fl {
    float: left;
    _display: inline
}

.fr {
    float: right;
    _display: inline
}

.fn {
    float: none
}

@media screen and (min-width: 30em) {
    .fl-ns {
        float: left;
        _display: inline
    }
    .fr-ns {
        float: right;
        _display: inline
    }
    .fn-ns {
        float: none
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .fl-m {
        float: left;
        _display: inline
    }
    .fr-m {
        float: right;
        _display: inline
    }
    .fn-m {
        float: none
    }
}

@media screen and (min-width: 60em) {
    .fl-l {
        float: left;
        _display: inline
    }
    .fr-l {
        float: right;
        _display: inline
    }
    .fn-l {
        float: none
    }
}

.sans-serif {
    font-family: fa5-proxima-nova, "Helvetica Neue", Helvetica, Arial, sans-serif
}

.serif {
    font-family: museo-slab, "Museo Slab", Georgia, "Times New Roman", Times, serif
}

.mono,
code,
.code,
pre {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace
}

.system-sans-serif {
    font-family: sans-serif
}

.system-serif {
    font-family: serif
}

.i {
    font-style: italic
}

.fs-normal {
    font-style: normal
}

@media screen and (min-width: 30em) {
    .i-ns {
        font-style: italic
    }
    .fs-normal-ns {
        font-style: normal
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .i-m {
        font-style: italic
    }
    .fs-normal-m {
        font-style: normal
    }
}

@media screen and (min-width: 60em) {
    .i-l {
        font-style: italic
    }
    .fs-normal-l {
        font-style: normal
    }
}

.normal {
    font-weight: normal
}

.b {
    font-weight: bold
}

.fw1 {
    font-weight: 100
}

.fw2 {
    font-weight: 200
}

.fw3 {
    font-weight: 300
}

.fw4 {
    font-weight: 400
}

.fw5 {
    font-weight: 500
}

.fw6 {
    font-weight: 600
}

.fw7 {
    font-weight: 700
}

.fw8 {
    font-weight: 800
}

.fw9 {
    font-weight: 900
}

@media screen and (min-width: 30em) {
    .normal-ns {
        font-weight: normal
    }
    .b-ns {
        font-weight: bold
    }
    .fw1-ns {
        font-weight: 100
    }
    .fw2-ns {
        font-weight: 200
    }
    .fw3-ns {
        font-weight: 300
    }
    .fw4-ns {
        font-weight: 400
    }
    .fw5-ns {
        font-weight: 500
    }
    .fw6-ns {
        font-weight: 600
    }
    .fw7-ns {
        font-weight: 700
    }
    .fw8-ns {
        font-weight: 800
    }
    .fw9-ns {
        font-weight: 900
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .normal-m {
        font-weight: normal
    }
    .b-m {
        font-weight: bold
    }
    .fw1-m {
        font-weight: 100
    }
    .fw2-m {
        font-weight: 200
    }
    .fw3-m {
        font-weight: 300
    }
    .fw4-m {
        font-weight: 400
    }
    .fw5-m {
        font-weight: 500
    }
    .fw6-m {
        font-weight: 600
    }
    .fw7-m {
        font-weight: 700
    }
    .fw8-m {
        font-weight: 800
    }
    .fw9-m {
        font-weight: 900
    }
}

@media screen and (min-width: 60em) {
    .normal-l {
        font-weight: normal
    }
    .b-l {
        font-weight: bold
    }
    .fw1-l {
        font-weight: 100
    }
    .fw2-l {
        font-weight: 200
    }
    .fw3-l {
        font-weight: 300
    }
    .fw4-l {
        font-weight: 400
    }
    .fw5-l {
        font-weight: 500
    }
    .fw6-l {
        font-weight: 600
    }
    .fw7-l {
        font-weight: 700
    }
    .fw8-l {
        font-weight: 800
    }
    .fw9-l {
        font-weight: 900
    }
}

.input-reset {
    -webkit-appearance: none;
    -moz-appearance: none
}

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

.input-focus:focus {
    border-color: #4dabf7;
    outline: none;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.0125), 0 0 8px rgba(34, 139, 230, 0.5);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.0125), 0 0 8px rgba(34, 139, 230, 0.5)
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.3
}

::-moz-placeholder {
    color: inherit;
    opacity: 0.3
}

:-moz-placeholder {
    color: inherit;
    opacity: 0.3
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 0.3
}

.no-resize {
    resize: none
}

.input-number-reset {
    -moz-appearance: textfield;
    -webkit-appearance: none
}

.input-number-reset:hover,
.input-number-reset:focus {
    -moz-appearance: number-input
}

.input-select-custom {
    background-image: url("/images/bg-input-select-custom-2fa45f58415908dd987a3ab9a1091a20.svg?vsn=d");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 12px 16px;
    -webkit-appearance: none
}

.input-select-custom:active,
.input-select-custom:focus,
.input-select-custom:hover {
    background-image: url("/images/bg-input-select-custom-focused-d934cf246ecae19ec46a93fe34d0829e.svg?vsn=d")
}

.input-radio-custom~label .unchecked-radio,
.input-radio-custom~label .checked-radio,
.input-radio-custom~label .unchecked-icon,
.input-radio-custom~label .checked-icon {
    -webkit-transition: opacity .1s ease-in-out;
    transition: opacity .1s ease-in-out
}

.input-radio-custom~label .checked-radio,
.input-radio-custom~label .checked-icon {
    display: none;
    opacity: 0
}

.input-radio-custom~label .unchecked-radio,
.input-radio-custom~label .unchecked-icon {
    display: block;
    opacity: 1.0
}

.input-radio-custom:checked~label .checked-radio,
.input-radio-custom:checked~label .checked-icon {
    display: block;
    opacity: 1.0
}

.input-radio-custom:checked~label .unchecked-radio,
.input-radio-custom:checked~label .unchecked-icon {
    display: none;
    opacity: 0
}

.input-checkbox-custom~label .unchecked-icon,
.input-checkbox-custom~label .checked-icon {
    -webkit-transition: opacity .1s ease-in-out;
    transition: opacity .1s ease-in-out
}

.input-checkbox-custom~label .checked-icon {
    display: none;
    opacity: 0
}

.input-checkbox-custom~label .unchecked-icon {
    display: block;
    opacity: 1.0
}

.input-checkbox-custom:checked~label .checked-icon {
    display: block;
    opacity: 1.0
}

.input-checkbox-custom:checked~label .unchecked-icon {
    display: none;
    opacity: 0
}

.h1 {
    height: 1rem
}

.h2 {
    height: 2rem
}

.h3 {
    height: 4rem
}

.h4 {
    height: 8rem
}

.h5 {
    height: 16rem
}

.h-25 {
    height: 25%
}

.h-50 {
    height: 50%
}

.h-75 {
    height: 75%
}

.h-100 {
    height: 100%
}

.min-h-100 {
    min-height: 100%
}

.vh-25 {
    height: 25vh
}

.vh-50 {
    height: 50vh
}

.vh-75 {
    height: 75vh
}

.vh-100 {
    height: 100vh
}

.min-vh-100 {
    min-height: 100vh
}

.h-auto {
    height: auto
}

.h-inherit {
    height: inherit
}

@media screen and (min-width: 30em) {
    .h1-ns {
        height: 1rem
    }
    .h2-ns {
        height: 2rem
    }
    .h3-ns {
        height: 4rem
    }
    .h4-ns {
        height: 8rem
    }
    .h5-ns {
        height: 16rem
    }
    .h-25-ns {
        height: 25%
    }
    .h-50-ns {
        height: 50%
    }
    .h-75-ns {
        height: 75%
    }
    .h-100-ns {
        height: 100%
    }
    .min-h-100-ns {
        min-height: 100%
    }
    .vh-25-ns {
        height: 25vh
    }
    .vh-50-ns {
        height: 50vh
    }
    .vh-75-ns {
        height: 75vh
    }
    .vh-100-ns {
        height: 100vh
    }
    .min-vh-100-ns {
        min-height: 100vh
    }
    .h-auto-ns {
        height: auto
    }
    .h-inherit-ns {
        height: inherit
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .h1-m {
        height: 1rem
    }
    .h2-m {
        height: 2rem
    }
    .h3-m {
        height: 4rem
    }
    .h4-m {
        height: 8rem
    }
    .h5-m {
        height: 16rem
    }
    .h-25-m {
        height: 25%
    }
    .h-50-m {
        height: 50%
    }
    .h-75-m {
        height: 75%
    }
    .h-100-m {
        height: 100%
    }
    .min-h-100-m {
        min-height: 100%
    }
    .vh-25-m {
        height: 25vh
    }
    .vh-50-m {
        height: 50vh
    }
    .vh-75-m {
        height: 75vh
    }
    .vh-100-m {
        height: 100vh
    }
    .min-vh-100-m {
        min-height: 100vh
    }
    .h-auto-m {
        height: auto
    }
    .h-inherit-m {
        height: inherit
    }
}

@media screen and (min-width: 60em) {
    .h1-l {
        height: 1rem
    }
    .h2-l {
        height: 2rem
    }
    .h3-l {
        height: 4rem
    }
    .h4-l {
        height: 8rem
    }
    .h5-l {
        height: 16rem
    }
    .h-25-l {
        height: 25%
    }
    .h-50-l {
        height: 50%
    }
    .h-75-l {
        height: 75%
    }
    .h-100-l {
        height: 100%
    }
    .min-h-100-l {
        min-height: 100%
    }
    .vh-25-l {
        height: 25vh
    }
    .vh-50-l {
        height: 50vh
    }
    .vh-75-l {
        height: 75vh
    }
    .vh-100-l {
        height: 100vh
    }
    .min-vh-100-l {
        min-height: 100vh
    }
    .h-auto-l {
        height: auto
    }
    .h-inherit-l {
        height: inherit
    }
}

.h025 {
    height: .25rem
}

.h050 {
    height: .5rem
}

.h075 {
    height: .75rem
}

.h6 {
    height: 24rem
}

.h7 {
    height: 32rem
}

.h8 {
    height: 48rem
}

.min-h1 {
    min-height: 1rem
}

.min-h2 {
    min-height: 2rem
}

.min-h3 {
    min-height: 4rem
}

.min-h4 {
    min-height: 8rem
}

.min-h5 {
    min-height: 16rem
}

.min-h6 {
    min-height: 24rem
}

.min-h7 {
    min-height: 32rem
}

.min-h8 {
    min-height: 48rem
}

@media screen and (min-width: 30em) {
    .h025-ns {
        height: .25rem
    }
    .h050-ns {
        height: .5rem
    }
    .h075-ns {
        height: .75rem
    }
    .h6-ns {
        height: 24rem
    }
    .h7-ns {
        height: 32rem
    }
    .h8-ns {
        height: 48rem
    }
    .min-h1-ns {
        min-height: 1rem
    }
    .min-h2-ns {
        min-height: 2rem
    }
    .min-h3-ns {
        min-height: 4rem
    }
    .min-h4-ns {
        min-height: 8rem
    }
    .min-h5-ns {
        min-height: 16rem
    }
    .min-h6-ns {
        min-height: 24rem
    }
    .min-h7-ns {
        min-height: 32rem
    }
    .min-h8-ns {
        min-height: 48rem
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .h025-m {
        height: .25rem
    }
    .h050-m {
        height: .5rem
    }
    .h075-m {
        height: .75rem
    }
    .h6-m {
        height: 24rem
    }
    .h7-m {
        height: 32rem
    }
    .h8-m {
        height: 48rem
    }
    .min-h1-m {
        min-height: 1rem
    }
    .min-h2-m {
        min-height: 2rem
    }
    .min-h3-m {
        min-height: 4rem
    }
    .min-h4-m {
        min-height: 8rem
    }
    .min-h5-m {
        min-height: 16rem
    }
    .min-h6-m {
        min-height: 24rem
    }
    .min-h7-m {
        min-height: 32rem
    }
    .min-h8-m {
        min-height: 48rem
    }
}

@media screen and (min-width: 60em) {
    .h025-l {
        height: .25rem
    }
    .h050-l {
        height: .5rem
    }
    .h075-l {
        height: .75rem
    }
    .h6-l {
        height: 24rem
    }
    .h7-l {
        height: 32rem
    }
    .h8-l {
        height: 48rem
    }
    .min-h1-l {
        min-height: 1rem
    }
    .min-h2-l {
        min-height: 2rem
    }
    .min-h3-l {
        min-height: 4rem
    }
    .min-h4-l {
        min-height: 8rem
    }
    .min-h5-l {
        min-height: 16rem
    }
    .min-h6-l {
        min-height: 24rem
    }
    .min-h7-l {
        min-height: 32rem
    }
    .min-h8-l {
        min-height: 48rem
    }
}

@media screen and (min-width: 77.5rem) {
    .h1-xl {
        height: 1rem
    }
    .h2-xl {
        height: 2rem
    }
    .h3-xl {
        height: 4rem
    }
    .h4-xl {
        height: 8rem
    }
    .h5-xl {
        height: 16rem
    }
    .h-25-xl {
        height: 25%
    }
    .h-50-xl {
        height: 50%
    }
    .h-75-xl {
        height: 75%
    }
    .h-100-xl {
        height: 100%
    }
    .min-h-100-xl {
        min-height: 100%
    }
    .vh-25-xl {
        height: 25vh
    }
    .vh-50-xl {
        height: 50vh
    }
    .vh-75-xl {
        height: 75vh
    }
    .vh-100-xl {
        height: 100vh
    }
    .min-vh-100-xl {
        min-height: 100vh
    }
    .h-auto-xl {
        height: auto
    }
    .h-inherit-xl {
        height: inherit
    }
    .h025-xl {
        height: .25rem
    }
    .h050-xl {
        height: .5rem
    }
    .h075-xl {
        height: .75rem
    }
    .h6-xl {
        height: 24rem
    }
    .h7-xl {
        height: 32rem
    }
    .h8-xl {
        height: 48rem
    }
    .min-h1-xl {
        min-height: 1rem
    }
    .min-h2-xl {
        min-height: 2rem
    }
    .min-h3-xl {
        min-height: 4rem
    }
    .min-h4-xl {
        min-height: 8rem
    }
    .min-h5-xl {
        min-height: 16rem
    }
    .min-h6-xl {
        min-height: 24rem
    }
    .min-h7-xl {
        min-height: 32rem
    }
    .min-h8-xl {
        min-height: 48rem
    }
}

@media screen and (min-width: 91.25rem) {
    .h1-2x {
        height: 1rem
    }
    .h2-2x {
        height: 2rem
    }
    .h3-2x {
        height: 4rem
    }
    .h4-2x {
        height: 8rem
    }
    .h5-2x {
        height: 16rem
    }
    .h-25-2x {
        height: 25%
    }
    .h-50-2x {
        height: 50%
    }
    .h-75-2x {
        height: 75%
    }
    .h-100-2x {
        height: 100%
    }
    .min-h-100-2x {
        min-height: 100%
    }
    .vh-25-2x {
        height: 25vh
    }
    .vh-50-2x {
        height: 50vh
    }
    .vh-75-2x {
        height: 75vh
    }
    .vh-100-2x {
        height: 100vh
    }
    .min-vh-100-2x {
        min-height: 100vh
    }
    .h-auto-2x {
        height: auto
    }
    .h-inherit-2x {
        height: inherit
    }
    .h025-2x {
        height: .25rem
    }
    .h050-2x {
        height: .5rem
    }
    .h075-2x {
        height: .75rem
    }
    .h6-2x {
        height: 24rem
    }
    .h7-2x {
        height: 32rem
    }
    .h8-2x {
        height: 48rem
    }
    .min-h1-2x {
        min-height: 1rem
    }
    .min-h2-2x {
        min-height: 2rem
    }
    .min-h3-2x {
        min-height: 4rem
    }
    .min-h4-2x {
        min-height: 8rem
    }
    .min-h5-2x {
        min-height: 16rem
    }
    .min-h6-2x {
        min-height: 24rem
    }
    .min-h7-2x {
        min-height: 32rem
    }
    .min-h8-2x {
        min-height: 48rem
    }
}

.tracked--1 {
    letter-spacing: -.05em
}

.tracked0 {
    letter-spacing: .025em
}

.tracked1 {
    letter-spacing: .05em
}

.tracked2 {
    letter-spacing: .1em
}

.tracked3 {
    letter-spacing: .25em
}

@media screen and (min-width: 30em) {
    .tracked--1-ns {
        letter-spacing: -.05em
    }
    .tracked0-ns {
        letter-spacing: .025em
    }
    .tracked1-ns {
        letter-spacing: .05em
    }
    .tracked2-ns {
        letter-spacing: .1em
    }
    .tracked3-ns {
        letter-spacing: .25em
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .tracked--1-m {
        letter-spacing: -.05em
    }
    .tracked0-m {
        letter-spacing: .025em
    }
    .tracked1-m {
        letter-spacing: .05em
    }
    .tracked2-m {
        letter-spacing: .1em
    }
    .tracked3-m {
        letter-spacing: .25em
    }
}

@media screen and (min-width: 60em) {
    .tracked--1-l {
        letter-spacing: -.05em
    }
    .tracked0-l {
        letter-spacing: .025em
    }
    .tracked1-l {
        letter-spacing: .05em
    }
    .tracked2-l {
        letter-spacing: .1em
    }
    .tracked3-l {
        letter-spacing: .25em
    }
}

@media screen and (min-width: 77.5rem) {
    .tracked--1-xl {
        letter-spacing: -.05em
    }
    .tracked0-xl {
        letter-spacing: .025em
    }
    .tracked1-xl {
        letter-spacing: .05em
    }
    .tracked2-xl {
        letter-spacing: .1em
    }
    .tracked3-xl {
        letter-spacing: .25em
    }
}

@media screen and (min-width: 91.25rem) {
    .tracked--1-2x {
        letter-spacing: -.05em
    }
    .tracked0-2x {
        letter-spacing: .025em
    }
    .tracked1-2x {
        letter-spacing: .05em
    }
    .tracked2-2x {
        letter-spacing: .1em
    }
    .tracked3-2x {
        letter-spacing: .25em
    }
}

.lh-solid {
    line-height: 1
}

.lh-title {
    line-height: 1.25
}

.lh-copy {
    line-height: 1.5
}

@media screen and (min-width: 30em) {
    .lh-solid-ns {
        line-height: 1
    }
    .lh-title-ns {
        line-height: 1.25
    }
    .lh-copy-ns {
        line-height: 1.5
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .lh-solid-m {
        line-height: 1
    }
    .lh-title-m {
        line-height: 1.25
    }
    .lh-copy-m {
        line-height: 1.5
    }
}

@media screen and (min-width: 60em) {
    .lh-solid-l {
        line-height: 1
    }
    .lh-title-l {
        line-height: 1.25
    }
    .lh-copy-l {
        line-height: 1.5
    }
}

.lh0 {
    line-height: 0
}

.lh1 {
    line-height: 1
}

@media screen and (min-width: 30em) {
    .lh0-ns {
        line-height: 0
    }
    .lh1-ns {
        line-height: 1
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .lh0-m {
        line-height: 0
    }
    .lh1-m {
        line-height: 1
    }
}

@media screen and (min-width: 60em) {
    .lh0-l {
        line-height: 0
    }
    .lh1-l {
        line-height: 1
    }
}

@media screen and (min-width: 77.5rem) {
    .lh0-xl {
        line-height: 0
    }
    .lh1-xl {
        line-height: 1
    }
}

@media screen and (min-width: 91.25rem) {
    .lh0-2x {
        line-height: 0
    }
    .lh1-2x {
        line-height: 1
    }
}

.link {
    text-decoration: none;
    -webkit-transition: all .1s ease-in;
    transition: all .1s ease-in
}

.link:link,
.link:visited {
    -webkit-transition: all .1s ease-in;
    transition: all .1s ease-in
}

.link:hover {
    -webkit-transition: all .1s ease-in;
    transition: all .1s ease-in
}

.link:active {
    -webkit-transition: all .1s ease-in;
    transition: all .1s ease-in
}

.link:focus {
    -webkit-transition: all .1s ease-in;
    transition: all .1s ease-in;
    outline: 1px dotted currentColor
}

.link-dotted {
    text-decoration: underline;
    -webkit-text-decoration-style: dotted;
    text-decoration-style: dotted;
    -webkit-text-decoration-skip: unset;
    text-decoration-skip: unset
}

.hover-link-solid:hover {
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid
}

.link-underline-dark {
    text-decoration: underline;
    -webkit-text-decoration-color: rgba(0, 0, 0, 0.15);
    text-decoration-color: rgba(0, 0, 0, 0.15)
}

.link-underline-dark:hover {
    -webkit-text-decoration-color: initial;
    text-decoration-color: initial
}

.link-underline-light {
    text-decoration: underline;
    -webkit-text-decoration-color: rgba(255, 255, 255, 0.25);
    text-decoration-color: rgba(255, 255, 255, 0.25)
}

.link-underline-light:hover {
    -webkit-text-decoration-color: initial;
    text-decoration-color: initial
}

.list {
    list-style-type: none
}

.list-position-inside {
    list-style-position: inside
}

.list-position-outside {
    list-style-position: outside
}

.list-custom li {
    counter-increment: step-counter
}

.list-custom li:before {
    content: counter(step-counter);
    position: absolute;
    top: 0.25rem;
    left: 0;
    width: 2rem;
    height: 100%;
    opacity: 0.15;
    padding-right: 1em;
    border-right: 1px solid;
    text-align: right;
    font-weight: 600;
    line-height: 1.1
}

.mw-100 {
    max-width: 100%
}

.mw1 {
    max-width: 16rem
}

.mw2 {
    max-width: 20rem
}

.mw3 {
    max-width: 25rem
}

.mw4 {
    max-width: 31.25rem
}

.mw5 {
    max-width: 39.0625rem
}

.mw6 {
    max-width: 48.82812rem
}

.mw7 {
    max-width: 61.03516rem
}

.mw8 {
    max-width: 76.29395rem
}

.mw9 {
    max-width: 95.36743rem
}

.mw-none {
    max-width: none
}

@media screen and (min-width: 30em) {
    .mw-100-ns {
        max-width: 100%
    }
    .mw1-ns {
        max-width: 16rem
    }
    .mw2-ns {
        max-width: 20rem
    }
    .mw3-ns {
        max-width: 25rem
    }
    .mw4-ns {
        max-width: 31.25rem
    }
    .mw5-ns {
        max-width: 39.0625rem
    }
    .mw6-ns {
        max-width: 48.82812rem
    }
    .mw7-ns {
        max-width: 61.03516rem
    }
    .mw8-ns {
        max-width: 76.29395rem
    }
    .mw9-ns {
        max-width: 95.36743rem
    }
    .mw-none-ns {
        max-width: none
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .mw-100-m {
        max-width: 100%
    }
    .mw1-m {
        max-width: 16rem
    }
    .mw2-m {
        max-width: 20rem
    }
    .mw3-m {
        max-width: 25rem
    }
    .mw4-m {
        max-width: 31.25rem
    }
    .mw5-m {
        max-width: 39.0625rem
    }
    .mw6-m {
        max-width: 48.82812rem
    }
    .mw7-m {
        max-width: 61.03516rem
    }
    .mw8-m {
        max-width: 76.29395rem
    }
    .mw9-m {
        max-width: 95.36743rem
    }
    .mw-none-m {
        max-width: none
    }
}

@media screen and (min-width: 60em) {
    .mw-100-l {
        max-width: 100%
    }
    .mw1-l {
        max-width: 16rem
    }
    .mw2-l {
        max-width: 20rem
    }
    .mw3-l {
        max-width: 25rem
    }
    .mw4-l {
        max-width: 31.25rem
    }
    .mw5-l {
        max-width: 39.0625rem
    }
    .mw6-l {
        max-width: 48.82812rem
    }
    .mw7-l {
        max-width: 61.03516rem
    }
    .mw8-l {
        max-width: 76.29395rem
    }
    .mw9-l {
        max-width: 95.36743rem
    }
    .mw-none-l {
        max-width: none
    }
}

@media screen and (min-width: 77.5rem) {
    .mw-100-xl {
        max-width: 100%
    }
    .mw1-xl {
        max-width: 16rem
    }
    .mw2-xl {
        max-width: 20rem
    }
    .mw3-xl {
        max-width: 25rem
    }
    .mw4-xl {
        max-width: 31.25rem
    }
    .mw5-xl {
        max-width: 39.0625rem
    }
    .mw6-xl {
        max-width: 48.82812rem
    }
    .mw7-xl {
        max-width: 61.03516rem
    }
    .mw8-xl {
        max-width: 76.29395rem
    }
    .mw9-xl {
        max-width: 95.36743rem
    }
    .mw-none-xl {
        max-width: none
    }
}

@media screen and (min-width: 91.25rem) {
    .mw-100-2x {
        max-width: 100%
    }
    .mw1-2x {
        max-width: 16rem
    }
    .mw2-2x {
        max-width: 20rem
    }
    .mw3-2x {
        max-width: 25rem
    }
    .mw4-2x {
        max-width: 31.25rem
    }
    .mw5-2x {
        max-width: 39.0625rem
    }
    .mw6-2x {
        max-width: 48.82812rem
    }
    .mw7-2x {
        max-width: 61.03516rem
    }
    .mw8-2x {
        max-width: 76.29395rem
    }
    .mw9-2x {
        max-width: 95.36743rem
    }
    .mw-none-2x {
        max-width: none
    }
}

.w1 {
    width: 1rem
}

.w2 {
    width: 2rem
}

.w3 {
    width: 4rem
}

.w4 {
    width: 8rem
}

.w5 {
    width: 16rem
}

.w-5 {
    width: 5%
}

.w-10 {
    width: 10%
}

.w-20 {
    width: 20%
}

.w-25 {
    width: 25%
}

.w-30 {
    width: 30%
}

.w-33 {
    width: 33%
}

.w-34 {
    width: 34%
}

.w-40 {
    width: 40%
}

.w-50 {
    width: 50%
}

.w-60 {
    width: 60%
}

.w-70 {
    width: 70%
}

.w-75 {
    width: 75%
}

.w-80 {
    width: 80%
}

.w-90 {
    width: 90%
}

.w-95 {
    width: 95%
}

.w-100 {
    width: 100%
}

.w-third {
    width: 33.33333%
}

.w-two-thirds {
    width: 66.66667%
}

.w-auto {
    width: auto
}

@media screen and (min-width: 30em) {
    .w1-ns {
        width: 1rem
    }
    .w2-ns {
        width: 2rem
    }
    .w3-ns {
        width: 4rem
    }
    .w4-ns {
        width: 8rem
    }
    .w5-ns {
        width: 16rem
    }
    .w-5-ns {
        width: 5%
    }
    .w-10-ns {
        width: 10%
    }
    .w-20-ns {
        width: 20%
    }
    .w-25-ns {
        width: 25%
    }
    .w-30-ns {
        width: 30%
    }
    .w-33-ns {
        width: 33%
    }
    .w-34-ns {
        width: 34%
    }
    .w-40-ns {
        width: 40%
    }
    .w-50-ns {
        width: 50%
    }
    .w-60-ns {
        width: 60%
    }
    .w-70-ns {
        width: 70%
    }
    .w-75-ns {
        width: 75%
    }
    .w-80-ns {
        width: 80%
    }
    .w-90-ns {
        width: 90%
    }
    .w-95-ns {
        width: 95%
    }
    .w-100-ns {
        width: 100%
    }
    .w-third-ns {
        width: 33.33333%
    }
    .w-two-thirds-ns {
        width: 66.66667%
    }
    .w-auto-ns {
        width: auto
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .w1-m {
        width: 1rem
    }
    .w2-m {
        width: 2rem
    }
    .w3-m {
        width: 4rem
    }
    .w4-m {
        width: 8rem
    }
    .w5-m {
        width: 16rem
    }
    .w-5-m {
        width: 5%
    }
    .w-10-m {
        width: 10%
    }
    .w-20-m {
        width: 20%
    }
    .w-25-m {
        width: 25%
    }
    .w-30-m {
        width: 30%
    }
    .w-33-m {
        width: 33%
    }
    .w-34-m {
        width: 34%
    }
    .w-40-m {
        width: 40%
    }
    .w-50-m {
        width: 50%
    }
    .w-60-m {
        width: 60%
    }
    .w-70-m {
        width: 70%
    }
    .w-75-m {
        width: 75%
    }
    .w-80-m {
        width: 80%
    }
    .w-90-m {
        width: 90%
    }
    .w-95-m {
        width: 95%
    }
    .w-100-m {
        width: 100%
    }
    .w-third-m {
        width: 33.33333%
    }
    .w-two-thirds-m {
        width: 66.66667%
    }
    .w-auto-m {
        width: auto
    }
}

@media screen and (min-width: 60em) {
    .w1-l {
        width: 1rem
    }
    .w2-l {
        width: 2rem
    }
    .w3-l {
        width: 4rem
    }
    .w4-l {
        width: 8rem
    }
    .w5-l {
        width: 16rem
    }
    .w-5-l {
        width: 5%
    }
    .w-10-l {
        width: 10%
    }
    .w-20-l {
        width: 20%
    }
    .w-25-l {
        width: 25%
    }
    .w-30-l {
        width: 30%
    }
    .w-33-l {
        width: 33%
    }
    .w-34-l {
        width: 34%
    }
    .w-40-l {
        width: 40%
    }
    .w-50-l {
        width: 50%
    }
    .w-60-l {
        width: 60%
    }
    .w-70-l {
        width: 70%
    }
    .w-75-l {
        width: 75%
    }
    .w-80-l {
        width: 80%
    }
    .w-90-l {
        width: 90%
    }
    .w-95-l {
        width: 95%
    }
    .w-100-l {
        width: 100%
    }
    .w-third-l {
        width: 33.33333%
    }
    .w-two-thirds-l {
        width: 66.66667%
    }
    .w-auto-l {
        width: auto
    }
}

.w6 {
    width: 32rem
}

.w7 {
    width: 64rem
}

.w8 {
    width: 128rem
}

.w025 {
    width: 0.25rem
}

.w050 {
    width: 0.5rem
}

.w075 {
    width: 0.75rem
}

.w-0 {
    width: 0
}

.w-1 {
    width: 1%
}

.w-15 {
    width: 15%
}

.w-24 {
    width: 24%
}

.w-32 {
    width: 32%
}

.w-45 {
    width: 45%
}

.w-49 {
    width: 49%
}

.w-85 {
    width: 85%
}

.w-grid-2 {
    width: calc(100%/2)
}

.w-grid-3 {
    width: calc(100%/3)
}

.w-grid-4 {
    width: calc(100%/4)
}

.w-grid-6 {
    width: calc(100%/6)
}

.w-grid-8 {
    width: calc(100%/8)
}

.w-grid-9 {
    width: calc(100%/9)
}

.w-grid-10 {
    width: calc(100%/10)
}

.w-grid-12 {
    width: calc(100%/12)
}

.w-grid-16 {
    width: calc(100%/16)
}

.w-grid-20 {
    width: calc(100%/20)
}

.w-grid-24 {
    width: calc(100%/24)
}

.w-grid-32 {
    width: calc(100%/32)
}

@media screen and (min-width: 30em) {
    .w6-ns {
        width: 32rem
    }
    .w7-ns {
        width: 64rem
    }
    .w8-ns {
        width: 128rem
    }
    .w025-ns {
        width: 0.25rem
    }
    .w050-ns {
        width: 0.5rem
    }
    .w075-ns {
        width: 0.75rem
    }
    .w-0-ns {
        width: 0
    }
    .w-15-ns {
        width: 15%
    }
    .w-24-ns {
        width: 24%
    }
    .w-32-ns {
        width: 32%
    }
    .w-45-ns {
        width: 45%
    }
    .w-49-ns {
        width: 49%
    }
    .w-85-ns {
        width: 85%
    }
    .w-grid-2-ns {
        width: calc(100%/2)
    }
    .w-grid-3-ns {
        width: calc(100%/3)
    }
    .w-grid-4-ns {
        width: calc(100%/4)
    }
    .w-grid-6-ns {
        width: calc(100%/6)
    }
    .w-grid-8-ns {
        width: calc(100%/8)
    }
    .w-grid-9-ns {
        width: calc(100%/9)
    }
    .w-grid-10-ns {
        width: calc(100%/10)
    }
    .w-grid-12-ns {
        width: calc(100%/12)
    }
    .w-grid-16-ns {
        width: calc(100%/16)
    }
    .w-grid-20-ns {
        width: calc(100%/20)
    }
    .w-grid-24-ns {
        width: calc(100%/24)
    }
    .w-grid-32-ns {
        width: calc(100%/32)
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .w6-m {
        width: 32rem
    }
    .w7-m {
        width: 64rem
    }
    .w8-m {
        width: 128rem
    }
    .w025-m {
        width: 0.25rem
    }
    .w050-m {
        width: 0.5rem
    }
    .w075-m {
        width: 0.75rem
    }
    .w-0-m {
        width: 0
    }
    .w-15-m {
        width: 15%
    }
    .w-24-m {
        width: 24%
    }
    .w-32-m {
        width: 32%
    }
    .w-45-m {
        width: 45%
    }
    .w-49-m {
        width: 49%
    }
    .w-85-m {
        width: 85%
    }
    .w-grid-2-m {
        width: calc(100%/2)
    }
    .w-grid-3-m {
        width: calc(100%/3)
    }
    .w-grid-4-m {
        width: calc(100%/4)
    }
    .w-grid-6-m {
        width: calc(100%/6)
    }
    .w-grid-8-m {
        width: calc(100%/8)
    }
    .w-grid-9-m {
        width: calc(100%/9)
    }
    .w-grid-10-m {
        width: calc(100%/10)
    }
    .w-grid-12-m {
        width: calc(100%/12)
    }
    .w-grid-16-m {
        width: calc(100%/16)
    }
    .w-grid-20-m {
        width: calc(100%/20)
    }
    .w-grid-24-m {
        width: calc(100%/24)
    }
    .w-grid-32-m {
        width: calc(100%/32)
    }
}

@media screen and (min-width: 60em) {
    .w6-l {
        width: 32rem
    }
    .w7-l {
        width: 64rem
    }
    .w8-l {
        width: 128rem
    }
    .w025-l {
        width: 0.25rem
    }
    .w050-l {
        width: 0.5rem
    }
    .w075-l {
        width: 0.75rem
    }
    .w-0-l {
        width: 0
    }
    .w-15-l {
        width: 15%
    }
    .w-24-l {
        width: 24%
    }
    .w-32-l {
        width: 32%
    }
    .w-45-l {
        width: 45%
    }
    .w-49-l {
        width: 49%
    }
    .w-85-l {
        width: 85%
    }
    .w-grid-2-l {
        width: calc(100%/2)
    }
    .w-grid-3-l {
        width: calc(100%/3)
    }
    .w-grid-4-l {
        width: calc(100%/4)
    }
    .w-grid-4-l {
        width: calc(100%/4)
    }
    .w-grid-6-l {
        width: calc(100%/6)
    }
    .w-grid-8-l {
        width: calc(100%/8)
    }
    .w-grid-9-l {
        width: calc(100%/9)
    }
    .w-grid-10-l {
        width: calc(100%/10)
    }
    .w-grid-12-l {
        width: calc(100%/12)
    }
    .w-grid-16-l {
        width: calc(100%/16)
    }
    .w-grid-20-l {
        width: calc(100%/20)
    }
    .w-grid-24-l {
        width: calc(100%/24)
    }
    .w-grid-32-l {
        width: calc(100%/32)
    }
}

@media screen and (min-width: 77.5rem) {
    .w1-xl {
        width: 1rem
    }
    .w2-xl {
        width: 2rem
    }
    .w3-xl {
        width: 4rem
    }
    .w4-xl {
        width: 8rem
    }
    .w5-xl {
        width: 16rem
    }
    .w-10-xl {
        width: 10%
    }
    .w-20-xl {
        width: 20%
    }
    .w-25-xl {
        width: 25%
    }
    .w-30-xl {
        width: 30%
    }
    .w-33-xl {
        width: 33%
    }
    .w-34-xl {
        width: 34%
    }
    .w-40-xl {
        width: 40%
    }
    .w-50-xl {
        width: 50%
    }
    .w-60-xl {
        width: 60%
    }
    .w-70-xl {
        width: 70%
    }
    .w-75-xl {
        width: 75%
    }
    .w-80-xl {
        width: 80%
    }
    .w-90-xl {
        width: 90%
    }
    .w-100-xl {
        width: 100%
    }
    .w-third-xl {
        width: 33.33333%
    }
    .w-two-thirds-xl {
        width: 66.66667%
    }
    .w-auto-xl {
        width: auto
    }
    .w6-xl {
        width: 32rem
    }
    .w7-xl {
        width: 64rem
    }
    .w8-xl {
        width: 128rem
    }
    .w025-xl {
        width: 0.25rem
    }
    .w050-xl {
        width: 0.5rem
    }
    .w075-xl {
        width: 0.75rem
    }
    .w-0-xl {
        width: 0
    }
    .w-1-xl {
        width: 1%
    }
    .w-15-xl {
        width: 15%
    }
    .w-24-xl {
        width: 24%
    }
    .w-45-xl {
        width: 45%
    }
    .w-49-xl {
        width: 49%
    }
    .w-85-xl {
        width: 85%
    }
    .w-grid-2-xl {
        width: calc(100%/2)
    }
    .w-grid-3-xl {
        width: calc(100%/3)
    }
    .w-grid-4-xl {
        width: calc(100%/4)
    }
    .w-grid-6-xl {
        width: calc(100%/6)
    }
    .w-grid-8-xl {
        width: calc(100%/8)
    }
    .w-grid-9-xl {
        width: calc(100%/9)
    }
    .w-grid-10-xl {
        width: calc(100%/10)
    }
    .w-grid-12-xl {
        width: calc(100%/12)
    }
    .w-grid-16-xl {
        width: calc(100%/16)
    }
    .w-grid-20-xl {
        width: calc(100%/20)
    }
    .w-grid-24-xl {
        width: calc(100%/24)
    }
    .w-grid-32-xl {
        width: calc(100%/32)
    }
}

@media screen and (min-width: 91.25rem) {
    .w1-2x {
        width: 1rem
    }
    .w2-2x {
        width: 2rem
    }
    .w3-2x {
        width: 4rem
    }
    .w4-2x {
        width: 8rem
    }
    .w5-2x {
        width: 16rem
    }
    .w-10-2x {
        width: 10%
    }
    .w-20-2x {
        width: 20%
    }
    .w-25-2x {
        width: 25%
    }
    .w-30-2x {
        width: 30%
    }
    .w-33-2x {
        width: 33%
    }
    .w-34-2x {
        width: 34%
    }
    .w-40-2x {
        width: 40%
    }
    .w-50-2x {
        width: 50%
    }
    .w-60-2x {
        width: 60%
    }
    .w-70-2x {
        width: 70%
    }
    .w-75-2x {
        width: 75%
    }
    .w-80-2x {
        width: 80%
    }
    .w-90-2x {
        width: 90%
    }
    .w-100-2x {
        width: 100%
    }
    .w-third-2x {
        width: 33.33333%
    }
    .w-two-thirds-2x {
        width: 66.66667%
    }
    .w-auto-2x {
        width: auto
    }
    .w6-2x {
        width: 32rem
    }
    .w7-2x {
        width: 64rem
    }
    .w8-2x {
        width: 128rem
    }
    .w025-2x {
        width: 0.25rem
    }
    .w050-2x {
        width: 0.5rem
    }
    .w075-2x {
        width: 0.75rem
    }
    .w-0-2x {
        width: 0
    }
    .w-1-2x {
        width: 1%
    }
    .w-15-2x {
        width: 15%
    }
    .w-24-2x {
        width: 24%
    }
    .w-45-2x {
        width: 45%
    }
    .w-49-2x {
        width: 49%
    }
    .w-85-2x {
        width: 85%
    }
    .w-grid-2-2x {
        width: calc(100%/2)
    }
    .w-grid-3-2x {
        width: calc(100%/3)
    }
    .w-grid-4-2x {
        width: calc(100%/4)
    }
    .w-grid-6-2x {
        width: calc(100%/6)
    }
    .w-grid-8-2x {
        width: calc(100%/8)
    }
    .w-grid-9-2x {
        width: calc(100%/9)
    }
    .w-grid-10-2x {
        width: calc(100%/10)
    }
    .w-grid-12-2x {
        width: calc(100%/12)
    }
    .w-grid-16-2x {
        width: calc(100%/16)
    }
    .w-grid-20-2x {
        width: calc(100%/20)
    }
    .w-grid-24-2x {
        width: calc(100%/24)
    }
    .w-grid-32-2x {
        width: calc(100%/32)
    }
}

.overflow-visible {
    overflow: visible
}

.overflow-hidden {
    overflow: hidden
}

.overflow-scroll {
    overflow: scroll
}

.overflow-auto {
    overflow: auto
}

.overflow-x-visible {
    overflow-x: visible
}

.overflow-x-hidden {
    overflow-x: hidden
}

.overflow-x-scroll {
    overflow-x: scroll
}

.overflow-x-auto {
    overflow-x: auto
}

.overflow-y-visible {
    overflow-y: visible
}

.overflow-y-hidden {
    overflow-y: hidden
}

.overflow-y-scroll {
    overflow-y: scroll
}

.overflow-y-auto {
    overflow-y: auto
}

@media screen and (min-width: 30em) {
    .overflow-visible-ns {
        overflow: visible
    }
    .overflow-hidden-ns {
        overflow: hidden
    }
    .overflow-scroll-ns {
        overflow: scroll
    }
    .overflow-auto-ns {
        overflow: auto
    }
    .overflow-x-visible-ns {
        overflow-x: visible
    }
    .overflow-x-hidden-ns {
        overflow-x: hidden
    }
    .overflow-x-scroll-ns {
        overflow-x: scroll
    }
    .overflow-x-auto-ns {
        overflow-x: auto
    }
    .overflow-y-visible-ns {
        overflow-y: visible
    }
    .overflow-y-hidden-ns {
        overflow-y: hidden
    }
    .overflow-y-scroll-ns {
        overflow-y: scroll
    }
    .overflow-y-auto-ns {
        overflow-y: auto
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .overflow-visible-m {
        overflow: visible
    }
    .overflow-hidden-m {
        overflow: hidden
    }
    .overflow-scroll-m {
        overflow: scroll
    }
    .overflow-auto-m {
        overflow: auto
    }
    .overflow-x-visible-m {
        overflow-x: visible
    }
    .overflow-x-hidden-m {
        overflow-x: hidden
    }
    .overflow-x-scroll-m {
        overflow-x: scroll
    }
    .overflow-x-auto-m {
        overflow-x: auto
    }
    .overflow-y-visible-m {
        overflow-y: visible
    }
    .overflow-y-hidden-m {
        overflow-y: hidden
    }
    .overflow-y-scroll-m {
        overflow-y: scroll
    }
    .overflow-y-auto-m {
        overflow-y: auto
    }
}

@media screen and (min-width: 60em) {
    .overflow-visible-l {
        overflow: visible
    }
    .overflow-hidden-l {
        overflow: hidden
    }
    .overflow-scroll-l {
        overflow: scroll
    }
    .overflow-auto-l {
        overflow: auto
    }
    .overflow-x-visible-l {
        overflow-x: visible
    }
    .overflow-x-hidden-l {
        overflow-x: hidden
    }
    .overflow-x-scroll-l {
        overflow-x: scroll
    }
    .overflow-x-auto-l {
        overflow-x: auto
    }
    .overflow-y-visible-l {
        overflow-y: visible
    }
    .overflow-y-hidden-l {
        overflow-y: hidden
    }
    .overflow-y-scroll-l {
        overflow-y: scroll
    }
    .overflow-y-auto-l {
        overflow-y: auto
    }
}

.static {
    position: static
}

.relative {
    position: relative
}

.absolute {
    position: absolute
}

.fixed {
    position: fixed
}

@media screen and (min-width: 30em) {
    .static-ns {
        position: static
    }
    .relative-ns {
        position: relative
    }
    .absolute-ns {
        position: absolute
    }
    .fixed-ns {
        position: fixed
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .static-m {
        position: static
    }
    .relative-m {
        position: relative
    }
    .absolute-m {
        position: absolute
    }
    .fixed-m {
        position: fixed
    }
}

@media screen and (min-width: 60em) {
    .static-l {
        position: static
    }
    .relative-l {
        position: relative
    }
    .absolute-l {
        position: absolute
    }
    .fixed-l {
        position: fixed
    }
}

.sticky {
    position: -webkit-sticky;
    position: sticky
}

@media screen and (min-width: 30em) {
    .sticky-ns {
        position: -webkit-sticky;
        position: sticky
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .sticky-m {
        position: -webkit-sticky;
        position: sticky
    }
}

@media screen and (min-width: 60em) {
    .sticky-l {
        position: -webkit-sticky;
        position: sticky
    }
}

@media screen and (min-width: 77.5rem) {
    .static-xl {
        position: static
    }
    .relative-xl {
        position: relative
    }
    .absolute-xl {
        position: absolute
    }
    .fixed-xl {
        position: fixed
    }
    .sticky-xl {
        position: -webkit-sticky;
        position: sticky
    }
}

@media screen and (min-width: 91.25rem) {
    .static-2x {
        position: static
    }
    .relative-2x {
        position: relative
    }
    .absolute-2x {
        position: absolute
    }
    .fixed-2x {
        position: fixed
    }
    .sticky-2x {
        position: -webkit-sticky;
        position: sticky
    }
}

.o-100 {
    opacity: 1
}

.o-90 {
    opacity: .9
}

.o-80 {
    opacity: .8
}

.o-70 {
    opacity: .7
}

.o-60 {
    opacity: .6
}

.o-50 {
    opacity: .5
}

.o-40 {
    opacity: .4
}

.o-30 {
    opacity: .3
}

.o-20 {
    opacity: .2
}

.o-10 {
    opacity: .1
}

.o-05 {
    opacity: .05
}

.o-025 {
    opacity: .025
}

.o-0 {
    opacity: 0
}

.o-75 {
    opacity: .75
}

.o-25 {
    opacity: .25
}

.o-15 {
    opacity: .15
}

.o-0125 {
    opacity: .0125
}

.rotate-45 {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.rotate-90 {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.rotate-135 {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg)
}

.rotate-180 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.rotate-225 {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg)
}

.rotate-270 {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

.rotate-315 {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg)
}

@media screen and (min-width: 30em) {
    .rotate-45-ns {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }
    .rotate-90-ns {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }
    .rotate-135-ns {
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg)
    }
    .rotate-180-ns {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }
    .rotate-225-ns {
        -webkit-transform: rotate(225deg);
        transform: rotate(225deg)
    }
    .rotate-270-ns {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg)
    }
    .rotate-315-ns {
        -webkit-transform: rotate(315deg);
        transform: rotate(315deg)
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .rotate-45-m {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }
    .rotate-90-m {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }
    .rotate-135-m {
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg)
    }
    .rotate-180-m {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }
    .rotate-225-m {
        -webkit-transform: rotate(225deg);
        transform: rotate(225deg)
    }
    .rotate-270-m {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg)
    }
    .rotate-315-m {
        -webkit-transform: rotate(315deg);
        transform: rotate(315deg)
    }
}

@media screen and (min-width: 60em) {
    .rotate-45-l {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }
    .rotate-90-l {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }
    .rotate-135-l {
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg)
    }
    .rotate-180-l {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }
    .rotate-225-l {
        -webkit-transform: rotate(225deg);
        transform: rotate(225deg)
    }
    .rotate-270-l {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg)
    }
    .rotate-315-l {
        -webkit-transform: rotate(315deg);
        transform: rotate(315deg)
    }
}

.color-inherit {
    color: inherit
}

.black-90 {
    color: rgba(0, 0, 0, 0.9)
}

.black-80 {
    color: rgba(0, 0, 0, 0.8)
}

.black-70 {
    color: rgba(0, 0, 0, 0.7)
}

.black-60 {
    color: rgba(0, 0, 0, 0.6)
}

.black-50 {
    color: rgba(0, 0, 0, 0.5)
}

.black-40 {
    color: rgba(0, 0, 0, 0.4)
}

.black-30 {
    color: rgba(0, 0, 0, 0.3)
}

.black-20 {
    color: rgba(0, 0, 0, 0.2)
}

.black-15 {
    color: rgba(0, 0, 0, 0.15)
}

.black-10 {
    color: rgba(0, 0, 0, 0.1)
}

.black-05 {
    color: rgba(0, 0, 0, 0.05)
}

.white-90 {
    color: rgba(255, 255, 255, 0.9)
}

.white-80 {
    color: rgba(255, 255, 255, 0.8)
}

.white-70 {
    color: rgba(255, 255, 255, 0.7)
}

.white-60 {
    color: rgba(255, 255, 255, 0.6)
}

.white-50 {
    color: rgba(255, 255, 255, 0.5)
}

.white-40 {
    color: rgba(255, 255, 255, 0.4)
}

.white-30 {
    color: rgba(255, 255, 255, 0.3)
}

.white-20 {
    color: rgba(255, 255, 255, 0.2)
}

.white-10 {
    color: rgba(255, 255, 255, 0.1)
}

.white-05 {
    color: rgba(255, 255, 255, 0.05)
}

.black {
    color: #000
}

.near-black {
    color: #212529
}

.dark-gray {
    color: #868e96
}

.mid-gray {
    color: #495057
}

.gray {
    color: #adb5bd
}

.silver {
    color: #adb5bd
}

.light-silver {
    color: #ced4da
}

.moon-gray {
    color: #dee2e6
}

.light-gray {
    color: #ced4da
}

.near-white {
    color: #f8f9fa
}

.white {
    color: #fff
}

.dark-red {
    color: #f03e3e
}

.red {
    color: #fa5252
}

.light-red {
    color: #ff8787
}

.orange {
    color: #fd7e14
}

.gold {
    color: #fcc419
}

.yellow {
    color: #ffd43b
}

.light-yellow {
    color: #ffe066
}

.purple {
    color: #7950f2
}

.light-purple {
    color: #9775fa
}

.dark-pink {
    color: #f06595
}

.hot-pink {
    color: #c2255c
}

.pink {
    color: #f783ac
}

.light-pink {
    color: #faa2c1
}

.dark-green {
    color: #37b24d
}

.green {
    color: #40c057
}

.light-green {
    color: #69db7c
}

.navy {
    color: #1864ab
}

.dark-blue {
    color: #1c7ed6
}

.blue {
    color: #228be6
}

.light-blue {
    color: #4dabf7
}

.lightest-blue {
    color: #d0ebff
}

.washed-blue {
    color: #e7f5ff
}

.washed-green {
    color: #ebfbee
}

.washed-yellow {
    color: #fff9db
}

.washed-red {
    color: #fff5f5
}

.bg-black-90 {
    background-color: rgba(0, 0, 0, 0.9)
}

.bg-black-80 {
    background-color: rgba(0, 0, 0, 0.8)
}

.bg-black-70 {
    background-color: rgba(0, 0, 0, 0.7)
}

.bg-black-60 {
    background-color: rgba(0, 0, 0, 0.6)
}

.bg-black-50 {
    background-color: rgba(0, 0, 0, 0.5)
}

.bg-black-40 {
    background-color: rgba(0, 0, 0, 0.4)
}

.bg-black-30 {
    background-color: rgba(0, 0, 0, 0.3)
}

.bg-black-20 {
    background-color: rgba(0, 0, 0, 0.2)
}

.bg-black-15 {
    background-color: rgba(0, 0, 0, 0.15)
}

.bg-black-10 {
    background-color: rgba(0, 0, 0, 0.1)
}

.bg-black-05 {
    background-color: rgba(0, 0, 0, 0.05)
}

.bg-white-90 {
    background-color: rgba(255, 255, 255, 0.9)
}

.bg-white-80 {
    background-color: rgba(255, 255, 255, 0.8)
}

.bg-white-70 {
    background-color: rgba(255, 255, 255, 0.7)
}

.bg-white-60 {
    background-color: rgba(255, 255, 255, 0.6)
}

.bg-white-50 {
    background-color: rgba(255, 255, 255, 0.5)
}

.bg-white-40 {
    background-color: rgba(255, 255, 255, 0.4)
}

.bg-white-30 {
    background-color: rgba(255, 255, 255, 0.3)
}

.bg-white-20 {
    background-color: rgba(255, 255, 255, 0.2)
}

.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.1)
}

.bg-white-05 {
    background-color: rgba(255, 255, 255, 0.05)
}

.bg-black {
    background-color: #000
}

.bg-near-black {
    background-color: #212529
}

.bg-dark-gray {
    background-color: #868e96
}

.bg-mid-gray {
    background-color: #495057
}

.bg-gray {
    background-color: #adb5bd
}

.bg-silver {
    background-color: #adb5bd
}

.bg-light-silver {
    background-color: #ced4da
}

.bg-moon-gray {
    background-color: #dee2e6
}

.bg-light-gray {
    background-color: #ced4da
}

.bg-near-white {
    background-color: #f8f9fa
}

.bg-white {
    background-color: #fff
}

.bg-transparent {
    background-color: rgba(0, 0, 0, 0)
}

.bg-dark-red {
    background-color: #f03e3e
}

.bg-red {
    background-color: #fa5252
}

.bg-light-red {
    background-color: #ff8787
}

.bg-orange {
    background-color: #fd7e14
}

.bg-gold {
    background-color: #fcc419
}

.bg-yellow {
    background-color: #ffd43b
}

.bg-light-yellow {
    background-color: #ffe066
}

.bg-purple {
    background-color: #7950f2
}

.bg-light-purple {
    background-color: #9775fa
}

.bg-dark-pink {
    background-color: #f06595
}

.bg-hot-pink {
    background-color: #c2255c
}

.bg-pink {
    background-color: #f783ac
}

.bg-light-pink {
    background-color: #faa2c1
}

.bg-dark-green {
    background-color: #37b24d
}

.bg-green {
    background-color: #40c057
}

.bg-light-green {
    background-color: #69db7c
}

.bg-navy {
    background-color: #1864ab
}

.bg-dark-blue {
    background-color: #1c7ed6
}

.bg-blue {
    background-color: #228be6
}

.bg-light-blue {
    background-color: #4dabf7
}

.bg-lightest-blue {
    background-color: #d0ebff
}

.bg-washed-blue {
    background-color: #e7f5ff
}

.bg-washed-green {
    background-color: #ebfbee
}

.bg-washed-yellow {
    background-color: #fff9db
}

.bg-washed-red {
    background-color: #fff5f5
}

.bg-inherit {
    background-color: inherit
}

.gray0 {
    color: #f8f9fa
}

.gray1 {
    color: #f1f3f5
}

.gray2 {
    color: #e9ecef
}

.gray3 {
    color: #dee2e6
}

.gray4 {
    color: #ced4da
}

.gray5 {
    color: #adb5bd
}

.gray6 {
    color: #868e96
}

.gray7 {
    color: #495057
}

.gray8 {
    color: #343a40
}

.gray9 {
    color: #212529
}

.red {
    color: #fa5252
}

.red0 {
    color: #fff5f5
}

.red1 {
    color: #ffe3e3
}

.red2 {
    color: #ffc9c9
}

.red3 {
    color: #ffa8a8
}

.red4 {
    color: #ff8787
}

.red5 {
    color: #ff6b6b
}

.red6 {
    color: #fa5252
}

.red7 {
    color: #f03e3e
}

.red8 {
    color: #e03131
}

.red9 {
    color: #c92a2a
}

.orange {
    color: #fd7e14
}

.orange0 {
    color: #fff4e6
}

.orange1 {
    color: #ffe8cc
}

.orange2 {
    color: #ffd8a8
}

.orange3 {
    color: #ffc078
}

.orange4 {
    color: #ffa94d
}

.orange5 {
    color: #ff922b
}

.orange6 {
    color: #fd7e14
}

.orange7 {
    color: #f76707
}

.orange8 {
    color: #e8590c
}

.orange9 {
    color: #d9480f
}

.yellow {
    color: #ffd43b
}

.yellow0 {
    color: #fff9db
}

.yellow1 {
    color: #fff3bf
}

.yellow2 {
    color: #ffec99
}

.yellow3 {
    color: #ffe066
}

.yellow4 {
    color: #ffd43b
}

.yellow5 {
    color: #fcc419
}

.yellow6 {
    color: #fab005
}

.yellow7 {
    color: #f59f00
}

.yellow8 {
    color: #f08c00
}

.yellow9 {
    color: #e67700
}

.green {
    color: #40c057
}

.green0 {
    color: #ebfbee
}

.green1 {
    color: #d3f9d8
}

.green2 {
    color: #b2f2bb
}

.green3 {
    color: #8ce99a
}

.green4 {
    color: #69db7c
}

.green5 {
    color: #51cf66
}

.green6 {
    color: #40c057
}

.green7 {
    color: #37b24d
}

.green8 {
    color: #2f9e44
}

.green9 {
    color: #2b8a3e
}

.lime {
    color: #82c91e
}

.lime0 {
    color: #f4fce3
}

.lime1 {
    color: #e9fac8
}

.lime2 {
    color: #d8f5a2
}

.lime3 {
    color: #c0eb75
}

.lime4 {
    color: #a9e34b
}

.lime5 {
    color: #94d82d
}

.lime6 {
    color: #82c91e
}

.lime7 {
    color: #74b816
}

.lime8 {
    color: #66a80f
}

.lime9 {
    color: #5c940d
}

.teal {
    color: #12b886
}

.teal0 {
    color: #e6fcf5
}

.teal1 {
    color: #c3fae8
}

.teal2 {
    color: #96f2d7
}

.teal3 {
    color: #63e6be
}

.teal4 {
    color: #38d9a9
}

.teal5 {
    color: #20c997
}

.teal6 {
    color: #12b886
}

.teal7 {
    color: #0ca678
}

.teal8 {
    color: #099268
}

.teal9 {
    color: #087f5b
}

.cyan {
    color: #15aabf
}

.cyan0 {
    color: #e3fafc
}

.cyan1 {
    color: #c5f6fa
}

.cyan2 {
    color: #99e9f2
}

.cyan3 {
    color: #66d9e8
}

.cyan4 {
    color: #3bc9db
}

.cyan5 {
    color: #22b8cf
}

.cyan6 {
    color: #15aabf
}

.cyan7 {
    color: #1098ad
}

.cyan8 {
    color: #0c8599
}

.cyan9 {
    color: #0b7285
}

.blue {
    color: #228be6
}

.blue0 {
    color: #e7f5ff
}

.blue1 {
    color: #d0ebff
}

.blue2 {
    color: #a5d8ff
}

.blue3 {
    color: #74c0fc
}

.blue4 {
    color: #4dabf7
}

.blue5 {
    color: #339af0
}

.blue6 {
    color: #228be6
}

.blue7 {
    color: #1c7ed6
}

.blue8 {
    color: #1971c2
}

.blue9 {
    color: #1864ab
}

.blue10 {
    color: #155592
}

.indigo {
    color: #4c6ef5
}

.indigo0 {
    color: #edf2ff
}

.indigo1 {
    color: #dbe4ff
}

.indigo2 {
    color: #bac8ff
}

.indigo3 {
    color: #91a7ff
}

.indigo4 {
    color: #748ffc
}

.indigo5 {
    color: #5c7cfa
}

.indigo6 {
    color: #4c6ef5
}

.indigo7 {
    color: #4263eb
}

.indigo8 {
    color: #3b5bdb
}

.indigo9 {
    color: #364fc7
}

.violet {
    color: #7950f2
}

.violet0 {
    color: #f3f0ff
}

.violet1 {
    color: #e5dbff
}

.violet2 {
    color: #d0bfff
}

.violet3 {
    color: #b197fc
}

.violet4 {
    color: #9775fa
}

.violet5 {
    color: #845ef7
}

.violet6 {
    color: #7950f2
}

.violet7 {
    color: #7048e8
}

.violet8 {
    color: #6741d9
}

.violet9 {
    color: #5f3dc4
}

.grape {
    color: #be4bdb
}

.grape0 {
    color: #f8f0fc
}

.grape1 {
    color: #f3d9fa
}

.grape2 {
    color: #eebefa
}

.grape3 {
    color: #e599f7
}

.grape4 {
    color: #da77f2
}

.grape5 {
    color: #cc5de8
}

.grape6 {
    color: #be4bdb
}

.grape7 {
    color: #ae3ec9
}

.grape8 {
    color: #9c36b5
}

.grape9 {
    color: #862e9c
}

.pink {
    color: #f783ac
}

.pink0 {
    color: #fff0f6
}

.pink1 {
    color: #ffdeeb
}

.pink2 {
    color: #fcc2d7
}

.pink3 {
    color: #faa2c1
}

.pink4 {
    color: #f783ac
}

.pink5 {
    color: #f06595
}

.pink6 {
    color: #e64980
}

.pink7 {
    color: #d6336c
}

.pink8 {
    color: #c2255c
}

.pink9 {
    color: #a61e4d
}

.brown {
    color: #463b2d
}

.brown0 {
    color: #e6b674
}

.brown1 {
    color: #c09962
}

.brown2 {
    color: #9d7e52
}

.brown3 {
    color: #7e6644
}

.brown4 {
    color: #665339
}

.brown5 {
    color: #534532
}

.brown6 {
    color: #463b2d
}

.brown7 {
    color: #3c352a
}

.brown8 {
    color: #36312a
}

.brown9 {
    color: #332f2b
}

.primary0 {
    color: #e7f5ff
}

.primary1 {
    color: #d0ebff
}

.primary2 {
    color: #a5d8ff
}

.primary3 {
    color: #74c0fc
}

.primary4 {
    color: #4dabf7
}

.primary5 {
    color: #339af0
}

.primary6 {
    color: #228be6
}

.primary7 {
    color: #1c7ed6
}

.primary8 {
    color: #1971c2
}

.primary9 {
    color: #1864ab
}

.primary10 {
    color: #155592
}

.secondary0 {
    color: #f8f9fa
}

.secondary1 {
    color: #f1f3f5
}

.secondary2 {
    color: #e9ecef
}

.secondary3 {
    color: #dee2e6
}

.secondary4 {
    color: #ced4da
}

.secondary5 {
    color: #adb5bd
}

.secondary6 {
    color: #868e96
}

.secondary7 {
    color: #495057
}

.secondary8 {
    color: #343a40
}

.secondary9 {
    color: #212529
}

.vip0 {
    color: #e6fcf5
}

.vip1 {
    color: #c3fae8
}

.vip2 {
    color: #96f2d7
}

.vip3 {
    color: #63e6be
}

.vip4 {
    color: #38d9a9
}

.vip5 {
    color: #20c997
}

.vip6 {
    color: #12b886
}

.vip7 {
    color: #0ca678
}

.vip8 {
    color: #099268
}

.vip9 {
    color: #087f5b
}

.info0 {
    color: #e7f5ff
}

.info1 {
    color: #d0ebff
}

.info2 {
    color: #a5d8ff
}

.info3 {
    color: #74c0fc
}

.info4 {
    color: #4dabf7
}

.info5 {
    color: #339af0
}

.info6 {
    color: #228be6
}

.info7 {
    color: #1c7ed6
}

.info8 {
    color: #1971c2
}

.info9 {
    color: #1864ab
}

.success0 {
    color: #ebfbee
}

.success1 {
    color: #d3f9d8
}

.success2 {
    color: #b2f2bb
}

.success3 {
    color: #8ce99a
}

.success4 {
    color: #69db7c
}

.success5 {
    color: #51cf66
}

.success6 {
    color: #40c057
}

.success7 {
    color: #37b24d
}

.success8 {
    color: #2f9e44
}

.success9 {
    color: #2b8a3e
}

.danger0 {
    color: #fff5f5
}

.danger1 {
    color: #ffe3e3
}

.danger2 {
    color: #ffc9c9
}

.danger3 {
    color: #ffa8a8
}

.danger4 {
    color: #ff8787
}

.danger5 {
    color: #ff6b6b
}

.danger6 {
    color: #fa5252
}

.danger7 {
    color: #f03e3e
}

.danger8 {
    color: #e03131
}

.danger9 {
    color: #c92a2a
}

.warning0 {
    color: #fff9db
}

.warning1 {
    color: #fff3bf
}

.warning2 {
    color: #ffec99
}

.warning3 {
    color: #ffe066
}

.warning4 {
    color: #ffd43b
}

.warning5 {
    color: #fcc419
}

.warning6 {
    color: #fab005
}

.warning7 {
    color: #f59f00
}

.warning8 {
    color: #f08c00
}

.warning9 {
    color: #e67700
}

.bg-gray0 {
    background-color: #f8f9fa
}

.bg-gray1 {
    background-color: #f1f3f5
}

.bg-gray2 {
    background-color: #e9ecef
}

.bg-gray3 {
    background-color: #dee2e6
}

.bg-gray4 {
    background-color: #ced4da
}

.bg-gray5 {
    background-color: #adb5bd
}

.bg-gray6 {
    background-color: #868e96
}

.bg-gray7 {
    background-color: #495057
}

.bg-gray8 {
    background-color: #343a40
}

.bg-gray9 {
    background-color: #212529
}

.bg-red0 {
    background-color: #fff5f5
}

.bg-red1 {
    background-color: #ffe3e3
}

.bg-red2 {
    background-color: #ffc9c9
}

.bg-red3 {
    background-color: #ffa8a8
}

.bg-red4 {
    background-color: #ff8787
}

.bg-red5 {
    background-color: #ff6b6b
}

.bg-red6 {
    background-color: #fa5252
}

.bg-red7 {
    background-color: #f03e3e
}

.bg-red8 {
    background-color: #e03131
}

.bg-red9 {
    background-color: #c92a2a
}

.bg-orange0 {
    background-color: #fff4e6
}

.bg-orange1 {
    background-color: #ffe8cc
}

.bg-orange2 {
    background-color: #ffd8a8
}

.bg-orange3 {
    background-color: #ffc078
}

.bg-orange4 {
    background-color: #ffa94d
}

.bg-orange5 {
    background-color: #ff922b
}

.bg-orange6 {
    background-color: #fd7e14
}

.bg-orange7 {
    background-color: #f76707
}

.bg-orange8 {
    background-color: #e8590c
}

.bg-orange9 {
    background-color: #d9480f
}

.bg-yellow0 {
    background-color: #fff9db
}

.bg-yellow1 {
    background-color: #fff3bf
}

.bg-yellow2 {
    background-color: #ffec99
}

.bg-yellow3 {
    background-color: #ffe066
}

.bg-yellow4 {
    background-color: #ffd43b
}

.bg-yellow5 {
    background-color: #fcc419
}

.bg-yellow6 {
    background-color: #fab005
}

.bg-yellow7 {
    background-color: #f59f00
}

.bg-yellow8 {
    background-color: #f08c00
}

.bg-yellow9 {
    background-color: #e67700
}

.bg-green0 {
    background-color: #ebfbee
}

.bg-green1 {
    background-color: #d3f9d8
}

.bg-green2 {
    background-color: #b2f2bb
}

.bg-green3 {
    background-color: #8ce99a
}

.bg-green4 {
    background-color: #69db7c
}

.bg-green5 {
    background-color: #51cf66
}

.bg-green6 {
    background-color: #40c057
}

.bg-green7 {
    background-color: #37b24d
}

.bg-green8 {
    background-color: #2f9e44
}

.bg-green9 {
    background-color: #2b8a3e
}

.bg-lime {
    background-color: #82c91e
}

.bg-lime0 {
    background-color: #f4fce3
}

.bg-lime1 {
    background-color: #e9fac8
}

.bg-lime2 {
    background-color: #d8f5a2
}

.bg-lime3 {
    background-color: #c0eb75
}

.bg-lime4 {
    background-color: #a9e34b
}

.bg-lime5 {
    background-color: #94d82d
}

.bg-lime6 {
    background-color: #82c91e
}

.bg-lime7 {
    background-color: #74b816
}

.bg-lime8 {
    background-color: #66a80f
}

.bg-lime9 {
    background-color: #5c940d
}

.bg-teal {
    background-color: #12b886
}

.bg-teal0 {
    background-color: #e6fcf5
}

.bg-teal1 {
    background-color: #c3fae8
}

.bg-teal2 {
    background-color: #96f2d7
}

.bg-teal3 {
    background-color: #63e6be
}

.bg-teal4 {
    background-color: #38d9a9
}

.bg-teal5 {
    background-color: #20c997
}

.bg-teal6 {
    background-color: #12b886
}

.bg-teal7 {
    background-color: #0ca678
}

.bg-teal8 {
    background-color: #099268
}

.bg-teal9 {
    background-color: #087f5b
}

.bg-cyan {
    background-color: #15aabf
}

.bg-cyan0 {
    background-color: #e3fafc
}

.bg-cyan1 {
    background-color: #c5f6fa
}

.bg-cyan2 {
    background-color: #99e9f2
}

.bg-cyan3 {
    background-color: #66d9e8
}

.bg-cyan4 {
    background-color: #3bc9db
}

.bg-cyan5 {
    background-color: #22b8cf
}

.bg-cyan6 {
    background-color: #15aabf
}

.bg-cyan7 {
    background-color: #1098ad
}

.bg-cyan8 {
    background-color: #0c8599
}

.bg-cyan9 {
    background-color: #0b7285
}

.bg-blue0 {
    background-color: #e7f5ff
}

.bg-blue1 {
    background-color: #d0ebff
}

.bg-blue2 {
    background-color: #a5d8ff
}

.bg-blue3 {
    background-color: #74c0fc
}

.bg-blue4 {
    background-color: #4dabf7
}

.bg-blue5 {
    background-color: #339af0
}

.bg-blue6 {
    background-color: #228be6
}

.bg-blue7 {
    background-color: #1c7ed6
}

.bg-blue8 {
    background-color: #1971c2
}

.bg-blue9 {
    background-color: #1864ab
}

.bg-blue10 {
    background-color: #155592
}

.bg-indigo {
    background-color: #4c6ef5
}

.bg-indigo0 {
    background-color: #edf2ff
}

.bg-indigo1 {
    background-color: #dbe4ff
}

.bg-indigo2 {
    background-color: #bac8ff
}

.bg-indigo3 {
    background-color: #91a7ff
}

.bg-indigo4 {
    background-color: #748ffc
}

.bg-indigo5 {
    background-color: #5c7cfa
}

.bg-indigo6 {
    background-color: #4c6ef5
}

.bg-indigo7 {
    background-color: #4263eb
}

.bg-indigo8 {
    background-color: #3b5bdb
}

.bg-indigo9 {
    background-color: #364fc7
}

.bg-violet {
    background-color: #7950f2
}

.bg-violet0 {
    background-color: #f3f0ff
}

.bg-violet1 {
    background-color: #e5dbff
}

.bg-violet2 {
    background-color: #d0bfff
}

.bg-violet3 {
    background-color: #b197fc
}

.bg-violet4 {
    background-color: #9775fa
}

.bg-violet5 {
    background-color: #845ef7
}

.bg-violet6 {
    background-color: #7950f2
}

.bg-violet7 {
    background-color: #7048e8
}

.bg-violet8 {
    background-color: #6741d9
}

.bg-violet9 {
    background-color: #5f3dc4
}

.bg-grape {
    background-color: #be4bdb
}

.bg-grape0 {
    background-color: #f8f0fc
}

.bg-grape1 {
    background-color: #f3d9fa
}

.bg-grape2 {
    background-color: #eebefa
}

.bg-grape3 {
    background-color: #e599f7
}

.bg-grape4 {
    background-color: #da77f2
}

.bg-grape5 {
    background-color: #cc5de8
}

.bg-grape6 {
    background-color: #be4bdb
}

.bg-grape7 {
    background-color: #ae3ec9
}

.bg-grape8 {
    background-color: #9c36b5
}

.bg-grape9 {
    background-color: #862e9c
}

.bg-pink0 {
    background-color: #fff0f6
}

.bg-pink1 {
    background-color: #ffdeeb
}

.bg-pink2 {
    background-color: #fcc2d7
}

.bg-pink3 {
    background-color: #faa2c1
}

.bg-pink4 {
    background-color: #f783ac
}

.bg-pink5 {
    background-color: #f06595
}

.bg-pink6 {
    background-color: #e64980
}

.bg-pink7 {
    background-color: #d6336c
}

.bg-pink8 {
    background-color: #c2255c
}

.bg-pink9 {
    background-color: #a61e4d
}

.bg-brown0 {
    background-color: #e6b674
}

.bg-brown1 {
    background-color: #c09962
}

.bg-brown2 {
    background-color: #9d7e52
}

.bg-brown3 {
    background-color: #7e6644
}

.bg-brown4 {
    background-color: #665339
}

.bg-brown5 {
    background-color: #534532
}

.bg-brown6 {
    background-color: #463b2d
}

.bg-brown7 {
    background-color: #3c352a
}

.bg-brown8 {
    background-color: #36312a
}

.bg-brown9 {
    background-color: #332f2b
}

.bg-primary0 {
    background-color: #e7f5ff
}

.bg-primary1 {
    background-color: #d0ebff
}

.bg-primary2 {
    background-color: #a5d8ff
}

.bg-primary3 {
    background-color: #74c0fc
}

.bg-primary4 {
    background-color: #4dabf7
}

.bg-primary5 {
    background-color: #339af0
}

.bg-primary6 {
    background-color: #228be6
}

.bg-primary7 {
    background-color: #1c7ed6
}

.bg-primary8 {
    background-color: #1971c2
}

.bg-primary9 {
    background-color: #1864ab
}

.bg-primary10 {
    background-color: #155592
}

.bg-secondary0 {
    background-color: #f8f9fa
}

.bg-secondary1 {
    background-color: #f1f3f5
}

.bg-secondary2 {
    background-color: #e9ecef
}

.bg-secondary3 {
    background-color: #dee2e6
}

.bg-secondary4 {
    background-color: #ced4da
}

.bg-secondary5 {
    background-color: #adb5bd
}

.bg-secondary6 {
    background-color: #868e96
}

.bg-secondary7 {
    background-color: #495057
}

.bg-secondary8 {
    background-color: #343a40
}

.bg-secondary9 {
    background-color: #212529
}

.bg-secondary0 {
    background-color: #f8f9fa
}

.bg-secondary1 {
    background-color: #f1f3f5
}

.bg-secondary2 {
    background-color: #e9ecef
}

.bg-secondary3 {
    background-color: #dee2e6
}

.bg-secondary4 {
    background-color: #ced4da
}

.bg-secondary5 {
    background-color: #adb5bd
}

.bg-secondary6 {
    background-color: #868e96
}

.bg-secondary7 {
    background-color: #495057
}

.bg-secondary8 {
    background-color: #343a40
}

.bg-secondary9 {
    background-color: #212529
}

.bg-vip0 {
    background-color: #e6fcf5
}

.bg-vip1 {
    background-color: #c3fae8
}

.bg-vip2 {
    background-color: #96f2d7
}

.bg-vip3 {
    background-color: #63e6be
}

.bg-vip4 {
    background-color: #38d9a9
}

.bg-vip5 {
    background-color: #20c997
}

.bg-vip6 {
    background-color: #12b886
}

.bg-vip7 {
    background-color: #0ca678
}

.bg-vip8 {
    background-color: #099268
}

.bg-vip9 {
    background-color: #087f5b
}

.bg-info0 {
    background-color: #e7f5ff
}

.bg-info1 {
    background-color: #d0ebff
}

.bg-info2 {
    background-color: #a5d8ff
}

.bg-info3 {
    background-color: #74c0fc
}

.bg-info4 {
    background-color: #4dabf7
}

.bg-info5 {
    background-color: #339af0
}

.bg-info6 {
    background-color: #228be6
}

.bg-info7 {
    background-color: #1c7ed6
}

.bg-info8 {
    background-color: #1971c2
}

.bg-info9 {
    background-color: #1864ab
}

.bg-success0 {
    background-color: #ebfbee
}

.bg-success1 {
    background-color: #d3f9d8
}

.bg-success2 {
    background-color: #b2f2bb
}

.bg-success3 {
    background-color: #8ce99a
}

.bg-success4 {
    background-color: #69db7c
}

.bg-success5 {
    background-color: #51cf66
}

.bg-success6 {
    background-color: #40c057
}

.bg-success7 {
    background-color: #37b24d
}

.bg-success8 {
    background-color: #2f9e44
}

.bg-success9 {
    background-color: #2b8a3e
}

.bg-danger0 {
    background-color: #fff5f5
}

.bg-danger1 {
    background-color: #ffe3e3
}

.bg-danger2 {
    background-color: #ffc9c9
}

.bg-danger3 {
    background-color: #ffa8a8
}

.bg-danger4 {
    background-color: #ff8787
}

.bg-danger5 {
    background-color: #ff6b6b
}

.bg-danger6 {
    background-color: #fa5252
}

.bg-danger7 {
    background-color: #f03e3e
}

.bg-danger8 {
    background-color: #e03131
}

.bg-danger9 {
    background-color: #c92a2a
}

.bg-warning0 {
    background-color: #fff9db
}

.bg-warning1 {
    background-color: #fff3bf
}

.bg-warning2 {
    background-color: #ffec99
}

.bg-warning3 {
    background-color: #ffe066
}

.bg-warning4 {
    background-color: #ffd43b
}

.bg-warning5 {
    background-color: #fcc419
}

.bg-warning6 {
    background-color: #fab005
}

.bg-warning7 {
    background-color: #f59f00
}

.bg-warning8 {
    background-color: #f08c00
}

.bg-warning9 {
    background-color: #e67700
}

@media screen and (min-width: 30em) {
    .bg-transparent-ns {
        background-color: rgba(0, 0, 0, 0)
    }
    .bg-inherit-ns {
        background-color: inherit
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .bg-transparent-m {
        background-color: rgba(0, 0, 0, 0)
    }
    .bg-inherit-m {
        background-color: inherit
    }
}

@media screen and (min-width: 60em) {
    .bg-transparent-l {
        background-color: rgba(0, 0, 0, 0)
    }
    .bg-inherit-l {
        background-color: inherit
    }
}

@media screen and (min-width: 77.5rem) {
    .bg-transparent-xl {
        background-color: rgba(0, 0, 0, 0)
    }
    .bg-inherit-xl {
        background-color: inherit
    }
}

@media screen and (min-width: 91.25rem) {
    .bg-transparent-2x {
        background-color: rgba(0, 0, 0, 0)
    }
    .bg-inherit-2x {
        background-color: inherit
    }
}

.hover-black:hover,
.hover-black:focus {
    color: #000
}

.hover-near-black:hover,
.hover-near-black:focus {
    color: #212529
}

.hover-dark-gray:hover,
.hover-dark-gray:focus {
    color: #868e96
}

.hover-mid-gray:hover,
.hover-mid-gray:focus {
    color: #495057
}

.hover-gray:hover,
.hover-gray:focus {
    color: #adb5bd
}

.hover-silver:hover,
.hover-silver:focus {
    color: #adb5bd
}

.hover-light-silver:hover,
.hover-light-silver:focus {
    color: #ced4da
}

.hover-moon-gray:hover,
.hover-moon-gray:focus {
    color: #dee2e6
}

.hover-light-gray:hover,
.hover-light-gray:focus {
    color: #ced4da
}

.hover-near-white:hover,
.hover-near-white:focus {
    color: #f8f9fa
}

.hover-white:hover,
.hover-white:focus {
    color: #fff
}

.hover-black-90:hover,
.hover-black-90:focus {
    color: rgba(0, 0, 0, 0.9)
}

.hover-black-80:hover,
.hover-black-80:focus {
    color: rgba(0, 0, 0, 0.8)
}

.hover-black-70:hover,
.hover-black-70:focus {
    color: rgba(0, 0, 0, 0.7)
}

.hover-black-60:hover,
.hover-black-60:focus {
    color: rgba(0, 0, 0, 0.6)
}

.hover-black-50:hover,
.hover-black-50:focus {
    color: rgba(0, 0, 0, 0.5)
}

.hover-black-40:hover,
.hover-black-40:focus {
    color: rgba(0, 0, 0, 0.4)
}

.hover-black-30:hover,
.hover-black-30:focus {
    color: rgba(0, 0, 0, 0.3)
}

.hover-black-20:hover,
.hover-black-20:focus {
    color: rgba(0, 0, 0, 0.2)
}

.hover-black-10:hover,
.hover-black-10:focus {
    color: rgba(0, 0, 0, 0.1)
}

.hover-white-90:hover,
.hover-white-90:focus {
    color: rgba(255, 255, 255, 0.9)
}

.hover-white-80:hover,
.hover-white-80:focus {
    color: rgba(255, 255, 255, 0.8)
}

.hover-white-70:hover,
.hover-white-70:focus {
    color: rgba(255, 255, 255, 0.7)
}

.hover-white-60:hover,
.hover-white-60:focus {
    color: rgba(255, 255, 255, 0.6)
}

.hover-white-50:hover,
.hover-white-50:focus {
    color: rgba(255, 255, 255, 0.5)
}

.hover-white-40:hover,
.hover-white-40:focus {
    color: rgba(255, 255, 255, 0.4)
}

.hover-white-30:hover,
.hover-white-30:focus {
    color: rgba(255, 255, 255, 0.3)
}

.hover-white-20:hover,
.hover-white-20:focus {
    color: rgba(255, 255, 255, 0.2)
}

.hover-white-10:hover,
.hover-white-10:focus {
    color: rgba(255, 255, 255, 0.1)
}

.hover-inherit:hover,
.hover-inherit:focus {
    color: inherit
}

.hover-bg-black:hover,
.hover-bg-black:focus {
    background-color: #000
}

.hover-bg-near-black:hover,
.hover-bg-near-black:focus {
    background-color: #212529
}

.hover-bg-dark-gray:hover,
.hover-bg-dark-gray:focus {
    background-color: #868e96
}

.hover-bg-mid-gray:hover,
.hover-bg-mid-gray:focus {
    background-color: #495057
}

.hover-bg-gray:hover,
.hover-bg-gray:focus {
    background-color: #adb5bd
}

.hover-bg-silver:hover,
.hover-bg-silver:focus {
    background-color: #adb5bd
}

.hover-bg-light-silver:hover,
.hover-bg-light-silver:focus {
    background-color: #ced4da
}

.hover-bg-moon-gray:hover,
.hover-bg-moon-gray:focus {
    background-color: #dee2e6
}

.hover-bg-light-gray:hover,
.hover-bg-light-gray:focus {
    background-color: #ced4da
}

.hover-bg-near-white:hover,
.hover-bg-near-white:focus {
    background-color: #f8f9fa
}

.hover-bg-white:hover,
.hover-bg-white:focus {
    background-color: #fff
}

.hover-bg-transparent:hover,
.hover-bg-transparent:focus {
    background-color: rgba(0, 0, 0, 0)
}

.hover-bg-black-90:hover,
.hover-bg-black-90:focus {
    background-color: rgba(0, 0, 0, 0.9)
}

.hover-bg-black-80:hover,
.hover-bg-black-80:focus {
    background-color: rgba(0, 0, 0, 0.8)
}

.hover-bg-black-70:hover,
.hover-bg-black-70:focus {
    background-color: rgba(0, 0, 0, 0.7)
}

.hover-bg-black-60:hover,
.hover-bg-black-60:focus {
    background-color: rgba(0, 0, 0, 0.6)
}

.hover-bg-black-50:hover,
.hover-bg-black-50:focus {
    background-color: rgba(0, 0, 0, 0.5)
}

.hover-bg-black-40:hover,
.hover-bg-black-40:focus {
    background-color: rgba(0, 0, 0, 0.4)
}

.hover-bg-black-30:hover,
.hover-bg-black-30:focus {
    background-color: rgba(0, 0, 0, 0.3)
}

.hover-bg-black-20:hover,
.hover-bg-black-20:focus {
    background-color: rgba(0, 0, 0, 0.2)
}

.hover-bg-black-10:hover,
.hover-bg-black-10:focus {
    background-color: rgba(0, 0, 0, 0.1)
}

.hover-bg-white-90:hover,
.hover-bg-white-90:focus {
    background-color: rgba(255, 255, 255, 0.9)
}

.hover-bg-white-80:hover,
.hover-bg-white-80:focus {
    background-color: rgba(255, 255, 255, 0.8)
}

.hover-bg-white-70:hover,
.hover-bg-white-70:focus {
    background-color: rgba(255, 255, 255, 0.7)
}

.hover-bg-white-60:hover,
.hover-bg-white-60:focus {
    background-color: rgba(255, 255, 255, 0.6)
}

.hover-bg-white-50:hover,
.hover-bg-white-50:focus {
    background-color: rgba(255, 255, 255, 0.5)
}

.hover-bg-white-40:hover,
.hover-bg-white-40:focus {
    background-color: rgba(255, 255, 255, 0.4)
}

.hover-bg-white-30:hover,
.hover-bg-white-30:focus {
    background-color: rgba(255, 255, 255, 0.3)
}

.hover-bg-white-20:hover,
.hover-bg-white-20:focus {
    background-color: rgba(255, 255, 255, 0.2)
}

.hover-bg-white-10:hover,
.hover-bg-white-10:focus {
    background-color: rgba(255, 255, 255, 0.1)
}

.hover-dark-red:hover,
.hover-dark-red:focus {
    color: #f03e3e
}

.hover-red:hover,
.hover-red:focus {
    color: #fa5252
}

.hover-light-red:hover,
.hover-light-red:focus {
    color: #ff8787
}

.hover-orange:hover,
.hover-orange:focus {
    color: #fd7e14
}

.hover-gold:hover,
.hover-gold:focus {
    color: #fcc419
}

.hover-yellow:hover,
.hover-yellow:focus {
    color: #ffd43b
}

.hover-light-yellow:hover,
.hover-light-yellow:focus {
    color: #ffe066
}

.hover-purple:hover,
.hover-purple:focus {
    color: #7950f2
}

.hover-light-purple:hover,
.hover-light-purple:focus {
    color: #9775fa
}

.hover-dark-pink:hover,
.hover-dark-pink:focus {
    color: #f06595
}

.hover-hot-pink:hover,
.hover-hot-pink:focus {
    color: #c2255c
}

.hover-pink:hover,
.hover-pink:focus {
    color: #f783ac
}

.hover-light-pink:hover,
.hover-light-pink:focus {
    color: #faa2c1
}

.hover-dark-green:hover,
.hover-dark-green:focus {
    color: #37b24d
}

.hover-green:hover,
.hover-green:focus {
    color: #40c057
}

.hover-light-green:hover,
.hover-light-green:focus {
    color: #69db7c
}

.hover-navy:hover,
.hover-navy:focus {
    color: #1864ab
}

.hover-dark-blue:hover,
.hover-dark-blue:focus {
    color: #1c7ed6
}

.hover-blue:hover,
.hover-blue:focus {
    color: #228be6
}

.hover-light-blue:hover,
.hover-light-blue:focus {
    color: #4dabf7
}

.hover-lightest-blue:hover,
.hover-lightest-blue:focus {
    color: #d0ebff
}

.hover-washed-blue:hover,
.hover-washed-blue:focus {
    color: #e7f5ff
}

.hover-washed-green:hover,
.hover-washed-green:focus {
    color: #ebfbee
}

.hover-washed-yellow:hover,
.hover-washed-yellow:focus {
    color: #fff9db
}

.hover-washed-red:hover,
.hover-washed-red:focus {
    color: #fff5f5
}

.hover-bg-dark-red:hover,
.hover-bg-dark-red:focus {
    background-color: #f03e3e
}

.hover-bg-red:hover,
.hover-bg-red:focus {
    background-color: #fa5252
}

.hover-bg-light-red:hover,
.hover-bg-light-red:focus {
    background-color: #ff8787
}

.hover-bg-orange:hover,
.hover-bg-orange:focus {
    background-color: #fd7e14
}

.hover-bg-gold:hover,
.hover-bg-gold:focus {
    background-color: #fcc419
}

.hover-bg-yellow:hover,
.hover-bg-yellow:focus {
    background-color: #ffd43b
}

.hover-bg-light-yellow:hover,
.hover-bg-light-yellow:focus {
    background-color: #ffe066
}

.hover-bg-purple:hover,
.hover-bg-purple:focus {
    background-color: #7950f2
}

.hover-bg-light-purple:hover,
.hover-bg-light-purple:focus {
    background-color: #9775fa
}

.hover-bg-dark-pink:hover,
.hover-bg-dark-pink:focus {
    background-color: #f06595
}

.hover-bg-hot-pink:hover,
.hover-bg-hot-pink:focus {
    background-color: #c2255c
}

.hover-bg-pink:hover,
.hover-bg-pink:focus {
    background-color: #f783ac
}

.hover-bg-light-pink:hover,
.hover-bg-light-pink:focus {
    background-color: #faa2c1
}

.hover-bg-dark-green:hover,
.hover-bg-dark-green:focus {
    background-color: #37b24d
}

.hover-bg-green:hover,
.hover-bg-green:focus {
    background-color: #40c057
}

.hover-bg-light-green:hover,
.hover-bg-light-green:focus {
    background-color: #69db7c
}

.hover-bg-navy:hover,
.hover-bg-navy:focus {
    background-color: #1864ab
}

.hover-bg-dark-blue:hover,
.hover-bg-dark-blue:focus {
    background-color: #1c7ed6
}

.hover-bg-blue:hover,
.hover-bg-blue:focus {
    background-color: #228be6
}

.hover-bg-light-blue:hover,
.hover-bg-light-blue:focus {
    background-color: #4dabf7
}

.hover-bg-lightest-blue:hover,
.hover-bg-lightest-blue:focus {
    background-color: #d0ebff
}

.hover-bg-washed-blue:hover,
.hover-bg-washed-blue:focus {
    background-color: #e7f5ff
}

.hover-bg-washed-green:hover,
.hover-bg-washed-green:focus {
    background-color: #ebfbee
}

.hover-bg-washed-yellow:hover,
.hover-bg-washed-yellow:focus {
    background-color: #fff9db
}

.hover-bg-washed-red:hover,
.hover-bg-washed-red:focus {
    background-color: #fff5f5
}

.hover-bg-inherit:hover,
.hover-bg-inherit:focus {
    background-color: inherit
}

.hover-gray0:focus,
.hover-gray0:hover {
    color: #f8f9fa
}

.hover-gray1:focus,
.hover-gray1:hover {
    color: #f1f3f5
}

.hover-gray2:focus,
.hover-gray2:hover {
    color: #e9ecef
}

.hover-gray3:focus,
.hover-gray3:hover {
    color: #dee2e6
}

.hover-gray4:focus,
.hover-gray4:hover {
    color: #ced4da
}

.hover-gray5:focus,
.hover-gray5:hover {
    color: #adb5bd
}

.hover-gray6:focus,
.hover-gray6:hover {
    color: #868e96
}

.hover-gray7:focus,
.hover-gray7:hover {
    color: #495057
}

.hover-gray8:focus,
.hover-gray8:hover {
    color: #343a40
}

.hover-gray9:focus,
.hover-gray9:hover {
    color: #212529
}

.hover-red:focus,
.hover-red:hover {
    color: #fa5252
}

.hover-red0:focus,
.hover-red0:hover {
    color: #fff5f5
}

.hover-red1:focus,
.hover-red1:hover {
    color: #ffe3e3
}

.hover-red2:focus,
.hover-red2:hover {
    color: #ffc9c9
}

.hover-red3:focus,
.hover-red3:hover {
    color: #ffa8a8
}

.hover-red4:focus,
.hover-red4:hover {
    color: #ff8787
}

.hover-red5:focus,
.hover-red5:hover {
    color: #ff6b6b
}

.hover-red6:focus,
.hover-red6:hover {
    color: #fa5252
}

.hover-red7:focus,
.hover-red7:hover {
    color: #f03e3e
}

.hover-red8:focus,
.hover-red8:hover {
    color: #e03131
}

.hover-red9:focus,
.hover-red9:hover {
    color: #c92a2a
}

.hover-orange:focus,
.hover-orange:hover {
    color: #fd7e14
}

.hover-orange0:focus,
.hover-orange0:hover {
    color: #fff4e6
}

.hover-orange1:focus,
.hover-orange1:hover {
    color: #ffe8cc
}

.hover-orange2:focus,
.hover-orange2:hover {
    color: #ffd8a8
}

.hover-orange3:focus,
.hover-orange3:hover {
    color: #ffc078
}

.hover-orange4:focus,
.hover-orange4:hover {
    color: #ffa94d
}

.hover-orange5:focus,
.hover-orange5:hover {
    color: #ff922b
}

.hover-orange6:focus,
.hover-orange6:hover {
    color: #fd7e14
}

.hover-orange7:focus,
.hover-orange7:hover {
    color: #f76707
}

.hover-orange8:focus,
.hover-orange8:hover {
    color: #e8590c
}

.hover-orange9:focus,
.hover-orange9:hover {
    color: #d9480f
}

.hover-yellow:focus,
.hover-yellow:hover {
    color: #ffd43b
}

.hover-yellow0:focus,
.hover-yellow0:hover {
    color: #fff9db
}

.hover-yellow1:focus,
.hover-yellow1:hover {
    color: #fff3bf
}

.hover-yellow2:focus,
.hover-yellow2:hover {
    color: #ffec99
}

.hover-yellow3:focus,
.hover-yellow3:hover {
    color: #ffe066
}

.hover-yellow4:focus,
.hover-yellow4:hover {
    color: #ffd43b
}

.hover-yellow5:focus,
.hover-yellow5:hover {
    color: #fcc419
}

.hover-yellow6:focus,
.hover-yellow6:hover {
    color: #fab005
}

.hover-yellow7:focus,
.hover-yellow7:hover {
    color: #f59f00
}

.hover-yellow8:focus,
.hover-yellow8:hover {
    color: #f08c00
}

.hover-yellow9:focus,
.hover-yellow9:hover {
    color: #e67700
}

.hover-green:focus,
.hover-green:hover {
    color: #40c057
}

.hover-green0:focus,
.hover-green0:hover {
    color: #ebfbee
}

.hover-green1:focus,
.hover-green1:hover {
    color: #d3f9d8
}

.hover-green2:focus,
.hover-green2:hover {
    color: #b2f2bb
}

.hover-green3:focus,
.hover-green3:hover {
    color: #8ce99a
}

.hover-green4:focus,
.hover-green4:hover {
    color: #69db7c
}

.hover-green5:focus,
.hover-green5:hover {
    color: #51cf66
}

.hover-green6:focus,
.hover-green6:hover {
    color: #40c057
}

.hover-green7:focus,
.hover-green7:hover {
    color: #37b24d
}

.hover-green8:focus,
.hover-green8:hover {
    color: #2f9e44
}

.hover-green9:focus,
.hover-green9:hover {
    color: #2b8a3e
}

.hover-lime:focus,
.hover-lime:hover {
    color: #82c91e
}

.hover-lime0:focus,
.hover-lime0:hover {
    color: #f4fce3
}

.hover-lime1:focus,
.hover-lime1:hover {
    color: #e9fac8
}

.hover-lime2:focus,
.hover-lime2:hover {
    color: #d8f5a2
}

.hover-lime3:focus,
.hover-lime3:hover {
    color: #c0eb75
}

.hover-lime4:focus,
.hover-lime4:hover {
    color: #a9e34b
}

.hover-lime5:focus,
.hover-lime5:hover {
    color: #94d82d
}

.hover-lime6:focus,
.hover-lime6:hover {
    color: #82c91e
}

.hover-lime7:focus,
.hover-lime7:hover {
    color: #74b816
}

.hover-lime8:focus,
.hover-lime8:hover {
    color: #66a80f
}

.hover-lime9:focus,
.hover-lime9:hover {
    color: #5c940d
}

.hover-teal:focus,
.hover-teal:hover {
    color: #12b886
}

.hover-teal0:focus,
.hover-teal0:hover {
    color: #e6fcf5
}

.hover-teal1:focus,
.hover-teal1:hover {
    color: #c3fae8
}

.hover-teal2:focus,
.hover-teal2:hover {
    color: #96f2d7
}

.hover-teal3:focus,
.hover-teal3:hover {
    color: #63e6be
}

.hover-teal4:focus,
.hover-teal4:hover {
    color: #38d9a9
}

.hover-teal5:focus,
.hover-teal5:hover {
    color: #20c997
}

.hover-teal6:focus,
.hover-teal6:hover {
    color: #12b886
}

.hover-teal7:focus,
.hover-teal7:hover {
    color: #0ca678
}

.hover-teal8:focus,
.hover-teal8:hover {
    color: #099268
}

.hover-teal9:focus,
.hover-teal9:hover {
    color: #087f5b
}

.hover-cyan:focus,
.hover-cyan:hover {
    color: #15aabf
}

.hover-cyan0:focus,
.hover-cyan0:hover {
    color: #e3fafc
}

.hover-cyan1:focus,
.hover-cyan1:hover {
    color: #c5f6fa
}

.hover-cyan2:focus,
.hover-cyan2:hover {
    color: #99e9f2
}

.hover-cyan3:focus,
.hover-cyan3:hover {
    color: #66d9e8
}

.hover-cyan4:focus,
.hover-cyan4:hover {
    color: #3bc9db
}

.hover-cyan5:focus,
.hover-cyan5:hover {
    color: #22b8cf
}

.hover-cyan6:focus,
.hover-cyan6:hover {
    color: #15aabf
}

.hover-cyan7:focus,
.hover-cyan7:hover {
    color: #1098ad
}

.hover-cyan8:focus,
.hover-cyan8:hover {
    color: #0c8599
}

.hover-cyan9:focus,
.hover-cyan9:hover {
    color: #0b7285
}

.hover-blue:focus,
.hover-blue:hover {
    color: #228be6
}

.hover-blue0:focus,
.hover-blue0:hover {
    color: #e7f5ff
}

.hover-blue1:focus,
.hover-blue1:hover {
    color: #d0ebff
}

.hover-blue2:focus,
.hover-blue2:hover {
    color: #a5d8ff
}

.hover-blue3:focus,
.hover-blue3:hover {
    color: #74c0fc
}

.hover-blue4:focus,
.hover-blue4:hover {
    color: #4dabf7
}

.hover-blue5:focus,
.hover-blue5:hover {
    color: #339af0
}

.hover-blue6:focus,
.hover-blue6:hover {
    color: #228be6
}

.hover-blue7:focus,
.hover-blue7:hover {
    color: #1c7ed6
}

.hover-blue8:focus,
.hover-blue8:hover {
    color: #1971c2
}

.hover-blue9:focus,
.hover-blue9:hover {
    color: #1864ab
}

.hover-blue10:focus,
.hover-blue10:hover {
    color: #155592
}

.hover-indigo:focus,
.hover-indigo:hover {
    color: #4c6ef5
}

.hover-indigo0:focus,
.hover-indigo0:hover {
    color: #edf2ff
}

.hover-indigo1:focus,
.hover-indigo1:hover {
    color: #dbe4ff
}

.hover-indigo2:focus,
.hover-indigo2:hover {
    color: #bac8ff
}

.hover-indigo3:focus,
.hover-indigo3:hover {
    color: #91a7ff
}

.hover-indigo4:focus,
.hover-indigo4:hover {
    color: #748ffc
}

.hover-indigo5:focus,
.hover-indigo5:hover {
    color: #5c7cfa
}

.hover-indigo6:focus,
.hover-indigo6:hover {
    color: #4c6ef5
}

.hover-indigo7:focus,
.hover-indigo7:hover {
    color: #4263eb
}

.hover-indigo8:focus,
.hover-indigo8:hover {
    color: #3b5bdb
}

.hover-indigo9:focus,
.hover-indigo9:hover {
    color: #364fc7
}

.hover-violet:focus,
.hover-violet:hover {
    color: #7950f2
}

.hover-violet0:focus,
.hover-violet0:hover {
    color: #f3f0ff
}

.hover-violet1:focus,
.hover-violet1:hover {
    color: #e5dbff
}

.hover-violet2:focus,
.hover-violet2:hover {
    color: #d0bfff
}

.hover-violet3:focus,
.hover-violet3:hover {
    color: #b197fc
}

.hover-violet4:focus,
.hover-violet4:hover {
    color: #9775fa
}

.hover-violet5:focus,
.hover-violet5:hover {
    color: #845ef7
}

.hover-violet6:focus,
.hover-violet6:hover {
    color: #7950f2
}

.hover-violet7:focus,
.hover-violet7:hover {
    color: #7048e8
}

.hover-violet8:focus,
.hover-violet8:hover {
    color: #6741d9
}

.hover-violet9:focus,
.hover-violet9:hover {
    color: #5f3dc4
}

.hover-grape:focus,
.hover-grape:hover {
    color: #be4bdb
}

.hover-grape0:focus,
.hover-grape0:hover {
    color: #f8f0fc
}

.hover-grape1:focus,
.hover-grape1:hover {
    color: #f3d9fa
}

.hover-grape2:focus,
.hover-grape2:hover {
    color: #eebefa
}

.hover-grape3:focus,
.hover-grape3:hover {
    color: #e599f7
}

.hover-grape4:focus,
.hover-grape4:hover {
    color: #da77f2
}

.hover-grape5:focus,
.hover-grape5:hover {
    color: #cc5de8
}

.hover-grape6:focus,
.hover-grape6:hover {
    color: #be4bdb
}

.hover-grape7:focus,
.hover-grape7:hover {
    color: #ae3ec9
}

.hover-grape8:focus,
.hover-grape8:hover {
    color: #9c36b5
}

.hover-grape9:focus,
.hover-grape9:hover {
    color: #862e9c
}

.hover-pink:focus,
.hover-pink:hover {
    color: #f783ac
}

.hover-pink0:focus,
.hover-pink0:hover {
    color: #fff0f6
}

.hover-pink1:focus,
.hover-pink1:hover {
    color: #ffdeeb
}

.hover-pink2:focus,
.hover-pink2:hover {
    color: #fcc2d7
}

.hover-pink3:focus,
.hover-pink3:hover {
    color: #faa2c1
}

.hover-pink4:focus,
.hover-pink4:hover {
    color: #f783ac
}

.hover-pink5:focus,
.hover-pink5:hover {
    color: #f06595
}

.hover-pink6:focus,
.hover-pink6:hover {
    color: #e64980
}

.hover-pink7:focus,
.hover-pink7:hover {
    color: #d6336c
}

.hover-pink8:focus,
.hover-pink8:hover {
    color: #c2255c
}

.hover-pink9:focus,
.hover-pink9:hover {
    color: #a61e4d
}

.hover-brown:focus,
.hover-brown:hover {
    color: #463b2d
}

.hover-brown0:focus,
.hover-brown0:hover {
    color: #e6b674
}

.hover-brown1:focus,
.hover-brown1:hover {
    color: #c09962
}

.hover-brown2:focus,
.hover-brown2:hover {
    color: #9d7e52
}

.hover-brown3:focus,
.hover-brown3:hover {
    color: #7e6644
}

.hover-brown4:focus,
.hover-brown4:hover {
    color: #665339
}

.hover-brown5:focus,
.hover-brown5:hover {
    color: #534532
}

.hover-brown6:focus,
.hover-brown6:hover {
    color: #463b2d
}

.hover-brown7:focus,
.hover-brown7:hover {
    color: #3c352a
}

.hover-brown8:focus,
.hover-brown8:hover {
    color: #36312a
}

.hover-brown9:focus,
.hover-brown9:hover {
    color: #332f2b
}

.hover-primary0:focus,
.hover-primary0:hover {
    color: #e7f5ff
}

.hover-primary1:focus,
.hover-primary1:hover {
    color: #d0ebff
}

.hover-primary2:focus,
.hover-primary2:hover {
    color: #a5d8ff
}

.hover-primary3:focus,
.hover-primary3:hover {
    color: #74c0fc
}

.hover-primary4:focus,
.hover-primary4:hover {
    color: #4dabf7
}

.hover-primary5:focus,
.hover-primary5:hover {
    color: #339af0
}

.hover-primary6:focus,
.hover-primary6:hover {
    color: #228be6
}

.hover-primary7:focus,
.hover-primary7:hover {
    color: #1c7ed6
}

.hover-primary8:focus,
.hover-primary8:hover {
    color: #1971c2
}

.hover-primary9:focus,
.hover-primary9:hover {
    color: #1864ab
}

.hover-secondary0:focus,
.hover-secondary0:hover {
    color: #f8f9fa
}

.hover-secondary1:focus,
.hover-secondary1:hover {
    color: #f1f3f5
}

.hover-secondary2:focus,
.hover-secondary2:hover {
    color: #e9ecef
}

.hover-secondary3:focus,
.hover-secondary3:hover {
    color: #dee2e6
}

.hover-secondary4:focus,
.hover-secondary4:hover {
    color: #ced4da
}

.hover-secondary5:focus,
.hover-secondary5:hover {
    color: #adb5bd
}

.hover-secondary6:focus,
.hover-secondary6:hover {
    color: #868e96
}

.hover-secondary7:focus,
.hover-secondary7:hover {
    color: #495057
}

.hover-secondary8:focus,
.hover-secondary8:hover {
    color: #343a40
}

.hover-secondary9:focus,
.hover-secondary9:hover {
    color: #212529
}

.hover-vip0:focus,
.hover-vip0:hover {
    color: #e6fcf5
}

.hover-vip1:focus,
.hover-vip1:hover {
    color: #c3fae8
}

.hover-vip2:focus,
.hover-vip2:hover {
    color: #96f2d7
}

.hover-vip3:focus,
.hover-vip3:hover {
    color: #63e6be
}

.hover-vip4:focus,
.hover-vip4:hover {
    color: #38d9a9
}

.hover-vip5:focus,
.hover-vip5:hover {
    color: #20c997
}

.hover-vip6:focus,
.hover-vip6:hover {
    color: #12b886
}

.hover-vip7:focus,
.hover-vip7:hover {
    color: #0ca678
}

.hover-vip8:focus,
.hover-vip8:hover {
    color: #099268
}

.hover-vip9:focus,
.hover-vip9:hover {
    color: #087f5b
}

.hover-info0:focus,
.hover-info0:hover {
    color: #e7f5ff
}

.hover-info1:focus,
.hover-info1:hover {
    color: #d0ebff
}

.hover-info2:focus,
.hover-info2:hover {
    color: #a5d8ff
}

.hover-info3:focus,
.hover-info3:hover {
    color: #74c0fc
}

.hover-info4:focus,
.hover-info4:hover {
    color: #4dabf7
}

.hover-info5:focus,
.hover-info5:hover {
    color: #339af0
}

.hover-info6:focus,
.hover-info6:hover {
    color: #228be6
}

.hover-info7:focus,
.hover-info7:hover {
    color: #1c7ed6
}

.hover-info8:focus,
.hover-info8:hover {
    color: #1971c2
}

.hover-info9:focus,
.hover-info9:hover {
    color: #1864ab
}

.hover-success0:focus,
.hover-success0:hover {
    color: #ebfbee
}

.hover-success1:focus,
.hover-success1:hover {
    color: #d3f9d8
}

.hover-success2:focus,
.hover-success2:hover {
    color: #b2f2bb
}

.hover-success3:focus,
.hover-success3:hover {
    color: #8ce99a
}

.hover-success4:focus,
.hover-success4:hover {
    color: #69db7c
}

.hover-success5:focus,
.hover-success5:hover {
    color: #51cf66
}

.hover-success6:focus,
.hover-success6:hover {
    color: #40c057
}

.hover-success7:focus,
.hover-success7:hover {
    color: #37b24d
}

.hover-success8:focus,
.hover-success8:hover {
    color: #2f9e44
}

.hover-success9:focus,
.hover-success9:hover {
    color: #2b8a3e
}

.hover-danger0:focus,
.hover-danger0:hover {
    color: #fff5f5
}

.hover-danger1:focus,
.hover-danger1:hover {
    color: #ffe3e3
}

.hover-danger2:focus,
.hover-danger2:hover {
    color: #ffc9c9
}

.hover-danger3:focus,
.hover-danger3:hover {
    color: #ffa8a8
}

.hover-danger4:focus,
.hover-danger4:hover {
    color: #ff8787
}

.hover-danger5:focus,
.hover-danger5:hover {
    color: #ff6b6b
}

.hover-danger6:focus,
.hover-danger6:hover {
    color: #fa5252
}

.hover-danger7:focus,
.hover-danger7:hover {
    color: #f03e3e
}

.hover-danger8:focus,
.hover-danger8:hover {
    color: #e03131
}

.hover-danger9:focus,
.hover-danger9:hover {
    color: #c92a2a
}

.hover-warning0:focus,
.hover-warning0:hover {
    color: #fff9db
}

.hover-warning1:focus,
.hover-warning1:hover {
    color: #fff3bf
}

.hover-warning2:focus,
.hover-warning2:hover {
    color: #ffec99
}

.hover-warning3:focus,
.hover-warning3:hover {
    color: #ffe066
}

.hover-warning4:focus,
.hover-warning4:hover {
    color: #ffd43b
}

.hover-warning5:focus,
.hover-warning5:hover {
    color: #fcc419
}

.hover-warning6:focus,
.hover-warning6:hover {
    color: #fab005
}

.hover-warning7:focus,
.hover-warning7:hover {
    color: #f59f00
}

.hover-warning8:focus,
.hover-warning8:hover {
    color: #f08c00
}

.hover-warning9:focus,
.hover-warning9:hover {
    color: #e67700
}

.hover-bg-gray0:focus,
.hover-bg-gray0:hover {
    background-color: #f8f9fa
}

.hover-bg-gray1:focus,
.hover-bg-gray1:hover {
    background-color: #f1f3f5
}

.hover-bg-gray2:focus,
.hover-bg-gray2:hover {
    background-color: #e9ecef
}

.hover-bg-gray3:focus,
.hover-bg-gray3:hover {
    background-color: #dee2e6
}

.hover-bg-gray4:focus,
.hover-bg-gray4:hover {
    background-color: #ced4da
}

.hover-bg-gray5:focus,
.hover-bg-gray5:hover {
    background-color: #adb5bd
}

.hover-bg-gray6:focus,
.hover-bg-gray6:hover {
    background-color: #868e96
}

.hover-bg-gray7:focus,
.hover-bg-gray7:hover {
    background-color: #495057
}

.hover-bg-gray8:focus,
.hover-bg-gray8:hover {
    background-color: #343a40
}

.hover-bg-gray9:focus,
.hover-bg-gray9:hover {
    background-color: #212529
}

.hover-bg-red:focus,
.hover-bg-red:hover {
    background-color: #fa5252
}

.hover-bg-red0:focus,
.hover-bg-red0:hover {
    background-color: #fff5f5
}

.hover-bg-red1:focus,
.hover-bg-red1:hover {
    background-color: #ffe3e3
}

.hover-bg-red2:focus,
.hover-bg-red2:hover {
    background-color: #ffc9c9
}

.hover-bg-red3:focus,
.hover-bg-red3:hover {
    background-color: #ffa8a8
}

.hover-bg-red4:focus,
.hover-bg-red4:hover {
    background-color: #ff8787
}

.hover-bg-red5:focus,
.hover-bg-red5:hover {
    background-color: #ff6b6b
}

.hover-bg-red6:focus,
.hover-bg-red6:hover {
    background-color: #fa5252
}

.hover-bg-red7:focus,
.hover-bg-red7:hover {
    background-color: #f03e3e
}

.hover-bg-red8:focus,
.hover-bg-red8:hover {
    background-color: #e03131
}

.hover-bg-red9:focus,
.hover-bg-red9:hover {
    background-color: #c92a2a
}

.hover-bg-orange:focus,
.hover-bg-orange:hover {
    background-color: #fd7e14
}

.hover-bg-orange0:focus,
.hover-bg-orange0:hover {
    background-color: #fff4e6
}

.hover-bg-orange1:focus,
.hover-bg-orange1:hover {
    background-color: #ffe8cc
}

.hover-bg-orange2:focus,
.hover-bg-orange2:hover {
    background-color: #ffd8a8
}

.hover-bg-orange3:focus,
.hover-bg-orange3:hover {
    background-color: #ffc078
}

.hover-bg-orange4:focus,
.hover-bg-orange4:hover {
    background-color: #ffa94d
}

.hover-bg-orange5:focus,
.hover-bg-orange5:hover {
    background-color: #ff922b
}

.hover-bg-orange6:focus,
.hover-bg-orange6:hover {
    background-color: #fd7e14
}

.hover-bg-orange7:focus,
.hover-bg-orange7:hover {
    background-color: #f76707
}

.hover-bg-orange8:focus,
.hover-bg-orange8:hover {
    background-color: #e8590c
}

.hover-bg-orange9:focus,
.hover-bg-orange9:hover {
    background-color: #d9480f
}

.hover-bg-yellow:focus,
.hover-bg-yellow:hover {
    background-color: #ffd43b
}

.hover-bg-yellow0:focus,
.hover-bg-yellow0:hover {
    background-color: #fff9db
}

.hover-bg-yellow1:focus,
.hover-bg-yellow1:hover {
    background-color: #fff3bf
}

.hover-bg-yellow2:focus,
.hover-bg-yellow2:hover {
    background-color: #ffec99
}

.hover-bg-yellow3:focus,
.hover-bg-yellow3:hover {
    background-color: #ffe066
}

.hover-bg-yellow4:focus,
.hover-bg-yellow4:hover {
    background-color: #ffd43b
}

.hover-bg-yellow5:focus,
.hover-bg-yellow5:hover {
    background-color: #fcc419
}

.hover-bg-yellow6:focus,
.hover-bg-yellow6:hover {
    background-color: #fab005
}

.hover-bg-yellow7:focus,
.hover-bg-yellow7:hover {
    background-color: #f59f00
}

.hover-bg-yellow8:focus,
.hover-bg-yellow8:hover {
    background-color: #f08c00
}

.hover-bg-yellow9:focus,
.hover-bg-yellow9:hover {
    background-color: #e67700
}

.hover-bg-green:focus,
.hover-bg-green:hover {
    background-color: #40c057
}

.hover-bg-green0:focus,
.hover-bg-green0:hover {
    background-color: #ebfbee
}

.hover-bg-green1:focus,
.hover-bg-green1:hover {
    background-color: #d3f9d8
}

.hover-bg-green2:focus,
.hover-bg-green2:hover {
    background-color: #b2f2bb
}

.hover-bg-green3:focus,
.hover-bg-green3:hover {
    background-color: #8ce99a
}

.hover-bg-green4:focus,
.hover-bg-green4:hover {
    background-color: #69db7c
}

.hover-bg-green5:focus,
.hover-bg-green5:hover {
    background-color: #51cf66
}

.hover-bg-green6:focus,
.hover-bg-green6:hover {
    background-color: #40c057
}

.hover-bg-green7:focus,
.hover-bg-green7:hover {
    background-color: #37b24d
}

.hover-bg-green8:focus,
.hover-bg-green8:hover {
    background-color: #2f9e44
}

.hover-bg-green9:focus,
.hover-bg-green9:hover {
    background-color: #2b8a3e
}

.hover-bg-lime:focus,
.hover-bg-lime:hover {
    background-color: #82c91e
}

.hover-bg-lime0:focus,
.hover-bg-lime0:hover {
    background-color: #f4fce3
}

.hover-bg-lime1:focus,
.hover-bg-lime1:hover {
    background-color: #e9fac8
}

.hover-bg-lime2:focus,
.hover-bg-lime2:hover {
    background-color: #d8f5a2
}

.hover-bg-lime3:focus,
.hover-bg-lime3:hover {
    background-color: #c0eb75
}

.hover-bg-lime4:focus,
.hover-bg-lime4:hover {
    background-color: #a9e34b
}

.hover-bg-lime5:focus,
.hover-bg-lime5:hover {
    background-color: #94d82d
}

.hover-bg-lime6:focus,
.hover-bg-lime6:hover {
    background-color: #82c91e
}

.hover-bg-lime7:focus,
.hover-bg-lime7:hover {
    background-color: #74b816
}

.hover-bg-lime8:focus,
.hover-bg-lime8:hover {
    background-color: #66a80f
}

.hover-bg-lime9:focus,
.hover-bg-lime9:hover {
    background-color: #5c940d
}

.hover-bg-teal:focus,
.hover-bg-teal:hover {
    background-color: #12b886
}

.hover-bg-teal0:focus,
.hover-bg-teal0:hover {
    background-color: #e6fcf5
}

.hover-bg-teal1:focus,
.hover-bg-teal1:hover {
    background-color: #c3fae8
}

.hover-bg-teal2:focus,
.hover-bg-teal2:hover {
    background-color: #96f2d7
}

.hover-bg-teal3:focus,
.hover-bg-teal3:hover {
    background-color: #63e6be
}

.hover-bg-teal4:focus,
.hover-bg-teal4:hover {
    background-color: #38d9a9
}

.hover-bg-teal5:focus,
.hover-bg-teal5:hover {
    background-color: #20c997
}

.hover-bg-teal6:focus,
.hover-bg-teal6:hover {
    background-color: #12b886
}

.hover-bg-teal7:focus,
.hover-bg-teal7:hover {
    background-color: #0ca678
}

.hover-bg-teal8:focus,
.hover-bg-teal8:hover {
    background-color: #099268
}

.hover-bg-teal9:focus,
.hover-bg-teal9:hover {
    background-color: #087f5b
}

.hover-bg-cyan:focus,
.hover-bg-cyan:hover {
    background-color: #15aabf
}

.hover-bg-cyan0:focus,
.hover-bg-cyan0:hover {
    background-color: #e3fafc
}

.hover-bg-cyan1:focus,
.hover-bg-cyan1:hover {
    background-color: #c5f6fa
}

.hover-bg-cyan2:focus,
.hover-bg-cyan2:hover {
    background-color: #99e9f2
}

.hover-bg-cyan3:focus,
.hover-bg-cyan3:hover {
    background-color: #66d9e8
}

.hover-bg-cyan4:focus,
.hover-bg-cyan4:hover {
    background-color: #3bc9db
}

.hover-bg-cyan5:focus,
.hover-bg-cyan5:hover {
    background-color: #22b8cf
}

.hover-bg-cyan6:focus,
.hover-bg-cyan6:hover {
    background-color: #15aabf
}

.hover-bg-cyan7:focus,
.hover-bg-cyan7:hover {
    background-color: #1098ad
}

.hover-bg-cyan8:focus,
.hover-bg-cyan8:hover {
    background-color: #0c8599
}

.hover-bg-cyan9:focus,
.hover-bg-cyan9:hover {
    background-color: #0b7285
}

.hover-bg-blue:focus,
.hover-bg-blue:hover {
    background-color: #228be6
}

.hover-bg-blue0:focus,
.hover-bg-blue0:hover {
    background-color: #e7f5ff
}

.hover-bg-blue1:focus,
.hover-bg-blue1:hover {
    background-color: #d0ebff
}

.hover-bg-blue2:focus,
.hover-bg-blue2:hover {
    background-color: #a5d8ff
}

.hover-bg-blue3:focus,
.hover-bg-blue3:hover {
    background-color: #74c0fc
}

.hover-bg-blue4:focus,
.hover-bg-blue4:hover {
    background-color: #4dabf7
}

.hover-bg-blue5:focus,
.hover-bg-blue5:hover {
    background-color: #339af0
}

.hover-bg-blue6:focus,
.hover-bg-blue6:hover {
    background-color: #228be6
}

.hover-bg-blue7:focus,
.hover-bg-blue7:hover {
    background-color: #1c7ed6
}

.hover-bg-blue8:focus,
.hover-bg-blue8:hover {
    background-color: #1971c2
}

.hover-bg-blue9:focus,
.hover-bg-blue9:hover {
    background-color: #1864ab
}

.hover-bg-blue10:focus,
.hover-bg-blue10:hover {
    background-color: #155592
}

.hover-bg-indigo:focus,
.hover-bg-indigo:hover {
    background-color: #4c6ef5
}

.hover-bg-indigo0:focus,
.hover-bg-indigo0:hover {
    background-color: #edf2ff
}

.hover-bg-indigo1:focus,
.hover-bg-indigo1:hover {
    background-color: #dbe4ff
}

.hover-bg-indigo2:focus,
.hover-bg-indigo2:hover {
    background-color: #bac8ff
}

.hover-bg-indigo3:focus,
.hover-bg-indigo3:hover {
    background-color: #91a7ff
}

.hover-bg-indigo4:focus,
.hover-bg-indigo4:hover {
    background-color: #748ffc
}

.hover-bg-indigo5:focus,
.hover-bg-indigo5:hover {
    background-color: #5c7cfa
}

.hover-bg-indigo6:focus,
.hover-bg-indigo6:hover {
    background-color: #4c6ef5
}

.hover-bg-indigo7:focus,
.hover-bg-indigo7:hover {
    background-color: #4263eb
}

.hover-bg-indigo8:focus,
.hover-bg-indigo8:hover {
    background-color: #3b5bdb
}

.hover-bg-indigo9:focus,
.hover-bg-indigo9:hover {
    background-color: #364fc7
}

.hover-bg-violet:focus,
.hover-bg-violet:hover {
    background-color: #7950f2
}

.hover-bg-violet0:focus,
.hover-bg-violet0:hover {
    background-color: #f3f0ff
}

.hover-bg-violet1:focus,
.hover-bg-violet1:hover {
    background-color: #e5dbff
}

.hover-bg-violet2:focus,
.hover-bg-violet2:hover {
    background-color: #d0bfff
}

.hover-bg-violet3:focus,
.hover-bg-violet3:hover {
    background-color: #b197fc
}

.hover-bg-violet4:focus,
.hover-bg-violet4:hover {
    background-color: #9775fa
}

.hover-bg-violet5:focus,
.hover-bg-violet5:hover {
    background-color: #845ef7
}

.hover-bg-violet6:focus,
.hover-bg-violet6:hover {
    background-color: #7950f2
}

.hover-bg-violet7:focus,
.hover-bg-violet7:hover {
    background-color: #7048e8
}

.hover-bg-violet8:focus,
.hover-bg-violet8:hover {
    background-color: #6741d9
}

.hover-bg-violet9:focus,
.hover-bg-violet9:hover {
    background-color: #5f3dc4
}

.hover-bg-grape:focus,
.hover-bg-grape:hover {
    background-color: #be4bdb
}

.hover-bg-grape0:focus,
.hover-bg-grape0:hover {
    background-color: #f8f0fc
}

.hover-bg-grape1:focus,
.hover-bg-grape1:hover {
    background-color: #f3d9fa
}

.hover-bg-grape2:focus,
.hover-bg-grape2:hover {
    background-color: #eebefa
}

.hover-bg-grape3:focus,
.hover-bg-grape3:hover {
    background-color: #e599f7
}

.hover-bg-grape4:focus,
.hover-bg-grape4:hover {
    background-color: #da77f2
}

.hover-bg-grape5:focus,
.hover-bg-grape5:hover {
    background-color: #cc5de8
}

.hover-bg-grape6:focus,
.hover-bg-grape6:hover {
    background-color: #be4bdb
}

.hover-bg-grape7:focus,
.hover-bg-grape7:hover {
    background-color: #ae3ec9
}

.hover-bg-grape8:focus,
.hover-bg-grape8:hover {
    background-color: #9c36b5
}

.hover-bg-grape9:focus,
.hover-bg-grape9:hover {
    background-color: #862e9c
}

.hover-bg-pink:focus,
.hover-bg-pink:hover {
    background-color: #f783ac
}

.hover-bg-pink0:focus,
.hover-bg-pink0:hover {
    background-color: #fff0f6
}

.hover-bg-pink1:focus,
.hover-bg-pink1:hover {
    background-color: #ffdeeb
}

.hover-bg-pink2:focus,
.hover-bg-pink2:hover {
    background-color: #fcc2d7
}

.hover-bg-pink3:focus,
.hover-bg-pink3:hover {
    background-color: #faa2c1
}

.hover-bg-pink4:focus,
.hover-bg-pink4:hover {
    background-color: #f783ac
}

.hover-bg-pink5:focus,
.hover-bg-pink5:hover {
    background-color: #f06595
}

.hover-bg-pink6:focus,
.hover-bg-pink6:hover {
    background-color: #e64980
}

.hover-bg-pink7:focus,
.hover-bg-pink7:hover {
    background-color: #d6336c
}

.hover-bg-pink8:focus,
.hover-bg-pink8:hover {
    background-color: #c2255c
}

.hover-bg-pink9:focus,
.hover-bg-pink9:hover {
    background-color: #a61e4d
}

.hover-bg-brown:focus,
.hover-bg-brown:hover {
    background-color: #463b2d
}

.hover-bg-brown0:focus,
.hover-bg-brown0:hover {
    background-color: #e6b674
}

.hover-bg-brown1:focus,
.hover-bg-brown1:hover {
    background-color: #c09962
}

.hover-bg-brown2:focus,
.hover-bg-brown2:hover {
    background-color: #9d7e52
}

.hover-bg-brown3:focus,
.hover-bg-brown3:hover {
    background-color: #7e6644
}

.hover-bg-brown4:focus,
.hover-bg-brown4:hover {
    background-color: #665339
}

.hover-bg-brown5:focus,
.hover-bg-brown5:hover {
    background-color: #534532
}

.hover-bg-brown6:focus,
.hover-bg-brown6:hover {
    background-color: #463b2d
}

.hover-bg-brown7:focus,
.hover-bg-brown7:hover {
    background-color: #3c352a
}

.hover-bg-brown8:focus,
.hover-bg-brown8:hover {
    background-color: #36312a
}

.hover-bg-brown9:focus,
.hover-bg-brown9:hover {
    background-color: #332f2b
}

.hover-bg-primary0:focus,
.hover-bg-primary0:hover {
    background-color: #e7f5ff
}

.hover-bg-primary1:focus,
.hover-bg-primary1:hover {
    background-color: #d0ebff
}

.hover-bg-primary2:focus,
.hover-bg-primary2:hover {
    background-color: #a5d8ff
}

.hover-bg-primary3:focus,
.hover-bg-primary3:hover {
    background-color: #74c0fc
}

.hover-bg-primary4:focus,
.hover-bg-primary4:hover {
    background-color: #4dabf7
}

.hover-bg-primary5:focus,
.hover-bg-primary5:hover {
    background-color: #339af0
}

.hover-bg-primary6:focus,
.hover-bg-primary6:hover {
    background-color: #228be6
}

.hover-bg-primary7:focus,
.hover-bg-primary7:hover {
    background-color: #1c7ed6
}

.hover-bg-primary8:focus,
.hover-bg-primary8:hover {
    background-color: #1971c2
}

.hover-bg-primary9:focus,
.hover-bg-primary9:hover {
    background-color: #1864ab
}

.hover-bg-secondary0:focus,
.hover-bg-secondary0:hover {
    background-color: #f8f9fa
}

.hover-bg-secondary1:focus,
.hover-bg-secondary1:hover {
    background-color: #f1f3f5
}

.hover-bg-secondary2:focus,
.hover-bg-secondary2:hover {
    background-color: #e9ecef
}

.hover-bg-secondary3:focus,
.hover-bg-secondary3:hover {
    background-color: #dee2e6
}

.hover-bg-secondary4:focus,
.hover-bg-secondary4:hover {
    background-color: #ced4da
}

.hover-bg-secondary5:focus,
.hover-bg-secondary5:hover {
    background-color: #adb5bd
}

.hover-bg-secondary6:focus,
.hover-bg-secondary6:hover {
    background-color: #868e96
}

.hover-bg-secondary7:focus,
.hover-bg-secondary7:hover {
    background-color: #495057
}

.hover-bg-secondary8:focus,
.hover-bg-secondary8:hover {
    background-color: #343a40
}

.hover-bg-secondary9:focus,
.hover-bg-secondary9:hover {
    background-color: #212529
}

.hover-bg-vip0:focus,
.hover-bg-vip0:hover {
    background-color: #e6fcf5
}

.hover-bg-vip1:focus,
.hover-bg-vip1:hover {
    background-color: #c3fae8
}

.hover-bg-vip2:focus,
.hover-bg-vip2:hover {
    background-color: #96f2d7
}

.hover-bg-vip3:focus,
.hover-bg-vip3:hover {
    background-color: #63e6be
}

.hover-bg-vip4:focus,
.hover-bg-vip4:hover {
    background-color: #38d9a9
}

.hover-bg-vip5:focus,
.hover-bg-vip5:hover {
    background-color: #20c997
}

.hover-bg-vip6:focus,
.hover-bg-vip6:hover {
    background-color: #12b886
}

.hover-bg-vip7:focus,
.hover-bg-vip7:hover {
    background-color: #0ca678
}

.hover-bg-vip8:focus,
.hover-bg-vip8:hover {
    background-color: #099268
}

.hover-bg-vip9:focus,
.hover-bg-vip9:hover {
    background-color: #087f5b
}

.hover-bg-info0:focus,
.hover-bg-info0:hover {
    background-color: #e7f5ff
}

.hover-bg-info1:focus,
.hover-bg-info1:hover {
    background-color: #d0ebff
}

.hover-bg-info2:focus,
.hover-bg-info2:hover {
    background-color: #a5d8ff
}

.hover-bg-info3:focus,
.hover-bg-info3:hover {
    background-color: #74c0fc
}

.hover-bg-info4:focus,
.hover-bg-info4:hover {
    background-color: #4dabf7
}

.hover-bg-info5:focus,
.hover-bg-info5:hover {
    background-color: #339af0
}

.hover-bg-info6:focus,
.hover-bg-info6:hover {
    background-color: #228be6
}

.hover-bg-info7:focus,
.hover-bg-info7:hover {
    background-color: #1c7ed6
}

.hover-bg-info8:focus,
.hover-bg-info8:hover {
    background-color: #1971c2
}

.hover-bg-info9:focus,
.hover-bg-info9:hover {
    background-color: #1864ab
}

.hover-bg-success0:focus,
.hover-bg-success0:hover {
    background-color: #ebfbee
}

.hover-bg-success1:focus,
.hover-bg-success1:hover {
    background-color: #d3f9d8
}

.hover-bg-success2:focus,
.hover-bg-success2:hover {
    background-color: #b2f2bb
}

.hover-bg-success3:focus,
.hover-bg-success3:hover {
    background-color: #8ce99a
}

.hover-bg-success4:focus,
.hover-bg-success4:hover {
    background-color: #69db7c
}

.hover-bg-success5:focus,
.hover-bg-success5:hover {
    background-color: #51cf66
}

.hover-bg-success6:focus,
.hover-bg-success6:hover {
    background-color: #40c057
}

.hover-bg-success7:focus,
.hover-bg-success7:hover {
    background-color: #37b24d
}

.hover-bg-success8:focus,
.hover-bg-success8:hover {
    background-color: #2f9e44
}

.hover-bg-success9:focus,
.hover-bg-success9:hover {
    background-color: #2b8a3e
}

.hover-bg-danger0:focus,
.hover-bg-danger0:hover {
    background-color: #fff5f5
}

.hover-bg-danger1:focus,
.hover-bg-danger1:hover {
    background-color: #ffe3e3
}

.hover-bg-danger2:focus,
.hover-bg-danger2:hover {
    background-color: #ffc9c9
}

.hover-bg-danger3:focus,
.hover-bg-danger3:hover {
    background-color: #ffa8a8
}

.hover-bg-danger4:focus,
.hover-bg-danger4:hover {
    background-color: #ff8787
}

.hover-bg-danger5:focus,
.hover-bg-danger5:hover {
    background-color: #ff6b6b
}

.hover-bg-danger6:focus,
.hover-bg-danger6:hover {
    background-color: #fa5252
}

.hover-bg-danger7:focus,
.hover-bg-danger7:hover {
    background-color: #f03e3e
}

.hover-bg-danger8:focus,
.hover-bg-danger8:hover {
    background-color: #e03131
}

.hover-bg-danger9:focus,
.hover-bg-danger9:hover {
    background-color: #c92a2a
}

.hover-bg-warning0:focus,
.hover-bg-warning0:hover {
    background-color: #fff9db
}

.hover-bg-warning1:focus,
.hover-bg-warning1:hover {
    background-color: #fff3bf
}

.hover-bg-warning2:focus,
.hover-bg-warning2:hover {
    background-color: #ffec99
}

.hover-bg-warning3:focus,
.hover-bg-warning3:hover {
    background-color: #ffe066
}

.hover-bg-warning4:focus,
.hover-bg-warning4:hover {
    background-color: #ffd43b
}

.hover-bg-warning5:focus,
.hover-bg-warning5:hover {
    background-color: #fcc419
}

.hover-bg-warning6:focus,
.hover-bg-warning6:hover {
    background-color: #fab005
}

.hover-bg-warning7:focus,
.hover-bg-warning7:hover {
    background-color: #f59f00
}

.hover-bg-warning8:focus,
.hover-bg-warning8:hover {
    background-color: #f08c00
}

.hover-bg-warning9:focus,
.hover-bg-warning9:hover {
    background-color: #e67700
}

.hover-b--black:focus,
.hover-b--black:hover {
    border-color: #000
}

.hover-b--black-030:focus,
.hover-b--black-030:hover {
    border-color: rgba(0, 0, 0, 0.03)
}

.hover-b--black-020:focus,
.hover-b--black-020:hover {
    border-color: rgba(0, 0, 0, 0.02)
}

.hover-b--white:focus,
.hover-b--white:hover {
    border-color: #fff
}

.hover-b--white-030:focus,
.hover-b--white-030:hover {
    border-color: rgba(255, 255, 255, 0.03)
}

.hover-b--white-020:focus,
.hover-b--white-020:hover {
    border-color: rgba(255, 255, 255, 0.02)
}

.hover-b--gray0:focus,
.hover-b--gray0:hover {
    border-color: #f8f9fa
}

.hover-b--gray1:focus,
.hover-b--gray1:hover {
    border-color: #f1f3f5
}

.hover-b--gray2:focus,
.hover-b--gray2:hover {
    border-color: #e9ecef
}

.hover-b--gray3:focus,
.hover-b--gray3:hover {
    border-color: #dee2e6
}

.hover-b--gray4:focus,
.hover-b--gray4:hover {
    border-color: #ced4da
}

.hover-b--gray5:focus,
.hover-b--gray5:hover {
    border-color: #adb5bd
}

.hover-b--gray6:focus,
.hover-b--gray6:hover {
    border-color: #868e96
}

.hover-b--gray7:focus,
.hover-b--gray7:hover {
    border-color: #495057
}

.hover-b--gray8:focus,
.hover-b--gray8:hover {
    border-color: #343a40
}

.hover-b--gray9:focus,
.hover-b--gray9:hover {
    border-color: #212529
}

.hover-b--red:focus,
.hover-b--red:hover {
    border-color: #fa5252
}

.hover-b--red0:focus,
.hover-b--red0:hover {
    border-color: #fff5f5
}

.hover-b--red1:focus,
.hover-b--red1:hover {
    border-color: #ffe3e3
}

.hover-b--red2:focus,
.hover-b--red2:hover {
    border-color: #ffc9c9
}

.hover-b--red3:focus,
.hover-b--red3:hover {
    border-color: #ffa8a8
}

.hover-b--red4:focus,
.hover-b--red4:hover {
    border-color: #ff8787
}

.hover-b--red5:focus,
.hover-b--red5:hover {
    border-color: #ff6b6b
}

.hover-b--red6:focus,
.hover-b--red6:hover {
    border-color: #fa5252
}

.hover-b--red7:focus,
.hover-b--red7:hover {
    border-color: #f03e3e
}

.hover-b--red8:focus,
.hover-b--red8:hover {
    border-color: #e03131
}

.hover-b--red9:focus,
.hover-b--red9:hover {
    border-color: #c92a2a
}

.hover-b--orange:focus,
.hover-b--orange:hover {
    border-color: #fd7e14
}

.hover-b--orange0:focus,
.hover-b--orange0:hover {
    border-color: #fff4e6
}

.hover-b--orange1:focus,
.hover-b--orange1:hover {
    border-color: #ffe8cc
}

.hover-b--orange2:focus,
.hover-b--orange2:hover {
    border-color: #ffd8a8
}

.hover-b--orange3:focus,
.hover-b--orange3:hover {
    border-color: #ffc078
}

.hover-b--orange4:focus,
.hover-b--orange4:hover {
    border-color: #ffa94d
}

.hover-b--orange5:focus,
.hover-b--orange5:hover {
    border-color: #ff922b
}

.hover-b--orange6:focus,
.hover-b--orange6:hover {
    border-color: #fd7e14
}

.hover-b--orange7:focus,
.hover-b--orange7:hover {
    border-color: #f76707
}

.hover-b--orange8:focus,
.hover-b--orange8:hover {
    border-color: #e8590c
}

.hover-b--orange9:focus,
.hover-b--orange9:hover {
    border-color: #d9480f
}

.hover-b--yellow:focus,
.hover-b--yellow:hover {
    border-color: #ffd43b
}

.hover-b--yellow0:focus,
.hover-b--yellow0:hover {
    border-color: #fff9db
}

.hover-b--yellow1:focus,
.hover-b--yellow1:hover {
    border-color: #fff3bf
}

.hover-b--yellow2:focus,
.hover-b--yellow2:hover {
    border-color: #ffec99
}

.hover-b--yellow3:focus,
.hover-b--yellow3:hover {
    border-color: #ffe066
}

.hover-b--yellow4:focus,
.hover-b--yellow4:hover {
    border-color: #ffd43b
}

.hover-b--yellow5:focus,
.hover-b--yellow5:hover {
    border-color: #fcc419
}

.hover-b--yellow6:focus,
.hover-b--yellow6:hover {
    border-color: #fab005
}

.hover-b--yellow7:focus,
.hover-b--yellow7:hover {
    border-color: #f59f00
}

.hover-b--yellow8:focus,
.hover-b--yellow8:hover {
    border-color: #f08c00
}

.hover-b--yellow9:focus,
.hover-b--yellow9:hover {
    border-color: #e67700
}

.hover-b--green:focus,
.hover-b--green:hover {
    border-color: #40c057
}

.hover-b--green0:focus,
.hover-b--green0:hover {
    border-color: #ebfbee
}

.hover-b--green1:focus,
.hover-b--green1:hover {
    border-color: #d3f9d8
}

.hover-b--green2:focus,
.hover-b--green2:hover {
    border-color: #b2f2bb
}

.hover-b--green3:focus,
.hover-b--green3:hover {
    border-color: #8ce99a
}

.hover-b--green4:focus,
.hover-b--green4:hover {
    border-color: #69db7c
}

.hover-b--green5:focus,
.hover-b--green5:hover {
    border-color: #51cf66
}

.hover-b--green6:focus,
.hover-b--green6:hover {
    border-color: #40c057
}

.hover-b--green7:focus,
.hover-b--green7:hover {
    border-color: #37b24d
}

.hover-b--green8:focus,
.hover-b--green8:hover {
    border-color: #2f9e44
}

.hover-b--green9:focus,
.hover-b--green9:hover {
    border-color: #2b8a3e
}

.hover-b--lime:focus,
.hover-b--lime:hover {
    border-color: #82c91e
}

.hover-b--lime0:focus,
.hover-b--lime0:hover {
    border-color: #f4fce3
}

.hover-b--lime1:focus,
.hover-b--lime1:hover {
    border-color: #e9fac8
}

.hover-b--lime2:focus,
.hover-b--lime2:hover {
    border-color: #d8f5a2
}

.hover-b--lime3:focus,
.hover-b--lime3:hover {
    border-color: #c0eb75
}

.hover-b--lime4:focus,
.hover-b--lime4:hover {
    border-color: #a9e34b
}

.hover-b--lime5:focus,
.hover-b--lime5:hover {
    border-color: #94d82d
}

.hover-b--lime6:focus,
.hover-b--lime6:hover {
    border-color: #82c91e
}

.hover-b--lime7:focus,
.hover-b--lime7:hover {
    border-color: #74b816
}

.hover-b--lime8:focus,
.hover-b--lime8:hover {
    border-color: #66a80f
}

.hover-b--lime9:focus,
.hover-b--lime9:hover {
    border-color: #5c940d
}

.hover-b--teal:focus,
.hover-b--teal:hover {
    border-color: #12b886
}

.hover-b--teal0:focus,
.hover-b--teal0:hover {
    border-color: #e6fcf5
}

.hover-b--teal1:focus,
.hover-b--teal1:hover {
    border-color: #c3fae8
}

.hover-b--teal2:focus,
.hover-b--teal2:hover {
    border-color: #96f2d7
}

.hover-b--teal3:focus,
.hover-b--teal3:hover {
    border-color: #63e6be
}

.hover-b--teal4:focus,
.hover-b--teal4:hover {
    border-color: #38d9a9
}

.hover-b--teal5:focus,
.hover-b--teal5:hover {
    border-color: #20c997
}

.hover-b--teal6:focus,
.hover-b--teal6:hover {
    border-color: #12b886
}

.hover-b--teal7:focus,
.hover-b--teal7:hover {
    border-color: #0ca678
}

.hover-b--teal8:focus,
.hover-b--teal8:hover {
    border-color: #099268
}

.hover-b--teal9:focus,
.hover-b--teal9:hover {
    border-color: #087f5b
}

.hover-b--cyan:focus,
.hover-b--cyan:hover {
    border-color: #15aabf
}

.hover-b--cyan0:focus,
.hover-b--cyan0:hover {
    border-color: #e3fafc
}

.hover-b--cyan1:focus,
.hover-b--cyan1:hover {
    border-color: #c5f6fa
}

.hover-b--cyan2:focus,
.hover-b--cyan2:hover {
    border-color: #99e9f2
}

.hover-b--cyan3:focus,
.hover-b--cyan3:hover {
    border-color: #66d9e8
}

.hover-b--cyan4:focus,
.hover-b--cyan4:hover {
    border-color: #3bc9db
}

.hover-b--cyan5:focus,
.hover-b--cyan5:hover {
    border-color: #22b8cf
}

.hover-b--cyan6:focus,
.hover-b--cyan6:hover {
    border-color: #15aabf
}

.hover-b--cyan7:focus,
.hover-b--cyan7:hover {
    border-color: #1098ad
}

.hover-b--cyan8:focus,
.hover-b--cyan8:hover {
    border-color: #0c8599
}

.hover-b--cyan9:focus,
.hover-b--cyan9:hover {
    border-color: #0b7285
}

.hover-b--blue:focus,
.hover-b--blue:hover {
    border-color: #228be6
}

.hover-b--blue0:focus,
.hover-b--blue0:hover {
    border-color: #e7f5ff
}

.hover-b--blue1:focus,
.hover-b--blue1:hover {
    border-color: #d0ebff
}

.hover-b--blue2:focus,
.hover-b--blue2:hover {
    border-color: #a5d8ff
}

.hover-b--blue3:focus,
.hover-b--blue3:hover {
    border-color: #74c0fc
}

.hover-b--blue4:focus,
.hover-b--blue4:hover {
    border-color: #4dabf7
}

.hover-b--blue5:focus,
.hover-b--blue5:hover {
    border-color: #339af0
}

.hover-b--blue6:focus,
.hover-b--blue6:hover {
    border-color: #228be6
}

.hover-b--blue7:focus,
.hover-b--blue7:hover {
    border-color: #1c7ed6
}

.hover-b--blue8:focus,
.hover-b--blue8:hover {
    border-color: #1971c2
}

.hover-b--blue9:focus,
.hover-b--blue9:hover {
    border-color: #1864ab
}

.hover-b--blue10:focus,
.hover-b--blue10:hover {
    border-color: #155592
}

.hover-b--indigo:focus,
.hover-b--indigo:hover {
    border-color: #4c6ef5
}

.hover-b--indigo0:focus,
.hover-b--indigo0:hover {
    border-color: #edf2ff
}

.hover-b--indigo1:focus,
.hover-b--indigo1:hover {
    border-color: #dbe4ff
}

.hover-b--indigo2:focus,
.hover-b--indigo2:hover {
    border-color: #bac8ff
}

.hover-b--indigo3:focus,
.hover-b--indigo3:hover {
    border-color: #91a7ff
}

.hover-b--indigo4:focus,
.hover-b--indigo4:hover {
    border-color: #748ffc
}

.hover-b--indigo5:focus,
.hover-b--indigo5:hover {
    border-color: #5c7cfa
}

.hover-b--indigo6:focus,
.hover-b--indigo6:hover {
    border-color: #4c6ef5
}

.hover-b--indigo7:focus,
.hover-b--indigo7:hover {
    border-color: #4263eb
}

.hover-b--indigo8:focus,
.hover-b--indigo8:hover {
    border-color: #3b5bdb
}

.hover-b--indigo9:focus,
.hover-b--indigo9:hover {
    border-color: #364fc7
}

.hover-b--violet:focus,
.hover-b--violet:hover {
    border-color: #7950f2
}

.hover-b--violet0:focus,
.hover-b--violet0:hover {
    border-color: #f3f0ff
}

.hover-b--violet1:focus,
.hover-b--violet1:hover {
    border-color: #e5dbff
}

.hover-b--violet2:focus,
.hover-b--violet2:hover {
    border-color: #d0bfff
}

.hover-b--violet3:focus,
.hover-b--violet3:hover {
    border-color: #b197fc
}

.hover-b--violet4:focus,
.hover-b--violet4:hover {
    border-color: #9775fa
}

.hover-b--violet5:focus,
.hover-b--violet5:hover {
    border-color: #845ef7
}

.hover-b--violet6:focus,
.hover-b--violet6:hover {
    border-color: #7950f2
}

.hover-b--violet7:focus,
.hover-b--violet7:hover {
    border-color: #7048e8
}

.hover-b--violet8:focus,
.hover-b--violet8:hover {
    border-color: #6741d9
}

.hover-b--violet9:focus,
.hover-b--violet9:hover {
    border-color: #5f3dc4
}

.hover-b--grape:focus,
.hover-b--grape:hover {
    border-color: #be4bdb
}

.hover-b--grape0:focus,
.hover-b--grape0:hover {
    border-color: #f8f0fc
}

.hover-b--grape1:focus,
.hover-b--grape1:hover {
    border-color: #f3d9fa
}

.hover-b--grape2:focus,
.hover-b--grape2:hover {
    border-color: #eebefa
}

.hover-b--grape3:focus,
.hover-b--grape3:hover {
    border-color: #e599f7
}

.hover-b--grape4:focus,
.hover-b--grape4:hover {
    border-color: #da77f2
}

.hover-b--grape5:focus,
.hover-b--grape5:hover {
    border-color: #cc5de8
}

.hover-b--grape6:focus,
.hover-b--grape6:hover {
    border-color: #be4bdb
}

.hover-b--grape7:focus,
.hover-b--grape7:hover {
    border-color: #ae3ec9
}

.hover-b--grape8:focus,
.hover-b--grape8:hover {
    border-color: #9c36b5
}

.hover-b--grape9:focus,
.hover-b--grape9:hover {
    border-color: #862e9c
}

.hover-b--pink:focus,
.hover-b--pink:hover {
    border-color: #f783ac
}

.hover-b--pink0:focus,
.hover-b--pink0:hover {
    border-color: #fff0f6
}

.hover-b--pink1:focus,
.hover-b--pink1:hover {
    border-color: #ffdeeb
}

.hover-b--pink2:focus,
.hover-b--pink2:hover {
    border-color: #fcc2d7
}

.hover-b--pink3:focus,
.hover-b--pink3:hover {
    border-color: #faa2c1
}

.hover-b--pink4:focus,
.hover-b--pink4:hover {
    border-color: #f783ac
}

.hover-b--pink5:focus,
.hover-b--pink5:hover {
    border-color: #f06595
}

.hover-b--pink6:focus,
.hover-b--pink6:hover {
    border-color: #e64980
}

.hover-b--pink7:focus,
.hover-b--pink7:hover {
    border-color: #d6336c
}

.hover-b--pink8:focus,
.hover-b--pink8:hover {
    border-color: #c2255c
}

.hover-b--pink9:focus,
.hover-b--pink9:hover {
    border-color: #a61e4d
}

.hover-b--brown:focus,
.hover-b--brown:hover {
    border-color: #463b2d
}

.hover-b--brown0:focus,
.hover-b--brown0:hover {
    border-color: #e6b674
}

.hover-b--brown1:focus,
.hover-b--brown1:hover {
    border-color: #c09962
}

.hover-b--brown2:focus,
.hover-b--brown2:hover {
    border-color: #9d7e52
}

.hover-b--brown3:focus,
.hover-b--brown3:hover {
    border-color: #7e6644
}

.hover-b--brown4:focus,
.hover-b--brown4:hover {
    border-color: #665339
}

.hover-b--brown5:focus,
.hover-b--brown5:hover {
    border-color: #534532
}

.hover-b--brown6:focus,
.hover-b--brown6:hover {
    border-color: #463b2d
}

.hover-b--brown7:focus,
.hover-b--brown7:hover {
    border-color: #3c352a
}

.hover-b--brown8:focus,
.hover-b--brown8:hover {
    border-color: #36312a
}

.hover-b--brown9:focus,
.hover-b--brown9:hover {
    border-color: #332f2b
}

.hover-b--primary0:focus,
.hover-b--primary0:hover {
    border-color: #e7f5ff
}

.hover-b--primary1:focus,
.hover-b--primary1:hover {
    border-color: #d0ebff
}

.hover-b--primary2:focus,
.hover-b--primary2:hover {
    border-color: #a5d8ff
}

.hover-b--primary3:focus,
.hover-b--primary3:hover {
    border-color: #74c0fc
}

.hover-b--primary4:focus,
.hover-b--primary4:hover {
    border-color: #4dabf7
}

.hover-b--primary5:focus,
.hover-b--primary5:hover {
    border-color: #339af0
}

.hover-b--primary6:focus,
.hover-b--primary6:hover {
    border-color: #228be6
}

.hover-b--primary7:focus,
.hover-b--primary7:hover {
    border-color: #1c7ed6
}

.hover-b--primary8:focus,
.hover-b--primary8:hover {
    border-color: #1971c2
}

.hover-b--primary9:focus,
.hover-b--primary9:hover {
    border-color: #1864ab
}

.hover-b--secondary0:focus,
.hover-b--secondary0:hover {
    border-color: #f8f9fa
}

.hover-b--secondary1:focus,
.hover-b--secondary1:hover {
    border-color: #f1f3f5
}

.hover-b--secondary2:focus,
.hover-b--secondary2:hover {
    border-color: #e9ecef
}

.hover-b--secondary3:focus,
.hover-b--secondary3:hover {
    border-color: #dee2e6
}

.hover-b--secondary4:focus,
.hover-b--secondary4:hover {
    border-color: #ced4da
}

.hover-b--secondary5:focus,
.hover-b--secondary5:hover {
    border-color: #adb5bd
}

.hover-b--secondary6:focus,
.hover-b--secondary6:hover {
    border-color: #868e96
}

.hover-b--secondary7:focus,
.hover-b--secondary7:hover {
    border-color: #495057
}

.hover-b--secondary8:focus,
.hover-b--secondary8:hover {
    border-color: #343a40
}

.hover-b--secondary9:focus,
.hover-b--secondary9:hover {
    border-color: #212529
}

.hover-b--vip0:focus,
.hover-b--vip0:hover {
    border-color: #e6fcf5
}

.hover-b--vip1:focus,
.hover-b--vip1:hover {
    border-color: #c3fae8
}

.hover-b--vip2:focus,
.hover-b--vip2:hover {
    border-color: #96f2d7
}

.hover-b--vip3:focus,
.hover-b--vip3:hover {
    border-color: #63e6be
}

.hover-b--vip4:focus,
.hover-b--vip4:hover {
    border-color: #38d9a9
}

.hover-b--vip5:focus,
.hover-b--vip5:hover {
    border-color: #20c997
}

.hover-b--vip6:focus,
.hover-b--vip6:hover {
    border-color: #12b886
}

.hover-b--vip7:focus,
.hover-b--vip7:hover {
    border-color: #0ca678
}

.hover-b--vip8:focus,
.hover-b--vip8:hover {
    border-color: #099268
}

.hover-b--vip9:focus,
.hover-b--vip9:hover {
    border-color: #087f5b
}

.hover-b--info0:focus,
.hover-b--info0:hover {
    border-color: #e7f5ff
}

.hover-b--info1:focus,
.hover-b--info1:hover {
    border-color: #d0ebff
}

.hover-b--info2:focus,
.hover-b--info2:hover {
    border-color: #a5d8ff
}

.hover-b--info3:focus,
.hover-b--info3:hover {
    border-color: #74c0fc
}

.hover-b--info4:focus,
.hover-b--info4:hover {
    border-color: #4dabf7
}

.hover-b--info5:focus,
.hover-b--info5:hover {
    border-color: #339af0
}

.hover-b--info6:focus,
.hover-b--info6:hover {
    border-color: #228be6
}

.hover-b--info7:focus,
.hover-b--info7:hover {
    border-color: #1c7ed6
}

.hover-b--info8:focus,
.hover-b--info8:hover {
    border-color: #1971c2
}

.hover-b--info9:focus,
.hover-b--info9:hover {
    border-color: #1864ab
}

.hover-b--success0:focus,
.hover-b--success0:hover {
    border-color: #ebfbee
}

.hover-b--success1:focus,
.hover-b--success1:hover {
    border-color: #d3f9d8
}

.hover-b--success2:focus,
.hover-b--success2:hover {
    border-color: #b2f2bb
}

.hover-b--success3:focus,
.hover-b--success3:hover {
    border-color: #8ce99a
}

.hover-b--success4:focus,
.hover-b--success4:hover {
    border-color: #69db7c
}

.hover-b--success5:focus,
.hover-b--success5:hover {
    border-color: #51cf66
}

.hover-b--success6:focus,
.hover-b--success6:hover {
    border-color: #40c057
}

.hover-b--success7:focus,
.hover-b--success7:hover {
    border-color: #37b24d
}

.hover-b--success8:focus,
.hover-b--success8:hover {
    border-color: #2f9e44
}

.hover-b--success9:focus,
.hover-b--success9:hover {
    border-color: #2b8a3e
}

.hover-b--danger0:focus,
.hover-b--danger0:hover {
    border-color: #fff5f5
}

.hover-b--danger1:focus,
.hover-b--danger1:hover {
    border-color: #ffe3e3
}

.hover-b--danger2:focus,
.hover-b--danger2:hover {
    border-color: #ffc9c9
}

.hover-b--danger3:focus,
.hover-b--danger3:hover {
    border-color: #ffa8a8
}

.hover-b--danger4:focus,
.hover-b--danger4:hover {
    border-color: #ff8787
}

.hover-b--danger5:focus,
.hover-b--danger5:hover {
    border-color: #ff6b6b
}

.hover-b--danger6:focus,
.hover-b--danger6:hover {
    border-color: #fa5252
}

.hover-b--danger7:focus,
.hover-b--danger7:hover {
    border-color: #f03e3e
}

.hover-b--danger8:focus,
.hover-b--danger8:hover {
    border-color: #e03131
}

.hover-b--danger9:focus,
.hover-b--danger9:hover {
    border-color: #c92a2a
}

.hover-b--warning0:focus,
.hover-b--warning0:hover {
    border-color: #fff9db
}

.hover-b--warning1:focus,
.hover-b--warning1:hover {
    border-color: #fff3bf
}

.hover-b--warning2:focus,
.hover-b--warning2:hover {
    border-color: #ffec99
}

.hover-b--warning3:focus,
.hover-b--warning3:hover {
    border-color: #ffe066
}

.hover-b--warning4:focus,
.hover-b--warning4:hover {
    border-color: #ffd43b
}

.hover-b--warning5:focus,
.hover-b--warning5:hover {
    border-color: #fcc419
}

.hover-b--warning6:focus,
.hover-b--warning6:hover {
    border-color: #fab005
}

.hover-b--warning7:focus,
.hover-b--warning7:hover {
    border-color: #f59f00
}

.hover-b--warning8:focus,
.hover-b--warning8:hover {
    border-color: #f08c00
}

.hover-b--warning9:focus,
.hover-b--warning9:hover {
    border-color: #e67700
}

.pa0 {
    padding: 0
}

.pa1 {
    padding: .25rem
}

.pa2 {
    padding: .5rem
}

.pa3 {
    padding: 1rem
}

.pa4 {
    padding: 1.5rem
}

.pa5 {
    padding: 2rem
}

.pa6 {
    padding: 3rem
}

.pa7 {
    padding: 6rem
}

.pl0 {
    padding-left: 0
}

.pl1 {
    padding-left: .25rem
}

.pl2 {
    padding-left: .5rem
}

.pl3 {
    padding-left: 1rem
}

.pl4 {
    padding-left: 1.5rem
}

.pl5 {
    padding-left: 2rem
}

.pl6 {
    padding-left: 3rem
}

.pl7 {
    padding-left: 6rem
}

.pr0 {
    padding-right: 0
}

.pr1 {
    padding-right: .25rem
}

.pr2 {
    padding-right: .5rem
}

.pr3 {
    padding-right: 1rem
}

.pr4 {
    padding-right: 1.5rem
}

.pr5 {
    padding-right: 2rem
}

.pr6 {
    padding-right: 3rem
}

.pr7 {
    padding-right: 6rem
}

.pb0 {
    padding-bottom: 0
}

.pb1 {
    padding-bottom: .25rem
}

.pb2 {
    padding-bottom: .5rem
}

.pb3 {
    padding-bottom: 1rem
}

.pb4 {
    padding-bottom: 1.5rem
}

.pb5 {
    padding-bottom: 2rem
}

.pb6 {
    padding-bottom: 3rem
}

.pb7 {
    padding-bottom: 6rem
}

.pt0 {
    padding-top: 0
}

.pt1 {
    padding-top: .25rem
}

.pt2 {
    padding-top: .5rem
}

.pt3 {
    padding-top: 1rem
}

.pt4 {
    padding-top: 1.5rem
}

.pt5 {
    padding-top: 2rem
}

.pt6 {
    padding-top: 3rem
}

.pt7 {
    padding-top: 6rem
}

.pv0 {
    padding-top: 0;
    padding-bottom: 0
}

.pv1 {
    padding-top: .25rem;
    padding-bottom: .25rem
}

.pv2 {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.pv3 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.pv4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
}

.pv5 {
    padding-top: 2rem;
    padding-bottom: 2rem
}

.pv6 {
    padding-top: 3rem;
    padding-bottom: 3rem
}

.pv7 {
    padding-top: 6rem;
    padding-bottom: 6rem
}

.ph0 {
    padding-left: 0;
    padding-right: 0
}

.ph1 {
    padding-left: .25rem;
    padding-right: .25rem
}

.ph2 {
    padding-left: .5rem;
    padding-right: .5rem
}

.ph3 {
    padding-left: 1rem;
    padding-right: 1rem
}

.ph4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.ph5 {
    padding-left: 2rem;
    padding-right: 2rem
}

.ph6 {
    padding-left: 3rem;
    padding-right: 3rem
}

.ph7 {
    padding-left: 6rem;
    padding-right: 6rem
}

.ma0 {
    margin: 0
}

.ma1 {
    margin: .25rem
}

.ma2 {
    margin: .5rem
}

.ma3 {
    margin: 1rem
}

.ma4 {
    margin: 1.5rem
}

.ma5 {
    margin: 2rem
}

.ma6 {
    margin: 3rem
}

.ma7 {
    margin: 6rem
}

.ml0 {
    margin-left: 0
}

.ml1 {
    margin-left: .25rem
}

.ml2 {
    margin-left: .5rem
}

.ml3 {
    margin-left: 1rem
}

.ml4 {
    margin-left: 1.5rem
}

.ml5 {
    margin-left: 2rem
}

.ml6 {
    margin-left: 3rem
}

.ml7 {
    margin-left: 6rem
}

.mr0 {
    margin-right: 0
}

.mr1 {
    margin-right: .25rem
}

.mr2 {
    margin-right: .5rem
}

.mr3 {
    margin-right: 1rem
}

.mr4 {
    margin-right: 1.5rem
}

.mr5 {
    margin-right: 2rem
}

.mr6 {
    margin-right: 3rem
}

.mr7 {
    margin-right: 6rem
}

.mb0 {
    margin-bottom: 0
}

.mb1 {
    margin-bottom: .25rem
}

.mb2 {
    margin-bottom: .5rem
}

.mb3 {
    margin-bottom: 1rem
}

.mb4 {
    margin-bottom: 1.5rem
}

.mb5 {
    margin-bottom: 2rem
}

.mb6 {
    margin-bottom: 3rem
}

.mb7 {
    margin-bottom: 6rem
}

.mt0 {
    margin-top: 0
}

.mt1 {
    margin-top: .25rem
}

.mt2 {
    margin-top: .5rem
}

.mt3 {
    margin-top: 1rem
}

.mt4 {
    margin-top: 1.5rem
}

.mt5 {
    margin-top: 2rem
}

.mt6 {
    margin-top: 3rem
}

.mt7 {
    margin-top: 6rem
}

.mv0 {
    margin-top: 0;
    margin-bottom: 0
}

.mv1 {
    margin-top: .25rem;
    margin-bottom: .25rem
}

.mv2 {
    margin-top: .5rem;
    margin-bottom: .5rem
}

.mv3 {
    margin-top: 1rem;
    margin-bottom: 1rem
}

.mv4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem
}

.mv5 {
    margin-top: 2rem;
    margin-bottom: 2rem
}

.mv6 {
    margin-top: 3rem;
    margin-bottom: 3rem
}

.mv7 {
    margin-top: 6rem;
    margin-bottom: 6rem
}

.mh0 {
    margin-left: 0;
    margin-right: 0
}

.mh1 {
    margin-left: .25rem;
    margin-right: .25rem
}

.mh2 {
    margin-left: .5rem;
    margin-right: .5rem
}

.mh3 {
    margin-left: 1rem;
    margin-right: 1rem
}

.mh4 {
    margin-left: 1.5rem;
    margin-right: 1.5rem
}

.mh5 {
    margin-left: 2rem;
    margin-right: 2rem
}

.mh6 {
    margin-left: 3rem;
    margin-right: 3rem
}

.mh7 {
    margin-left: 6rem;
    margin-right: 6rem
}

@media screen and (min-width: 30em) {
    .pa0-ns {
        padding: 0
    }
    .pa1-ns {
        padding: .25rem
    }
    .pa2-ns {
        padding: .5rem
    }
    .pa3-ns {
        padding: 1rem
    }
    .pa4-ns {
        padding: 1.5rem
    }
    .pa5-ns {
        padding: 2rem
    }
    .pa6-ns {
        padding: 3rem
    }
    .pa7-ns {
        padding: 6rem
    }
    .pl0-ns {
        padding-left: 0
    }
    .pl1-ns {
        padding-left: .25rem
    }
    .pl2-ns {
        padding-left: .5rem
    }
    .pl3-ns {
        padding-left: 1rem
    }
    .pl4-ns {
        padding-left: 1.5rem
    }
    .pl5-ns {
        padding-left: 2rem
    }
    .pl6-ns {
        padding-left: 3rem
    }
    .pl7-ns {
        padding-left: 6rem
    }
    .pr0-ns {
        padding-right: 0
    }
    .pr1-ns {
        padding-right: .25rem
    }
    .pr2-ns {
        padding-right: .5rem
    }
    .pr3-ns {
        padding-right: 1rem
    }
    .pr4-ns {
        padding-right: 1.5rem
    }
    .pr5-ns {
        padding-right: 2rem
    }
    .pr6-ns {
        padding-right: 3rem
    }
    .pr7-ns {
        padding-right: 6rem
    }
    .pb0-ns {
        padding-bottom: 0
    }
    .pb1-ns {
        padding-bottom: .25rem
    }
    .pb2-ns {
        padding-bottom: .5rem
    }
    .pb3-ns {
        padding-bottom: 1rem
    }
    .pb4-ns {
        padding-bottom: 1.5rem
    }
    .pb5-ns {
        padding-bottom: 2rem
    }
    .pb6-ns {
        padding-bottom: 3rem
    }
    .pb7-ns {
        padding-bottom: 6rem
    }
    .pt0-ns {
        padding-top: 0
    }
    .pt1-ns {
        padding-top: .25rem
    }
    .pt2-ns {
        padding-top: .5rem
    }
    .pt3-ns {
        padding-top: 1rem
    }
    .pt4-ns {
        padding-top: 1.5rem
    }
    .pt5-ns {
        padding-top: 2rem
    }
    .pt6-ns {
        padding-top: 3rem
    }
    .pt7-ns {
        padding-top: 6rem
    }
    .pv0-ns {
        padding-top: 0;
        padding-bottom: 0
    }
    .pv1-ns {
        padding-top: .25rem;
        padding-bottom: .25rem
    }
    .pv2-ns {
        padding-top: .5rem;
        padding-bottom: .5rem
    }
    .pv3-ns {
        padding-top: 1rem;
        padding-bottom: 1rem
    }
    .pv4-ns {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem
    }
    .pv5-ns {
        padding-top: 2rem;
        padding-bottom: 2rem
    }
    .pv6-ns {
        padding-top: 3rem;
        padding-bottom: 3rem
    }
    .pv7-ns {
        padding-top: 6rem;
        padding-bottom: 6rem
    }
    .ph0-ns {
        padding-left: 0;
        padding-right: 0
    }
    .ph1-ns {
        padding-left: .25rem;
        padding-right: .25rem
    }
    .ph2-ns {
        padding-left: .5rem;
        padding-right: .5rem
    }
    .ph3-ns {
        padding-left: 1rem;
        padding-right: 1rem
    }
    .ph4-ns {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }
    .ph5-ns {
        padding-left: 2rem;
        padding-right: 2rem
    }
    .ph6-ns {
        padding-left: 3rem;
        padding-right: 3rem
    }
    .ph7-ns {
        padding-left: 6rem;
        padding-right: 6rem
    }
    .ma0-ns {
        margin: 0
    }
    .ma1-ns {
        margin: .25rem
    }
    .ma2-ns {
        margin: .5rem
    }
    .ma3-ns {
        margin: 1rem
    }
    .ma4-ns {
        margin: 1.5rem
    }
    .ma5-ns {
        margin: 2rem
    }
    .ma6-ns {
        margin: 3rem
    }
    .ma7-ns {
        margin: 6rem
    }
    .ml0-ns {
        margin-left: 0
    }
    .ml1-ns {
        margin-left: .25rem
    }
    .ml2-ns {
        margin-left: .5rem
    }
    .ml3-ns {
        margin-left: 1rem
    }
    .ml4-ns {
        margin-left: 1.5rem
    }
    .ml5-ns {
        margin-left: 2rem
    }
    .ml6-ns {
        margin-left: 3rem
    }
    .ml7-ns {
        margin-left: 6rem
    }
    .mr0-ns {
        margin-right: 0
    }
    .mr1-ns {
        margin-right: .25rem
    }
    .mr2-ns {
        margin-right: .5rem
    }
    .mr3-ns {
        margin-right: 1rem
    }
    .mr4-ns {
        margin-right: 1.5rem
    }
    .mr5-ns {
        margin-right: 2rem
    }
    .mr6-ns {
        margin-right: 3rem
    }
    .mr7-ns {
        margin-right: 6rem
    }
    .mb0-ns {
        margin-bottom: 0
    }
    .mb1-ns {
        margin-bottom: .25rem
    }
    .mb2-ns {
        margin-bottom: .5rem
    }
    .mb3-ns {
        margin-bottom: 1rem
    }
    .mb4-ns {
        margin-bottom: 1.5rem
    }
    .mb5-ns {
        margin-bottom: 2rem
    }
    .mb6-ns {
        margin-bottom: 3rem
    }
    .mb7-ns {
        margin-bottom: 6rem
    }
    .mt0-ns {
        margin-top: 0
    }
    .mt1-ns {
        margin-top: .25rem
    }
    .mt2-ns {
        margin-top: .5rem
    }
    .mt3-ns {
        margin-top: 1rem
    }
    .mt4-ns {
        margin-top: 1.5rem
    }
    .mt5-ns {
        margin-top: 2rem
    }
    .mt6-ns {
        margin-top: 3rem
    }
    .mt7-ns {
        margin-top: 6rem
    }
    .mv0-ns {
        margin-top: 0;
        margin-bottom: 0
    }
    .mv1-ns {
        margin-top: .25rem;
        margin-bottom: .25rem
    }
    .mv2-ns {
        margin-top: .5rem;
        margin-bottom: .5rem
    }
    .mv3-ns {
        margin-top: 1rem;
        margin-bottom: 1rem
    }
    .mv4-ns {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem
    }
    .mv5-ns {
        margin-top: 2rem;
        margin-bottom: 2rem
    }
    .mv6-ns {
        margin-top: 3rem;
        margin-bottom: 3rem
    }
    .mv7-ns {
        margin-top: 6rem;
        margin-bottom: 6rem
    }
    .mh0-ns {
        margin-left: 0;
        margin-right: 0
    }
    .mh1-ns {
        margin-left: .25rem;
        margin-right: .25rem
    }
    .mh2-ns {
        margin-left: .5rem;
        margin-right: .5rem
    }
    .mh3-ns {
        margin-left: 1rem;
        margin-right: 1rem
    }
    .mh4-ns {
        margin-left: 1.5rem;
        margin-right: 1.5rem
    }
    .mh5-ns {
        margin-left: 2rem;
        margin-right: 2rem
    }
    .mh6-ns {
        margin-left: 3rem;
        margin-right: 3rem
    }
    .mh7-ns {
        margin-left: 6rem;
        margin-right: 6rem
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .pa0-m {
        padding: 0
    }
    .pa1-m {
        padding: .25rem
    }
    .pa2-m {
        padding: .5rem
    }
    .pa3-m {
        padding: 1rem
    }
    .pa4-m {
        padding: 1.5rem
    }
    .pa5-m {
        padding: 2rem
    }
    .pa6-m {
        padding: 3rem
    }
    .pa7-m {
        padding: 6rem
    }
    .pl0-m {
        padding-left: 0
    }
    .pl1-m {
        padding-left: .25rem
    }
    .pl2-m {
        padding-left: .5rem
    }
    .pl3-m {
        padding-left: 1rem
    }
    .pl4-m {
        padding-left: 1.5rem
    }
    .pl5-m {
        padding-left: 2rem
    }
    .pl6-m {
        padding-left: 3rem
    }
    .pl7-m {
        padding-left: 6rem
    }
    .pr0-m {
        padding-right: 0
    }
    .pr1-m {
        padding-right: .25rem
    }
    .pr2-m {
        padding-right: .5rem
    }
    .pr3-m {
        padding-right: 1rem
    }
    .pr4-m {
        padding-right: 1.5rem
    }
    .pr5-m {
        padding-right: 2rem
    }
    .pr6-m {
        padding-right: 3rem
    }
    .pr7-m {
        padding-right: 6rem
    }
    .pb0-m {
        padding-bottom: 0
    }
    .pb1-m {
        padding-bottom: .25rem
    }
    .pb2-m {
        padding-bottom: .5rem
    }
    .pb3-m {
        padding-bottom: 1rem
    }
    .pb4-m {
        padding-bottom: 1.5rem
    }
    .pb5-m {
        padding-bottom: 2rem
    }
    .pb6-m {
        padding-bottom: 3rem
    }
    .pb7-m {
        padding-bottom: 6rem
    }
    .pt0-m {
        padding-top: 0
    }
    .pt1-m {
        padding-top: .25rem
    }
    .pt2-m {
        padding-top: .5rem
    }
    .pt3-m {
        padding-top: 1rem
    }
    .pt4-m {
        padding-top: 1.5rem
    }
    .pt5-m {
        padding-top: 2rem
    }
    .pt6-m {
        padding-top: 3rem
    }
    .pt7-m {
        padding-top: 6rem
    }
    .pv0-m {
        padding-top: 0;
        padding-bottom: 0
    }
    .pv1-m {
        padding-top: .25rem;
        padding-bottom: .25rem
    }
    .pv2-m {
        padding-top: .5rem;
        padding-bottom: .5rem
    }
    .pv3-m {
        padding-top: 1rem;
        padding-bottom: 1rem
    }
    .pv4-m {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem
    }
    .pv5-m {
        padding-top: 2rem;
        padding-bottom: 2rem
    }
    .pv6-m {
        padding-top: 3rem;
        padding-bottom: 3rem
    }
    .pv7-m {
        padding-top: 6rem;
        padding-bottom: 6rem
    }
    .ph0-m {
        padding-left: 0;
        padding-right: 0
    }
    .ph1-m {
        padding-left: .25rem;
        padding-right: .25rem
    }
    .ph2-m {
        padding-left: .5rem;
        padding-right: .5rem
    }
    .ph3-m {
        padding-left: 1rem;
        padding-right: 1rem
    }
    .ph4-m {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }
    .ph5-m {
        padding-left: 2rem;
        padding-right: 2rem
    }
    .ph6-m {
        padding-left: 3rem;
        padding-right: 3rem
    }
    .ph7-m {
        padding-left: 6rem;
        padding-right: 6rem
    }
    .ma0-m {
        margin: 0
    }
    .ma1-m {
        margin: .25rem
    }
    .ma2-m {
        margin: .5rem
    }
    .ma3-m {
        margin: 1rem
    }
    .ma4-m {
        margin: 1.5rem
    }
    .ma5-m {
        margin: 2rem
    }
    .ma6-m {
        margin: 3rem
    }
    .ma7-m {
        margin: 6rem
    }
    .ml0-m {
        margin-left: 0
    }
    .ml1-m {
        margin-left: .25rem
    }
    .ml2-m {
        margin-left: .5rem
    }
    .ml3-m {
        margin-left: 1rem
    }
    .ml4-m {
        margin-left: 1.5rem
    }
    .ml5-m {
        margin-left: 2rem
    }
    .ml6-m {
        margin-left: 3rem
    }
    .ml7-m {
        margin-left: 6rem
    }
    .mr0-m {
        margin-right: 0
    }
    .mr1-m {
        margin-right: .25rem
    }
    .mr2-m {
        margin-right: .5rem
    }
    .mr3-m {
        margin-right: 1rem
    }
    .mr4-m {
        margin-right: 1.5rem
    }
    .mr5-m {
        margin-right: 2rem
    }
    .mr6-m {
        margin-right: 3rem
    }
    .mr7-m {
        margin-right: 6rem
    }
    .mb0-m {
        margin-bottom: 0
    }
    .mb1-m {
        margin-bottom: .25rem
    }
    .mb2-m {
        margin-bottom: .5rem
    }
    .mb3-m {
        margin-bottom: 1rem
    }
    .mb4-m {
        margin-bottom: 1.5rem
    }
    .mb5-m {
        margin-bottom: 2rem
    }
    .mb6-m {
        margin-bottom: 3rem
    }
    .mb7-m {
        margin-bottom: 6rem
    }
    .mt0-m {
        margin-top: 0
    }
    .mt1-m {
        margin-top: .25rem
    }
    .mt2-m {
        margin-top: .5rem
    }
    .mt3-m {
        margin-top: 1rem
    }
    .mt4-m {
        margin-top: 1.5rem
    }
    .mt5-m {
        margin-top: 2rem
    }
    .mt6-m {
        margin-top: 3rem
    }
    .mt7-m {
        margin-top: 6rem
    }
    .mv0-m {
        margin-top: 0;
        margin-bottom: 0
    }
    .mv1-m {
        margin-top: .25rem;
        margin-bottom: .25rem
    }
    .mv2-m {
        margin-top: .5rem;
        margin-bottom: .5rem
    }
    .mv3-m {
        margin-top: 1rem;
        margin-bottom: 1rem
    }
    .mv4-m {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem
    }
    .mv5-m {
        margin-top: 2rem;
        margin-bottom: 2rem
    }
    .mv6-m {
        margin-top: 3rem;
        margin-bottom: 3rem
    }
    .mv7-m {
        margin-top: 6rem;
        margin-bottom: 6rem
    }
    .mh0-m {
        margin-left: 0;
        margin-right: 0
    }
    .mh1-m {
        margin-left: .25rem;
        margin-right: .25rem
    }
    .mh2-m {
        margin-left: .5rem;
        margin-right: .5rem
    }
    .mh3-m {
        margin-left: 1rem;
        margin-right: 1rem
    }
    .mh4-m {
        margin-left: 1.5rem;
        margin-right: 1.5rem
    }
    .mh5-m {
        margin-left: 2rem;
        margin-right: 2rem
    }
    .mh6-m {
        margin-left: 3rem;
        margin-right: 3rem
    }
    .mh7-m {
        margin-left: 6rem;
        margin-right: 6rem
    }
}

@media screen and (min-width: 60em) {
    .pa0-l {
        padding: 0
    }
    .pa1-l {
        padding: .25rem
    }
    .pa2-l {
        padding: .5rem
    }
    .pa3-l {
        padding: 1rem
    }
    .pa4-l {
        padding: 1.5rem
    }
    .pa5-l {
        padding: 2rem
    }
    .pa6-l {
        padding: 3rem
    }
    .pa7-l {
        padding: 6rem
    }
    .pl0-l {
        padding-left: 0
    }
    .pl1-l {
        padding-left: .25rem
    }
    .pl2-l {
        padding-left: .5rem
    }
    .pl3-l {
        padding-left: 1rem
    }
    .pl4-l {
        padding-left: 1.5rem
    }
    .pl5-l {
        padding-left: 2rem
    }
    .pl6-l {
        padding-left: 3rem
    }
    .pl7-l {
        padding-left: 6rem
    }
    .pr0-l {
        padding-right: 0
    }
    .pr1-l {
        padding-right: .25rem
    }
    .pr2-l {
        padding-right: .5rem
    }
    .pr3-l {
        padding-right: 1rem
    }
    .pr4-l {
        padding-right: 1.5rem
    }
    .pr5-l {
        padding-right: 2rem
    }
    .pr6-l {
        padding-right: 3rem
    }
    .pr7-l {
        padding-right: 6rem
    }
    .pb0-l {
        padding-bottom: 0
    }
    .pb1-l {
        padding-bottom: .25rem
    }
    .pb2-l {
        padding-bottom: .5rem
    }
    .pb3-l {
        padding-bottom: 1rem
    }
    .pb4-l {
        padding-bottom: 1.5rem
    }
    .pb5-l {
        padding-bottom: 2rem
    }
    .pb6-l {
        padding-bottom: 3rem
    }
    .pb7-l {
        padding-bottom: 6rem
    }
    .pt0-l {
        padding-top: 0
    }
    .pt1-l {
        padding-top: .25rem
    }
    .pt2-l {
        padding-top: .5rem
    }
    .pt3-l {
        padding-top: 1rem
    }
    .pt4-l {
        padding-top: 1.5rem
    }
    .pt5-l {
        padding-top: 2rem
    }
    .pt6-l {
        padding-top: 3rem
    }
    .pt7-l {
        padding-top: 6rem
    }
    .pv0-l {
        padding-top: 0;
        padding-bottom: 0
    }
    .pv1-l {
        padding-top: .25rem;
        padding-bottom: .25rem
    }
    .pv2-l {
        padding-top: .5rem;
        padding-bottom: .5rem
    }
    .pv3-l {
        padding-top: 1rem;
        padding-bottom: 1rem
    }
    .pv4-l {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem
    }
    .pv5-l {
        padding-top: 2rem;
        padding-bottom: 2rem
    }
    .pv6-l {
        padding-top: 3rem;
        padding-bottom: 3rem
    }
    .pv7-l {
        padding-top: 6rem;
        padding-bottom: 6rem
    }
    .ph0-l {
        padding-left: 0;
        padding-right: 0
    }
    .ph1-l {
        padding-left: .25rem;
        padding-right: .25rem
    }
    .ph2-l {
        padding-left: .5rem;
        padding-right: .5rem
    }
    .ph3-l {
        padding-left: 1rem;
        padding-right: 1rem
    }
    .ph4-l {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }
    .ph5-l {
        padding-left: 2rem;
        padding-right: 2rem
    }
    .ph6-l {
        padding-left: 3rem;
        padding-right: 3rem
    }
    .ph7-l {
        padding-left: 6rem;
        padding-right: 6rem
    }
    .ma0-l {
        margin: 0
    }
    .ma1-l {
        margin: .25rem
    }
    .ma2-l {
        margin: .5rem
    }
    .ma3-l {
        margin: 1rem
    }
    .ma4-l {
        margin: 1.5rem
    }
    .ma5-l {
        margin: 2rem
    }
    .ma6-l {
        margin: 3rem
    }
    .ma7-l {
        margin: 6rem
    }
    .ml0-l {
        margin-left: 0
    }
    .ml1-l {
        margin-left: .25rem
    }
    .ml2-l {
        margin-left: .5rem
    }
    .ml3-l {
        margin-left: 1rem
    }
    .ml4-l {
        margin-left: 1.5rem
    }
    .ml5-l {
        margin-left: 2rem
    }
    .ml6-l {
        margin-left: 3rem
    }
    .ml7-l {
        margin-left: 6rem
    }
    .mr0-l {
        margin-right: 0
    }
    .mr1-l {
        margin-right: .25rem
    }
    .mr2-l {
        margin-right: .5rem
    }
    .mr3-l {
        margin-right: 1rem
    }
    .mr4-l {
        margin-right: 1.5rem
    }
    .mr5-l {
        margin-right: 2rem
    }
    .mr6-l {
        margin-right: 3rem
    }
    .mr7-l {
        margin-right: 6rem
    }
    .mb0-l {
        margin-bottom: 0
    }
    .mb1-l {
        margin-bottom: .25rem
    }
    .mb2-l {
        margin-bottom: .5rem
    }
    .mb3-l {
        margin-bottom: 1rem
    }
    .mb4-l {
        margin-bottom: 1.5rem
    }
    .mb5-l {
        margin-bottom: 2rem
    }
    .mb6-l {
        margin-bottom: 3rem
    }
    .mb7-l {
        margin-bottom: 6rem
    }
    .mt0-l {
        margin-top: 0
    }
    .mt1-l {
        margin-top: .25rem
    }
    .mt2-l {
        margin-top: .5rem
    }
    .mt3-l {
        margin-top: 1rem
    }
    .mt4-l {
        margin-top: 1.5rem
    }
    .mt5-l {
        margin-top: 2rem
    }
    .mt6-l {
        margin-top: 3rem
    }
    .mt7-l {
        margin-top: 6rem
    }
    .mv0-l {
        margin-top: 0;
        margin-bottom: 0
    }
    .mv1-l {
        margin-top: .25rem;
        margin-bottom: .25rem
    }
    .mv2-l {
        margin-top: .5rem;
        margin-bottom: .5rem
    }
    .mv3-l {
        margin-top: 1rem;
        margin-bottom: 1rem
    }
    .mv4-l {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem
    }
    .mv5-l {
        margin-top: 2rem;
        margin-bottom: 2rem
    }
    .mv6-l {
        margin-top: 3rem;
        margin-bottom: 3rem
    }
    .mv7-l {
        margin-top: 6rem;
        margin-bottom: 6rem
    }
    .mh0-l {
        margin-left: 0;
        margin-right: 0
    }
    .mh1-l {
        margin-left: .25rem;
        margin-right: .25rem
    }
    .mh2-l {
        margin-left: .5rem;
        margin-right: .5rem
    }
    .mh3-l {
        margin-left: 1rem;
        margin-right: 1rem
    }
    .mh4-l {
        margin-left: 1.5rem;
        margin-right: 1.5rem
    }
    .mh5-l {
        margin-left: 2rem;
        margin-right: 2rem
    }
    .mh6-l {
        margin-left: 3rem;
        margin-right: 3rem
    }
    .mh7-l {
        margin-left: 6rem;
        margin-right: 6rem
    }
}

@media screen and (min-width: 77.5rem) {
    .pa0-xl {
        padding: 0
    }
    .pa1-xl {
        padding: .25rem
    }
    .pa2-xl {
        padding: .5rem
    }
    .pa3-xl {
        padding: 1rem
    }
    .pa4-xl {
        padding: 1.5rem
    }
    .pa5-xl {
        padding: 2rem
    }
    .pa6-xl {
        padding: 3rem
    }
    .pa7-xl {
        padding: 6rem
    }
    .pl0-xl {
        padding-left: 0
    }
    .pl1-xl {
        padding-left: .25rem
    }
    .pl2-xl {
        padding-left: .5rem
    }
    .pl3-xl {
        padding-left: 1rem
    }
    .pl4-xl {
        padding-left: 1.5rem
    }
    .pl5-xl {
        padding-left: 2rem
    }
    .pl6-xl {
        padding-left: 3rem
    }
    .pl7-xl {
        padding-left: 6rem
    }
    .pr0-xl {
        padding-right: 0
    }
    .pr1-xl {
        padding-right: .25rem
    }
    .pr2-xl {
        padding-right: .5rem
    }
    .pr3-xl {
        padding-right: 1rem
    }
    .pr4-xl {
        padding-right: 1.5rem
    }
    .pr5-xl {
        padding-right: 2rem
    }
    .pr6-xl {
        padding-right: 3rem
    }
    .pr7-xl {
        padding-right: 6rem
    }
    .pb0-xl {
        padding-bottom: 0
    }
    .pb1-xl {
        padding-bottom: .25rem
    }
    .pb2-xl {
        padding-bottom: .5rem
    }
    .pb3-xl {
        padding-bottom: 1rem
    }
    .pb4-xl {
        padding-bottom: 1.5rem
    }
    .pb5-xl {
        padding-bottom: 2rem
    }
    .pb6-xl {
        padding-bottom: 3rem
    }
    .pb7-xl {
        padding-bottom: 6rem
    }
    .pt0-xl {
        padding-top: 0
    }
    .pt1-xl {
        padding-top: .25rem
    }
    .pt2-xl {
        padding-top: .5rem
    }
    .pt3-xl {
        padding-top: 1rem
    }
    .pt4-xl {
        padding-top: 1.5rem
    }
    .pt5-xl {
        padding-top: 2rem
    }
    .pt6-xl {
        padding-top: 3rem
    }
    .pt7-xl {
        padding-top: 6rem
    }
    .pv0-xl {
        padding-top: 0;
        padding-bottom: 0
    }
    .pv1-xl {
        padding-top: .25rem;
        padding-bottom: .25rem
    }
    .pv2-xl {
        padding-top: .5rem;
        padding-bottom: .5rem
    }
    .pv3-xl {
        padding-top: 1rem;
        padding-bottom: 1rem
    }
    .pv4-xl {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem
    }
    .pv5-xl {
        padding-top: 2rem;
        padding-bottom: 2rem
    }
    .pv6-xl {
        padding-top: 3rem;
        padding-bottom: 3rem
    }
    .pv7-xl {
        padding-top: 6rem;
        padding-bottom: 6rem
    }
    .ph0-xl {
        padding-left: 0;
        padding-right: 0
    }
    .ph1-xl {
        padding-left: .25rem;
        padding-right: .25rem
    }
    .ph2-xl {
        padding-left: .5rem;
        padding-right: .5rem
    }
    .ph3-xl {
        padding-left: 1rem;
        padding-right: 1rem
    }
    .ph4-xl {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }
    .ph5-xl {
        padding-left: 2rem;
        padding-right: 2rem
    }
    .ph6-xl {
        padding-left: 3rem;
        padding-right: 3rem
    }
    .ph7-xl {
        padding-left: 6rem;
        padding-right: 6rem
    }
    .ma0-xl {
        margin: 0
    }
    .ma1-xl {
        margin: .25rem
    }
    .ma2-xl {
        margin: .5rem
    }
    .ma3-xl {
        margin: 1rem
    }
    .ma4-xl {
        margin: 1.5rem
    }
    .ma5-xl {
        margin: 2rem
    }
    .ma6-xl {
        margin: 3rem
    }
    .ma7-xl {
        margin: 6rem
    }
    .ml0-xl {
        margin-left: 0
    }
    .ml1-xl {
        margin-left: .25rem
    }
    .ml2-xl {
        margin-left: .5rem
    }
    .ml3-xl {
        margin-left: 1rem
    }
    .ml4-xl {
        margin-left: 1.5rem
    }
    .ml5-xl {
        margin-left: 2rem
    }
    .ml6-xl {
        margin-left: 3rem
    }
    .ml7-xl {
        margin-left: 6rem
    }
    .mr0-xl {
        margin-right: 0
    }
    .mr1-xl {
        margin-right: .25rem
    }
    .mr2-xl {
        margin-right: .5rem
    }
    .mr3-xl {
        margin-right: 1rem
    }
    .mr4-xl {
        margin-right: 1.5rem
    }
    .mr5-xl {
        margin-right: 2rem
    }
    .mr6-xl {
        margin-right: 3rem
    }
    .mr7-xl {
        margin-right: 6rem
    }
    .mb0-xl {
        margin-bottom: 0
    }
    .mb1-xl {
        margin-bottom: .25rem
    }
    .mb2-xl {
        margin-bottom: .5rem
    }
    .mb3-xl {
        margin-bottom: 1rem
    }
    .mb4-xl {
        margin-bottom: 1.5rem
    }
    .mb5-xl {
        margin-bottom: 2rem
    }
    .mb6-xl {
        margin-bottom: 3rem
    }
    .mb7-xl {
        margin-bottom: 6rem
    }
    .mt0-xl {
        margin-top: 0
    }
    .mt1-xl {
        margin-top: .25rem
    }
    .mt2-xl {
        margin-top: .5rem
    }
    .mt3-xl {
        margin-top: 1rem
    }
    .mt4-xl {
        margin-top: 1.5rem
    }
    .mt5-xl {
        margin-top: 2rem
    }
    .mt6-xl {
        margin-top: 3rem
    }
    .mt7-xl {
        margin-top: 6rem
    }
    .mv0-xl {
        margin-top: 0;
        margin-bottom: 0
    }
    .mv1-xl {
        margin-top: .25rem;
        margin-bottom: .25rem
    }
    .mv2-xl {
        margin-top: .5rem;
        margin-bottom: .5rem
    }
    .mv3-xl {
        margin-top: 1rem;
        margin-bottom: 1rem
    }
    .mv4-xl {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem
    }
    .mv5-xl {
        margin-top: 2rem;
        margin-bottom: 2rem
    }
    .mv6-xl {
        margin-top: 3rem;
        margin-bottom: 3rem
    }
    .mv7-xl {
        margin-top: 6rem;
        margin-bottom: 6rem
    }
    .mh0-xl {
        margin-left: 0;
        margin-right: 0
    }
    .mh1-xl {
        margin-left: .25rem;
        margin-right: .25rem
    }
    .mh2-xl {
        margin-left: .5rem;
        margin-right: .5rem
    }
    .mh3-xl {
        margin-left: 1rem;
        margin-right: 1rem
    }
    .mh4-xl {
        margin-left: 1.5rem;
        margin-right: 1.5rem
    }
    .mh5-xl {
        margin-left: 2rem;
        margin-right: 2rem
    }
    .mh6-xl {
        margin-left: 3rem;
        margin-right: 3rem
    }
    .mh7-xl {
        margin-left: 6rem;
        margin-right: 6rem
    }
}

@media screen and (min-width: 91.25rem) {
    .pa0-2x {
        padding: 0
    }
    .pa1-2x {
        padding: .25rem
    }
    .pa2-2x {
        padding: .5rem
    }
    .pa3-2x {
        padding: 1rem
    }
    .pa4-2x {
        padding: 1.5rem
    }
    .pa5-2x {
        padding: 2rem
    }
    .pa6-2x {
        padding: 3rem
    }
    .pa7-2x {
        padding: 6rem
    }
    .pl0-2x {
        padding-left: 0
    }
    .pl1-2x {
        padding-left: .25rem
    }
    .pl2-2x {
        padding-left: .5rem
    }
    .pl3-2x {
        padding-left: 1rem
    }
    .pl4-2x {
        padding-left: 1.5rem
    }
    .pl5-2x {
        padding-left: 2rem
    }
    .pl6-2x {
        padding-left: 3rem
    }
    .pl7-2x {
        padding-left: 6rem
    }
    .pr0-2x {
        padding-right: 0
    }
    .pr1-2x {
        padding-right: .25rem
    }
    .pr2-2x {
        padding-right: .5rem
    }
    .pr3-2x {
        padding-right: 1rem
    }
    .pr4-2x {
        padding-right: 1.5rem
    }
    .pr5-2x {
        padding-right: 2rem
    }
    .pr6-2x {
        padding-right: 3rem
    }
    .pr7-2x {
        padding-right: 6rem
    }
    .pb0-2x {
        padding-bottom: 0
    }
    .pb1-2x {
        padding-bottom: .25rem
    }
    .pb2-2x {
        padding-bottom: .5rem
    }
    .pb3-2x {
        padding-bottom: 1rem
    }
    .pb4-2x {
        padding-bottom: 1.5rem
    }
    .pb5-2x {
        padding-bottom: 2rem
    }
    .pb6-2x {
        padding-bottom: 3rem
    }
    .pb7-2x {
        padding-bottom: 6rem
    }
    .pt0-2x {
        padding-top: 0
    }
    .pt1-2x {
        padding-top: .25rem
    }
    .pt2-2x {
        padding-top: .5rem
    }
    .pt3-2x {
        padding-top: 1rem
    }
    .pt4-2x {
        padding-top: 1.5rem
    }
    .pt5-2x {
        padding-top: 2rem
    }
    .pt6-2x {
        padding-top: 3rem
    }
    .pt7-2x {
        padding-top: 6rem
    }
    .pv0-2x {
        padding-top: 0;
        padding-bottom: 0
    }
    .pv1-2x {
        padding-top: .25rem;
        padding-bottom: .25rem
    }
    .pv2-2x {
        padding-top: .5rem;
        padding-bottom: .5rem
    }
    .pv3-2x {
        padding-top: 1rem;
        padding-bottom: 1rem
    }
    .pv4-2x {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem
    }
    .pv5-2x {
        padding-top: 2rem;
        padding-bottom: 2rem
    }
    .pv6-2x {
        padding-top: 3rem;
        padding-bottom: 3rem
    }
    .pv7-2x {
        padding-top: 6rem;
        padding-bottom: 6rem
    }
    .ph0-2x {
        padding-left: 0;
        padding-right: 0
    }
    .ph1-2x {
        padding-left: .25rem;
        padding-right: .25rem
    }
    .ph2-2x {
        padding-left: .5rem;
        padding-right: .5rem
    }
    .ph3-2x {
        padding-left: 1rem;
        padding-right: 1rem
    }
    .ph4-2x {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }
    .ph5-2x {
        padding-left: 2rem;
        padding-right: 2rem
    }
    .ph6-2x {
        padding-left: 3rem;
        padding-right: 3rem
    }
    .ph7-2x {
        padding-left: 6rem;
        padding-right: 6rem
    }
    .ma0-2x {
        margin: 0
    }
    .ma1-2x {
        margin: .25rem
    }
    .ma2-2x {
        margin: .5rem
    }
    .ma3-2x {
        margin: 1rem
    }
    .ma4-2x {
        margin: 1.5rem
    }
    .ma5-2x {
        margin: 2rem
    }
    .ma6-2x {
        margin: 3rem
    }
    .ma7-2x {
        margin: 6rem
    }
    .ml0-2x {
        margin-left: 0
    }
    .ml1-2x {
        margin-left: .25rem
    }
    .ml2-2x {
        margin-left: .5rem
    }
    .ml3-2x {
        margin-left: 1rem
    }
    .ml4-2x {
        margin-left: 1.5rem
    }
    .ml5-2x {
        margin-left: 2rem
    }
    .ml6-2x {
        margin-left: 3rem
    }
    .ml7-2x {
        margin-left: 6rem
    }
    .mr0-2x {
        margin-right: 0
    }
    .mr1-2x {
        margin-right: .25rem
    }
    .mr2-2x {
        margin-right: .5rem
    }
    .mr3-2x {
        margin-right: 1rem
    }
    .mr4-2x {
        margin-right: 1.5rem
    }
    .mr5-2x {
        margin-right: 2rem
    }
    .mr6-2x {
        margin-right: 3rem
    }
    .mr7-2x {
        margin-right: 6rem
    }
    .mb0-2x {
        margin-bottom: 0
    }
    .mb1-2x {
        margin-bottom: .25rem
    }
    .mb2-2x {
        margin-bottom: .5rem
    }
    .mb3-2x {
        margin-bottom: 1rem
    }
    .mb4-2x {
        margin-bottom: 1.5rem
    }
    .mb5-2x {
        margin-bottom: 2rem
    }
    .mb6-2x {
        margin-bottom: 3rem
    }
    .mb7-2x {
        margin-bottom: 6rem
    }
    .mt0-2x {
        margin-top: 0
    }
    .mt1-2x {
        margin-top: .25rem
    }
    .mt2-2x {
        margin-top: .5rem
    }
    .mt3-2x {
        margin-top: 1rem
    }
    .mt4-2x {
        margin-top: 1.5rem
    }
    .mt5-2x {
        margin-top: 2rem
    }
    .mt6-2x {
        margin-top: 3rem
    }
    .mt7-2x {
        margin-top: 6rem
    }
    .mv0-2x {
        margin-top: 0;
        margin-bottom: 0
    }
    .mv1-2x {
        margin-top: .25rem;
        margin-bottom: .25rem
    }
    .mv2-2x {
        margin-top: .5rem;
        margin-bottom: .5rem
    }
    .mv3-2x {
        margin-top: 1rem;
        margin-bottom: 1rem
    }
    .mv4-2x {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem
    }
    .mv5-2x {
        margin-top: 2rem;
        margin-bottom: 2rem
    }
    .mv6-2x {
        margin-top: 3rem;
        margin-bottom: 3rem
    }
    .mv7-2x {
        margin-top: 6rem;
        margin-bottom: 6rem
    }
    .mh0-2x {
        margin-left: 0;
        margin-right: 0
    }
    .mh1-2x {
        margin-left: .25rem;
        margin-right: .25rem
    }
    .mh2-2x {
        margin-left: .5rem;
        margin-right: .5rem
    }
    .mh3-2x {
        margin-left: 1rem;
        margin-right: 1rem
    }
    .mh4-2x {
        margin-left: 1.5rem;
        margin-right: 1.5rem
    }
    .mh5-2x {
        margin-left: 2rem;
        margin-right: 2rem
    }
    .mh6-2x {
        margin-left: 3rem;
        margin-right: 3rem
    }
    .mh7-2x {
        margin-left: 6rem;
        margin-right: 6rem
    }
}

.na1 {
    margin: -.25rem
}

.na2 {
    margin: -.5rem
}

.na3 {
    margin: -1rem
}

.na4 {
    margin: -1.5rem
}

.na5 {
    margin: -2rem
}

.na6 {
    margin: -3rem
}

.na7 {
    margin: -6rem
}

.nl1 {
    margin-left: -.25rem
}

.nl2 {
    margin-left: -.5rem
}

.nl3 {
    margin-left: -1rem
}

.nl4 {
    margin-left: -1.5rem
}

.nl5 {
    margin-left: -2rem
}

.nl6 {
    margin-left: -3rem
}

.nl7 {
    margin-left: -6rem
}

.nr1 {
    margin-right: -.25rem
}

.nr2 {
    margin-right: -.5rem
}

.nr3 {
    margin-right: -1rem
}

.nr4 {
    margin-right: -1.5rem
}

.nr5 {
    margin-right: -2rem
}

.nr6 {
    margin-right: -3rem
}

.nr7 {
    margin-right: -6rem
}

.nb1 {
    margin-bottom: -.25rem
}

.nb2 {
    margin-bottom: -.5rem
}

.nb3 {
    margin-bottom: -1rem
}

.nb4 {
    margin-bottom: -1.5rem
}

.nb5 {
    margin-bottom: -2rem
}

.nb6 {
    margin-bottom: -3rem
}

.nb7 {
    margin-bottom: -6rem
}

.nt1 {
    margin-top: -.25rem
}

.nt2 {
    margin-top: -.5rem
}

.nt3 {
    margin-top: -1rem
}

.nt4 {
    margin-top: -1.5rem
}

.nt5 {
    margin-top: -2rem
}

.nt6 {
    margin-top: -3rem
}

.nt7 {
    margin-top: -6rem
}

@media screen and (min-width: 30em) {
    .na1-ns {
        margin: -.25rem
    }
    .na2-ns {
        margin: -.5rem
    }
    .na3-ns {
        margin: -1rem
    }
    .na4-ns {
        margin: -1.5rem
    }
    .na5-ns {
        margin: -2rem
    }
    .na6-ns {
        margin: -3rem
    }
    .na7-ns {
        margin: -6rem
    }
    .nl1-ns {
        margin-left: -.25rem
    }
    .nl2-ns {
        margin-left: -.5rem
    }
    .nl3-ns {
        margin-left: -1rem
    }
    .nl4-ns {
        margin-left: -1.5rem
    }
    .nl5-ns {
        margin-left: -2rem
    }
    .nl6-ns {
        margin-left: -3rem
    }
    .nl7-ns {
        margin-left: -6rem
    }
    .nr1-ns {
        margin-right: -.25rem
    }
    .nr2-ns {
        margin-right: -.5rem
    }
    .nr3-ns {
        margin-right: -1rem
    }
    .nr4-ns {
        margin-right: -1.5rem
    }
    .nr5-ns {
        margin-right: -2rem
    }
    .nr6-ns {
        margin-right: -3rem
    }
    .nr7-ns {
        margin-right: -6rem
    }
    .nb1-ns {
        margin-bottom: -.25rem
    }
    .nb2-ns {
        margin-bottom: -.5rem
    }
    .nb3-ns {
        margin-bottom: -1rem
    }
    .nb4-ns {
        margin-bottom: -1.5rem
    }
    .nb5-ns {
        margin-bottom: -2rem
    }
    .nb6-ns {
        margin-bottom: -3rem
    }
    .nb7-ns {
        margin-bottom: -6rem
    }
    .nt1-ns {
        margin-top: -.25rem
    }
    .nt2-ns {
        margin-top: -.5rem
    }
    .nt3-ns {
        margin-top: -1rem
    }
    .nt4-ns {
        margin-top: -1.5rem
    }
    .nt5-ns {
        margin-top: -2rem
    }
    .nt6-ns {
        margin-top: -3rem
    }
    .nt7-ns {
        margin-top: -6rem
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .na1-m {
        margin: -.25rem
    }
    .na2-m {
        margin: -.5rem
    }
    .na3-m {
        margin: -1rem
    }
    .na4-m {
        margin: -1.5rem
    }
    .na5-m {
        margin: -2rem
    }
    .na6-m {
        margin: -3rem
    }
    .na7-m {
        margin: -6rem
    }
    .nl1-m {
        margin-left: -.25rem
    }
    .nl2-m {
        margin-left: -.5rem
    }
    .nl3-m {
        margin-left: -1rem
    }
    .nl4-m {
        margin-left: -1.5rem
    }
    .nl5-m {
        margin-left: -2rem
    }
    .nl6-m {
        margin-left: -3rem
    }
    .nl7-m {
        margin-left: -6rem
    }
    .nr1-m {
        margin-right: -.25rem
    }
    .nr2-m {
        margin-right: -.5rem
    }
    .nr3-m {
        margin-right: -1rem
    }
    .nr4-m {
        margin-right: -1.5rem
    }
    .nr5-m {
        margin-right: -2rem
    }
    .nr6-m {
        margin-right: -3rem
    }
    .nr7-m {
        margin-right: -6rem
    }
    .nb1-m {
        margin-bottom: -.25rem
    }
    .nb2-m {
        margin-bottom: -.5rem
    }
    .nb3-m {
        margin-bottom: -1rem
    }
    .nb4-m {
        margin-bottom: -1.5rem
    }
    .nb5-m {
        margin-bottom: -2rem
    }
    .nb6-m {
        margin-bottom: -3rem
    }
    .nb7-m {
        margin-bottom: -6rem
    }
    .nt1-m {
        margin-top: -.25rem
    }
    .nt2-m {
        margin-top: -.5rem
    }
    .nt3-m {
        margin-top: -1rem
    }
    .nt4-m {
        margin-top: -1.5rem
    }
    .nt5-m {
        margin-top: -2rem
    }
    .nt6-m {
        margin-top: -3rem
    }
    .nt7-m {
        margin-top: -6rem
    }
}

@media screen and (min-width: 60em) {
    .na1-l {
        margin: -.25rem
    }
    .na2-l {
        margin: -.5rem
    }
    .na3-l {
        margin: -1rem
    }
    .na4-l {
        margin: -1.5rem
    }
    .na5-l {
        margin: -2rem
    }
    .na6-l {
        margin: -3rem
    }
    .na7-l {
        margin: -6rem
    }
    .nl1-l {
        margin-left: -.25rem
    }
    .nl2-l {
        margin-left: -.5rem
    }
    .nl3-l {
        margin-left: -1rem
    }
    .nl4-l {
        margin-left: -1.5rem
    }
    .nl5-l {
        margin-left: -2rem
    }
    .nl6-l {
        margin-left: -3rem
    }
    .nl7-l {
        margin-left: -6rem
    }
    .nr1-l {
        margin-right: -.25rem
    }
    .nr2-l {
        margin-right: -.5rem
    }
    .nr3-l {
        margin-right: -1rem
    }
    .nr4-l {
        margin-right: -1.5rem
    }
    .nr5-l {
        margin-right: -2rem
    }
    .nr6-l {
        margin-right: -3rem
    }
    .nr7-l {
        margin-right: -6rem
    }
    .nb1-l {
        margin-bottom: -.25rem
    }
    .nb2-l {
        margin-bottom: -.5rem
    }
    .nb3-l {
        margin-bottom: -1rem
    }
    .nb4-l {
        margin-bottom: -1.5rem
    }
    .nb5-l {
        margin-bottom: -2rem
    }
    .nb6-l {
        margin-bottom: -3rem
    }
    .nb7-l {
        margin-bottom: -6rem
    }
    .nt1-l {
        margin-top: -.25rem
    }
    .nt2-l {
        margin-top: -.5rem
    }
    .nt3-l {
        margin-top: -1rem
    }
    .nt4-l {
        margin-top: -1.5rem
    }
    .nt5-l {
        margin-top: -2rem
    }
    .nt6-l {
        margin-top: -3rem
    }
    .nt7-l {
        margin-top: -6rem
    }
}

.na0 {
    margin: 0
}

.nl0 {
    margin-left: 0
}

.nr0 {
    margin-right: 0
}

.nb0 {
    margin-bottom: 0
}

.nt0 {
    margin-top: 0
}

@media screen and (min-width: 30em) {
    .na0-ns {
        margin: 0
    }
    .nl0-ns {
        margin-left: 0
    }
    .nr0-ns {
        margin-right: 0
    }
    .nb0-ns {
        margin-bottom: 0
    }
    .nt0-ns {
        margin-top: 0
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .na0-m {
        margin: 0
    }
    .nl0-m {
        margin-left: 0
    }
    .nr0-m {
        margin-right: 0
    }
    .nb0-m {
        margin-bottom: 0
    }
    .nt0-m {
        margin-top: 0
    }
}

@media screen and (min-width: 60em) {
    .na0-l {
        margin: 0
    }
    .nl0-l {
        margin-left: 0
    }
    .nr0-l {
        margin-right: 0
    }
    .nb0-l {
        margin-bottom: 0
    }
    .nt0-l {
        margin-top: 0
    }
}

@media screen and (min-width: 77.5rem) {
    .na1-xl {
        margin: -.25rem
    }
    .na2-xl {
        margin: -.5rem
    }
    .na3-xl {
        margin: -1rem
    }
    .na4-xl {
        margin: -1.5rem
    }
    .na5-xl {
        margin: -2rem
    }
    .na6-xl {
        margin: -3rem
    }
    .na7-xl {
        margin: -6rem
    }
    .nl1-xl {
        margin-left: -.25rem
    }
    .nl2-xl {
        margin-left: -.5rem
    }
    .nl3-xl {
        margin-left: -1rem
    }
    .nl4-xl {
        margin-left: -1.5rem
    }
    .nl5-xl {
        margin-left: -2rem
    }
    .nl6-xl {
        margin-left: -3rem
    }
    .nl7-xl {
        margin-left: -6rem
    }
    .nr1-xl {
        margin-right: -.25rem
    }
    .nr2-xl {
        margin-right: -.5rem
    }
    .nr3-xl {
        margin-right: -1rem
    }
    .nr4-xl {
        margin-right: -1.5rem
    }
    .nr5-xl {
        margin-right: -2rem
    }
    .nr6-xl {
        margin-right: -3rem
    }
    .nr7-xl {
        margin-right: -6rem
    }
    .nb1-xl {
        margin-bottom: -.25rem
    }
    .nb2-xl {
        margin-bottom: -.5rem
    }
    .nb3-xl {
        margin-bottom: -1rem
    }
    .nb4-xl {
        margin-bottom: -1.5rem
    }
    .nb5-xl {
        margin-bottom: -2rem
    }
    .nb6-xl {
        margin-bottom: -3rem
    }
    .nb7-xl {
        margin-bottom: -6rem
    }
    .nt1-xl {
        margin-top: -.25rem
    }
    .nt2-xl {
        margin-top: -.5rem
    }
    .nt3-xl {
        margin-top: -1rem
    }
    .nt4-xl {
        margin-top: -1.5rem
    }
    .nt5-xl {
        margin-top: -2rem
    }
    .nt6-xl {
        margin-top: -3rem
    }
    .nt7-xl {
        margin-top: -6rem
    }
    .na0-xl {
        margin: 0
    }
    .nl0-xl {
        margin-left: 0
    }
    .nr0-xl {
        margin-right: 0
    }
    .nb0-xl {
        margin-bottom: 0
    }
    .nt0-xl {
        margin-top: 0
    }
}

@media screen and (min-width: 91.25rem) {
    .na1-2x {
        margin: -.25rem
    }
    .na2-2x {
        margin: -.5rem
    }
    .na3-2x {
        margin: -1rem
    }
    .na4-2x {
        margin: -1.5rem
    }
    .na5-2x {
        margin: -2rem
    }
    .na6-2x {
        margin: -3rem
    }
    .na7-2x {
        margin: -6rem
    }
    .nl1-2x {
        margin-left: -.25rem
    }
    .nl2-2x {
        margin-left: -.5rem
    }
    .nl3-2x {
        margin-left: -1rem
    }
    .nl4-2x {
        margin-left: -1.5rem
    }
    .nl5-2x {
        margin-left: -2rem
    }
    .nl6-2x {
        margin-left: -3rem
    }
    .nl7-2x {
        margin-left: -6rem
    }
    .nr1-2x {
        margin-right: -.25rem
    }
    .nr2-2x {
        margin-right: -.5rem
    }
    .nr3-2x {
        margin-right: -1rem
    }
    .nr4-2x {
        margin-right: -1.5rem
    }
    .nr5-2x {
        margin-right: -2rem
    }
    .nr6-2x {
        margin-right: -3rem
    }
    .nr7-2x {
        margin-right: -6rem
    }
    .nb1-2x {
        margin-bottom: -.25rem
    }
    .nb2-2x {
        margin-bottom: -.5rem
    }
    .nb3-2x {
        margin-bottom: -1rem
    }
    .nb4-2x {
        margin-bottom: -1.5rem
    }
    .nb5-2x {
        margin-bottom: -2rem
    }
    .nb6-2x {
        margin-bottom: -3rem
    }
    .nb7-2x {
        margin-bottom: -6rem
    }
    .nt1-2x {
        margin-top: -.25rem
    }
    .nt2-2x {
        margin-top: -.5rem
    }
    .nt3-2x {
        margin-top: -1rem
    }
    .nt4-2x {
        margin-top: -1.5rem
    }
    .nt5-2x {
        margin-top: -2rem
    }
    .nt6-2x {
        margin-top: -3rem
    }
    .nt7-2x {
        margin-top: -6rem
    }
    .na0-2x {
        margin: 0
    }
    .nl0-2x {
        margin-left: 0
    }
    .nr0-2x {
        margin-right: 0
    }
    .nb0-2x {
        margin-bottom: 0
    }
    .nt0-2x {
        margin-top: 0
    }
}

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

.striped--light-silver:nth-child(odd) {
    background-color: #ced4da
}

.striped--moon-gray:nth-child(odd) {
    background-color: #dee2e6
}

.striped--light-gray:nth-child(odd) {
    background-color: #ced4da
}

.striped--near-white:nth-child(odd) {
    background-color: #f8f9fa
}

.stripe-light:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.1)
}

.stripe-dark:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.1)
}

.border-spacing-0 {
    border-spacing: 0
}

.border-spacing-1 {
    border-spacing: 1px
}

.striped--dark:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.025)
}

.striped--light:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.025)
}

.strike {
    text-decoration: line-through
}

.underline {
    text-decoration: underline
}

.no-underline {
    text-decoration: none
}

@media screen and (min-width: 30em) {
    .strike-ns {
        text-decoration: line-through
    }
    .underline-ns {
        text-decoration: underline
    }
    .no-underline-ns {
        text-decoration: none
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .strike-m {
        text-decoration: line-through
    }
    .underline-m {
        text-decoration: underline
    }
    .no-underline-m {
        text-decoration: none
    }
}

@media screen and (min-width: 60em) {
    .strike-l {
        text-decoration: line-through
    }
    .underline-l {
        text-decoration: underline
    }
    .no-underline-l {
        text-decoration: none
    }
}

.tl {
    text-align: left
}

.tr {
    text-align: right
}

.tc {
    text-align: center
}

@media screen and (min-width: 30em) {
    .tl-ns {
        text-align: left
    }
    .tr-ns {
        text-align: right
    }
    .tc-ns {
        text-align: center
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .tl-m {
        text-align: left
    }
    .tr-m {
        text-align: right
    }
    .tc-m {
        text-align: center
    }
}

@media screen and (min-width: 60em) {
    .tl-l {
        text-align: left
    }
    .tr-l {
        text-align: right
    }
    .tc-l {
        text-align: center
    }
}

@media screen and (min-width: 77.5rem) {
    .tl-xl {
        text-align: left
    }
    .tr-xl {
        text-align: right
    }
    .tc-xl {
        text-align: center
    }
}

@media screen and (min-width: 91.25rem) {
    .tl-2x {
        text-align: left
    }
    .tr-2x {
        text-align: right
    }
    .tc-2x {
        text-align: center
    }
}

.ttc {
    text-transform: capitalize
}

.ttl {
    text-transform: lowercase
}

.ttu {
    text-transform: uppercase
}

.ttn {
    text-transform: none
}

@media screen and (min-width: 30em) {
    .ttc-ns {
        text-transform: capitalize
    }
    .ttl-ns {
        text-transform: lowercase
    }
    .ttu-ns {
        text-transform: uppercase
    }
    .ttn-ns {
        text-transform: none
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .ttc-m {
        text-transform: capitalize
    }
    .ttl-m {
        text-transform: lowercase
    }
    .ttu-m {
        text-transform: uppercase
    }
    .ttn-m {
        text-transform: none
    }
}

@media screen and (min-width: 60em) {
    .ttc-l {
        text-transform: capitalize
    }
    .ttl-l {
        text-transform: lowercase
    }
    .ttu-l {
        text-transform: uppercase
    }
    .ttn-l {
        text-transform: none
    }
}

.f0 {
    font-size: 0
}

.f1 {
    font-size: .64rem
}

.f2 {
    font-size: .8rem
}

.f3 {
    font-size: 1rem
}

.f4 {
    font-size: 1.25rem
}

.f5 {
    font-size: 1.5625rem
}

.f6 {
    font-size: 1.95312rem
}

.f7 {
    font-size: 2.44141rem
}

.f8 {
    font-size: 3.05176rem
}

.f9 {
    font-size: 3.8147rem
}

.f10 {
    font-size: 4.76837rem
}

.f11 {
    font-size: 5.96046rem
}

.f12 {
    font-size: 7.45058rem
}

@media screen and (min-width: 30em) {
    .f0-ns {
        font-size: 0
    }
    .f1-ns {
        font-size: .64rem
    }
    .f2-ns {
        font-size: .8rem
    }
    .f3-ns {
        font-size: 1rem
    }
    .f4-ns {
        font-size: 1.25rem
    }
    .f5-ns {
        font-size: 1.5625rem
    }
    .f6-ns {
        font-size: 1.95312rem
    }
    .f7-ns {
        font-size: 2.44141rem
    }
    .f8-ns {
        font-size: 3.05176rem
    }
    .f9-ns {
        font-size: 3.8147rem
    }
    .f10-ns {
        font-size: 4.76837rem
    }
    .f11-ns {
        font-size: 5.96046rem
    }
    .f12-ns {
        font-size: 7.45058rem
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .f0-m {
        font-size: 0
    }
    .f1-m {
        font-size: .64rem
    }
    .f2-m {
        font-size: .8rem
    }
    .f3-m {
        font-size: 1rem
    }
    .f4-m {
        font-size: 1.25rem
    }
    .f5-m {
        font-size: 1.5625rem
    }
    .f6-m {
        font-size: 1.95312rem
    }
    .f7-m {
        font-size: 2.44141rem
    }
    .f8-m {
        font-size: 3.05176rem
    }
    .f9-m {
        font-size: 3.8147rem
    }
    .f10-m {
        font-size: 4.76837rem
    }
    .f11-m {
        font-size: 5.96046rem
    }
    .f12-m {
        font-size: 7.45058rem
    }
}

@media screen and (min-width: 60em) {
    .f0-l {
        font-size: 0
    }
    .f1-l {
        font-size: .64rem
    }
    .f2-l {
        font-size: .8rem
    }
    .f3-l {
        font-size: 1rem
    }
    .f4-l {
        font-size: 1.25rem
    }
    .f5-l {
        font-size: 1.5625rem
    }
    .f6-l {
        font-size: 1.95312rem
    }
    .f7-l {
        font-size: 2.44141rem
    }
    .f8-l {
        font-size: 3.05176rem
    }
    .f9-l {
        font-size: 3.8147rem
    }
    .f10-l {
        font-size: 4.76837rem
    }
    .f11-l {
        font-size: 5.96046rem
    }
    .f12-l {
        font-size: 7.45058rem
    }
}

@media screen and (min-width: 77.5rem) {
    .f0-xl {
        font-size: 0
    }
    .f1-xl {
        font-size: .64rem
    }
    .f2-xl {
        font-size: .8rem
    }
    .f3-xl {
        font-size: 1rem
    }
    .f4-xl {
        font-size: 1.25rem
    }
    .f5-xl {
        font-size: 1.5625rem
    }
    .f6-xl {
        font-size: 1.95312rem
    }
    .f7-xl {
        font-size: 2.44141rem
    }
    .f8-xl {
        font-size: 3.05176rem
    }
    .f9-xl {
        font-size: 3.8147rem
    }
    .f10-xl {
        font-size: 4.76837rem
    }
    .f11-xl {
        font-size: 5.96046rem
    }
    .f12-xl {
        font-size: 7.45058rem
    }
}

@media screen and (min-width: 91.25rem) {
    .f0-2x {
        font-size: 0
    }
    .f1-2x {
        font-size: .64rem
    }
    .f2-2x {
        font-size: .8rem
    }
    .f3-2x {
        font-size: 1rem
    }
    .f4-2x {
        font-size: 1.25rem
    }
    .f5-2x {
        font-size: 1.5625rem
    }
    .f6-2x {
        font-size: 1.95312rem
    }
    .f7-2x {
        font-size: 2.44141rem
    }
    .f8-2x {
        font-size: 3.05176rem
    }
    .f9-2x {
        font-size: 3.8147rem
    }
    .f10-2x {
        font-size: 4.76837rem
    }
    .f11-2x {
        font-size: 5.96046rem
    }
    .f12-2x {
        font-size: 7.45058rem
    }
}

.measure {
    max-width: 30em
}

.measure-wide {
    max-width: 34em
}

.measure-narrow {
    max-width: 20em
}

.indent {
    text-indent: 1em;
    margin-top: 0;
    margin-bottom: 0
}

.small-caps {
    font-variant: small-caps
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

@media screen and (min-width: 30em) {
    .measure-ns {
        max-width: 30em
    }
    .measure-wide-ns {
        max-width: 34em
    }
    .measure-narrow-ns {
        max-width: 20em
    }
    .indent-ns {
        text-indent: 1em;
        margin-top: 0;
        margin-bottom: 0
    }
    .small-caps-ns {
        font-variant: small-caps
    }
    .truncate-ns {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .measure-m {
        max-width: 30em
    }
    .measure-wide-m {
        max-width: 34em
    }
    .measure-narrow-m {
        max-width: 20em
    }
    .indent-m {
        text-indent: 1em;
        margin-top: 0;
        margin-bottom: 0
    }
    .small-caps-m {
        font-variant: small-caps
    }
    .truncate-m {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }
}

@media screen and (min-width: 60em) {
    .measure-l {
        max-width: 30em
    }
    .measure-wide-l {
        max-width: 34em
    }
    .measure-narrow-l {
        max-width: 20em
    }
    .indent-l {
        text-indent: 1em;
        margin-top: 0;
        margin-bottom: 0
    }
    .small-caps-l {
        font-variant: small-caps
    }
    .truncate-l {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }
}

.overflow-container {
    overflow-y: scroll
}

.center {
    margin-right: auto;
    margin-left: auto
}

.mr-auto {
    margin-right: auto
}

.ml-auto {
    margin-left: auto
}

@media screen and (min-width: 30em) {
    .center-ns {
        margin-right: auto;
        margin-left: auto
    }
    .mr-auto-ns {
        margin-right: auto
    }
    .ml-auto-ns {
        margin-left: auto
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .center-m {
        margin-right: auto;
        margin-left: auto
    }
    .mr-auto-m {
        margin-right: auto
    }
    .ml-auto-m {
        margin-left: auto
    }
}

@media screen and (min-width: 60em) {
    .center-l {
        margin-right: auto;
        margin-left: auto
    }
    .mr-auto-l {
        margin-right: auto
    }
    .ml-auto-l {
        margin-left: auto
    }
}

.center-v {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.center-h {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.center-a {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.mr-auto {
    margin-right: auto
}

.ml-auto {
    margin-left: auto
}

@media screen and (min-width: 30em) {
    .center-v-ns {
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
    .center-h-ns {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }
    .center-a-ns {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }
    .mr-auto-ns {
        margin-right: auto
    }
    .ml-auto-ns {
        margin-left: auto
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .center-v-md {
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
    .center-h-md {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }
    .center-a-md {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }
    .mr-auto-md {
        margin-right: auto
    }
    .ml-auto-md {
        margin-left: auto
    }
}

@media screen and (min-width: 60em) {
    .center-v-l {
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
    .center-h-l {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }
    .center-a-l {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }
    .mr-auto-l {
        margin-right: auto
    }
    .ml-auto-l {
        margin-left: auto
    }
}

@media screen and (min-width: 77.5rem) {
    .center-xl {
        margin-right: auto;
        margin-left: auto
    }
    .center-v-xl {
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
    .center-h-xl {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }
    .center-a-xl {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }
    .mr-auto-xl {
        margin-right: auto
    }
    .ml-auto-xl {
        margin-left: auto
    }
}

@media screen and (min-width: 91.25rem) {
    .center-2x {
        margin-right: auto;
        margin-left: auto
    }
    .center-v-2x {
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
    .center-h-2x {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }
    .center-a-2x {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }
    .mr-auto-2x {
        margin-right: auto
    }
    .ml-auto-2x {
        margin-left: auto
    }
}

.clip {
    position: fixed !important;
    _position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px)
}

@media screen and (min-width: 30em) {
    .clip-ns {
        position: fixed !important;
        _position: absolute !important;
        clip: rect(1px 1px 1px 1px);
        clip: rect(1px, 1px, 1px, 1px)
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .clip-m {
        position: fixed !important;
        _position: absolute !important;
        clip: rect(1px 1px 1px 1px);
        clip: rect(1px, 1px, 1px, 1px)
    }
}

@media screen and (min-width: 60em) {
    .clip-l {
        position: fixed !important;
        _position: absolute !important;
        clip: rect(1px 1px 1px 1px);
        clip: rect(1px, 1px, 1px, 1px)
    }
}

.ws-normal {
    white-space: normal
}

.nowrap {
    white-space: nowrap
}

.pre {
    white-space: pre
}

@media screen and (min-width: 30em) {
    .ws-normal-ns {
        white-space: normal
    }
    .nowrap-ns {
        white-space: nowrap
    }
    .pre-ns {
        white-space: pre
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .ws-normal-m {
        white-space: normal
    }
    .nowrap-m {
        white-space: nowrap
    }
    .pre-m {
        white-space: pre
    }
}

@media screen and (min-width: 60em) {
    .ws-normal-l {
        white-space: normal
    }
    .nowrap-l {
        white-space: nowrap
    }
    .pre-l {
        white-space: pre
    }
}

.pre-wrap {
    white-space: pre-wrap
}

@media screen and (min-width: 30em) {
    .pre-wrap-ns {
        white-space: pre-wrap
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .pre-wrap-m {
        white-space: pre-wrap
    }
}

@media screen and (min-width: 60em) {
    .pre-wrap-l {
        white-space: pre-wrap
    }
}

@media screen and (min-width: 77.5rem) {
    .ws-normal-xl {
        white-space: normal
    }
    .nowrap-xl {
        white-space: nowrap
    }
    .pre-xl {
        white-space: pre
    }
    .pre-wrap-xl {
        white-space: pre-wrap
    }
}

@media screen and (min-width: 91.25rem) {
    .ws-normal-2x {
        white-space: normal
    }
    .nowrap-2x {
        white-space: nowrap
    }
    .pre-2x {
        white-space: pre
    }
    .pre-wrap-2x {
        white-space: pre-wrap
    }
}

.word-normal {
    word-break: normal
}

.word-wrap {
    word-break: break-all
}

.word-nowrap {
    word-break: keep-all
}

@media screen and (min-width: 30em) {
    .word-normal-ns {
        word-break: normal
    }
    .word-wrap-ns {
        word-break: break-all
    }
    .word-nowrap-ns {
        word-break: keep-all
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .word-normal-m {
        word-break: normal
    }
    .word-wrap-m {
        word-break: break-all
    }
    .word-nowrap-m {
        word-break: keep-all
    }
}

@media screen and (min-width: 60em) {
    .word-normal-l {
        word-break: normal
    }
    .word-wrap-l {
        word-break: break-all
    }
    .word-nowrap-l {
        word-break: keep-all
    }
}

.v-base {
    vertical-align: baseline
}

.v-mid {
    vertical-align: middle
}

.v-top {
    vertical-align: top
}

.v-btm {
    vertical-align: bottom
}

@media screen and (min-width: 30em) {
    .v-base-ns {
        vertical-align: baseline
    }
    .v-mid-ns {
        vertical-align: middle
    }
    .v-top-ns {
        vertical-align: top
    }
    .v-btm-ns {
        vertical-align: bottom
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .v-base-m {
        vertical-align: baseline
    }
    .v-mid-m {
        vertical-align: middle
    }
    .v-top-m {
        vertical-align: top
    }
    .v-btm-m {
        vertical-align: bottom
    }
}

@media screen and (min-width: 60em) {
    .v-base-l {
        vertical-align: baseline
    }
    .v-mid-l {
        vertical-align: middle
    }
    .v-top-l {
        vertical-align: top
    }
    .v-btm-l {
        vertical-align: bottom
    }
}

.dim {
    opacity: 1;
    -webkit-transition: opacity .1s ease-in;
    transition: opacity .1s ease-in
}

.dim:hover,
.dim:focus {
    opacity: .5;
    -webkit-transition: opacity .1s ease-in;
    transition: opacity .1s ease-in
}

.dim:active {
    opacity: .8;
    -webkit-transition: opacity .1s ease-out;
    transition: opacity .1s ease-out
}

.glow {
    -webkit-transition: opacity .15s ease-in;
    transition: opacity .15s ease-in
}

.glow:hover,
.glow:focus {
    opacity: 1;
    -webkit-transition: opacity .15s ease-in;
    transition: opacity .15s ease-in
}

.hide-child .child {
    opacity: 0;
    -webkit-transition: opacity .1s ease-in;
    transition: opacity .1s ease-in
}

.hide-child:hover .child,
.hide-child:focus .child,
.hide-child:active .child {
    opacity: 1;
    -webkit-transition: opacity .1s ease-in;
    transition: opacity .1s ease-in
}

.underline-hover:hover,
.underline-hover:focus {
    text-decoration: underline
}

.grow {
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: -webkit-transform .25s ease-out;
    transition: -webkit-transform .25s ease-out;
    transition: transform .25s ease-out;
    transition: transform .25s ease-out, -webkit-transform .25s ease-out
}

.grow:hover,
.grow:focus {
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
}

.grow:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9)
}

.grow-large {
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: -webkit-transform .25s ease-in-out;
    transition: -webkit-transform .25s ease-in-out;
    transition: transform .25s ease-in-out;
    transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out
}

.grow-large:hover,
.grow-large:focus {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

.grow-large:active {
    -webkit-transform: scale(0.95);
    transform: scale(0.95)
}

.pointer:focus,
.pointer:hover {
    cursor: pointer
}

.not-allowed:hover:focus,
.not-allowed:hover:hover {
    cursor: not-allowed
}

.text:focus,
.text:hover {
    cursor: text
}

.zoom-in:focus,
.zoom-in:hover {
    cursor: -webkit-zoom-in;
    cursor: zoom-in
}

.zoom-out:focus,
.zoom-out:hover {
    cursor: -webkit-zoom-out;
    cursor: zoom-out
}

.default:focus,
.default:hover {
    cursor: default
}

.shadow-hover {
    position: relative;
    -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.shadow-hover::after {
    content: '';
    -webkit-box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 .25rem .125rem 0 rgba(0, 0, 0, 0.05);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.shadow-hover:hover::after,
.shadow-hover:focus::after {
    opacity: 1
}

.b--animate,
.b--animate:hover,
.b--animate:focus {
    -webkit-transition: border-color .1s ease-in-out;
    transition: border-color .1s ease-in-out
}

.bg-animate,
.bg-animate:hover,
.bg-animate:focus {
    -webkit-transition: background-color .1s ease-in-out;
    transition: background-color .1s ease-in-out
}

.color-animate,
.color-animate:hover,
.color-animate:focus {
    -webkit-transition: color .1s ease-in-out;
    transition: color .1s ease-in-out
}

.all-animate,
.all-animate:hover,
.all-animate:focus {
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
}

.z-0 {
    z-index: 0
}

.z-1 {
    z-index: 1
}

.z-2 {
    z-index: 2
}

.z-3 {
    z-index: 3
}

.z-4 {
    z-index: 4
}

.z-5 {
    z-index: 5
}

.z-999 {
    z-index: 999
}

.z-9999 {
    z-index: 9999
}

.z-max {
    z-index: 2147483647
}

.z-inherit {
    z-index: inherit
}

.z-initial {
    z-index: initial
}

.z-unset {
    z-index: unset
}

.nested-copy-line-height p,
.nested-copy-line-height ul,
.nested-copy-line-height ol {
    line-height: 1.5
}

.nested-headline-line-height h1,
.nested-headline-line-height h2,
.nested-headline-line-height h3,
.nested-headline-line-height h4,
.nested-headline-line-height h5,
.nested-headline-line-height h6 {
    line-height: 1.25rem
}

.nested-list-reset ul,
.nested-list-reset ol {
    padding-left: 0;
    margin-left: 0;
    list-style-type: none
}

.nested-copy-indent p+p {
    text-indent: .1em;
    margin-top: 0;
    margin-bottom: 0
}

.nested-copy-seperator p+p {
    margin-top: 1.5em
}

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

.nested-links a {
    color: #228be6;
    -webkit-transition: color .15s ease-in;
    transition: color .15s ease-in
}

.nested-links a:hover,
.nested-links a:focus {
    color: #4dabf7;
    -webkit-transition: color .15s ease-in;
    transition: color .15s ease-in
}

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

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

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

@-webkit-keyframes pulseOpacity {
    0% {
        opacity: 0.99
    }
    50% {
        opacity: 0.66
    }
    100% {
        opacity: 0.99
    }
}

@keyframes pulseOpacity {
    0% {
        opacity: 0.99
    }
    50% {
        opacity: 0.66
    }
    100% {
        opacity: 0.99
    }
}

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

@-webkit-keyframes colorCycle {
    0% {
        color: #228be6
    }
    12.5% {
        color: #12b886
    }
    25% {
        color: #40c057
    }
    37.5% {
        color: #ffd43b
    }
    50% {
        color: #fd7e14
    }
    62.5% {
        color: #fa5252
    }
    75% {
        color: #f783ac
    }
    87.5% {
        color: #7950f2
    }
    100% {
        color: #228be6
    }
}

@keyframes colorCycle {
    0% {
        color: #228be6
    }
    12.5% {
        color: #12b886
    }
    25% {
        color: #40c057
    }
    37.5% {
        color: #ffd43b
    }
    50% {
        color: #fd7e14
    }
    62.5% {
        color: #fa5252
    }
    75% {
        color: #f783ac
    }
    87.5% {
        color: #7950f2
    }
    100% {
        color: #228be6
    }
}

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

@-webkit-keyframes shadowCycle {
    0% {
        -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(34, 139, 230, 0.25);
        box-shadow: 0 0.25rem 0.125rem 0 rgba(34, 139, 230, 0.25)
    }
    12.5% {
        -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(18, 184, 134, 0.25);
        box-shadow: 0 0.25rem 0.125rem 0 rgba(18, 184, 134, 0.25)
    }
    25% {
        -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(64, 192, 87, 0.25);
        box-shadow: 0 0.25rem 0.125rem 0 rgba(64, 192, 87, 0.25)
    }
    37.5% {
        -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(255, 212, 59, 0.25);
        box-shadow: 0 0.25rem 0.125rem 0 rgba(255, 212, 59, 0.25)
    }
    50% {
        -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(253, 126, 20, 0.25);
        box-shadow: 0 0.25rem 0.125rem 0 rgba(253, 126, 20, 0.25)
    }
    62.5% {
        -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(250, 82, 82, 0.25);
        box-shadow: 0 0.25rem 0.125rem 0 rgba(250, 82, 82, 0.25)
    }
    75% {
        -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(247, 131, 172, 0.25);
        box-shadow: 0 0.25rem 0.125rem 0 rgba(247, 131, 172, 0.25)
    }
    87.5% {
        -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(121, 80, 242, 0.25);
        box-shadow: 0 0.25rem 0.125rem 0 rgba(121, 80, 242, 0.25)
    }
    100% {
        -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(34, 139, 230, 0.25);
        box-shadow: 0 0.25rem 0.125rem 0 rgba(34, 139, 230, 0.25)
    }
}

@keyframes shadowCycle {
    0% {
        -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(34, 139, 230, 0.25);
        box-shadow: 0 0.25rem 0.125rem 0 rgba(34, 139, 230, 0.25)
    }
    12.5% {
        -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(18, 184, 134, 0.25);
        box-shadow: 0 0.25rem 0.125rem 0 rgba(18, 184, 134, 0.25)
    }
    25% {
        -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(64, 192, 87, 0.25);
        box-shadow: 0 0.25rem 0.125rem 0 rgba(64, 192, 87, 0.25)
    }
    37.5% {
        -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(255, 212, 59, 0.25);
        box-shadow: 0 0.25rem 0.125rem 0 rgba(255, 212, 59, 0.25)
    }
    50% {
        -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(253, 126, 20, 0.25);
        box-shadow: 0 0.25rem 0.125rem 0 rgba(253, 126, 20, 0.25)
    }
    62.5% {
        -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(250, 82, 82, 0.25);
        box-shadow: 0 0.25rem 0.125rem 0 rgba(250, 82, 82, 0.25)
    }
    75% {
        -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(247, 131, 172, 0.25);
        box-shadow: 0 0.25rem 0.125rem 0 rgba(247, 131, 172, 0.25)
    }
    87.5% {
        -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(121, 80, 242, 0.25);
        box-shadow: 0 0.25rem 0.125rem 0 rgba(121, 80, 242, 0.25)
    }
    100% {
        -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(34, 139, 230, 0.25);
        box-shadow: 0 0.25rem 0.125rem 0 rgba(34, 139, 230, 0.25)
    }
}

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

@-webkit-keyframes bgCyclePrimary {
    0% {
        background-color: #228be6
    }
    50% {
        background-color: #1c7ed6
    }
    100% {
        background-color: #228be6
    }
}

@keyframes bgCyclePrimary {
    0% {
        background-color: #228be6
    }
    50% {
        background-color: #1c7ed6
    }
    100% {
        background-color: #228be6
    }
}

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

@-webkit-keyframes bgCycleGray {
    0% {
        background-color: #f1f3f5
    }
    50% {
        background-color: #e9ecef
    }
    100% {
        background-color: #f1f3f5
    }
}

@keyframes bgCycleGray {
    0% {
        background-color: #f1f3f5
    }
    50% {
        background-color: #e9ecef
    }
    100% {
        background-color: #f1f3f5
    }
}

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

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

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

@-webkit-keyframes floatUpDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes floatUpDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

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

@-webkit-keyframes iconStyleShowcase {
    0% {
        opacity: 0
    }
    20% {
        opacity: 1
    }
    33% {
        opacity: 1
    }
    53% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}

@keyframes iconStyleShowcase {
    0% {
        opacity: 0
    }
    20% {
        opacity: 1
    }
    33% {
        opacity: 1
    }
    53% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}

@-webkit-keyframes kittLights1 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes kittLights1 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes themeSceneThoughtIcons {
    0% {
        opacity: 0
    }
    2% {
        opacity: 1
    }
    22% {
        opacity: 1
    }
    25% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}

@keyframes themeSceneThoughtIcons {
    0% {
        opacity: 0
    }
    2% {
        opacity: 1
    }
    22% {
        opacity: 1
    }
    25% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}

@keyframes kittLights1 {
    0% {
        opacity: 0.2
    }
    12.5% {
        opacity: 1
    }
    25% {
        opacity: 0.2
    }
    100% {
        opacity: 0
    }
}

@-webkit-keyframes kittLights2 {
    0% {
        opacity: 0
    }
    12.5% {
        opacity: 0.2
    }
    25% {
        opacity: 1
    }
    37.5% {
        opacity: 0.2
    }
    100% {
        opacity: 0
    }
}

@keyframes kittLights2 {
    0% {
        opacity: 0
    }
    12.5% {
        opacity: 0.2
    }
    25% {
        opacity: 1
    }
    37.5% {
        opacity: 0.2
    }
    100% {
        opacity: 0
    }
}

@-webkit-keyframes kittLights3 {
    0% {
        opacity: 0
    }
    25% {
        opacity: 0.2
    }
    37.5% {
        opacity: 1
    }
    50% {
        opacity: 0.2
    }
    100% {
        opacity: 0
    }
}

@keyframes kittLights3 {
    0% {
        opacity: 0
    }
    25% {
        opacity: 0.2
    }
    37.5% {
        opacity: 1
    }
    50% {
        opacity: 0.2
    }
    100% {
        opacity: 0
    }
}

@-webkit-keyframes kittLights4 {
    0% {
        opacity: 0
    }
    37.5% {
        opacity: 0.2
    }
    50% {
        opacity: 1
    }
    62.5% {
        opacity: 0.2
    }
    100% {
        opacity: 0
    }
}

@keyframes kittLights4 {
    0% {
        opacity: 0
    }
    37.5% {
        opacity: 0.2
    }
    50% {
        opacity: 1
    }
    62.5% {
        opacity: 0.2
    }
    100% {
        opacity: 0
    }
}

@-webkit-keyframes kittLights5 {
    0% {
        opacity: 0
    }
    50% {
        opacity: 0.2
    }
    62.5% {
        opacity: 1
    }
    75% {
        opacity: 0.2
    }
    100% {
        opacity: 0
    }
}

@keyframes kittLights5 {
    0% {
        opacity: 0
    }
    50% {
        opacity: 0.2
    }
    62.5% {
        opacity: 1
    }
    75% {
        opacity: 0.2
    }
    100% {
        opacity: 0
    }
}

@-webkit-keyframes kittLights6 {
    0% {
        opacity: 0
    }
    62.5% {
        opacity: 0.2
    }
    75% {
        opacity: 1
    }
    87.5% {
        opacity: 0.2
    }
    100% {
        opacity: 0
    }
}

@keyframes kittLights6 {
    0% {
        opacity: 0
    }
    62.5% {
        opacity: 0.2
    }
    75% {
        opacity: 1
    }
    87.5% {
        opacity: 0.2
    }
    100% {
        opacity: 0
    }
}

@-webkit-keyframes kittLights7 {
    0% {
        opacity: 0
    }
    75% {
        opacity: 0.2
    }
    87.5% {
        opacity: 1
    }
    100% {
        opacity: 0.2
    }
}

@keyframes kittLights7 {
    0% {
        opacity: 0
    }
    75% {
        opacity: 0.2
    }
    87.5% {
        opacity: 1
    }
    100% {
        opacity: 0.2
    }
}

@-webkit-keyframes kittLights8 {
    0% {
        opacity: 0
    }
    87.5% {
        opacity: 0.2
    }
    100% {
        opacity: 1
    }
}

@keyframes kittLights8 {
    0% {
        opacity: 0
    }
    87.5% {
        opacity: 0.2
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes impersonationFade1 {
    0% {
        opacity: 1.0
    }
    25% {
        opacity: 0
    }
    50% {
        opacity: 1.0
    }
    75% {
        opacity: 0
    }
    100% {
        opacity: 1.0
    }
}

@keyframes impersonationFade1 {
    0% {
        opacity: 1.0
    }
    25% {
        opacity: 0
    }
    50% {
        opacity: 1.0
    }
    75% {
        opacity: 0
    }
    100% {
        opacity: 1.0
    }
}

@-webkit-keyframes impersonationFade2 {
    0% {
        opacity: 0
    }
    25% {
        opacity: 1
    }
    50% {
        opacity: 0
    }
    75% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes impersonationFade2 {
    0% {
        opacity: 0
    }
    25% {
        opacity: 1
    }
    50% {
        opacity: 0
    }
    75% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.animated1 {
    -webkit-animation-duration: 4s;
    animation-duration: 4s
}

.animated2 {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.animated3 {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s
}

.animated4 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s
}

.animated5 {
    -webkit-animation-duration: .5s;
    animation-duration: .5s
}

.animated6 {
    -webkit-animation-duration: .25s;
    animation-duration: .25s
}

.animated7 {
    -webkit-animation-duration: .1s;
    animation-duration: .1s
}

.animated-delay1 {
    -webkit-animation-delay: 4s;
    animation-delay: 4s
}

.animated-delay2 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

.animated-delay3 {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s
}

.animated-delay4 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.animated-delay5 {
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

.animated-delay6 {
    -webkit-animation-delay: .25s;
    animation-delay: .25s
}

.animated-delay7 {
    -webkit-animation-delay: .1s;
    animation-delay: .1s
}

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

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

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

.linear {
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear
}

.step-start {
    -webkit-animation-timing-function: step-start;
    animation-timing-function: step-start
}

.step-end {
    -webkit-animation-timing-function: step-end;
    animation-timing-function: step-end
}

.button-depth {
    -webkit-transition: color .1s ease-in-out, background-color .1s ease-in-out;
    transition: color .1s ease-in-out, background-color .1s ease-in-out;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.0125), 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.0125), 0 1px 1px rgba(0, 0, 0, 0.05);
    border-top-width: .0625rem;
    border-bottom-width: calc(.2rem + .0625rem)
}

.button-depth:active,
.button-depth.active {
    border-top-width: calc(.2rem + .0625rem);
    border-bottom-width: .0625rem
}

.bg-img:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: top;
    border-radius: inherit
}

.bg-img>* {
    position: relative;
    z-index: 2
}

.bg-img-invert:after {
    -webkit-filter: brightness(0) invert(100%);
    filter: brightness(0) invert(100%)
}

.bg-img-o-100:after {
    opacity: 1
}

.bg-img-o-90:after {
    opacity: .9
}

.bg-img-o-80:after {
    opacity: .8
}

.bg-img-o-70:after {
    opacity: .7
}

.bg-img-o-60:after {
    opacity: .6
}

.bg-img-o-50:after {
    opacity: .5
}

.bg-img-o-40:after {
    opacity: .4
}

.bg-img-o-30:after {
    opacity: .3
}

.bg-img-o-20:after {
    opacity: .2
}

.bg-img-o-10:after {
    opacity: .1
}

.bg-img-o-005:after {
    opacity: 0.05
}

.bg-img-o-0025:after {
    opacity: 0.025
}

.bg-img-o-0 :after {
    opacity: 0
}

.bg-stripes {
    background: repeating-linear-gradient(45deg, #000, #000 0.5rem, rgba(0, 0, 0, 0) 0.5rem, rgba(0, 0, 0, 0) 1rem)
}

.bg-stripes-invert {
    background: repeating-linear-gradient(45deg, #fff, #fff 0.5rem, rgba(0, 0, 0, 0) 0.5rem, rgba(0, 0, 0, 0) 1rem)
}

@media screen and (min-width: 30em) {
    .bg-img-invert-ns:after {
        -webkit-filter: brightness(0) invert(100%);
        filter: brightness(0) invert(100%)
    }
    .bg-img-o-100-ns:after {
        opacity: 1
    }
    .bg-img-o-90-ns:after {
        opacity: .9
    }
    .bg-img-o-80-ns:after {
        opacity: .8
    }
    .bg-img-o-70-ns:after {
        opacity: .7
    }
    .bg-img-o-60-ns:after {
        opacity: .6
    }
    .bg-img-o-50-ns:after {
        opacity: .5
    }
    .bg-img-o-40-ns:after {
        opacity: .4
    }
    .bg-img-o-30-ns:after {
        opacity: .3
    }
    .bg-img-o-20-ns:after {
        opacity: .2
    }
    .bg-img-o-10-ns:after {
        opacity: .1
    }
    .bg-img-o-005-ns:after {
        opacity: 0.05
    }
    .bg-img-o-0025-ns:after {
        opacity: 0.025
    }
    .bg-img-o-0-ns :after {
        opacity: 0
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .bg-img-invert-m:after {
        -webkit-filter: brightness(0) invert(100%);
        filter: brightness(0) invert(100%)
    }
    .bg-img-o-100-m:after {
        opacity: 1
    }
    .bg-img-o-90-m:after {
        opacity: .9
    }
    .bg-img-o-80-m:after {
        opacity: .8
    }
    .bg-img-o-70-m:after {
        opacity: .7
    }
    .bg-img-o-60-m:after {
        opacity: .6
    }
    .bg-img-o-50-m:after {
        opacity: .5
    }
    .bg-img-o-40-m:after {
        opacity: .4
    }
    .bg-img-o-30-m:after {
        opacity: .3
    }
    .bg-img-o-20-m:after {
        opacity: .2
    }
    .bg-img-o-10-m:after {
        opacity: .1
    }
    .bg-img-o-005-m:after {
        opacity: 0.05
    }
    .bg-img-o-0025-m:after {
        opacity: 0.025
    }
    .bg-img-o-0-m :after {
        opacity: 0
    }
}

@media screen and (min-width: 60em) {
    .bg-img-invert-l:after {
        -webkit-filter: brightness(0) invert(100%);
        filter: brightness(0) invert(100%)
    }
    .bg-img-o-100-l:after {
        opacity: 1
    }
    .bg-img-o-90-l:after {
        opacity: .9
    }
    .bg-img-o-80-l:after {
        opacity: .8
    }
    .bg-img-o-70-l:after {
        opacity: .7
    }
    .bg-img-o-60-l:after {
        opacity: .6
    }
    .bg-img-o-50-l:after {
        opacity: .5
    }
    .bg-img-o-40-l:after {
        opacity: .4
    }
    .bg-img-o-30-l:after {
        opacity: .3
    }
    .bg-img-o-20-l:after {
        opacity: .2
    }
    .bg-img-o-10-l:after {
        opacity: .1
    }
    .bg-img-o-005-l:after {
        opacity: 0.05
    }
    .bg-img-o-0025-l:after {
        opacity: 0.025
    }
    .bg-img-o-0-l :after {
        opacity: 0
    }
}

.dashed {
    position: relative
}

.dashed:before {
    content: "";
    position: absolute;
    border-width: 2px;
    border-style: dashed;
    border-color: inherit
}

.dashed-top {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.dashed-top:before {
    top: -4px;
    left: 0;
    right: 0
}

.dashed-right {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.dashed-right:before {
    right: -4px;
    top: 0;
    bottom: 0
}

.dashed-bottom {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.dashed-bottom:before {
    bottom: -4px;
    left: 0;
    right: 0
}

.dashed-left {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.dashed-left:before {
    left: -4px;
    top: 0;
    bottom: 0
}

.dashed-muted:before {
    border-color: rgba(255, 255, 255, 0.3)
}

.dashed-muted.dashed-top {
    border-top-style: solid;
    border-top-width: 4px
}

.dashed-muted.dashed-right {
    border-right-style: solid;
    border-right-width: 4px
}

.dashed-muted.dashed-bottom {
    border-bottom-style: solid;
    border-bottom-width: 4px
}

.dashed-muted.dashed-left {
    border-left-style: solid;
    border-left-width: 4px
}

.disabled {
    outline: none;
    cursor: not-allowed;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.pe-auto {
    pointer-events: auto
}

.pe-none {
    pointer-events: none
}

.select-all {
    -webkit-user-select: all;
    -moz-user-select: all;
    -ms-user-select: all;
    user-select: all
}

.select-none {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.scroll-disabled {
    height: 100%;
    overflow: hidden
}

@media print {
    body {
        background: #fff !important;
        color: #000 !important;
        overflow: visible !important;
        height: 100%
    }
    a:link,
    a:visited,
    a {
        background: transparent;
        color: #868e96;
        font-weight: bold;
        text-decoration: underline;
        text-align: left
    }
    table,
    a {
        page-break-inside: avoid
    }
    a[href^=http]:after {
        content: " &lt; " attr(href) "&gt; "
    }
    img {
        content: ""
    }
    article a[href^="#"]:after {
        content: ""
    }
    a:not(:local-link):after {
        content: " &lt; " attr(href) "&gt; "
    }
    .pa0-pr {
        padding: 0
    }
    .pa1-pr {
        padding: .25rem
    }
    .pa2-pr {
        padding: .5rem
    }
    .pa3-pr {
        padding: 1rem
    }
    .pa4-pr {
        padding: 1.5rem
    }
    .pa5-pr {
        padding: 2rem
    }
    .pa6-pr {
        padding: 3rem
    }
    .pa7-pr {
        padding: 6rem
    }
    .pl0-pr {
        padding-left: 0
    }
    .pl1-pr {
        padding-left: .25rem
    }
    .pl2-pr {
        padding-left: .5rem
    }
    .pl3-pr {
        padding-left: 1rem
    }
    .pl4-pr {
        padding-left: 1.5rem
    }
    .pl5-pr {
        padding-left: 2rem
    }
    .pl6-pr {
        padding-left: 3rem
    }
    .pl7-pr {
        padding-left: 6rem
    }
    .pr0-pr {
        padding-right: 0
    }
    .pr1-pr {
        padding-right: .25rem
    }
    .pr2-pr {
        padding-right: .5rem
    }
    .pr3-pr {
        padding-right: 1rem
    }
    .pr4-pr {
        padding-right: 1.5rem
    }
    .pr5-pr {
        padding-right: 2rem
    }
    .pr6-pr {
        padding-right: 3rem
    }
    .pr7-pr {
        padding-right: 6rem
    }
    .pb0-pr {
        padding-bottom: 0
    }
    .pb1-pr {
        padding-bottom: .25rem
    }
    .pb2-pr {
        padding-bottom: .5rem
    }
    .pb3-pr {
        padding-bottom: 1rem
    }
    .pb4-pr {
        padding-bottom: 1.5rem
    }
    .pb5-pr {
        padding-bottom: 2rem
    }
    .pb6-pr {
        padding-bottom: 3rem
    }
    .pb7-pr {
        padding-bottom: 6rem
    }
    .pt0-pr {
        padding-top: 0
    }
    .pt1-pr {
        padding-top: .25rem
    }
    .pt2-pr {
        padding-top: .5rem
    }
    .pt3-pr {
        padding-top: 1rem
    }
    .pt4-pr {
        padding-top: 1.5rem
    }
    .pt5-pr {
        padding-top: 2rem
    }
    .pt6-pr {
        padding-top: 3rem
    }
    .pt7-pr {
        padding-top: 6rem
    }
    .pv0-pr {
        padding-top: 0;
        padding-bottom: 0
    }
    .pv1-pr {
        padding-top: .25rem;
        padding-bottom: .25rem
    }
    .pv2-pr {
        padding-top: .5rem;
        padding-bottom: .5rem
    }
    .pv3-pr {
        padding-top: 1rem;
        padding-bottom: 1rem
    }
    .pv4-pr {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem
    }
    .pv5-pr {
        padding-top: 2rem;
        padding-bottom: 2rem
    }
    .pv6-pr {
        padding-top: 3rem;
        padding-bottom: 3rem
    }
    .pv7-pr {
        padding-top: 6rem;
        padding-bottom: 6rem
    }
    .ph0-pr {
        padding-left: 0;
        padding-right: 0
    }
    .ph1-pr {
        padding-left: .25rem;
        padding-right: .25rem
    }
    .ph2-pr {
        padding-left: .5rem;
        padding-right: .5rem
    }
    .ph3-pr {
        padding-left: 1rem;
        padding-right: 1rem
    }
    .ph4-pr {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }
    .ph5-pr {
        padding-left: 2rem;
        padding-right: 2rem
    }
    .ph6-pr {
        padding-left: 3rem;
        padding-right: 3rem
    }
    .ph7-pr {
        padding-left: 6rem;
        padding-right: 6rem
    }
    .ma0-pr {
        margin: 0
    }
    .ma1-pr {
        margin: .25rem
    }
    .ma2-pr {
        margin: .5rem
    }
    .ma3-pr {
        margin: 1rem
    }
    .ma4-pr {
        margin: 1.5rem
    }
    .ma5-pr {
        margin: 2rem
    }
    .ma6-pr {
        margin: 3rem
    }
    .ma7-pr {
        margin: 6rem
    }
    .ml0-pr {
        margin-left: 0
    }
    .ml1-pr {
        margin-left: .25rem
    }
    .ml2-pr {
        margin-left: .5rem
    }
    .ml3-pr {
        margin-left: 1rem
    }
    .ml4-pr {
        margin-left: 1.5rem
    }
    .ml5-pr {
        margin-left: 2rem
    }
    .ml6-pr {
        margin-left: 3rem
    }
    .ml7-pr {
        margin-left: 6rem
    }
    .mr0-pr {
        margin-right: 0
    }
    .mr1-pr {
        margin-right: .25rem
    }
    .mr2-pr {
        margin-right: .5rem
    }
    .mr3-pr {
        margin-right: 1rem
    }
    .mr4-pr {
        margin-right: 1.5rem
    }
    .mr5-pr {
        margin-right: 2rem
    }
    .mr6-pr {
        margin-right: 3rem
    }
    .mr7-pr {
        margin-right: 6rem
    }
    .mb0-pr {
        margin-bottom: 0
    }
    .mb1-pr {
        margin-bottom: .25rem
    }
    .mb2-pr {
        margin-bottom: .5rem
    }
    .mb3-pr {
        margin-bottom: 1rem
    }
    .mb4-pr {
        margin-bottom: 1.5rem
    }
    .mb5-pr {
        margin-bottom: 2rem
    }
    .mb6-pr {
        margin-bottom: 3rem
    }
    .mb7-pr {
        margin-bottom: 6rem
    }
    .mt0-pr {
        margin-top: 0
    }
    .mt1-pr {
        margin-top: .25rem
    }
    .mt2-pr {
        margin-top: .5rem
    }
    .mt3-pr {
        margin-top: 1rem
    }
    .mt4-pr {
        margin-top: 1.5rem
    }
    .mt5-pr {
        margin-top: 2rem
    }
    .mt6-pr {
        margin-top: 3rem
    }
    .mt7-pr {
        margin-top: 6rem
    }
    .mv0-pr {
        margin-top: 0;
        margin-bottom: 0
    }
    .mv1-pr {
        margin-top: .25rem;
        margin-bottom: .25rem
    }
    .mv2-pr {
        margin-top: .5rem;
        margin-bottom: .5rem
    }
    .mv3-pr {
        margin-top: 1rem;
        margin-bottom: 1rem
    }
    .mv4-pr {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem
    }
    .mv5-pr {
        margin-top: 2rem;
        margin-bottom: 2rem
    }
    .mv6-pr {
        margin-top: 3rem;
        margin-bottom: 3rem
    }
    .mv7-pr {
        margin-top: 6rem;
        margin-bottom: 6rem
    }
    .mh0-pr {
        margin-left: 0;
        margin-right: 0
    }
    .mh1-pr {
        margin-left: .25rem;
        margin-right: .25rem
    }
    .mh2-pr {
        margin-left: .5rem;
        margin-right: .5rem
    }
    .mh3-pr {
        margin-left: 1rem;
        margin-right: 1rem
    }
    .mh4-pr {
        margin-left: 1.5rem;
        margin-right: 1.5rem
    }
    .mh5-pr {
        margin-left: 2rem;
        margin-right: 2rem
    }
    .mh6-pr {
        margin-left: 3rem;
        margin-right: 3rem
    }
    .mh7-pr {
        margin-left: 6rem;
        margin-right: 6rem
    }
    .tl-pr {
        text-align: left
    }
    .tr-pr {
        text-align: right
    }
    .tc-pr {
        text-align: center
    }
    .dn-pr {
        display: none !important
    }
    .di-pr {
        display: inline !important
    }
    .db-pr {
        display: block !important
    }
    .dib-pr {
        display: inline-block !important
    }
    .dit-pr {
        display: inline-table !important
    }
    .dt-pr {
        display: table !important
    }
    .dtc-pr {
        display: table-cell !important
    }
    .dt-row-pr {
        display: table-row !important
    }
    .dt-row-group-pr {
        display: table-row-group !important
    }
    .dt-column-pr {
        display: table-column !important
    }
    .dt-column-group-pr {
        display: table-column-group !important
    }
    .dt--fixed-pr {
        table-layout: fixed;
        width: 100%
    }
    .v-base-pr {
        vertical-align: baseline
    }
    .v-mid-pr {
        vertical-align: middle
    }
    .v-top-pr {
        vertical-align: top
    }
    .v-btm-pr {
        vertical-align: bottom
    }
    .cf-pr:before,
    .cf-pr:after {
        content: " ";
        display: table
    }
    .cf-pr:after {
        clear: both
    }
    .cf-pr {
        *zoom: 1
    }
    .cl-pr {
        clear: left
    }
    .cr-pr {
        clear: right
    }
    .cb-pr {
        clear: both
    }
    .cn-pr {
        clear: none
    }
    .fl-pr {
        float: left;
        _display: inline
    }
    .fr-pr {
        float: right;
        _display: inline
    }
    .fn-pr {
        float: none
    }
    .flex-pr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
    .inline-flex-pr {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex
    }
    .flex-auto-pr {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        min-width: 0;
        min-height: 0
    }
    .flex-none-pr {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }
    .flex-column-pr {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .flex-row-pr {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
    .flex-wrap-pr {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .items-start-pr {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }
    .items-end-pr {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
    .items-center-pr {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .items-baseline-pr {
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline
    }
    .items-stretch-pr {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }
    .self-start-pr {
        -ms-flex-item-align: start;
        align-self: flex-start
    }
    .self-end-pr {
        -ms-flex-item-align: end;
        align-self: flex-end
    }
    .self-center-pr {
        -ms-flex-item-align: center;
        align-self: center
    }
    .self-baseline-pr {
        -ms-flex-item-align: baseline;
        align-self: baseline
    }
    .self-stretch-pr {
        -ms-flex-item-align: stretch;
        align-self: stretch
    }
    .justify-start-pr {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
    .justify-end-pr {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }
    .justify-center-pr {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
    .justify-between-pr {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
    .justify-around-pr {
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
    .content-start-pr {
        -ms-flex-line-pack: start;
        align-content: flex-start
    }
    .content-end-pr {
        -ms-flex-line-pack: end;
        align-content: flex-end
    }
    .content-center-pr {
        -ms-flex-line-pack: center;
        align-content: center
    }
    .content-between-pr {
        -ms-flex-line-pack: justify;
        align-content: space-between
    }
    .content-around-pr {
        -ms-flex-line-pack: distribute;
        align-content: space-around
    }
    .content-stretch-pr {
        -ms-flex-line-pack: stretch;
        align-content: stretch
    }
    .order-0-pr {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }
    .order-1-pr {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
    .order-2-pr {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
    .order-3-pr {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }
    .order-4-pr {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }
    .order-5-pr {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }
    .order-6-pr {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }
    .order-7-pr {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }
    .order-8-pr {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }
    .order-last-pr {
        -webkit-box-ordinal-group: 100000;
        -ms-flex-order: 99999;
        order: 99999
    }
    .flex-grow-0-pr {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0
    }
    .flex-grow-1-pr {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }
    .flex-shrink-0-pr {
        -ms-flex-negative: 0;
        flex-shrink: 0
    }
    .flex-basis-none-pr {
        -ms-flex-preferred-size: 0;
        flex-basis: 0
    }
    .flex-basis-auto-pr {
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }
    .flex-nowrap-pr {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
    .flex-wrap-reverse-pr {
        -ms-flex-wrap: reverse;
        flex-wrap: reverse
    }
    .bw0-pr {
        border-width: 0
    }
    .bw1-pr {
        border-width: .125rem
    }
    .bw2-pr {
        border-width: .25rem
    }
    .bw3-pr {
        border-width: .5rem
    }
    .bw4-pr {
        border-width: 1rem
    }
    .bw5-pr {
        border-width: 2rem
    }
    .bt-0-pr {
        border-top-width: 0
    }
    .br-0-pr {
        border-right-width: 0
    }
    .bb-0-pr {
        border-bottom-width: 0
    }
    .bl-0-pr {
        border-left-width: 0
    }
    .page-break-pr {
        display: block;
        page-break-before: always
    }
}

.min-w1 {
    min-width: 1rem
}

.min-w2 {
    min-width: 2rem
}

.min-w3 {
    min-width: 4rem
}

.min-w4 {
    min-width: 8rem
}

.min-w5 {
    min-width: 16rem
}

.min-w6 {
    min-width: 32rem
}

.min-w7 {
    min-width: 48rem
}

.min-w8 {
    min-width: 64rem
}

.min-w9 {
    min-width: 96rem
}

.min-w-10 {
    min-width: 10%
}

.min-w-20 {
    min-width: 20%
}

.min-w-25 {
    min-width: 25%
}

.min-w-30 {
    min-width: 30%
}

.min-w-33 {
    min-width: 33%
}

.min-w-34 {
    min-width: 34%
}

.min-w-40 {
    min-width: 40%
}

.min-w-50 {
    min-width: 50%
}

.min-w-60 {
    min-width: 60%
}

.min-w-70 {
    min-width: 70%
}

.min-w-75 {
    min-width: 75%
}

.min-w-80 {
    min-width: 80%
}

.min-w-90 {
    min-width: 90%
}

.min-w-100 {
    min-width: 100%
}

.min-w-none {
    min-width: none
}

@media screen and (min-width: 30em) {
    .min-w1-ns {
        min-width: 1rem
    }
    .min-w2-ns {
        min-width: 2rem
    }
    .min-w3-ns {
        min-width: 4rem
    }
    .min-w4-ns {
        min-width: 8rem
    }
    .min-w5-ns {
        min-width: 16rem
    }
    .min-w6-ns {
        min-width: 32rem
    }
    .min-w7-ns {
        min-width: 48rem
    }
    .min-w8-ns {
        min-width: 64rem
    }
    .min-w9-ns {
        min-width: 96rem
    }
    .min-w-10-ns {
        min-width: 10%
    }
    .min-w-20-ns {
        min-width: 20%
    }
    .min-w-25-ns {
        min-width: 25%
    }
    .min-w-30-ns {
        min-width: 30%
    }
    .min-w-33-ns {
        min-width: 33%
    }
    .min-w-34-ns {
        min-width: 34%
    }
    .min-w-40-ns {
        min-width: 40%
    }
    .min-w-50-ns {
        min-width: 50%
    }
    .min-w-60-ns {
        min-width: 60%
    }
    .min-w-70-ns {
        min-width: 70%
    }
    .min-w-75-ns {
        min-width: 75%
    }
    .min-w-80-ns {
        min-width: 80%
    }
    .min-w-90-ns {
        min-width: 90%
    }
    .min-w-100-ns {
        min-width: 100%
    }
    .min-w-none-ns {
        min-width: none
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .min-w1-m {
        min-width: 1rem
    }
    .min-w2-m {
        min-width: 2rem
    }
    .min-w3-m {
        min-width: 4rem
    }
    .min-w4-m {
        min-width: 8rem
    }
    .min-w5-m {
        min-width: 16rem
    }
    .min-w6-m {
        min-width: 32rem
    }
    .min-w7-m {
        min-width: 48rem
    }
    .min-w8-m {
        min-width: 64rem
    }
    .min-w9-m {
        min-width: 96rem
    }
    .min-w-10-m {
        min-width: 10%
    }
    .min-w-20-m {
        min-width: 20%
    }
    .min-w-25-m {
        min-width: 25%
    }
    .min-w-30-m {
        min-width: 30%
    }
    .min-w-33-m {
        min-width: 33%
    }
    .min-w-34-m {
        min-width: 34%
    }
    .min-w-40-m {
        min-width: 40%
    }
    .min-w-50-m {
        min-width: 50%
    }
    .min-w-60-m {
        min-width: 60%
    }
    .min-w-70-m {
        min-width: 70%
    }
    .min-w-75-m {
        min-width: 75%
    }
    .min-w-80-m {
        min-width: 80%
    }
    .min-w-90-m {
        min-width: 90%
    }
    .min-w-100-m {
        min-width: 100%
    }
    .min-w-none-m {
        min-width: none
    }
}

@media screen and (min-width: 60em) {
    .min-w1-l {
        min-width: 1rem
    }
    .min-w2-l {
        min-width: 2rem
    }
    .min-w3-l {
        min-width: 4rem
    }
    .min-w4-l {
        min-width: 8rem
    }
    .min-w5-l {
        min-width: 16rem
    }
    .min-w6-l {
        min-width: 32rem
    }
    .min-w7-l {
        min-width: 48rem
    }
    .min-w8-l {
        min-width: 64rem
    }
    .min-w9-l {
        min-width: 96rem
    }
    .min-w-10-l {
        min-width: 10%
    }
    .min-w-20-l {
        min-width: 20%
    }
    .min-w-25-l {
        min-width: 25%
    }
    .min-w-30-l {
        min-width: 30%
    }
    .min-w-33-l {
        min-width: 33%
    }
    .min-w-34-l {
        min-width: 34%
    }
    .min-w-40-l {
        min-width: 40%
    }
    .min-w-50-l {
        min-width: 50%
    }
    .min-w-60-l {
        min-width: 60%
    }
    .min-w-70-l {
        min-width: 70%
    }
    .min-w-75-l {
        min-width: 75%
    }
    .min-w-80-l {
        min-width: 80%
    }
    .min-w-90-l {
        min-width: 90%
    }
    .min-w-100-l {
        min-width: 100%
    }
    .min-w-none-l {
        min-width: none
    }
}

@media screen and (min-width: 77.5rem) {
    .min-w1-xl {
        min-width: 1rem
    }
    .min-w2-xl {
        min-width: 2rem
    }
    .min-w3-xl {
        min-width: 4rem
    }
    .min-w4-xl {
        min-width: 8rem
    }
    .min-w5-xl {
        min-width: 16rem
    }
    .min-w6-xl {
        min-width: 32rem
    }
    .min-w7-xl {
        min-width: 48rem
    }
    .min-w8-xl {
        min-width: 64rem
    }
    .min-w9-xl {
        min-width: 96rem
    }
    .min-w-10-xl {
        min-width: 10%
    }
    .min-w-20-xl {
        min-width: 20%
    }
    .min-w-25-xl {
        min-width: 25%
    }
    .min-w-30-xl {
        min-width: 30%
    }
    .min-w-33-xl {
        min-width: 33%
    }
    .min-w-34-xl {
        min-width: 34%
    }
    .min-w-40-xl {
        min-width: 40%
    }
    .min-w-50-xl {
        min-width: 50%
    }
    .min-w-60-xl {
        min-width: 60%
    }
    .min-w-70-xl {
        min-width: 70%
    }
    .min-w-75-xl {
        min-width: 75%
    }
    .min-w-80-xl {
        min-width: 80%
    }
    .min-w-90-xl {
        min-width: 90%
    }
    .min-w-100-xl {
        min-width: 100%
    }
    .min-w-none-xl {
        min-width: none
    }
}

@media screen and (min-width: 91.25rem) {
    .min-w1-2x {
        min-width: 1rem
    }
    .min-w2-2x {
        min-width: 2rem
    }
    .min-w3-2x {
        min-width: 4rem
    }
    .min-w4-2x {
        min-width: 8rem
    }
    .min-w5-2x {
        min-width: 16rem
    }
    .min-w6-2x {
        min-width: 32rem
    }
    .min-w7-2x {
        min-width: 48rem
    }
    .min-w8-2x {
        min-width: 64rem
    }
    .min-w9-2x {
        min-width: 96rem
    }
    .min-w-10-2x {
        min-width: 10%
    }
    .min-w-20-2x {
        min-width: 20%
    }
    .min-w-25-2x {
        min-width: 25%
    }
    .min-w-30-2x {
        min-width: 30%
    }
    .min-w-33-2x {
        min-width: 33%
    }
    .min-w-34-2x {
        min-width: 34%
    }
    .min-w-40-2x {
        min-width: 40%
    }
    .min-w-50-2x {
        min-width: 50%
    }
    .min-w-60-2x {
        min-width: 60%
    }
    .min-w-70-2x {
        min-width: 70%
    }
    .min-w-75-2x {
        min-width: 75%
    }
    .min-w-80-2x {
        min-width: 80%
    }
    .min-w-90-2x {
        min-width: 90%
    }
    .min-w-100-2x {
        min-width: 100%
    }
    .min-w-none-2x {
        min-width: none
    }
}

.blur1 {
    -webkit-filter: blur(1px);
    filter: blur(1px)
}

.blur2 {
    -webkit-filter: blur(3px);
    filter: blur(3px)
}

.blur3 {
    -webkit-filter: blur(5px);
    filter: blur(5px)
}

.grayscale0 {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%)
}

.grayscale1 {
    -webkit-filter: grayscale(25%);
    filter: grayscale(25%)
}

.grayscale2 {
    -webkit-filter: grayscale(50%);
    filter: grayscale(50%)
}

.grayscale3 {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%)
}

@media screen and (min-width: 30em) {
    .blur1-ns {
        -webkit-filter: blur(1px);
        filter: blur(1px)
    }
    .blur2-ns {
        -webkit-filter: blur(3px);
        filter: blur(3px)
    }
    .blur3-ns {
        -webkit-filter: blur(5px);
        filter: blur(5px)
    }
    .grayscale0-ns {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%)
    }
    .grayscale1-ns {
        -webkit-filter: grayscale(25%);
        filter: grayscale(25%)
    }
    .grayscale2-ns {
        -webkit-filter: grayscale(50%);
        filter: grayscale(50%)
    }
    .grayscale3-ns {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%)
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .blur1-m {
        -webkit-filter: blur(1px);
        filter: blur(1px)
    }
    .blur2-m {
        -webkit-filter: blur(3px);
        filter: blur(3px)
    }
    .blur3-m {
        -webkit-filter: blur(5px);
        filter: blur(5px)
    }
    .grayscale0-m {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%)
    }
    .grayscale1-m {
        -webkit-filter: grayscale(25%);
        filter: grayscale(25%)
    }
    .grayscale2-m {
        -webkit-filter: grayscale(50%);
        filter: grayscale(50%)
    }
    .grayscale3-m {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%)
    }
}

@media screen and (min-width: 60em) {
    .blur1-l {
        -webkit-filter: blur(1px);
        filter: blur(1px)
    }
    .blur2-l {
        -webkit-filter: blur(3px);
        filter: blur(3px)
    }
    .blur3-l {
        -webkit-filter: blur(5px);
        filter: blur(5px)
    }
    .grayscale0-l {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%)
    }
    .grayscale1-l {
        -webkit-filter: grayscale(25%);
        filter: grayscale(25%)
    }
    .grayscale2-l {
        -webkit-filter: grayscale(50%);
        filter: grayscale(50%)
    }
    .grayscale3-l {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%)
    }
}

.has-pointer-tip {
    position: relative
}

.has-pointer-tip .top.pointer-tip {
    top: -10px;
    left: 50%;
    margin-left: -10px;
    border-width: 0 10px 10px;
    border-bottom-color: inherit
}

.has-pointer-tip .top-0q.pointer-tip {
    top: -10px;
    left: 10%;
    margin-left: -10px;
    border-width: 0 10px 10px;
    border-bottom-color: inherit
}

.has-pointer-tip .top-1q.pointer-tip {
    top: -10px;
    left: 25%;
    margin-left: -10px;
    border-width: 0 10px 10px;
    border-bottom-color: inherit
}

.has-pointer-tip .top-3q.pointer-tip {
    top: -10px;
    left: 75%;
    margin-left: -10px;
    border-width: 0 10px 10px;
    border-bottom-color: inherit
}

.has-pointer-tip .top-4q.pointer-tip {
    top: -10px;
    left: 90%;
    margin-left: -10px;
    border-width: 0 10px 10px;
    border-bottom-color: inherit
}

.has-pointer-tip .top.pointer-tip {
    top: -10px;
    left: 50%;
    margin-left: -10px;
    border-width: 0 10px 10px;
    border-bottom-color: inherit
}

.has-pointer-tip .right.pointer-tip {
    top: 50%;
    right: -10px;
    margin-top: -10px;
    border-width: 10px 0 10px 10px;
    border-left-color: inherit
}

.has-pointer-tip .bottom.pointer-tip {
    bottom: -10px;
    left: 50%;
    margin-left: -10px;
    border-width: 10px 10px 0;
    border-top-color: inherit
}

.has-pointer-tip .bottom-0q.pointer-tip {
    bottom: -10px;
    left: 10%;
    margin-left: -10px;
    border-width: 10px 10px 0;
    border-top-color: inherit
}

.has-pointer-tip .bottom-1q.pointer-tip {
    bottom: -10px;
    left: 25%;
    margin-left: -10px;
    border-width: 10px 10px 0;
    border-top-color: inherit
}

.has-pointer-tip .bottom-3q.pointer-tip {
    bottom: -10px;
    left: 75%;
    margin-left: -10px;
    border-width: 10px 10px 0;
    border-top-color: inherit
}

.has-pointer-tip .bottom-4q.pointer-tip {
    bottom: -10px;
    left: 90%;
    margin-left: -10px;
    border-width: 10px 10px 0;
    border-top-color: inherit
}

.has-pointer-tip .left.pointer-tip {
    top: 50%;
    left: -10px;
    margin-top: -10px;
    border-width: 10px 10px 10px 0;
    border-right-color: inherit
}

.pointer-tip {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.scale {
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition-origin: center
}

.scale1 {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.scale2 {
    -webkit-transform: scale(1.01);
    transform: scale(1.01)
}

.scale3 {
    -webkit-transform: scale(1.02);
    transform: scale(1.02)
}

.scale4 {
    -webkit-transform: scale(1.25);
    transform: scale(1.25)
}

.scale5 {
    -webkit-transform: scale(1.5);
    transform: scale(1.5)
}

.scale6 {
    -webkit-transform: scale(2);
    transform: scale(2)
}

.scale-1 {
    -webkit-transform: scale(0.99);
    transform: scale(0.99)
}

.scale-2 {
    -webkit-transform: scale(0.98);
    transform: scale(0.98)
}

.scale-3 {
    -webkit-transform: scale(0.75);
    transform: scale(0.75)
}

.scale-4 {
    -webkit-transform: scale(0.5);
    transform: scale(0.5)
}

.slice {
    position: relative;
    z-index: 1
}

.slice:after {
    background: inherit;
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    -webkit-backface-visibility: hidden
}

.slice-left:after,
.slice-right:after {
    top: 0;
    bottom: 0;
    width: 50%;
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0
}

.slice-top:after,
.slice-bottom:after {
    left: 0;
    right: 0;
    height: 50%;
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0
}

.slice-top:after {
    top: 0;
    -webkit-transform: skewY(1.5deg);
    transform: skewY(1.5deg)
}

.slice-bottom:after {
    bottom: 0;
    -webkit-transform: skewY(-1.5deg);
    transform: skewY(-1.5deg);
    -webkit-transform-origin: 100%;
    transform-origin: 100%
}

.slice-left:after {
    left: 0;
    -webkit-transform: skewX(-15deg);
    transform: skewX(-15deg)
}

.slice-right:after {
    right: 0;
    -webkit-transform: skewX(15deg);
    transform: skewX(15deg)
}

@media screen and (min-width: 30em) {
    .slice-left-ns:after,
    .slice-right-ns:after {
        top: 0;
        bottom: 0;
        width: 50%;
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }
    .slice-top-ns:after,
    .slice-bottom-ns:after {
        left: 0;
        right: 0;
        height: 50%;
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }
    .slice-top-ns:after {
        top: 0;
        -webkit-transform: skewY(1.5deg);
        transform: skewY(1.5deg)
    }
    .slice-bottom-ns:after {
        bottom: 0;
        -webkit-transform: skewY(-1.5deg);
        transform: skewY(-1.5deg);
        -webkit-transform-origin: 100%;
        transform-origin: 100%
    }
    .slice-left-ns:after {
        left: 0;
        -webkit-transform: skewX(-15deg);
        transform: skewX(-15deg)
    }
    .slice-right-ns:after {
        right: 0;
        -webkit-transform: skewX(15deg);
        transform: skewX(15deg)
    }
}

@media screen and (min-width: 30em) and (max-width: 60em) {
    .slice-left-m:after,
    .slice-right-m:after {
        top: 0;
        bottom: 0;
        width: 50%;
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }
    .slice-top-m:after,
    .slice-bottom-m:after {
        left: 0;
        right: 0;
        height: 50%;
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }
    .slice-top-m:after {
        top: 0;
        -webkit-transform: skewY(1.5deg);
        transform: skewY(1.5deg)
    }
    .slice-bottom-m:after {
        bottom: 0;
        -webkit-transform: skewY(-1.5deg);
        transform: skewY(-1.5deg);
        -webkit-transform-origin: 100%;
        transform-origin: 100%
    }
    .slice-left-m:after {
        left: 0;
        -webkit-transform: skewX(-15deg);
        transform: skewX(-15deg)
    }
    .slice-right-m:after {
        right: 0;
        -webkit-transform: skewX(15deg);
        transform: skewX(15deg)
    }
}

@media screen and (min-width: 60em) {
    .slice-left-l:after,
    .slice-right-l:after {
        top: 0;
        bottom: 0;
        width: 50%;
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }
    .slice-top-l:after,
    .slice-bottom-l:after {
        left: 0;
        right: 0;
        height: 50%;
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }
    .slice-top-l:after {
        top: 0;
        -webkit-transform: skewY(1.5deg);
        transform: skewY(1.5deg)
    }
    .slice-bottom-l:after {
        bottom: 0;
        -webkit-transform: skewY(-1.5deg);
        transform: skewY(-1.5deg);
        -webkit-transform-origin: 100%;
        transform-origin: 100%
    }
    .slice-left-l:after {
        left: 0;
        -webkit-transform: skewX(-15deg);
        transform: skewX(-15deg)
    }
    .slice-right-l:after {
        right: 0;
        -webkit-transform: skewX(15deg);
        transform: skewX(15deg)
    }
}

@media screen and (min-width: 77.5rem) {
    .slice-left-xl:after,
    .slice-right-xl:after {
        top: 0;
        bottom: 0;
        width: 50%;
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }
    .slice-top-xl:after,
    .slice-bottom-xl:after {
        left: 0;
        right: 0;
        height: 50%;
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }
    .slice-top-xl:after {
        top: 0;
        -webkit-transform: skewY(1.5deg);
        transform: skewY(1.5deg)
    }
    .slice-bottom-xl:after {
        bottom: 0;
        -webkit-transform: skewY(-1.5deg);
        transform: skewY(-1.5deg);
        -webkit-transform-origin: 100%;
        transform-origin: 100%
    }
    .slice-left-xl:after {
        left: 0;
        -webkit-transform: skewX(-15deg);
        transform: skewX(-15deg)
    }
    .slice-right-xl:after {
        right: 0;
        -webkit-transform: skewX(15deg);
        transform: skewX(15deg)
    }
}

@media screen and (min-width: 91.25rem) {
    .slice-left-2x:after,
    .slice-right-2x:after {
        top: 0;
        bottom: 0;
        width: 50%;
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }
    .slice-top-2x:after,
    .slice-bottom-2x:after {
        left: 0;
        right: 0;
        height: 50%;
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }
    .slice-top-2x:after {
        top: 0;
        -webkit-transform: skewY(1.5deg);
        transform: skewY(1.5deg)
    }
    .slice-bottom-2x:after {
        bottom: 0;
        -webkit-transform: skewY(-1.5deg);
        transform: skewY(-1.5deg);
        -webkit-transform-origin: 100%;
        transform-origin: 100%
    }
    .slice-left-2x:after {
        left: 0;
        -webkit-transform: skewX(-15deg);
        transform: skewX(-15deg)
    }
    .slice-right-2x:after {
        right: 0;
        -webkit-transform: skewX(15deg);
        transform: skewX(15deg)
    }
}

.is-target:before {
    content: '';
    display: block;
    height: 1.5rem;
    margin-top: -1.5rem;
    visibility: hidden;
    pointer-events: none
}

.bg-img-sprinkles:after {
    background-image: url("/images/bg-sprinkles-92441ec1dadd3a5fd51c0001b5c611e9.svg?vsn=d")
}

.bg-img-sprinkles-bw:after {
    background-image: url("/images/bg-sprinkles-bw-5d47ec8ab8376c4d80d2d7922e5ebd5f.svg?vsn=d")
}

.bg-img-min-h-500 {
    min-height: 500px
}

.bg-img-tile-dol-icons-travel:after {
    background-image: url("/images/tile-dol-icons-travel-5c5587168439c737839c755c23bb443c.svg?vsn=d");
    background-repeat: repeat
}

.bg-img-tile-lod-icons-travel:after {
    background-image: url("/images/tile-lod-icons-travel-4a5e3522191151c74c80cffc6d22bf1b.svg?vsn=d");
    background-repeat: repeat
}

.bg-img-tile-dol-icons-interfaces:after {
    background-image: url("/images/tile-dol-icons-interfaces-5e9b9a245861092e622bd6d679db0ddf.svg?vsn=d");
    background-repeat: repeat
}

.bg-img-tile-lod-icons-interfaces:after {
    background-image: url("/images/tile-lod-icons-interfaces-ee743bc773c129fb070c913e766a97c4.svg?vsn=d");
    background-repeat: repeat
}

.bg-img-tile-dol-icons-misc1:after {
    background-image: url("/images/tile-dol-icons-misc1-9e7a45cd39198652fcfa5f0eef4b1ed3.svg?vsn=d");
    background-repeat: repeat
}

.bg-img-tile-lod-icons-misc1:after {
    background-image: url("/images/tile-lod-icons-misc1-184b0c1f0cde58a8591d5bc73b66e0f1.svg?vsn=d");
    background-repeat: repeat
}

.bg-img-tile-dol-icons-misc2:after {
    background-image: url("/images/tile-dol-icons-misc2-83a63dfbc851a58bf6d4bd4556101924.svg?vsn=d");
    background-repeat: repeat
}

.bg-img-tile-lod-icons-misc2:after {
    background-image: url("/images/tile-lod-icons-misc2-8d93e2b7a181c361dbdfc6d1de418ac6.svg?vsn=d");
    background-repeat: repeat
}

.bg-img-tile-dol-icons-free1:after {
    background-image: url("/images/tile-dol-icons-free1-a50c0f94030b121ffdeedaaa7aebae95.svg?vsn=d");
    background-repeat: repeat
}

.bg-img-tile-lod-icons-free1:after {
    background-image: url("/images/tile-lod-icons-free1-888de18f87c565e26d3e80e9696acf23.svg?vsn=d");
    background-repeat: repeat
}

.bg-img-tile-dol-icons-free2:after {
    background-image: url("/images/tile-dol-icons-free2-0ba88f62026f09ede85e4952a058e727.svg?vsn=d");
    background-repeat: repeat
}

.bg-img-tile-lod-icons-free2:after {
    background-image: url("/images/tile-lod-icons-free2-b6e7705aa02229ddce586346f6dedb3a.svg?vsn=d");
    background-repeat: repeat
}

.bg-img-tile-dol-icons-interfaces:after {
    background-image: url("/images/tile-dol-icons-interfaces-5e9b9a245861092e622bd6d679db0ddf.svg?vsn=d");
    background-repeat: repeat
}

.bg-img-tile-lod-icons-interfaces:after {
    background-image: url("/images/tile-lod-icons-interfaces-ee743bc773c129fb070c913e766a97c4.svg?vsn=d");
    background-repeat: repeat
}

.bg-img-tile-dol-icons-users:after {
    background-image: url("/images/tile-dol-icons-users-729b98a1de4dbedcba621b432ee4f819.svg?vsn=d");
    background-repeat: repeat
}

.bg-img-tile-lod-icons-users:after {
    background-image: url("/images/tile-lod-icons-users-437ee690a4ec9359c179483110ad4f30.svg?vsn=d");
    background-repeat: repeat
}

.bg-img-tile-dol-icons-system:after {
    background-image: url("/images/tile-dol-icons-system-a186bc056f1825d614afce8be1641978.svg?vsn=d");
    background-repeat: repeat
}

.bg-img-tile-lod-icons-system:after {
    background-image: url("/images/tile-lod-icons-system.svg");
    background-repeat: repeat
}

.bg-img-tile-dol-icons-ks:after {
    background-image: url("/images/tile-dol-icons-ks-6567c73deaedb1881ecec2102eacf380.svg?vsn=d");
    background-repeat: repeat
}

.bg-img-tile-lod-icons-ks:after {
    background-image: url("/images/tile-lod-icons-ks-bf09db80fda90a45449e86a9475c5564.svg?vsn=d");
    background-repeat: repeat
}

.invoice-pre:before {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem
}

.invoice-date:before {
    content: "Date:"
}

.invoice-description:before {
    content: "Description:"
}

.invoice-quantity:before {
    content: "Quantity:"
}

.invoice-price:before {
    content: "Price (USD):"
}

@media screen and (min-width: 30em) {
    .invoice-pre:before {
        display: none
    }
}

@media print {
    .invoice-pre:before {
        display: none
    }
}

.license-badge-sm .license-badge-symbol {
    font-size: .8rem
}

.shadow-wrap {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05)
}

@-webkit-keyframes xfade {
    17% {
        opacity: 1
    }
    25% {
        opacity: 0
    }
    92% {
        opacity: 0
    }
}

@keyframes xfade {
    17% {
        opacity: 1
    }
    25% {
        opacity: 0
    }
    92% {
        opacity: 0
    }
}

.search-results-list-icon {
    width: 5rem;
    min-height: 3.5rem
}

@media screen and (min-width: 60em) {
    .search-facets {
        width: 14rem
    }
}

#carbonads {
    position: relative;
    text-align: center
}

.carbon-wrap {
    display: block;
    margin-bottom: .5rem;
    text-align: center
}

.carbon-img {
    border: 0.25rem solid #fff;
    border-radius: .125rem;
    display: inline-block;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: .5rem
}

.carbon-text {
    line-height: 1.25;
    display: block;
    color: inherit;
    text-decoration: none;
    -webkit-transition: color .5s ease-in;
    transition: color .5s ease-in
}

.carbon-poweredby {
    color: inherit;
    opacity: 0.65;
    text-decoration: none
}

.layout-inline {
    text-align: center
}

.layout-inline .carbon-wrap {
    display: inline-block;
    margin-bottom: 0
}

.layout-inline .carbon-img {
    margin-bottom: 0
}

.layout-inline .carbon-img>img {
    vertical-align: middle
}

.layout-inline .carbon-text {
    display: inline-block;
    margin-top: .5rem;
    margin-right: 1rem;
    margin-bottom: .5rem;
    margin-left: 1rem
}

.free-folk {
    text-align: center;
    line-height: 1.5
}

.free-folk a {
    color: #868e96;
    text-decoration: none;
    display: inline-block
}

.free-folk a:focus,
.free-folk a:hover {
    color: #4dabf7
}

.free-folk .default-ad {
    display: none
}

.free-folk .default-image {
    display: none
}

.free-folk .placement-wrapper a {
    padding: .5rem
}

.free-folk .default-title {
    font-weight: bold
}

.free-folk .default-title:before {
    content: "Ad";
    background-color: #f783ac;
    font-weight: bold;
    font-size: .64rem;
    letter-spacing: .1em;
    line-height: 1;
    color: white;
    text-transform: uppercase;
    padding: .25rem .5rem;
    margin-right: .5rem;
    border-radius: .25rem
}

.free-folk .default-title:after {
    content: "Â â€”Â "
}

.free-folk-light a {
    color: #f1f3f5;
    text-decoration: none;
    display: inline-block
}

.free-folk-light a:focus,
.free-folk-light a:hover {
    color: #fff
}

.bg-striped-black {
    background: repeating-linear-gradient(135deg, #212529, #212529 5px, rgba(0, 0, 0, 0) 5px, rgba(0, 0, 0, 0) 10px)
}

.bg-striped-white {
    background: repeating-linear-gradient(135deg, #fff, #fff 5px, rgba(0, 0, 0, 0) 5px, rgba(0, 0, 0, 0) 10px)
}

.docs-generated>h1 {
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 2.44141rem
}

.docs-generated>h2,
.docs-generated>h3,
.docs-generated>h4,
.docs-generated>h5,
.docs-generated>h6 {
    position: relative;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1rem;
    padding-right: 2rem;
    font-size: 1.5625rem
}

.docs-generated>h2:before,
.docs-generated>h3:before,
.docs-generated>h4:before,
.docs-generated>h5:before,
.docs-generated>h6:before {
    content: '';
    display: block;
    height: 1.5rem;
    margin: -1.5rem 0 0 0;
    visibility: hidden;
    pointer-events: none
}

.docs-generated>h2 .doc-direct-link,
.docs-generated>h3 .doc-direct-link,
.docs-generated>h4 .doc-direct-link,
.docs-generated>h5 .doc-direct-link,
.docs-generated>h6 .doc-direct-link {
    margin-top: 1.5rem
}

.docs-generated>p {
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 1.5rem
}

.docs-generated>p:last-child {
    margin-bottom: 0
}

.docs-generated>hr {
    border-style: none;
    border-width: 0;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-width: .25rem;
    width: 100%;
    border-color: #f1f3f5;
    margin-top: 3rem;
    margin-bottom: 3rem
}

.docs-generated code {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
    font-size: 0.9rem;
    color: #ff922b
}

.docs-generated code.inline {
    display: inline;
    margin-left: .25rem;
    margin-right: .25rem;
    white-space: nowrap
}

.docs-generated>h1>a,
.docs-generated>h2>a,
.docs-generated>h3>a,
.docs-generated>h4>a,
.docs-generated>h5>a,
.docs-generated>h6>a,
.docs-generated>p>a,
.docs-generated>div>a,
.docs-generated>blockquote p>a,
.docs-generated>ol li>a,
.docs-generated>ul li>a,
.docs-generated>.table-wrap td>a,
.docs-generated>.table-wrap td strong>a,
.docs-generated>.table-wrap th>a,
.docs-generated>table td>a,
.docs-generated>table th>a {
    -webkit-transition: all .1s ease-in;
    transition: all .1s ease-in;
    color: #228be6;
    text-decoration: underline;
    -webkit-text-decoration-color: rgba(0, 0, 0, 0.15);
    text-decoration-color: rgba(0, 0, 0, 0.15)
}

.docs-generated>h1>a:focus,
.docs-generated>h1>a:hover,
.docs-generated>h2>a:focus,
.docs-generated>h2>a:hover,
.docs-generated>h3>a:focus,
.docs-generated>h3>a:hover,
.docs-generated>h4>a:focus,
.docs-generated>h4>a:hover,
.docs-generated>h5>a:focus,
.docs-generated>h5>a:hover,
.docs-generated>h6>a:focus,
.docs-generated>h6>a:hover,
.docs-generated>p>a:focus,
.docs-generated>p>a:hover,
.docs-generated>div>a:focus,
.docs-generated>div>a:hover,
.docs-generated>blockquote p>a:focus,
.docs-generated>blockquote p>a:hover,
.docs-generated>ol li>a:focus,
.docs-generated>ol li>a:hover,
.docs-generated>ul li>a:focus,
.docs-generated>ul li>a:hover,
.docs-generated>.table-wrap td>a:focus,
.docs-generated>.table-wrap td>a:hover,
.docs-generated>.table-wrap td strong>a:focus,
.docs-generated>.table-wrap td strong>a:hover,
.docs-generated>.table-wrap th>a:focus,
.docs-generated>.table-wrap th>a:hover,
.docs-generated>table td>a:focus,
.docs-generated>table td>a:hover,
.docs-generated>table th>a:focus,
.docs-generated>table th>a:hover {
    -webkit-text-decoration-color: initial;
    text-decoration-color: initial
}

.docs-generated>h1>a code,
.docs-generated>h2>a code,
.docs-generated>h3>a code,
.docs-generated>h4>a code,
.docs-generated>h5>a code,
.docs-generated>h6>a code,
.docs-generated>p>a code,
.docs-generated>div>a code,
.docs-generated>blockquote p>a code,
.docs-generated>ol li>a code,
.docs-generated>ul li>a code,
.docs-generated>.table-wrap td>a code,
.docs-generated>.table-wrap td strong>a code,
.docs-generated>.table-wrap th>a code,
.docs-generated>table td>a code,
.docs-generated>table th>a code {
    color: inherit
}

.docs-generated>h1>a.no-underline-hover:focus,
.docs-generated>h1>a.no-underline-hover:hover,
.docs-generated>h2>a.no-underline-hover:focus,
.docs-generated>h2>a.no-underline-hover:hover,
.docs-generated>h3>a.no-underline-hover:focus,
.docs-generated>h3>a.no-underline-hover:hover,
.docs-generated>h4>a.no-underline-hover:focus,
.docs-generated>h4>a.no-underline-hover:hover,
.docs-generated>h5>a.no-underline-hover:focus,
.docs-generated>h5>a.no-underline-hover:hover,
.docs-generated>h6>a.no-underline-hover:focus,
.docs-generated>h6>a.no-underline-hover:hover,
.docs-generated>p>a.no-underline-hover:focus,
.docs-generated>p>a.no-underline-hover:hover,
.docs-generated>div>a.no-underline-hover:focus,
.docs-generated>div>a.no-underline-hover:hover,
.docs-generated>blockquote p>a.no-underline-hover:focus,
.docs-generated>blockquote p>a.no-underline-hover:hover,
.docs-generated>ol li>a.no-underline-hover:focus,
.docs-generated>ol li>a.no-underline-hover:hover,
.docs-generated>ul li>a.no-underline-hover:focus,
.docs-generated>ul li>a.no-underline-hover:hover,
.docs-generated>.table-wrap td>a.no-underline-hover:focus,
.docs-generated>.table-wrap td>a.no-underline-hover:hover,
.docs-generated>.table-wrap td strong>a.no-underline-hover:focus,
.docs-generated>.table-wrap td strong>a.no-underline-hover:hover,
.docs-generated>.table-wrap th>a.no-underline-hover:focus,
.docs-generated>.table-wrap th>a.no-underline-hover:hover,
.docs-generated>table td>a.no-underline-hover:focus,
.docs-generated>table td>a.no-underline-hover:hover,
.docs-generated>table th>a.no-underline-hover:focus,
.docs-generated>table th>a.no-underline-hover:hover {
    text-decoration: none
}

.docs-generated a.doc-download-button {
    color: inherit;
    text-decoration: none
}

.docs-generated>blockquote {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5
}

.docs-generated>.table-wrap {
    width: 100%;
    overflow: auto;
    margin-bottom: 1.5rem
}

.docs-generated table {
    width: 100%;
    display: table;
    border-collapse: collapse;
    border-spacing: 0;
    background: #fff
}

.docs-generated table thead tr {
    text-align: left
}

.docs-generated table th {
    border-style: solid;
    border-width: 1px;
    border-color: #f1f3f5;
    padding: 1rem;
    font-weight: bold
}

.docs-generated table tr {
    text-align: left
}

.docs-generated table td {
    border-style: solid;
    border-width: 1px;
    border-color: #f1f3f5;
    padding: 1rem
}

.docs-generated>ol,
.docs-generated>ul {
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem
}

.docs-generated>ol li,
.docs-generated>ul li {
    line-height: 1.5;
    margin-bottom: .5rem
}

.docs-generated>ol li:last-child,
.docs-generated>ul li:last-child {
    margin-bottom: 0
}

.docs-generated>ol li ul,
.docs-generated>ol li ol,
.docs-generated>ul li ul,
.docs-generated>ul li ol {
    margin-left: .5rem
}

.docs-generated .docs-alert a {
    -webkit-transition: all .1s ease-in;
    transition: all .1s ease-in;
    color: #228be6;
    text-decoration: underline;
    -webkit-text-decoration-color: rgba(0, 0, 0, 0.15);
    text-decoration-color: rgba(0, 0, 0, 0.15)
}

.docs-generated .docs-alert a:focus,
.docs-generated .docs-alert a:hover {
    -webkit-text-decoration-color: initial;
    text-decoration-color: initial
}

.docs-generated .docs-alert a code {
    color: inherit
}

.docs-generated .docs-alert .docs-download-button:focus,
.docs-generated .docs-alert .docs-download-button:hover {
    color: #fff;
    text-decoration: none
}

.toggle-app-nav-enter-active {
    -webkit-animation: toggleAppNav .5s;
    animation: toggleAppNav .5s
}

.toggle-app-nav-leave-active {
    animation: toggleAppNav .5s reverse
}

.wrapper-modal {
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease
}

.modal {
    -webkit-transition: all .25s ease;
    transition: all .25s ease
}

.modal-enter,
.modal-leave-active {
    opacity: 0
}

.modal-enter .modal,
.modal-leave-active .modal {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.code-shadow {
    background: -webkit-gradient(linear, right top, left top, from(#343a40), color-stop(50%, rgba(52, 58, 64, 0)), to(rgba(52, 58, 64, 0)));
    background: linear-gradient(-90deg, #343a40 0%, rgba(52, 58, 64, 0) 50%, rgba(52, 58, 64, 0) 100%)
}

.hover-colorCycle:focus,
.hover-colorCycle:hover {
    -webkit-animation: colorCycle infinite 4s ease-in-out;
    animation: colorCycle infinite 4s ease-in-out
}

.cheatsheet-set .icon .icon-name,
.cheatsheet-set .icon .icon-unicode {
    padding-left: .125rem;
    padding-top: .125rem
}

@media print {
    .cheatsheet-set .icon {
        width: calc(100%/4)
    }
}

.list-leaderboard .list-row .number,
.list-leaderboard .list-row .number-hover {
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease
}

.list-leaderboard .list-row .number {
    opacity: 1
}

.list-leaderboard .list-row .number-hover {
    opacity: 0
}

.list-leaderboard .list-row:first-child {
    border-top: none
}

.list-leaderboard .list-row:last-child {
    border-bottom: none
}

.list-leaderboard .list-row:focus .number,
.list-leaderboard .list-row:hover .number {
    opacity: 0
}

.list-leaderboard .list-row:focus .number-hover,
.list-leaderboard .list-row:hover .number-hover {
    opacity: 1
}

.terminal-line-start:before {
    content: "$";
    display: inline;
    opacity: 0.5;
    margin-right: .5rem
}

.view {
    -webkit-transition: -webkit-transform .25s ease-in-out;
    transition: -webkit-transform .25s ease-in-out;
    transition: transform .25s ease-in-out;
    transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out
}

.nav-app-menu {
    -webkit-transition: -webkit-transform .25s ease-in-out;
    transition: -webkit-transform .25s ease-in-out;
    transition: transform .25s ease-in-out;
    transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out;
    left: -20rem;
    width: 20rem;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.nav-app-menu-showing {
    overflow-x: hidden
}

.nav-app-menu-showing .nav-app-menu {
    -webkit-transform: translateX(20rem);
    transform: translateX(20rem)
}

.nav-app-menu-showing .view {
    -webkit-transform: translateX(20rem);
    transform: translateX(20rem)
}

.nav-account-menu {
    -webkit-transition: -webkit-transform .25s ease-in-out;
    transition: -webkit-transform .25s ease-in-out;
    transition: transform .25s ease-in-out;
    transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out;
    right: -20rem;
    width: 20rem;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.nav-account-menu-showing {
    overflow-x: hidden
}

.nav-account-menu-showing .nav-account-menu {
    -webkit-transform: translateX(-20rem);
    transform: translateX(-20rem)
}

.nav-account-menu-showing .view {
    -webkit-transform: translateX(-20rem);
    transform: translateX(-20rem)
}

.section-group-separator+.section-group-separator {
    display: none
}

.iconStyleShowcase .icons {
    -webkit-animation-name: iconStyleShowcase;
    animation-name: iconStyleShowcase;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 6s;
    animation-duration: 6s
}

.iconStyleShowcase .icons-2 {
    -webkit-animation-delay: -2s;
    animation-delay: -2s
}

.iconStyleShowcase .icons-3 {
    -webkit-animation-delay: -4s;
    animation-delay: -4s
}

.example-pointer {
    position: relative;
    height: 60px
}

.example-pointer:before {
    content: "";
    position: absolute;
    right: -30px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 30px solid #228be6;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent
}

.example-pointer-1:before {
    border-left-color: #15aabf
}

.example-pointer-2:before {
    border-left-color: #228be6
}

.example-pointer-3:before {
    border-left-color: #4c6ef5
}

.gradient-l-0-blue9-transparent {
    background: -webkit-gradient(linear, left bottom, left top, from(#1864ab), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, #1864ab 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%)
}

.header-search-input {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem
}

.demo-icon-rendering {
    min-height: 27rem
}

#payment_method_list .input-radio-custom~label .icon {
    color: #ced4da;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
}

#payment_method_list .input-radio-custom:checked~label .icon {
    color: inherit
}

#business_plan_list .input-radio-custom~label .details {
    color: #adb5bd;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
}

#business_plan_list .input-radio-custom:checked~label .details {
    color: inherit
}

.dropdown:not(.dropdown-open)>.dropdown-menu {
    display: none
}

.StripeElement {
    background-color: #fff;
    -webkit-box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 .25rem .125rem 0 rgba(0, 0, 0, 0.05);
    border: .125rem solid #dee2e6;
    border-radius: .25rem;
    padding: 1.5rem;
    -webkit-transition: border-color .1s ease-in-out;
    transition: border-color .1s ease-in-out
}

.StripeElement--focus {
    border-color: #4dabf7;
    outline: none;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.0125), 0 0 8px rgba(34, 139, 230, 0.5);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.0125), 0 0 8px rgba(34, 139, 230, 0.5)
}

.StripeElement--invalid {
    border-color: #ff6b6b
}

.StripeElement--webkit-autofill {
    background-color: #fff9db !important
}

.wrapper-shade {
    cursor: wait
}

.bg-theme-default {
    background: -webkit-gradient(linear, left top, left bottom, from(#155592), to(#1c7ed6));
    background: linear-gradient(#155592, #1c7ed6)
}

.theme-scene-f1 {
    font-size: 32px
}

.theme-scene-f2 {
    font-size: 48px
}

.theme-scene-f3 {
    font-size: 64px
}

.theme-scene-f4 {
    font-size: 96px
}

.theme-scene-f5 {
    font-size: 128px
}

.theme-scene-f6 {
    font-size: 240px
}

.theme-scene-thought:nth-child(2) {
    -webkit-animation: themeSceneThoughtIcons 20s 0s infinite linear;
    animation: themeSceneThoughtIcons 20s 0s infinite linear
}

.theme-scene-thought:nth-child(3) {
    -webkit-animation: themeSceneThoughtIcons 20s 5s infinite linear;
    animation: themeSceneThoughtIcons 20s 5s infinite linear
}

.theme-scene-thought:nth-child(4) {
    -webkit-animation: themeSceneThoughtIcons 20s 10s infinite linear;
    animation: themeSceneThoughtIcons 20s 10s infinite linear
}

.theme-scene-thought:nth-child(5) {
    -webkit-animation: themeSceneThoughtIcons 20s 15s infinite linear;
    animation: themeSceneThoughtIcons 20s 15s infinite linear
}

.kitt-light {
    width: .25rem;
    height: .25rem;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate
}

.kitt-light:nth-child(1) {
    -webkit-animation-name: kittLights1;
    animation-name: kittLights1
}

.kitt-light:nth-child(2) {
    -webkit-animation-name: kittLights2;
    animation-name: kittLights2
}

.kitt-light:nth-child(3) {
    -webkit-animation-name: kittLights3;
    animation-name: kittLights3
}

.kitt-light:nth-child(4) {
    -webkit-animation-name: kittLights4;
    animation-name: kittLights4
}

.kitt-light:nth-child(5) {
    -webkit-animation-name: kittLights5;
    animation-name: kittLights5
}

.kitt-light:nth-child(6) {
    -webkit-animation-name: kittLights6;
    animation-name: kittLights6
}

.kitt-light:nth-child(7) {
    -webkit-animation-name: kittLights7;
    animation-name: kittLights7
}

.kitt-light:nth-child(8) {
    -webkit-animation-name: kittLights8;
    animation-name: kittLights8
}

.impersonation-icon {
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.impersonation-icon:nth-child(1) {
    -webkit-animation-name: impersonationFade1;
    animation-name: impersonationFade1
}

.impersonation-icon:nth-child(2) {
    -webkit-animation-name: impersonationFade2;
    animation-name: impersonationFade2
}

.toggle-app-menu .app-menu-icon-initial,
.toggle-app-menu .app-menu-icon-focus {
    -webkit-transition: color .5s ease-in;
    transition: color .5s ease-in
}

.toggle-app-menu .app-menu-icon-initial {
    opacity: 1.0
}

.toggle-app-menu .app-menu-icon-focus {
    opacity: 0
}

.toggle-app-menu:active .app-menu-icon-initial,
.toggle-app-menu:focus .app-menu-icon-initial,
.toggle-app-menu:hover .app-menu-icon-initial {
    opacity: 0
}

.toggle-app-menu:active .app-menu-icon-focus,
.toggle-app-menu:focus .app-menu-icon-focus,
.toggle-app-menu:hover .app-menu-icon-focus {
    opacity: 1.0
}

.icon-detail-grid {
    width: 100%
}

@media screen and (min-width: 60em) {
    .icon-detail-grid {
        width: 39rem
    }
}

.duotone-preview-nav {
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-box-shadow: 0 0 0 0.125rem transparent;
    box-shadow: 0 0 0 0.125rem transparent
}

.duotone-preview-nav-dol {
    background: linear-gradient(-45deg, #ced4da 0%, #ced4da 50%, #212529 50%, #212529 100%)
}

.duotone-preview-nav-dol.is-active {
    -webkit-box-shadow: 0 0 0 0.125rem #228be6;
    box-shadow: 0 0 0 0.125rem #228be6
}

.duotone-preview-nav-lod {
    background: linear-gradient(-45deg, #adb5bd 0%, #adb5bd 50%, #fff 50%, #fff 100%)
}

.duotone-preview-nav-lod.is-active {
    -webkit-box-shadow: 0 0 0 0.125rem #228be6;
    box-shadow: 0 0 0 0.125rem #228be6
}

.duotone-preview-nav-mono {
    background: linear-gradient(-45deg, #74c0fc 0%, #74c0fc 50%, #228be6 50%, #228be6 100%)
}

.duotone-preview-nav-mono.is-active {
    -webkit-box-shadow: 0 0 0 0.125rem #228be6;
    box-shadow: 0 0 0 0.125rem #228be6
}

.duotone-preview-nav-pink-yellow {
    background: linear-gradient(-45deg, #ffd43b 0%, #ffd43b 50%, #e64980 50%, #e64980 100%)
}

.duotone-preview-nav-pink-yellow.is-active {
    -webkit-box-shadow: 0 0 0 0.125rem #e64980;
    box-shadow: 0 0 0 0.125rem #e64980
}

.duotone-preview-nav-green-black {
    background: linear-gradient(-45deg, #212529 0%, #212529 50%, #2f9e44 50%, #2f9e44 100%)
}

.duotone-preview-nav-green-black.is-active {
    -webkit-box-shadow: 0 0 0 0.125rem #2f9e44;
    box-shadow: 0 0 0 0.125rem #2f9e44
}


/*# sourceMappingURL=app.css.map*/