@-webkit-keyframes bounce
{
    20%, 53%, 80%, from, to
    {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
    40%, 43%
    {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        -webkit-transform: translate3d(0,-30px,0);
        transform: translate3d(0,-30px,0);
    }
    70%
    {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.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
{
    20%, 53%, 80%, from, to
    {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
    40%, 43%
    {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        -webkit-transform: translate3d(0,-30px,0);
        transform: translate3d(0,-30px,0);
    }
    70%
    {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.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
{
    50%, from, to
    {
        opacity: 1;
    }
    25%, 75%
    {
        opacity: 0;
    }
}
@keyframes flash
{
    50%, from, 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,.75,1);
        transform: scale3d(1.25,.75,1);
    }
    40%
    {
        -webkit-transform: scale3d(.75,1.25,1);
        transform: scale3d(.75,1.25,1);
    }
    50%
    {
        -webkit-transform: scale3d(1.15,.85,1);
        transform: scale3d(1.15,.85,1);
    }
    65%
    {
        -webkit-transform: scale3d(.95,1.05,1);
        transform: scale3d(.95,1.05,1);
    }
    75%
    {
        -webkit-transform: scale3d(1.05,.95,1);
        transform: scale3d(1.05,.95,1);
    }
    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,.75,1);
        transform: scale3d(1.25,.75,1);
    }
    40%
    {
        -webkit-transform: scale3d(.75,1.25,1);
        transform: scale3d(.75,1.25,1);
    }
    50%
    {
        -webkit-transform: scale3d(1.15,.85,1);
        transform: scale3d(1.15,.85,1);
    }
    65%
    {
        -webkit-transform: scale3d(.95,1.05,1);
        transform: scale3d(.95,1.05,1);
    }
    75%
    {
        -webkit-transform: scale3d(1.05,.95,1);
        transform: scale3d(1.05,.95,1);
    }
    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(.9,.9,.9) rotate3d(0,0,1,-3deg);
        transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);
    }
    30%, 50%, 70%, 90%
    {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
        transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
    }
    40%, 60%, 80%
    {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
        transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
    }
    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(.9,.9,.9) rotate3d(0,0,1,-3deg);
        transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);
    }
    30%, 50%, 70%, 90%
    {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
        transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
    }
    40%, 60%, 80%
    {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
        transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
    }
    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
{
    11.1%, from, 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(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg);
    }
    77.7%
    {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg);
    }
    88.8%
    {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg);
    }
}
@keyframes jello
{
    11.1%, from, 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(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg);
    }
    77.7%
    {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg);
    }
    88.8%
    {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg);
    }
}
.jello
{
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center;
}
@-webkit-keyframes heartBeat
{
    0%
    {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    14%
    {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    28%
    {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    42%
    {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    70%
    {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes heartBeat
{
    0%
    {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    14%
    {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    28%
    {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    42%
    {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    70%
    {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.heartBeat
{
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}
@-webkit-keyframes bounceIn
{
    20%, 40%, 60%, 80%, from, to
    {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
    }
    0%
    {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3);
    }
    20%
    {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1);
    }
    40%
    {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9);
    }
    60%
    {
        opacity: 1;
        -webkit-transform: scale3d(1.03,1.03,1.03);
        transform: scale3d(1.03,1.03,1.03);
    }
    80%
    {
        -webkit-transform: scale3d(.97,.97,.97);
        transform: scale3d(.97,.97,.97);
    }
    to
    {
        opacity: 1;
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }
}
@keyframes bounceIn
{
    20%, 40%, 60%, 80%, from, to
    {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
    }
    0%
    {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3);
    }
    20%
    {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1);
    }
    40%
    {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9);
    }
    60%
    {
        opacity: 1;
        -webkit-transform: scale3d(1.03,1.03,1.03);
        transform: scale3d(1.03,1.03,1.03);
    }
    80%
    {
        -webkit-transform: scale3d(.97,.97,.97);
        transform: scale3d(.97,.97,.97);
    }
    to
    {
        opacity: 1;
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }
}
.bounceIn
{
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown
{
    60%, 75%, 90%, from, to
    {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.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
{
    60%, 75%, 90%, from, to
    {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.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
{
    60%, 75%, 90%, from, to
    {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.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
{
    60%, 75%, 90%, from, to
    {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.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
{
    60%, 75%, 90%, from, to
    {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.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
{
    60%, 75%, 90%, from, to
    {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.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
{
    60%, 75%, 90%, from, to
    {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.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
{
    60%, 75%, 90%, from, to
    {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.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(.9,.9,.9);
        transform: scale3d(.9,.9,.9);
    }
    50%, 55%
    {
        opacity: 1;
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1);
    }
    to
    {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3);
    }
}
@keyframes bounceOut
{
    20%
    {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9);
    }
    50%, 55%
    {
        opacity: 1;
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1);
    }
    to
    {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3);
    }
}
.bounceOut
{
    -webkit-animation-duration: .75s;
    animation-duration: .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) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);
        transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40%
    {
        -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
        transform: perspective(400px) scale3d(1,1,1) 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) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
        transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80%
    {
        -webkit-transform: perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);
        transform: perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    to
    {
        -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);
        transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}
@keyframes flip
{
    from
    {
        -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);
        transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40%
    {
        -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
        transform: perspective(400px) scale3d(1,1,1) 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) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
        transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80%
    {
        -webkit-transform: perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);
        transform: perspective(400px) scale3d(.95,.95,.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    to
    {
        -webkit-transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);
        transform: perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);
        -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: .75s;
    animation-duration: .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: .75s;
    animation-duration: .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);
    }
    to
    {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}
@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);
    }
    to
    {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}
.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(.1) rotate(30deg);
        transform: scale(.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(.1) rotate(30deg);
        transform: scale(.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(.3,.3,.3);
        transform: scale3d(.3,.3,.3);
    }
    50%
    {
        opacity: 1;
    }
}
@keyframes zoomIn
{
    from
    {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3);
    }
    50%
    {
        opacity: 1;
    }
}
.zoomIn
{
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown
{
    from
    {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }
    60%
    {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}
@keyframes zoomInDown
{
    from
    {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }
    60%
    {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}
.zoomInDown
{
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft
{
    from
    {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }
    60%
    {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}
@keyframes zoomInLeft
{
    from
    {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }
    60%
    {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}
.zoomInLeft
{
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight
{
    from
    {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }
    60%
    {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}
@keyframes zoomInRight
{
    from
    {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }
    60%
    {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}
.zoomInRight
{
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp
{
    from
    {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }
    60%
    {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}
@keyframes zoomInUp
{
    from
    {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }
    60%
    {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}
.zoomInUp
{
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut
{
    from
    {
        opacity: 1;
    }
    50%
    {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3);
    }
    to
    {
        opacity: 0;
    }
}
@keyframes zoomOut
{
    from
    {
        opacity: 1;
    }
    50%
    {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3);
    }
    to
    {
        opacity: 0;
    }
}
.zoomOut
{
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown
{
    40%
    {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }
    to
    {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}
@keyframes zoomOutDown
{
    40%
    {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }
    to
    {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}
.zoomOutDown
{
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft
{
    40%
    {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
    }
    to
    {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px,0,0);
        transform: scale(.1) translate3d(-2000px,0,0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}
@keyframes zoomOutLeft
{
    40%
    {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
    }
    to
    {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px,0,0);
        transform: scale(.1) translate3d(-2000px,0,0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}
.zoomOutLeft
{
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight
{
    40%
    {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
    }
    to
    {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px,0,0);
        transform: scale(.1) translate3d(2000px,0,0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}
@keyframes zoomOutRight
{
    40%
    {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
    }
    to
    {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px,0,0);
        transform: scale(.1) translate3d(2000px,0,0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}
.zoomOutRight
{
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp
{
    40%
    {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }
    to
    {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1);
    }
}
@keyframes zoomOutUp
{
    40%
    {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19);
    }
    to
    {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.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;
}
.animated
{
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animated.infinite
{
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.animated.delay-1s
{
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.animated.delay-2s
{
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.animated.delay-3s
{
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}
.animated.delay-4s
{
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}
.animated.delay-5s
{
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}
.animated.fast
{
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
}
.animated.faster
{
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
}
.animated.slow
{
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}
.animated.slower
{
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
}
@media(print),(prefers-reduced-motion: reduce)
{
    .animated
    {
        -webkit-animation-duration: 1ms!important;
        animation-duration: 1ms!important;
        -webkit-transition-duration: 1ms!important;
        transition-duration: 1ms!important;
        -webkit-animation-iteration-count: 1!important;
        animation-iteration-count: 1!important;
    }
}
:root
{
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1590px;
    --breakpoint-xhd: 1880px;
    --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
}
*, ::after, ::before
{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html
{
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section
{
    display: block;
}
body
{
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}
[tabindex="-1"]:focus
{
    outline: 0!important;
}
hr
{
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
h1, h2, h3, h4, h5, h6
{
    margin-top: 0;
    margin-bottom: .5rem;
}
p
{
    margin-top: 0;
    margin-bottom: 1rem;
}
abbr[data-original-title], abbr[title]
{
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}
address
{
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}
dl, ol, ul
{
    margin-top: 0;
    margin-bottom: 1rem;
}
ol ol, ol ul, ul ol, ul ul
{
    margin-bottom: 0;
}
dt
{
    font-weight: 700;
}
dd
{
    margin-bottom: .5rem;
    margin-left: 0;
}
blockquote
{
    margin: 0 0 1rem;
}
b, strong
{
    font-weight: bolder;
}
small
{
    font-size: 80%;
}
sub, sup
{
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}
sub
{
    bottom: -.25em;
}
sup
{
    top: -.5em;
}
a
{
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}
a:hover
{
    color: #0056b3;
    text-decoration: underline;
}
a:not([href]):not([tabindex])
{
    color: inherit;
    text-decoration: none;
}
a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover
{
    color: inherit;
    text-decoration: none;
}
a:not([href]):not([tabindex]):focus
{
    outline: 0;
}
code, kbd, pre, samp
{
    font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    font-size: 1em;
}
pre
{
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
}
figure
{
    margin: 0 0 1rem;
}
img
{
    vertical-align: middle;
    border-style: none;
}
svg
{
    overflow: hidden;
    vertical-align: middle;
}
table
{
    border-collapse: collapse;
}
caption
{
    padding-top: .75rem;
    padding-bottom: .75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}
th
{
    text-align: inherit;
}
label
{
    display: inline-block;
    margin-bottom: .5rem;
}
button
{
    border-radius: 0;
}
button:focus
{
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}
button, input, optgroup, select, textarea
{
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
button, input
{
    overflow: visible;
}
button, select
{
    text-transform: none;
}
select
{
    word-wrap: normal;
}
[type=button], [type=reset], [type=submit], button
{
    -webkit-appearance: button;
}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled)
{
    cursor: pointer;
}
[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner
{
    padding: 0;
    border-style: none;
}
input[type=checkbox], input[type=radio]
{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}
input[type=date], input[type=datetime-local], input[type=month], input[type=time]
{
    -webkit-appearance: listbox;
}
textarea
{
    overflow: auto;
    resize: vertical;
}
fieldset
{
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}
legend
{
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}
progress
{
    vertical-align: baseline;
}
[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button
{
    height: auto;
}
[type=search]
{
    outline-offset: -2px;
    -webkit-appearance: none;
}
[type=search]::-webkit-search-decoration
{
    -webkit-appearance: none;
}
::-webkit-file-upload-button
{
    font: inherit;
    -webkit-appearance: button;
}
output
{
    display: inline-block;
}
summary
{
    display: list-item;
    cursor: pointer;
}
template
{
    display: none;
}
[hidden]
{
    display: none!important;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6
{
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
.h1, h1
{
    font-size: 2.5rem;
}
.h2, h2
{
    font-size: 2rem;
}
.h3, h3
{
    font-size: 1.75rem;
}
.h4, h4
{
    font-size: 1.5rem;
}
.h5, h5
{
    font-size: 1.25rem;
}
.h6, h6
{
    font-size: 1rem;
}
.lead
{
    font-size: 1.25rem;
    font-weight: 300;
}
.display-1
{
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2;
}
.display-2
{
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2;
}
.display-3
{
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
}
.display-4
{
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
}
hr
{
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
}
.small, small
{
    font-size: 80%;
    font-weight: 400;
}
.mark, mark
{
    padding: .2em;
    background-color: #fcf8e3;
}
.list-unstyled
{
    padding-left: 0;
    list-style: none;
}
.list-inline
{
    padding-left: 0;
    list-style: none;
}
.list-inline-item
{
    display: inline-block;
}
.list-inline-item:not(:last-child)
{
    margin-right: .5rem;
}
.initialism
{
    font-size: 90%;
    text-transform: uppercase;
}
.blockquote
{
    margin-bottom: 1rem;
    font-size: 1.25rem;
}
.blockquote-footer
{
    display: block;
    font-size: 80%;
    color: #6c757d;
}
.blockquote-footer::before
{
    content: "— ";
}
.img-fluid
{
    max-width: 100%;
    height: auto;
}
.img-thumbnail
{
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    max-width: 100%;
    height: auto;
}
.figure
{
    display: inline-block;
}
.figure-img
{
    margin-bottom: .5rem;
    line-height: 1;
}
.figure-caption
{
    font-size: 90%;
    color: #6c757d;
}
code
{
    font-size: 87.5%;
    color: #e83e8c;
    word-break: break-word;
}
a>code
{
    color: inherit;
}
kbd
{
    padding: .2rem .4rem;
    font-size: 87.5%;
    color: #fff;
    background-color: #212529;
    border-radius: .2rem;
}
kbd kbd
{
    padding: 0;
    font-size: 100%;
    font-weight: 700;
}
pre
{
    display: block;
    font-size: 87.5%;
    color: #212529;
}
pre code
{
    font-size: inherit;
    color: inherit;
    word-break: normal;
}
.pre-scrollable
{
    max-height: 340px;
    overflow-y: scroll;
}
.container
{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media(min-width: 576px)
{
    .container
    {
        max-width: 540px;
    }
}
@media(min-width: 768px)
{
    .container
    {
        max-width: 720px;
    }
}
@media(min-width: 992px)
{
    .container
    {
        max-width: 960px;
    }
}
@media(min-width: 1200px)
{
    .container
    {
        max-width: 1140px;
    }
}
@media(min-width: 1590px)
{
    .container
    {
        max-width: 1360px;
    }
}
@media(min-width: 1880px)
{
    .container
    {
        max-width: 1640px;
    }
}
.container-fluid
{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.row
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.no-gutters
{
    margin-right: 0;
    margin-left: 0;
}
.no-gutters>.col, .no-gutters>[class*=col-]
{
    padding-right: 0;
    padding-left: 0;
}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xhd, .col-xhd-1, .col-xhd-10, .col-xhd-11, .col-xhd-12, .col-xhd-2, .col-xhd-3, .col-xhd-4, .col-xhd-5, .col-xhd-6, .col-xhd-7, .col-xhd-8, .col-xhd-9, .col-xhd-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto, .col-xxl, .col-xxl-1, .col-xxl-10, .col-xxl-11, .col-xxl-12, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-auto
{
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.col
{
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.col-auto
{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}
.col-1
{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}
.col-2
{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}
.col-3
{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.col-4
{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}
.col-5
{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}
.col-6
{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.col-7
{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}
.col-8
{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}
.col-9
{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}
.col-10
{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}
.col-11
{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}
.col-12
{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.order-first
{
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}
.order-last
{
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
}
.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-9
{
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
}
.order-10
{
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
}
.order-11
{
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
}
.order-12
{
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
}
.offset-1
{
    margin-left: 8.33333%;
}
.offset-2
{
    margin-left: 16.66667%;
}
.offset-3
{
    margin-left: 25%;
}
.offset-4
{
    margin-left: 33.33333%;
}
.offset-5
{
    margin-left: 41.66667%;
}
.offset-6
{
    margin-left: 50%;
}
.offset-7
{
    margin-left: 58.33333%;
}
.offset-8
{
    margin-left: 66.66667%;
}
.offset-9
{
    margin-left: 75%;
}
.offset-10
{
    margin-left: 83.33333%;
}
.offset-11
{
    margin-left: 91.66667%;
}
@media(min-width: 576px)
{
    .col-sm
    {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-sm-auto
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-sm-1
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-sm-2
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-sm-3
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-sm-4
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-sm-5
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-sm-6
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-sm-7
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-sm-8
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-sm-9
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-sm-10
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-sm-11
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-sm-12
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-sm-first
    {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-sm-last
    {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-sm-0
    {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-sm-1
    {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-sm-2
    {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-sm-3
    {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-sm-4
    {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-sm-5
    {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-sm-6
    {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-sm-7
    {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-sm-8
    {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-sm-9
    {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-sm-10
    {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-sm-11
    {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-sm-12
    {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-sm-0
    {
        margin-left: 0;
    }
    .offset-sm-1
    {
        margin-left: 8.33333%;
    }
    .offset-sm-2
    {
        margin-left: 16.66667%;
    }
    .offset-sm-3
    {
        margin-left: 25%;
    }
    .offset-sm-4
    {
        margin-left: 33.33333%;
    }
    .offset-sm-5
    {
        margin-left: 41.66667%;
    }
    .offset-sm-6
    {
        margin-left: 50%;
    }
    .offset-sm-7
    {
        margin-left: 58.33333%;
    }
    .offset-sm-8
    {
        margin-left: 66.66667%;
    }
    .offset-sm-9
    {
        margin-left: 75%;
    }
    .offset-sm-10
    {
        margin-left: 83.33333%;
    }
    .offset-sm-11
    {
        margin-left: 91.66667%;
    }
}
@media(min-width: 768px)
{
    .col-md
    {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-md-auto
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-md-1
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-md-2
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-md-3
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-md-5
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-md-6
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-7
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-md-8
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-md-9
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-md-10
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-md-11
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-md-12
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-md-first
    {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-md-last
    {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-md-0
    {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-md-1
    {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-md-2
    {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-md-3
    {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-md-4
    {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-md-5
    {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-md-6
    {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-md-7
    {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-md-8
    {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-md-9
    {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-md-10
    {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-md-11
    {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-md-12
    {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-md-0
    {
        margin-left: 0;
    }
    .offset-md-1
    {
        margin-left: 8.33333%;
    }
    .offset-md-2
    {
        margin-left: 16.66667%;
    }
    .offset-md-3
    {
        margin-left: 25%;
    }
    .offset-md-4
    {
        margin-left: 33.33333%;
    }
    .offset-md-5
    {
        margin-left: 41.66667%;
    }
    .offset-md-6
    {
        margin-left: 50%;
    }
    .offset-md-7
    {
        margin-left: 58.33333%;
    }
    .offset-md-8
    {
        margin-left: 66.66667%;
    }
    .offset-md-9
    {
        margin-left: 75%;
    }
    .offset-md-10
    {
        margin-left: 83.33333%;
    }
    .offset-md-11
    {
        margin-left: 91.66667%;
    }
}
@media(min-width: 992px)
{
    .col-lg
    {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-lg-auto
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-lg-1
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-lg-2
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-lg-3
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-lg-5
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-lg-6
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-lg-8
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-lg-9
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-10
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-lg-11
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-lg-12
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-lg-first
    {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-lg-last
    {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-lg-0
    {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-lg-1
    {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-lg-2
    {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-lg-3
    {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-lg-4
    {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-lg-5
    {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-lg-6
    {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-lg-7
    {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-lg-8
    {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-lg-9
    {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-lg-10
    {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-lg-11
    {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-lg-12
    {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-lg-0
    {
        margin-left: 0;
    }
    .offset-lg-1
    {
        margin-left: 8.33333%;
    }
    .offset-lg-2
    {
        margin-left: 16.66667%;
    }
    .offset-lg-3
    {
        margin-left: 25%;
    }
    .offset-lg-4
    {
        margin-left: 33.33333%;
    }
    .offset-lg-5
    {
        margin-left: 41.66667%;
    }
    .offset-lg-6
    {
        margin-left: 50%;
    }
    .offset-lg-7
    {
        margin-left: 58.33333%;
    }
    .offset-lg-8
    {
        margin-left: 66.66667%;
    }
    .offset-lg-9
    {
        margin-left: 75%;
    }
    .offset-lg-10
    {
        margin-left: 83.33333%;
    }
    .offset-lg-11
    {
        margin-left: 91.66667%;
    }
}
@media(min-width: 1200px)
{
    .col-xl
    {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-xl-auto
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-xl-1
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-xl-2
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-xl-3
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xl-4
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-xl-5
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-xl-6
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xl-7
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-xl-8
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-xl-9
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xl-10
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-xl-11
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-xl-12
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-xl-first
    {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-xl-last
    {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-xl-0
    {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-xl-1
    {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-xl-2
    {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-xl-3
    {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-xl-4
    {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-xl-5
    {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-xl-6
    {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-xl-7
    {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-xl-8
    {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-xl-9
    {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-xl-10
    {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-xl-11
    {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-xl-12
    {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-xl-0
    {
        margin-left: 0;
    }
    .offset-xl-1
    {
        margin-left: 8.33333%;
    }
    .offset-xl-2
    {
        margin-left: 16.66667%;
    }
    .offset-xl-3
    {
        margin-left: 25%;
    }
    .offset-xl-4
    {
        margin-left: 33.33333%;
    }
    .offset-xl-5
    {
        margin-left: 41.66667%;
    }
    .offset-xl-6
    {
        margin-left: 50%;
    }
    .offset-xl-7
    {
        margin-left: 58.33333%;
    }
    .offset-xl-8
    {
        margin-left: 66.66667%;
    }
    .offset-xl-9
    {
        margin-left: 75%;
    }
    .offset-xl-10
    {
        margin-left: 83.33333%;
    }
    .offset-xl-11
    {
        margin-left: 91.66667%;
    }
}
@media(min-width: 1590px)
{
    .col-xxl
    {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-xxl-auto
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-xxl-1
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-xxl-2
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-xxl-3
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xxl-4
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-xxl-5
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-xxl-6
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xxl-7
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-xxl-8
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-xxl-9
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xxl-10
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-xxl-11
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-xxl-12
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-xxl-first
    {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-xxl-last
    {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-xxl-0
    {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-xxl-1
    {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-xxl-2
    {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-xxl-3
    {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-xxl-4
    {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-xxl-5
    {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-xxl-6
    {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-xxl-7
    {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-xxl-8
    {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-xxl-9
    {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-xxl-10
    {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-xxl-11
    {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-xxl-12
    {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-xxl-0
    {
        margin-left: 0;
    }
    .offset-xxl-1
    {
        margin-left: 8.33333%;
    }
    .offset-xxl-2
    {
        margin-left: 16.66667%;
    }
    .offset-xxl-3
    {
        margin-left: 25%;
    }
    .offset-xxl-4
    {
        margin-left: 33.33333%;
    }
    .offset-xxl-5
    {
        margin-left: 41.66667%;
    }
    .offset-xxl-6
    {
        margin-left: 50%;
    }
    .offset-xxl-7
    {
        margin-left: 58.33333%;
    }
    .offset-xxl-8
    {
        margin-left: 66.66667%;
    }
    .offset-xxl-9
    {
        margin-left: 75%;
    }
    .offset-xxl-10
    {
        margin-left: 83.33333%;
    }
    .offset-xxl-11
    {
        margin-left: 91.66667%;
    }
}
@media(min-width: 1880px)
{
    .col-xhd
    {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-xhd-auto
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-xhd-1
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-xhd-2
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-xhd-3
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xhd-4
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-xhd-5
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-xhd-6
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xhd-7
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-xhd-8
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-xhd-9
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xhd-10
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-xhd-11
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-xhd-12
    {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-xhd-first
    {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-xhd-last
    {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-xhd-0
    {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-xhd-1
    {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-xhd-2
    {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-xhd-3
    {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-xhd-4
    {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-xhd-5
    {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-xhd-6
    {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-xhd-7
    {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-xhd-8
    {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-xhd-9
    {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-xhd-10
    {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-xhd-11
    {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-xhd-12
    {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-xhd-0
    {
        margin-left: 0;
    }
    .offset-xhd-1
    {
        margin-left: 8.33333%;
    }
    .offset-xhd-2
    {
        margin-left: 16.66667%;
    }
    .offset-xhd-3
    {
        margin-left: 25%;
    }
    .offset-xhd-4
    {
        margin-left: 33.33333%;
    }
    .offset-xhd-5
    {
        margin-left: 41.66667%;
    }
    .offset-xhd-6
    {
        margin-left: 50%;
    }
    .offset-xhd-7
    {
        margin-left: 58.33333%;
    }
    .offset-xhd-8
    {
        margin-left: 66.66667%;
    }
    .offset-xhd-9
    {
        margin-left: 75%;
    }
    .offset-xhd-10
    {
        margin-left: 83.33333%;
    }
    .offset-xhd-11
    {
        margin-left: 91.66667%;
    }
}
.table
{
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
}
.table td, .table th
{
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}
.table thead th
{
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}
.table tbody+tbody
{
    border-top: 2px solid #dee2e6;
}
.table-sm td, .table-sm th
{
    padding: .3rem;
}
.table-bordered
{
    border: 1px solid #dee2e6;
}
.table-bordered td, .table-bordered th
{
    border: 1px solid #dee2e6;
}
.table-bordered thead td, .table-bordered thead th
{
    border-bottom-width: 2px;
}
.table-borderless tbody+tbody, .table-borderless td, .table-borderless th, .table-borderless thead th
{
    border: 0;
}
.table-striped tbody tr:nth-of-type(odd)
{
    background-color: rgba(0,0,0,.05);
}
.table-hover tbody tr:hover
{
    color: #212529;
    background-color: rgba(0,0,0,.075);
}
.table-primary, .table-primary>td, .table-primary>th
{
    background-color: #b8daff;
}
.table-primary tbody+tbody, .table-primary td, .table-primary th, .table-primary thead th
{
    border-color: #7abaff;
}
.table-hover .table-primary:hover
{
    background-color: #9fcdff;
}
.table-hover .table-primary:hover>td, .table-hover .table-primary:hover>th
{
    background-color: #9fcdff;
}
.table-secondary, .table-secondary>td, .table-secondary>th
{
    background-color: #d6d8db;
}
.table-secondary tbody+tbody, .table-secondary td, .table-secondary th, .table-secondary thead th
{
    border-color: #b3b7bb;
}
.table-hover .table-secondary:hover
{
    background-color: #c8cbcf;
}
.table-hover .table-secondary:hover>td, .table-hover .table-secondary:hover>th
{
    background-color: #c8cbcf;
}
.table-success, .table-success>td, .table-success>th
{
    background-color: #c3e6cb;
}
.table-success tbody+tbody, .table-success td, .table-success th, .table-success thead th
{
    border-color: #8fd19e;
}
.table-hover .table-success:hover
{
    background-color: #b1dfbb;
}
.table-hover .table-success:hover>td, .table-hover .table-success:hover>th
{
    background-color: #b1dfbb;
}
.table-info, .table-info>td, .table-info>th
{
    background-color: #bee5eb;
}
.table-info tbody+tbody, .table-info td, .table-info th, .table-info thead th
{
    border-color: #86cfda;
}
.table-hover .table-info:hover
{
    background-color: #abdde5;
}
.table-hover .table-info:hover>td, .table-hover .table-info:hover>th
{
    background-color: #abdde5;
}
.table-warning, .table-warning>td, .table-warning>th
{
    background-color: #ffeeba;
}
.table-warning tbody+tbody, .table-warning td, .table-warning th, .table-warning thead th
{
    border-color: #ffdf7e;
}
.table-hover .table-warning:hover
{
    background-color: #ffe8a1;
}
.table-hover .table-warning:hover>td, .table-hover .table-warning:hover>th
{
    background-color: #ffe8a1;
}
.table-danger, .table-danger>td, .table-danger>th
{
    background-color: #f5c6cb;
}
.table-danger tbody+tbody, .table-danger td, .table-danger th, .table-danger thead th
{
    border-color: #ed969e;
}
.table-hover .table-danger:hover
{
    background-color: #f1b0b7;
}
.table-hover .table-danger:hover>td, .table-hover .table-danger:hover>th
{
    background-color: #f1b0b7;
}
.table-light, .table-light>td, .table-light>th
{
    background-color: #fdfdfe;
}
.table-light tbody+tbody, .table-light td, .table-light th, .table-light thead th
{
    border-color: #fbfcfc;
}
.table-hover .table-light:hover
{
    background-color: #ececf6;
}
.table-hover .table-light:hover>td, .table-hover .table-light:hover>th
{
    background-color: #ececf6;
}
.table-dark, .table-dark>td, .table-dark>th
{
    background-color: #c6c8ca;
}
.table-dark tbody+tbody, .table-dark td, .table-dark th, .table-dark thead th
{
    border-color: #95999c;
}
.table-hover .table-dark:hover
{
    background-color: #b9bbbe;
}
.table-hover .table-dark:hover>td, .table-hover .table-dark:hover>th
{
    background-color: #b9bbbe;
}
.table-active, .table-active>td, .table-active>th
{
    background-color: rgba(0,0,0,.075);
}
.table-hover .table-active:hover
{
    background-color: rgba(0,0,0,.075);
}
.table-hover .table-active:hover>td, .table-hover .table-active:hover>th
{
    background-color: rgba(0,0,0,.075);
}
.table .thead-dark th
{
    color: #fff;
    background-color: #343a40;
    border-color: #454d55;
}
.table .thead-light th
{
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6;
}
.table-dark
{
    color: #fff;
    background-color: #343a40;
}
.table-dark td, .table-dark th, .table-dark thead th
{
    border-color: #454d55;
}
.table-dark.table-bordered
{
    border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd)
{
    background-color: rgba(255,255,255,.05);
}
.table-dark.table-hover tbody tr:hover
{
    color: #fff;
    background-color: rgba(255,255,255,.075);
}
@media(max-width: 575.98px)
{
    .table-responsive-sm
    {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-sm>.table-bordered
    {
        border: 0;
    }
}
@media(max-width: 767.98px)
{
    .table-responsive-md
    {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-md>.table-bordered
    {
        border: 0;
    }
}
@media(max-width: 991.98px)
{
    .table-responsive-lg
    {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-lg>.table-bordered
    {
        border: 0;
    }
}
@media(max-width: 1199.98px)
{
    .table-responsive-xl
    {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-xl>.table-bordered
    {
        border: 0;
    }
}
@media(max-width: 1589.98px)
{
    .table-responsive-xxl
    {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-xxl>.table-bordered
    {
        border: 0;
    }
}
@media(max-width: 1879.98px)
{
    .table-responsive-xhd
    {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-xhd>.table-bordered
    {
        border: 0;
    }
}
.table-responsive
{
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.table-responsive>.table-bordered
{
    border: 0;
}
.form-control
{
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}
@media(prefers-reduced-motion: reduce)
{
    .form-control
    {
        -webkit-transition: none;
        transition: none;
    }
}
.form-control::-ms-expand
{
    background-color: transparent;
    border: 0;
}
.form-control:focus
{
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
}
.form-control::-webkit-input-placeholder
{
    color: #6c757d;
    opacity: 1;
}
.form-control::-moz-placeholder
{
    color: #6c757d;
    opacity: 1;
}
.form-control:-ms-input-placeholder
{
    color: #6c757d;
    opacity: 1;
}
.form-control::-ms-input-placeholder
{
    color: #6c757d;
    opacity: 1;
}
.form-control::placeholder
{
    color: #6c757d;
    opacity: 1;
}
.form-control:disabled, .form-control[readonly]
{
    background-color: #e9ecef;
    opacity: 1;
}
select.form-control:focus::-ms-value
{
    color: #495057;
    background-color: #fff;
}
.form-control-file, .form-control-range
{
    display: block;
    width: 100%;
}
.col-form-label
{
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}
.col-form-label-lg
{
    padding-top: calc(.5rem + 1px);
    padding-bottom: calc(.5rem + 1px);
    font-size: 1.25rem;
    line-height: 1.5;
}
.col-form-label-sm
{
    padding-top: calc(.25rem + 1px);
    padding-bottom: calc(.25rem + 1px);
    font-size: .875rem;
    line-height: 1.5;
}
.form-control-plaintext
{
    display: block;
    width: 100%;
    padding-top: .375rem;
    padding-bottom: .375rem;
    margin-bottom: 0;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0;
}
.form-control-plaintext.form-control-lg, .form-control-plaintext.form-control-sm
{
    padding-right: 0;
    padding-left: 0;
}
.form-control-sm
{
    height: calc(1.5em + .5rem + 2px);
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem;
}
.form-control-lg
{
    height: calc(1.5em + 1rem + 2px);
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem;
}
select.form-control[multiple], select.form-control[size]
{
    height: auto;
}
textarea.form-control
{
    height: auto;
}
.form-group
{
    margin-bottom: 1rem;
}
.form-text
{
    display: block;
    margin-top: .25rem;
}
.form-row
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}
.form-row>.col, .form-row>[class*=col-]
{
    padding-right: 5px;
    padding-left: 5px;
}
.form-check
{
    position: relative;
    display: block;
    padding-left: 1.25rem;
}
.form-check-input
{
    position: absolute;
    margin-top: .3rem;
    margin-left: -1.25rem;
}
.form-check-input:disabled~.form-check-label
{
    color: #6c757d;
}
.form-check-label
{
    margin-bottom: 0;
}
.form-check-inline
{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: .75rem;
}
.form-check-inline .form-check-input
{
    position: static;
    margin-top: 0;
    margin-right: .3125rem;
    margin-left: 0;
}
.valid-feedback
{
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #28a745;
}
.valid-tooltip
{
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(40,167,69,.9);
    border-radius: .25rem;
}
.form-control.is-valid, .was-validated .form-control:valid
{
    border-color: #28a745;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center right calc(.375em + .1875rem);
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}
.form-control.is-valid:focus, .was-validated .form-control:valid:focus
{
    border-color: #28a745;
    -webkit-box-shadow: 0 0 0 .2rem rgba(40,167,69,.25);
    box-shadow: 0 0 0 .2rem rgba(40,167,69,.25);
}
.form-control.is-valid~.valid-feedback, .form-control.is-valid~.valid-tooltip, .was-validated .form-control:valid~.valid-feedback, .was-validated .form-control:valid~.valid-tooltip
{
    display: block;
}
.was-validated textarea.form-control:valid, textarea.form-control.is-valid
{
    padding-right: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
}
.custom-select.is-valid, .was-validated .custom-select:valid
{
    border-color: #28a745;
    padding-right: calc((1em + .75rem) * 3 / 4 + 1.75rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem);
}
.custom-select.is-valid:focus, .was-validated .custom-select:valid:focus
{
    border-color: #28a745;
    -webkit-box-shadow: 0 0 0 .2rem rgba(40,167,69,.25);
    box-shadow: 0 0 0 .2rem rgba(40,167,69,.25);
}
.custom-select.is-valid~.valid-feedback, .custom-select.is-valid~.valid-tooltip, .was-validated .custom-select:valid~.valid-feedback, .was-validated .custom-select:valid~.valid-tooltip
{
    display: block;
}
.form-control-file.is-valid~.valid-feedback, .form-control-file.is-valid~.valid-tooltip, .was-validated .form-control-file:valid~.valid-feedback, .was-validated .form-control-file:valid~.valid-tooltip
{
    display: block;
}
.form-check-input.is-valid~.form-check-label, .was-validated .form-check-input:valid~.form-check-label
{
    color: #28a745;
}
.form-check-input.is-valid~.valid-feedback, .form-check-input.is-valid~.valid-tooltip, .was-validated .form-check-input:valid~.valid-feedback, .was-validated .form-check-input:valid~.valid-tooltip
{
    display: block;
}
.custom-control-input.is-valid~.custom-control-label, .was-validated .custom-control-input:valid~.custom-control-label
{
    color: #28a745;
}
.custom-control-input.is-valid~.custom-control-label::before, .was-validated .custom-control-input:valid~.custom-control-label::before
{
    border-color: #28a745;
}
.custom-control-input.is-valid~.valid-feedback, .custom-control-input.is-valid~.valid-tooltip, .was-validated .custom-control-input:valid~.valid-feedback, .was-validated .custom-control-input:valid~.valid-tooltip
{
    display: block;
}
.custom-control-input.is-valid:checked~.custom-control-label::before, .was-validated .custom-control-input:valid:checked~.custom-control-label::before
{
    border-color: #34ce57;
    background-color: #34ce57;
}
.custom-control-input.is-valid:focus~.custom-control-label::before, .was-validated .custom-control-input:valid:focus~.custom-control-label::before
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(40,167,69,.25);
    box-shadow: 0 0 0 .2rem rgba(40,167,69,.25);
}
.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before, .was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before
{
    border-color: #28a745;
}
.custom-file-input.is-valid~.custom-file-label, .was-validated .custom-file-input:valid~.custom-file-label
{
    border-color: #28a745;
}
.custom-file-input.is-valid~.valid-feedback, .custom-file-input.is-valid~.valid-tooltip, .was-validated .custom-file-input:valid~.valid-feedback, .was-validated .custom-file-input:valid~.valid-tooltip
{
    display: block;
}
.custom-file-input.is-valid:focus~.custom-file-label, .was-validated .custom-file-input:valid:focus~.custom-file-label
{
    border-color: #28a745;
    -webkit-box-shadow: 0 0 0 .2rem rgba(40,167,69,.25);
    box-shadow: 0 0 0 .2rem rgba(40,167,69,.25);
}
.invalid-feedback
{
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545;
}
.invalid-tooltip
{
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(220,53,69,.9);
    border-radius: .25rem;
}
.form-control.is-invalid, .was-validated .form-control:invalid
{
    border-color: #dc3545;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
    background-repeat: no-repeat;
    background-position: center right calc(.375em + .1875rem);
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}
.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus
{
    border-color: #dc3545;
    -webkit-box-shadow: 0 0 0 .2rem rgba(220,53,69,.25);
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.25);
}
.form-control.is-invalid~.invalid-feedback, .form-control.is-invalid~.invalid-tooltip, .was-validated .form-control:invalid~.invalid-feedback, .was-validated .form-control:invalid~.invalid-tooltip
{
    display: block;
}
.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid
{
    padding-right: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
}
.custom-select.is-invalid, .was-validated .custom-select:invalid
{
    border-color: #dc3545;
    padding-right: calc((1em + .75rem) * 3 / 4 + 1.75rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem);
}
.custom-select.is-invalid:focus, .was-validated .custom-select:invalid:focus
{
    border-color: #dc3545;
    -webkit-box-shadow: 0 0 0 .2rem rgba(220,53,69,.25);
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.25);
}
.custom-select.is-invalid~.invalid-feedback, .custom-select.is-invalid~.invalid-tooltip, .was-validated .custom-select:invalid~.invalid-feedback, .was-validated .custom-select:invalid~.invalid-tooltip
{
    display: block;
}
.form-control-file.is-invalid~.invalid-feedback, .form-control-file.is-invalid~.invalid-tooltip, .was-validated .form-control-file:invalid~.invalid-feedback, .was-validated .form-control-file:invalid~.invalid-tooltip
{
    display: block;
}
.form-check-input.is-invalid~.form-check-label, .was-validated .form-check-input:invalid~.form-check-label
{
    color: #dc3545;
}
.form-check-input.is-invalid~.invalid-feedback, .form-check-input.is-invalid~.invalid-tooltip, .was-validated .form-check-input:invalid~.invalid-feedback, .was-validated .form-check-input:invalid~.invalid-tooltip
{
    display: block;
}
.custom-control-input.is-invalid~.custom-control-label, .was-validated .custom-control-input:invalid~.custom-control-label
{
    color: #dc3545;
}
.custom-control-input.is-invalid~.custom-control-label::before, .was-validated .custom-control-input:invalid~.custom-control-label::before
{
    border-color: #dc3545;
}
.custom-control-input.is-invalid~.invalid-feedback, .custom-control-input.is-invalid~.invalid-tooltip, .was-validated .custom-control-input:invalid~.invalid-feedback, .was-validated .custom-control-input:invalid~.invalid-tooltip
{
    display: block;
}
.custom-control-input.is-invalid:checked~.custom-control-label::before, .was-validated .custom-control-input:invalid:checked~.custom-control-label::before
{
    border-color: #e4606d;
    background-color: #e4606d;
}
.custom-control-input.is-invalid:focus~.custom-control-label::before, .was-validated .custom-control-input:invalid:focus~.custom-control-label::before
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(220,53,69,.25);
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.25);
}
.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before, .was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before
{
    border-color: #dc3545;
}
.custom-file-input.is-invalid~.custom-file-label, .was-validated .custom-file-input:invalid~.custom-file-label
{
    border-color: #dc3545;
}
.custom-file-input.is-invalid~.invalid-feedback, .custom-file-input.is-invalid~.invalid-tooltip, .was-validated .custom-file-input:invalid~.invalid-feedback, .was-validated .custom-file-input:invalid~.invalid-tooltip
{
    display: block;
}
.custom-file-input.is-invalid:focus~.custom-file-label, .was-validated .custom-file-input:invalid:focus~.custom-file-label
{
    border-color: #dc3545;
    -webkit-box-shadow: 0 0 0 .2rem rgba(220,53,69,.25);
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.25);
}
.form-inline
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.form-inline .form-check
{
    width: 100%;
}
@media(min-width: 576px)
{
    .form-inline label
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 0;
    }
    .form-inline .form-group
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0;
    }
    .form-inline .form-control
    {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }
    .form-inline .form-control-plaintext
    {
        display: inline-block;
    }
    .form-inline .custom-select, .form-inline .input-group
    {
        width: auto;
    }
    .form-inline .form-check
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: auto;
        padding-left: 0;
    }
    .form-inline .form-check-input
    {
        position: relative;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-top: 0;
        margin-right: .25rem;
        margin-left: 0;
    }
    .form-inline .custom-control
    {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .form-inline .custom-control-label
    {
        margin-bottom: 0;
    }
}
.btn
{
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}
@media(prefers-reduced-motion: reduce)
{
    .btn
    {
        -webkit-transition: none;
        transition: none;
    }
}
.btn:hover
{
    color: #212529;
    text-decoration: none;
}
.btn.focus, .btn:focus
{
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
}
.btn.disabled, .btn:disabled
{
    opacity: .65;
}
a.btn.disabled, fieldset:disabled a.btn
{
    pointer-events: none;
}
.btn-primary
{
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.btn-primary:hover
{
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}
.btn-primary.focus, .btn-primary:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(38,143,255,.5);
    box-shadow: 0 0 0 .2rem rgba(38,143,255,.5);
}
.btn-primary.disabled, .btn-primary:disabled
{
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle
{
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}
.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(38,143,255,.5);
    box-shadow: 0 0 0 .2rem rgba(38,143,255,.5);
}
.btn-secondary
{
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.btn-secondary:hover
{
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
}
.btn-secondary.focus, .btn-secondary:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(130,138,145,.5);
    box-shadow: 0 0 0 .2rem rgba(130,138,145,.5);
}
.btn-secondary.disabled, .btn-secondary:disabled
{
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle
{
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show>.btn-secondary.dropdown-toggle:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(130,138,145,.5);
    box-shadow: 0 0 0 .2rem rgba(130,138,145,.5);
}
.btn-success
{
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}
.btn-success:hover
{
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}
.btn-success.focus, .btn-success:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(72,180,97,.5);
    box-shadow: 0 0 0 .2rem rgba(72,180,97,.5);
}
.btn-success.disabled, .btn-success:disabled
{
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active, .show>.btn-success.dropdown-toggle
{
    color: #fff;
    background-color: #1e7e34;
    border-color: #1c7430;
}
.btn-success:not(:disabled):not(.disabled).active:focus, .btn-success:not(:disabled):not(.disabled):active:focus, .show>.btn-success.dropdown-toggle:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(72,180,97,.5);
    box-shadow: 0 0 0 .2rem rgba(72,180,97,.5);
}
.btn-info
{
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}
.btn-info:hover
{
    color: #fff;
    background-color: #138496;
    border-color: #117a8b;
}
.btn-info.focus, .btn-info:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(58,176,195,.5);
    box-shadow: 0 0 0 .2rem rgba(58,176,195,.5);
}
.btn-info.disabled, .btn-info:disabled
{
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled).active, .btn-info:not(:disabled):not(.disabled):active, .show>.btn-info.dropdown-toggle
{
    color: #fff;
    background-color: #117a8b;
    border-color: #10707f;
}
.btn-info:not(:disabled):not(.disabled).active:focus, .btn-info:not(:disabled):not(.disabled):active:focus, .show>.btn-info.dropdown-toggle:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(58,176,195,.5);
    box-shadow: 0 0 0 .2rem rgba(58,176,195,.5);
}
.btn-warning
{
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}
.btn-warning:hover
{
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00;
}
.btn-warning.focus, .btn-warning:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(222,170,12,.5);
    box-shadow: 0 0 0 .2rem rgba(222,170,12,.5);
}
.btn-warning.disabled, .btn-warning:disabled
{
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled).active, .btn-warning:not(:disabled):not(.disabled):active, .show>.btn-warning.dropdown-toggle
{
    color: #212529;
    background-color: #d39e00;
    border-color: #c69500;
}
.btn-warning:not(:disabled):not(.disabled).active:focus, .btn-warning:not(:disabled):not(.disabled):active:focus, .show>.btn-warning.dropdown-toggle:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(222,170,12,.5);
    box-shadow: 0 0 0 .2rem rgba(222,170,12,.5);
}
.btn-danger
{
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}
.btn-danger:hover
{
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
}
.btn-danger.focus, .btn-danger:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(225,83,97,.5);
    box-shadow: 0 0 0 .2rem rgba(225,83,97,.5);
}
.btn-danger.disabled, .btn-danger:disabled
{
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled).active, .btn-danger:not(:disabled):not(.disabled):active, .show>.btn-danger.dropdown-toggle
{
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d;
}
.btn-danger:not(:disabled):not(.disabled).active:focus, .btn-danger:not(:disabled):not(.disabled):active:focus, .show>.btn-danger.dropdown-toggle:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(225,83,97,.5);
    box-shadow: 0 0 0 .2rem rgba(225,83,97,.5);
}
.btn-light
{
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}
.btn-light:hover
{
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
}
.btn-light.focus, .btn-light:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(216,217,219,.5);
    box-shadow: 0 0 0 .2rem rgba(216,217,219,.5);
}
.btn-light.disabled, .btn-light:disabled
{
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show>.btn-light.dropdown-toggle
{
    color: #212529;
    background-color: #dae0e5;
    border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled).active:focus, .btn-light:not(:disabled):not(.disabled):active:focus, .show>.btn-light.dropdown-toggle:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(216,217,219,.5);
    box-shadow: 0 0 0 .2rem rgba(216,217,219,.5);
}
.btn-dark
{
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}
.btn-dark:hover
{
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124;
}
.btn-dark.focus, .btn-dark:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(82,88,93,.5);
    box-shadow: 0 0 0 .2rem rgba(82,88,93,.5);
}
.btn-dark.disabled, .btn-dark:disabled
{
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled).active, .btn-dark:not(:disabled):not(.disabled):active, .show>.btn-dark.dropdown-toggle
{
    color: #fff;
    background-color: #1d2124;
    border-color: #171a1d;
}
.btn-dark:not(:disabled):not(.disabled).active:focus, .btn-dark:not(:disabled):not(.disabled):active:focus, .show>.btn-dark.dropdown-toggle:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(82,88,93,.5);
    box-shadow: 0 0 0 .2rem rgba(82,88,93,.5);
}
.btn-outline-primary
{
    color: #007bff;
    border-color: #007bff;
}
.btn-outline-primary:hover
{
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.btn-outline-primary.focus, .btn-outline-primary:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(0,123,255,.5);
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled
{
    color: #007bff;
    background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show>.btn-outline-primary.dropdown-toggle
{
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-primary.dropdown-toggle:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(0,123,255,.5);
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.5);
}
.btn-outline-secondary
{
    color: #6c757d;
    border-color: #6c757d;
}
.btn-outline-secondary:hover
{
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.btn-outline-secondary.focus, .btn-outline-secondary:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(108,117,125,.5);
    box-shadow: 0 0 0 .2rem rgba(108,117,125,.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled
{
    color: #6c757d;
    background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary:not(:disabled):not(.disabled):active, .show>.btn-outline-secondary.dropdown-toggle
{
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-secondary.dropdown-toggle:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(108,117,125,.5);
    box-shadow: 0 0 0 .2rem rgba(108,117,125,.5);
}
.btn-outline-success
{
    color: #28a745;
    border-color: #28a745;
}
.btn-outline-success:hover
{
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}
.btn-outline-success.focus, .btn-outline-success:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(40,167,69,.5);
    box-shadow: 0 0 0 .2rem rgba(40,167,69,.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled
{
    color: #28a745;
    background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled).active, .btn-outline-success:not(:disabled):not(.disabled):active, .show>.btn-outline-success.dropdown-toggle
{
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled).active:focus, .btn-outline-success:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-success.dropdown-toggle:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(40,167,69,.5);
    box-shadow: 0 0 0 .2rem rgba(40,167,69,.5);
}
.btn-outline-info
{
    color: #17a2b8;
    border-color: #17a2b8;
}
.btn-outline-info:hover
{
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}
.btn-outline-info.focus, .btn-outline-info:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(23,162,184,.5);
    box-shadow: 0 0 0 .2rem rgba(23,162,184,.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled
{
    color: #17a2b8;
    background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled).active, .btn-outline-info:not(:disabled):not(.disabled):active, .show>.btn-outline-info.dropdown-toggle
{
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled).active:focus, .btn-outline-info:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-info.dropdown-toggle:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(23,162,184,.5);
    box-shadow: 0 0 0 .2rem rgba(23,162,184,.5);
}
.btn-outline-warning
{
    color: #ffc107;
    border-color: #ffc107;
}
.btn-outline-warning:hover
{
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}
.btn-outline-warning.focus, .btn-outline-warning:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(255,193,7,.5);
    box-shadow: 0 0 0 .2rem rgba(255,193,7,.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled
{
    color: #ffc107;
    background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled).active, .btn-outline-warning:not(:disabled):not(.disabled):active, .show>.btn-outline-warning.dropdown-toggle
{
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled).active:focus, .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-warning.dropdown-toggle:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(255,193,7,.5);
    box-shadow: 0 0 0 .2rem rgba(255,193,7,.5);
}
.btn-outline-danger
{
    color: #dc3545;
    border-color: #dc3545;
}
.btn-outline-danger:hover
{
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}
.btn-outline-danger.focus, .btn-outline-danger:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(220,53,69,.5);
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled
{
    color: #dc3545;
    background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled).active, .btn-outline-danger:not(:disabled):not(.disabled):active, .show>.btn-outline-danger.dropdown-toggle
{
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled).active:focus, .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-danger.dropdown-toggle:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(220,53,69,.5);
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.5);
}
.btn-outline-light
{
    color: #f8f9fa;
    border-color: #f8f9fa;
}
.btn-outline-light:hover
{
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}
.btn-outline-light.focus, .btn-outline-light:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(248,249,250,.5);
    box-shadow: 0 0 0 .2rem rgba(248,249,250,.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled
{
    color: #f8f9fa;
    background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled).active, .btn-outline-light:not(:disabled):not(.disabled):active, .show>.btn-outline-light.dropdown-toggle
{
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled).active:focus, .btn-outline-light:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-light.dropdown-toggle:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(248,249,250,.5);
    box-shadow: 0 0 0 .2rem rgba(248,249,250,.5);
}
.btn-outline-dark
{
    color: #343a40;
    border-color: #343a40;
}
.btn-outline-dark:hover
{
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}
.btn-outline-dark.focus, .btn-outline-dark:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(52,58,64,.5);
    box-shadow: 0 0 0 .2rem rgba(52,58,64,.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled
{
    color: #343a40;
    background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled).active, .btn-outline-dark:not(:disabled):not(.disabled):active, .show>.btn-outline-dark.dropdown-toggle
{
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled).active:focus, .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-dark.dropdown-toggle:focus
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(52,58,64,.5);
    box-shadow: 0 0 0 .2rem rgba(52,58,64,.5);
}
.btn-link
{
    font-weight: 400;
    color: #007bff;
    text-decoration: none;
}
.btn-link:hover
{
    color: #0056b3;
    text-decoration: underline;
}
.btn-link.focus, .btn-link:focus
{
    text-decoration: underline;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn-link.disabled, .btn-link:disabled
{
    color: #6c757d;
    pointer-events: none;
}
.btn-group-lg>.btn, .btn-lg
{
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem;
}
.btn-group-sm>.btn, .btn-sm
{
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem;
}
.btn-block
{
    display: block;
    width: 100%;
}
.btn-block+.btn-block
{
    margin-top: .5rem;
}
input[type=button].btn-block, input[type=reset].btn-block, input[type=submit].btn-block
{
    width: 100%;
}
.fade
{
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear;
}
@media(prefers-reduced-motion: reduce)
{
    .fade
    {
        -webkit-transition: none;
        transition: none;
    }
}
.fade:not(.show)
{
    opacity: 0;
}
.collapse:not(.show)
{
    display: none;
}
.collapsing
{
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height .35s ease;
    transition: height .35s ease;
}
@media(prefers-reduced-motion: reduce)
{
    .collapsing
    {
        -webkit-transition: none;
        transition: none;
    }
}
.dropdown, .dropleft, .dropright, .dropup
{
    position: relative;
}
.dropdown-toggle
{
    white-space: nowrap;
}
.dropdown-toggle::after
{
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
.dropdown-toggle:empty::after
{
    margin-left: 0;
}
.dropdown-menu
{
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
}
.dropdown-menu-left
{
    right: auto;
    left: 0;
}
.dropdown-menu-right
{
    right: 0;
    left: auto;
}
@media(min-width: 576px)
{
    .dropdown-menu-sm-left
    {
        right: auto;
        left: 0;
    }
    .dropdown-menu-sm-right
    {
        right: 0;
        left: auto;
    }
}
@media(min-width: 768px)
{
    .dropdown-menu-md-left
    {
        right: auto;
        left: 0;
    }
    .dropdown-menu-md-right
    {
        right: 0;
        left: auto;
    }
}
@media(min-width: 992px)
{
    .dropdown-menu-lg-left
    {
        right: auto;
        left: 0;
    }
    .dropdown-menu-lg-right
    {
        right: 0;
        left: auto;
    }
}
@media(min-width: 1200px)
{
    .dropdown-menu-xl-left
    {
        right: auto;
        left: 0;
    }
    .dropdown-menu-xl-right
    {
        right: 0;
        left: auto;
    }
}
@media(min-width: 1590px)
{
    .dropdown-menu-xxl-left
    {
        right: auto;
        left: 0;
    }
    .dropdown-menu-xxl-right
    {
        right: 0;
        left: auto;
    }
}
@media(min-width: 1880px)
{
    .dropdown-menu-xhd-left
    {
        right: auto;
        left: 0;
    }
    .dropdown-menu-xhd-right
    {
        right: 0;
        left: auto;
    }
}
.dropup .dropdown-menu
{
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: .125rem;
}
.dropup .dropdown-toggle::after
{
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 0;
    border-right: .3em solid transparent;
    border-bottom: .3em solid;
    border-left: .3em solid transparent;
}
.dropup .dropdown-toggle:empty::after
{
    margin-left: 0;
}
.dropright .dropdown-menu
{
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: .125rem;
}
.dropright .dropdown-toggle::after
{
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: 0;
    border-bottom: .3em solid transparent;
    border-left: .3em solid;
}
.dropright .dropdown-toggle:empty::after
{
    margin-left: 0;
}
.dropright .dropdown-toggle::after
{
    vertical-align: 0;
}
.dropleft .dropdown-menu
{
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: .125rem;
}
.dropleft .dropdown-toggle::after
{
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
}
.dropleft .dropdown-toggle::after
{
    display: none;
}
.dropleft .dropdown-toggle::before
{
    display: inline-block;
    margin-right: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: .3em solid;
    border-bottom: .3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after
{
    margin-left: 0;
}
.dropleft .dropdown-toggle::before
{
    vertical-align: 0;
}
.dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=top]
{
    right: auto;
    bottom: auto;
}
.dropdown-divider
{
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}
.dropdown-item
{
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-item:focus, .dropdown-item:hover
{
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}
.dropdown-item.active, .dropdown-item:active
{
    color: #fff;
    text-decoration: none;
    background-color: #007bff;
}
.dropdown-item.disabled, .dropdown-item:disabled
{
    color: #6c757d;
    pointer-events: none;
    background-color: transparent;
}
.dropdown-menu.show
{
    display: block;
}
.dropdown-header
{
    display: block;
    padding: .5rem 1.5rem;
    margin-bottom: 0;
    font-size: .875rem;
    color: #6c757d;
    white-space: nowrap;
}
.dropdown-item-text
{
    display: block;
    padding: .25rem 1.5rem;
    color: #212529;
}
.btn-group, .btn-group-vertical
{
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
}
.btn-group-vertical>.btn, .btn-group>.btn
{
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.btn-group-vertical>.btn:hover, .btn-group>.btn:hover
{
    z-index: 1;
}
.btn-group-vertical>.btn.active, .btn-group-vertical>.btn:active, .btn-group-vertical>.btn:focus, .btn-group>.btn.active, .btn-group>.btn:active, .btn-group>.btn:focus
{
    z-index: 1;
}
.btn-toolbar
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.btn-toolbar .input-group
{
    width: auto;
}
.btn-group>.btn-group:not(:first-child), .btn-group>.btn:not(:first-child)
{
    margin-left: -1px;
}
.btn-group>.btn-group:not(:last-child)>.btn, .btn-group>.btn:not(:last-child):not(.dropdown-toggle)
{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.btn-group>.btn-group:not(:first-child)>.btn, .btn-group>.btn:not(:first-child)
{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.dropdown-toggle-split
{
    padding-right: .5625rem;
    padding-left: .5625rem;
}
.dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after
{
    margin-left: 0;
}
.dropleft .dropdown-toggle-split::before
{
    margin-right: 0;
}
.btn-group-sm>.btn+.dropdown-toggle-split, .btn-sm+.dropdown-toggle-split
{
    padding-right: .375rem;
    padding-left: .375rem;
}
.btn-group-lg>.btn+.dropdown-toggle-split, .btn-lg+.dropdown-toggle-split
{
    padding-right: .75rem;
    padding-left: .75rem;
}
.btn-group-vertical
{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.btn-group-vertical>.btn, .btn-group-vertical>.btn-group
{
    width: 100%;
}
.btn-group-vertical>.btn-group:not(:first-child), .btn-group-vertical>.btn:not(:first-child)
{
    margin-top: -1px;
}
.btn-group-vertical>.btn-group:not(:last-child)>.btn, .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle)
{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.btn-group-vertical>.btn-group:not(:first-child)>.btn, .btn-group-vertical>.btn:not(:first-child)
{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.btn-group-toggle>.btn, .btn-group-toggle>.btn-group>.btn
{
    margin-bottom: 0;
}
.btn-group-toggle>.btn input[type=checkbox], .btn-group-toggle>.btn input[type=radio], .btn-group-toggle>.btn-group>.btn input[type=checkbox], .btn-group-toggle>.btn-group>.btn input[type=radio]
{
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none;
}
.input-group
{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}
.input-group>.custom-file, .input-group>.custom-select, .input-group>.form-control, .input-group>.form-control-plaintext
{
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}
.input-group>.custom-file+.custom-file, .input-group>.custom-file+.custom-select, .input-group>.custom-file+.form-control, .input-group>.custom-select+.custom-file, .input-group>.custom-select+.custom-select, .input-group>.custom-select+.form-control, .input-group>.form-control+.custom-file, .input-group>.form-control+.custom-select, .input-group>.form-control+.form-control, .input-group>.form-control-plaintext+.custom-file, .input-group>.form-control-plaintext+.custom-select, .input-group>.form-control-plaintext+.form-control
{
    margin-left: -1px;
}
.input-group>.custom-file .custom-file-input:focus~.custom-file-label, .input-group>.custom-select:focus, .input-group>.form-control:focus
{
    z-index: 3;
}
.input-group>.custom-file .custom-file-input:focus
{
    z-index: 4;
}
.input-group>.custom-select:not(:last-child), .input-group>.form-control:not(:last-child)
{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group>.custom-select:not(:first-child), .input-group>.form-control:not(:first-child)
{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group>.custom-file
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.input-group>.custom-file:not(:last-child) .custom-file-label, .input-group>.custom-file:not(:last-child) .custom-file-label::after
{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group>.custom-file:not(:first-child) .custom-file-label
{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group-append, .input-group-prepend
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.input-group-append .btn, .input-group-prepend .btn
{
    position: relative;
    z-index: 2;
}
.input-group-append .btn:focus, .input-group-prepend .btn:focus
{
    z-index: 3;
}
.input-group-append .btn+.btn, .input-group-append .btn+.input-group-text, .input-group-append .input-group-text+.btn, .input-group-append .input-group-text+.input-group-text, .input-group-prepend .btn+.btn, .input-group-prepend .btn+.input-group-text, .input-group-prepend .input-group-text+.btn, .input-group-prepend .input-group-text+.input-group-text
{
    margin-left: -1px;
}
.input-group-prepend
{
    margin-right: -1px;
}
.input-group-append
{
    margin-left: -1px;
}
.input-group-text
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}
.input-group-text input[type=checkbox], .input-group-text input[type=radio]
{
    margin-top: 0;
}
.input-group-lg>.custom-select, .input-group-lg>.form-control:not(textarea)
{
    height: calc(1.5em + 1rem + 2px);
}
.input-group-lg>.custom-select, .input-group-lg>.form-control, .input-group-lg>.input-group-append>.btn, .input-group-lg>.input-group-append>.input-group-text, .input-group-lg>.input-group-prepend>.btn, .input-group-lg>.input-group-prepend>.input-group-text
{
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem;
}
.input-group-sm>.custom-select, .input-group-sm>.form-control:not(textarea)
{
    height: calc(1.5em + .5rem + 2px);
}
.input-group-sm>.custom-select, .input-group-sm>.form-control, .input-group-sm>.input-group-append>.btn, .input-group-sm>.input-group-append>.input-group-text, .input-group-sm>.input-group-prepend>.btn, .input-group-sm>.input-group-prepend>.input-group-text
{
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem;
}
.input-group-lg>.custom-select, .input-group-sm>.custom-select
{
    padding-right: 1.75rem;
}
.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle), .input-group>.input-group-append:last-child>.input-group-text:not(:last-child), .input-group>.input-group-append:not(:last-child)>.btn, .input-group>.input-group-append:not(:last-child)>.input-group-text, .input-group>.input-group-prepend>.btn, .input-group>.input-group-prepend>.input-group-text
{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group>.input-group-append>.btn, .input-group>.input-group-append>.input-group-text, .input-group>.input-group-prepend:first-child>.btn:not(:first-child), .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child), .input-group>.input-group-prepend:not(:first-child)>.btn, .input-group>.input-group-prepend:not(:first-child)>.input-group-text
{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.custom-control
{
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
}
.custom-control-inline
{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem;
}
.custom-control-input
{
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.custom-control-input:checked~.custom-control-label::before
{
    color: #fff;
    border-color: #007bff;
    background-color: #007bff;
}
.custom-control-input:focus~.custom-control-label::before
{
    -webkit-box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
}
.custom-control-input:focus:not(:checked)~.custom-control-label::before
{
    border-color: #80bdff;
}
.custom-control-input:not(:disabled):active~.custom-control-label::before
{
    color: #fff;
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}
.custom-control-input:disabled~.custom-control-label
{
    color: #6c757d;
}
.custom-control-input:disabled~.custom-control-label::before
{
    background-color: #e9ecef;
}
.custom-control-label
{
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
}
.custom-control-label::before
{
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #adb5bd solid 1px;
}
.custom-control-label::after
{
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: no-repeat 50%/50% 50%;
}
.custom-checkbox .custom-control-label::before
{
    border-radius: .25rem;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::after
{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before
{
    border-color: #007bff;
    background-color: #007bff;
}
.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after
{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before
{
    background-color: rgba(0,123,255,.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before
{
    background-color: rgba(0,123,255,.5);
}
.custom-radio .custom-control-label::before
{
    border-radius: 50%;
}
.custom-radio .custom-control-input:checked~.custom-control-label::after
{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before
{
    background-color: rgba(0,123,255,.5);
}
.custom-switch
{
    padding-left: 2.25rem;
}
.custom-switch .custom-control-label::before
{
    left: -2.25rem;
    width: 1.75rem;
    pointer-events: all;
    border-radius: .5rem;
}
.custom-switch .custom-control-label::after
{
    top: calc(.25rem + 2px);
    left: calc(-2.25rem + 2px);
    width: calc(1rem - 4px);
    height: calc(1rem - 4px);
    background-color: #adb5bd;
    border-radius: .5rem;
    -webkit-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-transform .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-transform .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}
@media(prefers-reduced-motion: reduce)
{
    .custom-switch .custom-control-label::after
    {
        -webkit-transition: none;
        transition: none;
    }
}
.custom-switch .custom-control-input:checked~.custom-control-label::after
{
    background-color: #fff;
    -webkit-transform: translateX(.75rem);
    -ms-transform: translateX(.75rem);
    transform: translateX(.75rem);
}
.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before
{
    background-color: rgba(0,123,255,.5);
}
.custom-select
{
    display: inline-block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem 1.75rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.custom-select:focus
{
    border-color: #80bdff;
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
}
.custom-select:focus::-ms-value
{
    color: #495057;
    background-color: #fff;
}
.custom-select[multiple], .custom-select[size]:not([size="1"])
{
    height: auto;
    padding-right: .75rem;
    background-image: none;
}
.custom-select:disabled
{
    color: #6c757d;
    background-color: #e9ecef;
}
.custom-select::-ms-expand
{
    display: none;
}
.custom-select-sm
{
    height: calc(1.5em + .5rem + 2px);
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    font-size: .875rem;
}
.custom-select-lg
{
    height: calc(1.5em + 1rem + 2px);
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 1rem;
    font-size: 1.25rem;
}
.custom-file
{
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin-bottom: 0;
}
.custom-file-input
{
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin: 0;
    opacity: 0;
}
.custom-file-input:focus~.custom-file-label
{
    border-color: #80bdff;
    -webkit-box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
}
.custom-file-input:disabled~.custom-file-label
{
    background-color: #e9ecef;
}
.custom-file-input:lang(en)~.custom-file-label::after
{
    content: "Browse";
}
.custom-file-input~.custom-file-label[data-browse]::after
{
    content: attr(data-browse);
}
.custom-file-label
{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}
.custom-file-label::after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + .75rem);
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 .25rem .25rem 0;
}
.custom-range
{
    width: 100%;
    height: calc(1rem + .4rem);
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.custom-range:focus
{
    outline: 0;
}
.custom-range:focus::-webkit-slider-thumb
{
    -webkit-box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25);
    box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25);
}
.custom-range:focus::-moz-range-thumb
{
    box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25);
}
.custom-range:focus::-ms-thumb
{
    box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25);
}
.custom-range::-moz-focus-outer
{
    border: 0;
}
.custom-range::-webkit-slider-thumb
{
    width: 1rem;
    height: 1rem;
    margin-top: -.25rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    -webkit-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    appearance: none;
}
@media(prefers-reduced-motion: reduce)
{
    .custom-range::-webkit-slider-thumb
    {
        -webkit-transition: none;
        transition: none;
    }
}
.custom-range::-webkit-slider-thumb:active
{
    background-color: #b3d7ff;
}
.custom-range::-webkit-slider-runnable-track
{
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
}
.custom-range::-moz-range-thumb
{
    width: 1rem;
    height: 1rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    -webkit-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    -moz-appearance: none;
    appearance: none;
}
@media(prefers-reduced-motion: reduce)
{
    .custom-range::-moz-range-thumb
    {
        -webkit-transition: none;
        transition: none;
    }
}
.custom-range::-moz-range-thumb:active
{
    background-color: #b3d7ff;
}
.custom-range::-moz-range-track
{
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
}
.custom-range::-ms-thumb
{
    width: 1rem;
    height: 1rem;
    margin-top: 0;
    margin-right: .2rem;
    margin-left: .2rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    -webkit-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    appearance: none;
}
@media(prefers-reduced-motion: reduce)
{
    .custom-range::-ms-thumb
    {
        -webkit-transition: none;
        transition: none;
    }
}
.custom-range::-ms-thumb:active
{
    background-color: #b3d7ff;
}
.custom-range::-ms-track
{
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
    border-width: .5rem;
}
.custom-range::-ms-fill-lower
{
    background-color: #dee2e6;
    border-radius: 1rem;
}
.custom-range::-ms-fill-upper
{
    margin-right: 15px;
    background-color: #dee2e6;
    border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb
{
    background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track
{
    cursor: default;
}
.custom-range:disabled::-moz-range-thumb
{
    background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track
{
    cursor: default;
}
.custom-range:disabled::-ms-thumb
{
    background-color: #adb5bd;
}
.custom-control-label::before, .custom-file-label, .custom-select
{
    -webkit-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}
@media(prefers-reduced-motion: reduce)
{
    .custom-control-label::before, .custom-file-label, .custom-select
    {
        -webkit-transition: none;
        transition: none;
    }
}
.nav
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.nav-link
{
    display: block;
    padding: .5rem 1rem;
}
.nav-link:focus, .nav-link:hover
{
    text-decoration: none;
}
.nav-link.disabled
{
    color: #6c757d;
    pointer-events: none;
    cursor: default;
}
.nav-tabs
{
    border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-item
{
    margin-bottom: -1px;
}
.nav-tabs .nav-link
{
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover
{
    border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled
{
    color: #6c757d;
    background-color: transparent;
    border-color: transparent;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active
{
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu
{
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.nav-pills .nav-link
{
    border-radius: .25rem;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link
{
    color: #fff;
    background-color: #007bff;
}
.nav-fill .nav-item
{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
}
.nav-justified .nav-item
{
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
}
.tab-content>.tab-pane
{
    display: none;
}
.tab-content>.active
{
    display: block;
}
.navbar
{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem 1rem;
}
.navbar>.container, .navbar>.container-fluid
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.navbar-brand
{
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}
.navbar-brand:focus, .navbar-brand:hover
{
    text-decoration: none;
}
.navbar-nav
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.navbar-nav .nav-link
{
    padding-right: 0;
    padding-left: 0;
}
.navbar-nav .dropdown-menu
{
    position: static;
    float: none;
}
.navbar-text
{
    display: inline-block;
    padding-top: .5rem;
    padding-bottom: .5rem;
}
.navbar-collapse
{
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.navbar-toggler
{
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
}
.navbar-toggler:focus, .navbar-toggler:hover
{
    text-decoration: none;
}
.navbar-toggler-icon
{
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
}
@media(max-width: 575.98px)
{
    .navbar-expand-sm>.container, .navbar-expand-sm>.container-fluid
    {
        padding-right: 0;
        padding-left: 0;
    }
}
@media(min-width: 576px)
{
    .navbar-expand-sm
    {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-sm .navbar-nav
    {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-sm .navbar-nav .dropdown-menu
    {
        position: absolute;
    }
    .navbar-expand-sm .navbar-nav .nav-link
    {
        padding-right: .5rem;
        padding-left: .5rem;
    }
    .navbar-expand-sm>.container, .navbar-expand-sm>.container-fluid
    {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-sm .navbar-collapse
    {
        display: -webkit-box!important;
        display: -ms-flexbox!important;
        display: flex!important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-sm .navbar-toggler
    {
        display: none;
    }
}
@media(max-width: 767.98px)
{
    .navbar-expand-md>.container, .navbar-expand-md>.container-fluid
    {
        padding-right: 0;
        padding-left: 0;
    }
}
@media(min-width: 768px)
{
    .navbar-expand-md
    {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-md .navbar-nav
    {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-md .navbar-nav .dropdown-menu
    {
        position: absolute;
    }
    .navbar-expand-md .navbar-nav .nav-link
    {
        padding-right: .5rem;
        padding-left: .5rem;
    }
    .navbar-expand-md>.container, .navbar-expand-md>.container-fluid
    {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-md .navbar-collapse
    {
        display: -webkit-box!important;
        display: -ms-flexbox!important;
        display: flex!important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-md .navbar-toggler
    {
        display: none;
    }
}
@media(max-width: 991.98px)
{
    .navbar-expand-lg>.container, .navbar-expand-lg>.container-fluid
    {
        padding-right: 0;
        padding-left: 0;
    }
}
@media(min-width: 992px)
{
    .navbar-expand-lg
    {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-lg .navbar-nav
    {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu
    {
        position: absolute;
    }
    .navbar-expand-lg .navbar-nav .nav-link
    {
        padding-right: .5rem;
        padding-left: .5rem;
    }
    .navbar-expand-lg>.container, .navbar-expand-lg>.container-fluid
    {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-lg .navbar-collapse
    {
        display: -webkit-box!important;
        display: -ms-flexbox!important;
        display: flex!important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-lg .navbar-toggler
    {
        display: none;
    }
}
@media(max-width: 1199.98px)
{
    .navbar-expand-xl>.container, .navbar-expand-xl>.container-fluid
    {
        padding-right: 0;
        padding-left: 0;
    }
}
@media(min-width: 1200px)
{
    .navbar-expand-xl
    {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-xl .navbar-nav
    {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-xl .navbar-nav .dropdown-menu
    {
        position: absolute;
    }
    .navbar-expand-xl .navbar-nav .nav-link
    {
        padding-right: .5rem;
        padding-left: .5rem;
    }
    .navbar-expand-xl>.container, .navbar-expand-xl>.container-fluid
    {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-xl .navbar-collapse
    {
        display: -webkit-box!important;
        display: -ms-flexbox!important;
        display: flex!important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-xl .navbar-toggler
    {
        display: none;
    }
}
@media(max-width: 1589.98px)
{
    .navbar-expand-xxl>.container, .navbar-expand-xxl>.container-fluid
    {
        padding-right: 0;
        padding-left: 0;
    }
}
@media(min-width: 1590px)
{
    .navbar-expand-xxl
    {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-xxl .navbar-nav
    {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-xxl .navbar-nav .dropdown-menu
    {
        position: absolute;
    }
    .navbar-expand-xxl .navbar-nav .nav-link
    {
        padding-right: .5rem;
        padding-left: .5rem;
    }
    .navbar-expand-xxl>.container, .navbar-expand-xxl>.container-fluid
    {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-xxl .navbar-collapse
    {
        display: -webkit-box!important;
        display: -ms-flexbox!important;
        display: flex!important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-xxl .navbar-toggler
    {
        display: none;
    }
}
@media(max-width: 1879.98px)
{
    .navbar-expand-xhd>.container, .navbar-expand-xhd>.container-fluid
    {
        padding-right: 0;
        padding-left: 0;
    }
}
@media(min-width: 1880px)
{
    .navbar-expand-xhd
    {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-xhd .navbar-nav
    {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-xhd .navbar-nav .dropdown-menu
    {
        position: absolute;
    }
    .navbar-expand-xhd .navbar-nav .nav-link
    {
        padding-right: .5rem;
        padding-left: .5rem;
    }
    .navbar-expand-xhd>.container, .navbar-expand-xhd>.container-fluid
    {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-xhd .navbar-collapse
    {
        display: -webkit-box!important;
        display: -ms-flexbox!important;
        display: flex!important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-xhd .navbar-toggler
    {
        display: none;
    }
}
.navbar-expand
{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.navbar-expand>.container, .navbar-expand>.container-fluid
{
    padding-right: 0;
    padding-left: 0;
}
.navbar-expand .navbar-nav
{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu
{
    position: absolute;
}
.navbar-expand .navbar-nav .nav-link
{
    padding-right: .5rem;
    padding-left: .5rem;
}
.navbar-expand>.container, .navbar-expand>.container-fluid
{
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.navbar-expand .navbar-collapse
{
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}
.navbar-expand .navbar-toggler
{
    display: none;
}
.navbar-light .navbar-brand
{
    color: rgba(0,0,0,.9);
}
.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover
{
    color: rgba(0,0,0,.9);
}
.navbar-light .navbar-nav .nav-link
{
    color: rgba(0,0,0,.5);
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover
{
    color: rgba(0,0,0,.7);
}
.navbar-light .navbar-nav .nav-link.disabled
{
    color: rgba(0,0,0,.3);
}
.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link
{
    color: rgba(0,0,0,.9);
}
.navbar-light .navbar-toggler
{
    color: rgba(0,0,0,.5);
    border-color: rgba(0,0,0,.1);
}
.navbar-light .navbar-toggler-icon
{
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text
{
    color: rgba(0,0,0,.5);
}
.navbar-light .navbar-text a
{
    color: rgba(0,0,0,.9);
}
.navbar-light .navbar-text a:focus, .navbar-light .navbar-text a:hover
{
    color: rgba(0,0,0,.9);
}
.navbar-dark .navbar-brand
{
    color: #fff;
}
.navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover
{
    color: #fff;
}
.navbar-dark .navbar-nav .nav-link
{
    color: rgba(255,255,255,.5);
}
.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover
{
    color: rgba(255,255,255,.75);
}
.navbar-dark .navbar-nav .nav-link.disabled
{
    color: rgba(255,255,255,.25);
}
.navbar-dark .navbar-nav .active>.nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show>.nav-link
{
    color: #fff;
}
.navbar-dark .navbar-toggler
{
    color: rgba(255,255,255,.5);
    border-color: rgba(255,255,255,.1);
}
.navbar-dark .navbar-toggler-icon
{
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text
{
    color: rgba(255,255,255,.5);
}
.navbar-dark .navbar-text a
{
    color: #fff;
}
.navbar-dark .navbar-text a:focus, .navbar-dark .navbar-text a:hover
{
    color: #fff;
}
.card
{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}
.card>hr
{
    margin-right: 0;
    margin-left: 0;
}
.card>.list-group:first-child .list-group-item:first-child
{
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}
.card>.list-group:last-child .list-group-item:last-child
{
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
}
.card-body
{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}
.card-title
{
    margin-bottom: .75rem;
}
.card-subtitle
{
    margin-top: -.375rem;
    margin-bottom: 0;
}
.card-text:last-child
{
    margin-bottom: 0;
}
.card-link:hover
{
    text-decoration: none;
}
.card-link+.card-link
{
    margin-left: 1.25rem;
}
.card-header
{
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
}
.card-header:first-child
{
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
}
.card-header+.list-group .list-group-item:first-child
{
    border-top: 0;
}
.card-footer
{
    padding: .75rem 1.25rem;
    background-color: rgba(0,0,0,.03);
    border-top: 1px solid rgba(0,0,0,.125);
}
.card-footer:last-child
{
    border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px);
}
.card-header-tabs
{
    margin-right: -.625rem;
    margin-bottom: -.75rem;
    margin-left: -.625rem;
    border-bottom: 0;
}
.card-header-pills
{
    margin-right: -.625rem;
    margin-left: -.625rem;
}
.card-img-overlay
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}
.card-img
{
    width: 100%;
    border-radius: calc(.25rem - 1px);
}
.card-img-top
{
    width: 100%;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}
.card-img-bottom
{
    width: 100%;
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px);
}
.card-deck
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.card-deck .card
{
    margin-bottom: 15px;
}
@media(min-width: 576px)
{
    .card-deck
    {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px;
    }
    .card-deck .card
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px;
    }
}
.card-group
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.card-group>.card
{
    margin-bottom: 15px;
}
@media(min-width: 576px)
{
    .card-group
    {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }
    .card-group>.card
    {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-bottom: 0;
    }
    .card-group>.card+.card
    {
        margin-left: 0;
        border-left: 0;
    }
    .card-group>.card:not(:last-child)
    {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .card-group>.card:not(:last-child) .card-header, .card-group>.card:not(:last-child) .card-img-top
    {
        border-top-right-radius: 0;
    }
    .card-group>.card:not(:last-child) .card-footer, .card-group>.card:not(:last-child) .card-img-bottom
    {
        border-bottom-right-radius: 0;
    }
    .card-group>.card:not(:first-child)
    {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .card-group>.card:not(:first-child) .card-header, .card-group>.card:not(:first-child) .card-img-top
    {
        border-top-left-radius: 0;
    }
    .card-group>.card:not(:first-child) .card-footer, .card-group>.card:not(:first-child) .card-img-bottom
    {
        border-bottom-left-radius: 0;
    }
}
.card-columns .card
{
    margin-bottom: .75rem;
}
@media(min-width: 576px)
{
    .card-columns
    {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }
    .card-columns .card
    {
        display: inline-block;
        width: 100%;
    }
}
.accordion>.card
{
    overflow: hidden;
}
.accordion>.card:not(:first-of-type) .card-header:first-child
{
    border-radius: 0;
}
.accordion>.card:not(:first-of-type):not(:last-of-type)
{
    border-bottom: 0;
    border-radius: 0;
}
.accordion>.card:first-of-type
{
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.accordion>.card:last-of-type
{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.accordion>.card .card-header
{
    margin-bottom: -1px;
}
.breadcrumb
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: .25rem;
}
.breadcrumb-item+.breadcrumb-item
{
    padding-left: .5rem;
}
.breadcrumb-item+.breadcrumb-item::before
{
    display: inline-block;
    padding-right: .5rem;
    color: #6c757d;
    content: "/";
}
.breadcrumb-item+.breadcrumb-item:hover::before
{
    text-decoration: underline;
}
.breadcrumb-item+.breadcrumb-item:hover::before
{
    text-decoration: none;
}
.breadcrumb-item.active
{
    color: #6c757d;
}
.pagination
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
}
.page-link
{
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
}
.page-link:hover
{
    z-index: 2;
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}
.page-link:focus
{
    z-index: 2;
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
}
.page-item:first-child .page-link
{
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}
.page-item:last-child .page-link
{
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}
.page-item.active .page-link
{
    z-index: 1;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.page-item.disabled .page-link
{
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}
.pagination-lg .page-link
{
    padding: .75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link
{
    border-top-left-radius: .3rem;
    border-bottom-left-radius: .3rem;
}
.pagination-lg .page-item:last-child .page-link
{
    border-top-right-radius: .3rem;
    border-bottom-right-radius: .3rem;
}
.pagination-sm .page-link
{
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link
{
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem;
}
.pagination-sm .page-item:last-child .page-link
{
    border-top-right-radius: .2rem;
    border-bottom-right-radius: .2rem;
}
.badge
{
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}
@media(prefers-reduced-motion: reduce)
{
    .badge
    {
        -webkit-transition: none;
        transition: none;
    }
}
a.badge:focus, a.badge:hover
{
    text-decoration: none;
}
.badge:empty
{
    display: none;
}
.btn .badge
{
    position: relative;
    top: -1px;
}
.badge-pill
{
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 10rem;
}
.badge-primary
{
    color: #fff;
    background-color: #007bff;
}
a.badge-primary:focus, a.badge-primary:hover
{
    color: #fff;
    background-color: #0062cc;
}
a.badge-primary.focus, a.badge-primary:focus
{
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(0,123,255,.5);
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.5);
}
.badge-secondary
{
    color: #fff;
    background-color: #6c757d;
}
a.badge-secondary:focus, a.badge-secondary:hover
{
    color: #fff;
    background-color: #545b62;
}
a.badge-secondary.focus, a.badge-secondary:focus
{
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(108,117,125,.5);
    box-shadow: 0 0 0 .2rem rgba(108,117,125,.5);
}
.badge-success
{
    color: #fff;
    background-color: #28a745;
}
a.badge-success:focus, a.badge-success:hover
{
    color: #fff;
    background-color: #1e7e34;
}
a.badge-success.focus, a.badge-success:focus
{
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(40,167,69,.5);
    box-shadow: 0 0 0 .2rem rgba(40,167,69,.5);
}
.badge-info
{
    color: #fff;
    background-color: #17a2b8;
}
a.badge-info:focus, a.badge-info:hover
{
    color: #fff;
    background-color: #117a8b;
}
a.badge-info.focus, a.badge-info:focus
{
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(23,162,184,.5);
    box-shadow: 0 0 0 .2rem rgba(23,162,184,.5);
}
.badge-warning
{
    color: #212529;
    background-color: #ffc107;
}
a.badge-warning:focus, a.badge-warning:hover
{
    color: #212529;
    background-color: #d39e00;
}
a.badge-warning.focus, a.badge-warning:focus
{
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(255,193,7,.5);
    box-shadow: 0 0 0 .2rem rgba(255,193,7,.5);
}
.badge-danger
{
    color: #fff;
    background-color: #dc3545;
}
a.badge-danger:focus, a.badge-danger:hover
{
    color: #fff;
    background-color: #bd2130;
}
a.badge-danger.focus, a.badge-danger:focus
{
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(220,53,69,.5);
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.5);
}
.badge-light
{
    color: #212529;
    background-color: #f8f9fa;
}
a.badge-light:focus, a.badge-light:hover
{
    color: #212529;
    background-color: #dae0e5;
}
a.badge-light.focus, a.badge-light:focus
{
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(248,249,250,.5);
    box-shadow: 0 0 0 .2rem rgba(248,249,250,.5);
}
.badge-dark
{
    color: #fff;
    background-color: #343a40;
}
a.badge-dark:focus, a.badge-dark:hover
{
    color: #fff;
    background-color: #1d2124;
}
a.badge-dark.focus, a.badge-dark:focus
{
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(52,58,64,.5);
    box-shadow: 0 0 0 .2rem rgba(52,58,64,.5);
}
.jumbotron
{
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: .3rem;
}
@media(min-width: 576px)
{
    .jumbotron
    {
        padding: 4rem 2rem;
    }
}
.jumbotron-fluid
{
    padding-right: 0;
    padding-left: 0;
    border-radius: 0;
}
.alert
{
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}
.alert-heading
{
    color: inherit;
}
.alert-link
{
    font-weight: 700;
}
.alert-dismissible
{
    padding-right: 4rem;
}
.alert-dismissible .close
{
    position: absolute;
    top: 0;
    right: 0;
    padding: .75rem 1.25rem;
    color: inherit;
}
.alert-primary
{
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}
.alert-primary hr
{
    border-top-color: #9fcdff;
}
.alert-primary .alert-link
{
    color: #002752;
}
.alert-secondary
{
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}
.alert-secondary hr
{
    border-top-color: #c8cbcf;
}
.alert-secondary .alert-link
{
    color: #202326;
}
.alert-success
{
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert-success hr
{
    border-top-color: #b1dfbb;
}
.alert-success .alert-link
{
    color: #0b2e13;
}
.alert-info
{
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}
.alert-info hr
{
    border-top-color: #abdde5;
}
.alert-info .alert-link
{
    color: #062c33;
}
.alert-warning
{
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}
.alert-warning hr
{
    border-top-color: #ffe8a1;
}
.alert-warning .alert-link
{
    color: #533f03;
}
.alert-danger
{
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert-danger hr
{
    border-top-color: #f1b0b7;
}
.alert-danger .alert-link
{
    color: #491217;
}
.alert-light
{
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe;
}
.alert-light hr
{
    border-top-color: #ececf6;
}
.alert-light .alert-link
{
    color: #686868;
}
.alert-dark
{
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}
.alert-dark hr
{
    border-top-color: #b9bbbe;
}
.alert-dark .alert-link
{
    color: #040505;
}
@-webkit-keyframes progress-bar-stripes
{
    from
    {
        background-position: 1rem 0;
    }
    to
    {
        background-position: 0 0;
    }
}
@keyframes progress-bar-stripes
{
    from
    {
        background-position: 1rem 0;
    }
    to
    {
        background-position: 0 0;
    }
}
.progress
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem;
}
.progress-bar
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff;
    -webkit-transition: width .6s ease;
    transition: width .6s ease;
}
@media(prefers-reduced-motion: reduce)
{
    .progress-bar
    {
        -webkit-transition: none;
        transition: none;
    }
}
.progress-bar-striped
{
    background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-size: 1rem 1rem;
}
.progress-bar-animated
{
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
}
@media(prefers-reduced-motion: reduce)
{
    .progress-bar-animated
    {
        -webkit-animation: none;
        animation: none;
    }
}
.media
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.media-body
{
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.list-group
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
}
.list-group-item-action
{
    width: 100%;
    color: #495057;
    text-align: inherit;
}
.list-group-item-action:focus, .list-group-item-action:hover
{
    z-index: 1;
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa;
}
.list-group-item-action:active
{
    color: #212529;
    background-color: #e9ecef;
}
.list-group-item
{
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125);
}
.list-group-item:first-child
{
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}
.list-group-item:last-child
{
    margin-bottom: 0;
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
}
.list-group-item.disabled, .list-group-item:disabled
{
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
}
.list-group-item.active
{
    z-index: 2;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.list-group-horizontal
{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.list-group-horizontal .list-group-item
{
    margin-right: -1px;
    margin-bottom: 0;
}
.list-group-horizontal .list-group-item:first-child
{
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
    border-top-right-radius: 0;
}
.list-group-horizontal .list-group-item:last-child
{
    margin-right: 0;
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: 0;
}
@media(min-width: 576px)
{
    .list-group-horizontal-sm
    {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .list-group-horizontal-sm .list-group-item
    {
        margin-right: -1px;
        margin-bottom: 0;
    }
    .list-group-horizontal-sm .list-group-item:first-child
    {
        border-top-left-radius: .25rem;
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0;
    }
    .list-group-horizontal-sm .list-group-item:last-child
    {
        margin-right: 0;
        border-top-right-radius: .25rem;
        border-bottom-right-radius: .25rem;
        border-bottom-left-radius: 0;
    }
}
@media(min-width: 768px)
{
    .list-group-horizontal-md
    {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .list-group-horizontal-md .list-group-item
    {
        margin-right: -1px;
        margin-bottom: 0;
    }
    .list-group-horizontal-md .list-group-item:first-child
    {
        border-top-left-radius: .25rem;
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0;
    }
    .list-group-horizontal-md .list-group-item:last-child
    {
        margin-right: 0;
        border-top-right-radius: .25rem;
        border-bottom-right-radius: .25rem;
        border-bottom-left-radius: 0;
    }
}
@media(min-width: 992px)
{
    .list-group-horizontal-lg
    {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .list-group-horizontal-lg .list-group-item
    {
        margin-right: -1px;
        margin-bottom: 0;
    }
    .list-group-horizontal-lg .list-group-item:first-child
    {
        border-top-left-radius: .25rem;
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0;
    }
    .list-group-horizontal-lg .list-group-item:last-child
    {
        margin-right: 0;
        border-top-right-radius: .25rem;
        border-bottom-right-radius: .25rem;
        border-bottom-left-radius: 0;
    }
}
@media(min-width: 1200px)
{
    .list-group-horizontal-xl
    {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .list-group-horizontal-xl .list-group-item
    {
        margin-right: -1px;
        margin-bottom: 0;
    }
    .list-group-horizontal-xl .list-group-item:first-child
    {
        border-top-left-radius: .25rem;
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0;
    }
    .list-group-horizontal-xl .list-group-item:last-child
    {
        margin-right: 0;
        border-top-right-radius: .25rem;
        border-bottom-right-radius: .25rem;
        border-bottom-left-radius: 0;
    }
}
@media(min-width: 1590px)
{
    .list-group-horizontal-xxl
    {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .list-group-horizontal-xxl .list-group-item
    {
        margin-right: -1px;
        margin-bottom: 0;
    }
    .list-group-horizontal-xxl .list-group-item:first-child
    {
        border-top-left-radius: .25rem;
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0;
    }
    .list-group-horizontal-xxl .list-group-item:last-child
    {
        margin-right: 0;
        border-top-right-radius: .25rem;
        border-bottom-right-radius: .25rem;
        border-bottom-left-radius: 0;
    }
}
@media(min-width: 1880px)
{
    .list-group-horizontal-xhd
    {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .list-group-horizontal-xhd .list-group-item
    {
        margin-right: -1px;
        margin-bottom: 0;
    }
    .list-group-horizontal-xhd .list-group-item:first-child
    {
        border-top-left-radius: .25rem;
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0;
    }
    .list-group-horizontal-xhd .list-group-item:last-child
    {
        margin-right: 0;
        border-top-right-radius: .25rem;
        border-bottom-right-radius: .25rem;
        border-bottom-left-radius: 0;
    }
}
.list-group-flush .list-group-item
{
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}
.list-group-flush .list-group-item:last-child
{
    margin-bottom: -1px;
}
.list-group-flush:first-child .list-group-item:first-child
{
    border-top: 0;
}
.list-group-flush:last-child .list-group-item:last-child
{
    margin-bottom: 0;
    border-bottom: 0;
}
.list-group-item-primary
{
    color: #004085;
    background-color: #b8daff;
}
.list-group-item-primary.list-group-item-action:focus, .list-group-item-primary.list-group-item-action:hover
{
    color: #004085;
    background-color: #9fcdff;
}
.list-group-item-primary.list-group-item-action.active
{
    color: #fff;
    background-color: #004085;
    border-color: #004085;
}
.list-group-item-secondary
{
    color: #383d41;
    background-color: #d6d8db;
}
.list-group-item-secondary.list-group-item-action:focus, .list-group-item-secondary.list-group-item-action:hover
{
    color: #383d41;
    background-color: #c8cbcf;
}
.list-group-item-secondary.list-group-item-action.active
{
    color: #fff;
    background-color: #383d41;
    border-color: #383d41;
}
.list-group-item-success
{
    color: #155724;
    background-color: #c3e6cb;
}
.list-group-item-success.list-group-item-action:focus, .list-group-item-success.list-group-item-action:hover
{
    color: #155724;
    background-color: #b1dfbb;
}
.list-group-item-success.list-group-item-action.active
{
    color: #fff;
    background-color: #155724;
    border-color: #155724;
}
.list-group-item-info
{
    color: #0c5460;
    background-color: #bee5eb;
}
.list-group-item-info.list-group-item-action:focus, .list-group-item-info.list-group-item-action:hover
{
    color: #0c5460;
    background-color: #abdde5;
}
.list-group-item-info.list-group-item-action.active
{
    color: #fff;
    background-color: #0c5460;
    border-color: #0c5460;
}
.list-group-item-warning
{
    color: #856404;
    background-color: #ffeeba;
}
.list-group-item-warning.list-group-item-action:focus, .list-group-item-warning.list-group-item-action:hover
{
    color: #856404;
    background-color: #ffe8a1;
}
.list-group-item-warning.list-group-item-action.active
{
    color: #fff;
    background-color: #856404;
    border-color: #856404;
}
.list-group-item-danger
{
    color: #721c24;
    background-color: #f5c6cb;
}
.list-group-item-danger.list-group-item-action:focus, .list-group-item-danger.list-group-item-action:hover
{
    color: #721c24;
    background-color: #f1b0b7;
}
.list-group-item-danger.list-group-item-action.active
{
    color: #fff;
    background-color: #721c24;
    border-color: #721c24;
}
.list-group-item-light
{
    color: #818182;
    background-color: #fdfdfe;
}
.list-group-item-light.list-group-item-action:focus, .list-group-item-light.list-group-item-action:hover
{
    color: #818182;
    background-color: #ececf6;
}
.list-group-item-light.list-group-item-action.active
{
    color: #fff;
    background-color: #818182;
    border-color: #818182;
}
.list-group-item-dark
{
    color: #1b1e21;
    background-color: #c6c8ca;
}
.list-group-item-dark.list-group-item-action:focus, .list-group-item-dark.list-group-item-action:hover
{
    color: #1b1e21;
    background-color: #b9bbbe;
}
.list-group-item-dark.list-group-item-action.active
{
    color: #fff;
    background-color: #1b1e21;
    border-color: #1b1e21;
}
.close
{
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}
.close:hover
{
    color: #000;
    text-decoration: none;
}
.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover
{
    opacity: .75;
}
button.close
{
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
a.close.disabled
{
    pointer-events: none;
}
.toast
{
    max-width: 350px;
    overflow: hidden;
    font-size: .875rem;
    background-color: rgba(255,255,255,.85);
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.1);
    -webkit-box-shadow: 0 .25rem .75rem rgba(0,0,0,.1);
    box-shadow: 0 .25rem .75rem rgba(0,0,0,.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    border-radius: .25rem;
}
.toast:not(:last-child)
{
    margin-bottom: .75rem;
}
.toast.showing
{
    opacity: 1;
}
.toast.show
{
    display: block;
    opacity: 1;
}
.toast.hide
{
    display: none;
}
.toast-header
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: .25rem .75rem;
    color: #6c757d;
    background-color: rgba(255,255,255,.85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0,0,0,.05);
}
.toast-body
{
    padding: .75rem;
}
.modal-open
{
    overflow: hidden;
}
.modal-open .modal
{
    overflow-x: hidden;
    overflow-y: auto;
}
.modal
{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}
.modal-dialog
{
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none;
}
.modal.fade .modal-dialog
{
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    -webkit-transform: translate(0,-50px);
    -ms-transform: translate(0,-50px);
    transform: translate(0,-50px);
}
@media(prefers-reduced-motion: reduce)
{
    .modal.fade .modal-dialog
    {
        -webkit-transition: none;
        transition: none;
    }
}
.modal.show .modal-dialog
{
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
.modal-dialog-scrollable
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content
{
    max-height: calc(100vh - 1rem);
    overflow: hidden;
}
.modal-dialog-scrollable .modal-footer, .modal-dialog-scrollable .modal-header
{
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body
{
    overflow-y: auto;
}
.modal-dialog-centered
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before
{
    display: block;
    height: calc(100vh - 1rem);
    content: "";
}
.modal-dialog-centered.modal-dialog-scrollable
{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content
{
    max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before
{
    content: none;
}
.modal-content
{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0;
}
.modal-backdrop
{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}
.modal-backdrop.fade
{
    opacity: 0;
}
.modal-backdrop.show
{
    opacity: .5;
}
.modal-header
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}
.modal-header .close
{
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
}
.modal-title
{
    margin-bottom: 0;
    line-height: 1.5;
}
.modal-body
{
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}
.modal-footer
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: .3rem;
    border-bottom-left-radius: .3rem;
}
.modal-footer>:not(:first-child)
{
    margin-left: .25rem;
}
.modal-footer>:not(:last-child)
{
    margin-right: .25rem;
}
.modal-scrollbar-measure
{
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}
@media(min-width: 576px)
{
    .modal-dialog
    {
        max-width: 500px;
        margin: 1.75rem auto;
    }
    .modal-dialog-scrollable
    {
        max-height: calc(100% - 3.5rem);
    }
    .modal-dialog-scrollable .modal-content
    {
        max-height: calc(100vh - 3.5rem);
    }
    .modal-dialog-centered
    {
        min-height: calc(100% - 3.5rem);
    }
    .modal-dialog-centered::before
    {
        height: calc(100vh - 3.5rem);
    }
    .modal-sm
    {
        max-width: 300px;
    }
}
@media(min-width: 992px)
{
    .modal-lg, .modal-xl
    {
        max-width: 800px;
    }
}
@media(min-width: 1200px)
{
    .modal-xl
    {
        max-width: 1140px;
    }
}
.tooltip
{
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    opacity: 0;
}
.tooltip.show
{
    opacity: .9;
}
.tooltip .arrow
{
    position: absolute;
    display: block;
    width: .8rem;
    height: .4rem;
}
.tooltip .arrow::before
{
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
}
.bs-tooltip-auto[x-placement^=top], .bs-tooltip-top
{
    padding: .4rem 0;
}
.bs-tooltip-auto[x-placement^=top] .arrow, .bs-tooltip-top .arrow
{
    bottom: 0;
}
.bs-tooltip-auto[x-placement^=top] .arrow::before, .bs-tooltip-top .arrow::before
{
    top: 0;
    border-width: .4rem .4rem 0;
    border-top-color: #000;
}
.bs-tooltip-auto[x-placement^=right], .bs-tooltip-right
{
    padding: 0 .4rem;
}
.bs-tooltip-auto[x-placement^=right] .arrow, .bs-tooltip-right .arrow
{
    left: 0;
    width: .4rem;
    height: .8rem;
}
.bs-tooltip-auto[x-placement^=right] .arrow::before, .bs-tooltip-right .arrow::before
{
    right: 0;
    border-width: .4rem .4rem .4rem 0;
    border-right-color: #000;
}
.bs-tooltip-auto[x-placement^=bottom], .bs-tooltip-bottom
{
    padding: .4rem 0;
}
.bs-tooltip-auto[x-placement^=bottom] .arrow, .bs-tooltip-bottom .arrow
{
    top: 0;
}
.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .bs-tooltip-bottom .arrow::before
{
    bottom: 0;
    border-width: 0 .4rem .4rem;
    border-bottom-color: #000;
}
.bs-tooltip-auto[x-placement^=left], .bs-tooltip-left
{
    padding: 0 .4rem;
}
.bs-tooltip-auto[x-placement^=left] .arrow, .bs-tooltip-left .arrow
{
    right: 0;
    width: .4rem;
    height: .8rem;
}
.bs-tooltip-auto[x-placement^=left] .arrow::before, .bs-tooltip-left .arrow::before
{
    left: 0;
    border-width: .4rem 0 .4rem .4rem;
    border-left-color: #000;
}
.tooltip-inner
{
    max-width: 200px;
    padding: .25rem .5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: .25rem;
}
.popover
{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: block;
    max-width: 276px;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
}
.popover .arrow
{
    position: absolute;
    display: block;
    width: 1rem;
    height: .5rem;
    margin: 0 .3rem;
}
.popover .arrow::after, .popover .arrow::before
{
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid;
}
.bs-popover-auto[x-placement^=top], .bs-popover-top
{
    margin-bottom: .5rem;
}
.bs-popover-auto[x-placement^=top]>.arrow, .bs-popover-top>.arrow
{
    bottom: calc((.5rem + 1px) * -1);
}
.bs-popover-auto[x-placement^=top]>.arrow::before, .bs-popover-top>.arrow::before
{
    bottom: 0;
    border-width: .5rem .5rem 0;
    border-top-color: rgba(0,0,0,.25);
}
.bs-popover-auto[x-placement^=top]>.arrow::after, .bs-popover-top>.arrow::after
{
    bottom: 1px;
    border-width: .5rem .5rem 0;
    border-top-color: #fff;
}
.bs-popover-auto[x-placement^=right], .bs-popover-right
{
    margin-left: .5rem;
}
.bs-popover-auto[x-placement^=right]>.arrow, .bs-popover-right>.arrow
{
    left: calc((.5rem + 1px) * -1);
    width: .5rem;
    height: 1rem;
    margin: .3rem 0;
}
.bs-popover-auto[x-placement^=right]>.arrow::before, .bs-popover-right>.arrow::before
{
    left: 0;
    border-width: .5rem .5rem .5rem 0;
    border-right-color: rgba(0,0,0,.25);
}
.bs-popover-auto[x-placement^=right]>.arrow::after, .bs-popover-right>.arrow::after
{
    left: 1px;
    border-width: .5rem .5rem .5rem 0;
    border-right-color: #fff;
}
.bs-popover-auto[x-placement^=bottom], .bs-popover-bottom
{
    margin-top: .5rem;
}
.bs-popover-auto[x-placement^=bottom]>.arrow, .bs-popover-bottom>.arrow
{
    top: calc((.5rem + 1px) * -1);
}
.bs-popover-auto[x-placement^=bottom]>.arrow::before, .bs-popover-bottom>.arrow::before
{
    top: 0;
    border-width: 0 .5rem .5rem .5rem;
    border-bottom-color: rgba(0,0,0,.25);
}
.bs-popover-auto[x-placement^=bottom]>.arrow::after, .bs-popover-bottom>.arrow::after
{
    top: 1px;
    border-width: 0 .5rem .5rem .5rem;
    border-bottom-color: #fff;
}
.bs-popover-auto[x-placement^=bottom] .popover-header::before, .bs-popover-bottom .popover-header::before
{
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 1rem;
    margin-left: -.5rem;
    content: "";
    border-bottom: 1px solid #f7f7f7;
}
.bs-popover-auto[x-placement^=left], .bs-popover-left
{
    margin-right: .5rem;
}
.bs-popover-auto[x-placement^=left]>.arrow, .bs-popover-left>.arrow
{
    right: calc((.5rem + 1px) * -1);
    width: .5rem;
    height: 1rem;
    margin: .3rem 0;
}
.bs-popover-auto[x-placement^=left]>.arrow::before, .bs-popover-left>.arrow::before
{
    right: 0;
    border-width: .5rem 0 .5rem .5rem;
    border-left-color: rgba(0,0,0,.25);
}
.bs-popover-auto[x-placement^=left]>.arrow::after, .bs-popover-left>.arrow::after
{
    right: 1px;
    border-width: .5rem 0 .5rem .5rem;
    border-left-color: #fff;
}
.popover-header
{
    padding: .5rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}
.popover-header:empty
{
    display: none;
}
.popover-body
{
    padding: .5rem .75rem;
    color: #212529;
}
.carousel
{
    position: relative;
}
.carousel.pointer-event
{
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}
.carousel-inner
{
    position: relative;
    width: 100%;
    overflow: hidden;
}
.carousel-inner::after
{
    display: block;
    clear: both;
    content: "";
}
.carousel-item
{
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform .6s ease-in-out;
    transition: -webkit-transform .6s ease-in-out;
    transition: transform .6s ease-in-out;
    transition: transform .6s ease-in-out,-webkit-transform .6s ease-in-out;
}
@media(prefers-reduced-motion: reduce)
{
    .carousel-item
    {
        -webkit-transition: none;
        transition: none;
    }
}
.carousel-item-next, .carousel-item-prev, .carousel-item.active
{
    display: block;
}
.active.carousel-item-right, .carousel-item-next:not(.carousel-item-left)
{
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}
.active.carousel-item-left, .carousel-item-prev:not(.carousel-item-right)
{
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}
.carousel-fade .carousel-item
{
    opacity: 0;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
.carousel-fade .carousel-item-next.carousel-item-left, .carousel-fade .carousel-item-prev.carousel-item-right, .carousel-fade .carousel-item.active
{
    z-index: 1;
    opacity: 1;
}
.carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right
{
    z-index: 0;
    opacity: 0;
    -webkit-transition: 0s .6s opacity;
    transition: 0s .6s opacity;
}
@media(prefers-reduced-motion: reduce)
{
    .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right
    {
        -webkit-transition: none;
        transition: none;
    }
}
.carousel-control-next, .carousel-control-prev
{
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: .5;
    -webkit-transition: opacity .15s ease;
    transition: opacity .15s ease;
}
@media(prefers-reduced-motion: reduce)
{
    .carousel-control-next, .carousel-control-prev
    {
        -webkit-transition: none;
        transition: none;
    }
}
.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover
{
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9;
}
.carousel-control-prev
{
    left: 0;
}
.carousel-control-next
{
    right: 0;
}
.carousel-control-next-icon, .carousel-control-prev-icon
{
    display: inline-block;
    width: 20px;
    height: 20px;
    background: no-repeat 50%/100% 100%;
}
.carousel-control-prev-icon
{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon
{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}
.carousel-indicators
{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}
.carousel-indicators li
{
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    -webkit-transition: opacity .6s ease;
    transition: opacity .6s ease;
}
@media(prefers-reduced-motion: reduce)
{
    .carousel-indicators li
    {
        -webkit-transition: none;
        transition: none;
    }
}
.carousel-indicators .active
{
    opacity: 1;
}
.carousel-caption
{
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
}
@-webkit-keyframes spinner-border
{
    to
    {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spinner-border
{
    to
    {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.spinner-border
{
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}
.spinner-border-sm
{
    width: 1rem;
    height: 1rem;
    border-width: .2em;
}
@-webkit-keyframes spinner-grow
{
    0%
    {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50%
    {
        opacity: 1;
    }
}
@keyframes spinner-grow
{
    0%
    {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50%
    {
        opacity: 1;
    }
}
.spinner-grow
{
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: spinner-grow .75s linear infinite;
    animation: spinner-grow .75s linear infinite;
}
.spinner-grow-sm
{
    width: 1rem;
    height: 1rem;
}
.align-baseline
{
    vertical-align: baseline!important;
}
.align-top
{
    vertical-align: top!important;
}
.align-middle
{
    vertical-align: middle!important;
}
.align-bottom
{
    vertical-align: bottom!important;
}
.align-text-bottom
{
    vertical-align: text-bottom!important;
}
.align-text-top
{
    vertical-align: text-top!important;
}
.bg-primary
{
    background-color: #007bff!important;
}
a.bg-primary:focus, a.bg-primary:hover, button.bg-primary:focus, button.bg-primary:hover
{
    background-color: #0062cc!important;
}
.bg-secondary
{
    background-color: #6c757d!important;
}
a.bg-secondary:focus, a.bg-secondary:hover, button.bg-secondary:focus, button.bg-secondary:hover
{
    background-color: #545b62!important;
}
.bg-success
{
    background-color: #28a745!important;
}
a.bg-success:focus, a.bg-success:hover, button.bg-success:focus, button.bg-success:hover
{
    background-color: #1e7e34!important;
}
.bg-info
{
    background-color: #17a2b8!important;
}
a.bg-info:focus, a.bg-info:hover, button.bg-info:focus, button.bg-info:hover
{
    background-color: #117a8b!important;
}
.bg-warning
{
    background-color: #ffc107!important;
}
a.bg-warning:focus, a.bg-warning:hover, button.bg-warning:focus, button.bg-warning:hover
{
    background-color: #d39e00!important;
}
.bg-danger
{
    background-color: #dc3545!important;
}
a.bg-danger:focus, a.bg-danger:hover, button.bg-danger:focus, button.bg-danger:hover
{
    background-color: #bd2130!important;
}
.bg-light
{
    background-color: #f8f9fa!important;
}
a.bg-light:focus, a.bg-light:hover, button.bg-light:focus, button.bg-light:hover
{
    background-color: #dae0e5!important;
}
.bg-dark
{
    background-color: #343a40!important;
}
a.bg-dark:focus, a.bg-dark:hover, button.bg-dark:focus, button.bg-dark:hover
{
    background-color: #1d2124!important;
}
.bg-white
{
    background-color: #fff!important;
}
.bg-transparent
{
    background-color: transparent!important;
}
.border
{
    border: 1px solid #dee2e6!important;
}
.border-top
{
    border-top: 1px solid #dee2e6!important;
}
.border-right
{
    border-right: 1px solid #dee2e6!important;
}
.border-bottom
{
    border-bottom: 1px solid #dee2e6!important;
}
.border-left
{
    border-left: 1px solid #dee2e6!important;
}
.border-0
{
    border: 0!important;
}
.border-top-0
{
    border-top: 0!important;
}
.border-right-0
{
    border-right: 0!important;
}
.border-bottom-0
{
    border-bottom: 0!important;
}
.border-left-0
{
    border-left: 0!important;
}
.border-primary
{
    border-color: #007bff!important;
}
.border-secondary
{
    border-color: #6c757d!important;
}
.border-success
{
    border-color: #28a745!important;
}
.border-info
{
    border-color: #17a2b8!important;
}
.border-warning
{
    border-color: #ffc107!important;
}
.border-danger
{
    border-color: #dc3545!important;
}
.border-light
{
    border-color: #f8f9fa!important;
}
.border-dark
{
    border-color: #343a40!important;
}
.border-white
{
    border-color: #fff!important;
}
.rounded-sm
{
    border-radius: .2rem!important;
}
.rounded
{
    border-radius: .25rem!important;
}
.rounded-top
{
    border-top-left-radius: .25rem!important;
    border-top-right-radius: .25rem!important;
}
.rounded-right
{
    border-top-right-radius: .25rem!important;
    border-bottom-right-radius: .25rem!important;
}
.rounded-bottom
{
    border-bottom-right-radius: .25rem!important;
    border-bottom-left-radius: .25rem!important;
}
.rounded-left
{
    border-top-left-radius: .25rem!important;
    border-bottom-left-radius: .25rem!important;
}
.rounded-lg
{
    border-radius: .3rem!important;
}
.rounded-circle
{
    border-radius: 50%!important;
}
.rounded-pill
{
    border-radius: 50rem!important;
}
.rounded-0
{
    border-radius: 0!important;
}
.clearfix::after
{
    display: block;
    clear: both;
    content: "";
}
.d-none
{
    display: none!important;
}
.d-inline
{
    display: inline!important;
}
.d-inline-block
{
    display: inline-block!important;
}
.d-block
{
    display: block!important;
}
.d-table
{
    display: table!important;
}
.d-table-row
{
    display: table-row!important;
}
.d-table-cell
{
    display: table-cell!important;
}
.d-flex
{
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
}
.d-inline-flex
{
    display: -webkit-inline-box!important;
    display: -ms-inline-flexbox!important;
    display: inline-flex!important;
}
@media(min-width: 576px)
{
    .d-sm-none
    {
        display: none!important;
    }
    .d-sm-inline
    {
        display: inline!important;
    }
    .d-sm-inline-block
    {
        display: inline-block!important;
    }
    .d-sm-block
    {
        display: block!important;
    }
    .d-sm-table
    {
        display: table!important;
    }
    .d-sm-table-row
    {
        display: table-row!important;
    }
    .d-sm-table-cell
    {
        display: table-cell!important;
    }
    .d-sm-flex
    {
        display: -webkit-box!important;
        display: -ms-flexbox!important;
        display: flex!important;
    }
    .d-sm-inline-flex
    {
        display: -webkit-inline-box!important;
        display: -ms-inline-flexbox!important;
        display: inline-flex!important;
    }
}
@media(min-width: 768px)
{
    .d-md-none
    {
        display: none!important;
    }
    .d-md-inline
    {
        display: inline!important;
    }
    .d-md-inline-block
    {
        display: inline-block!important;
    }
    .d-md-block
    {
        display: block!important;
    }
    .d-md-table
    {
        display: table!important;
    }
    .d-md-table-row
    {
        display: table-row!important;
    }
    .d-md-table-cell
    {
        display: table-cell!important;
    }
    .d-md-flex
    {
        display: -webkit-box!important;
        display: -ms-flexbox!important;
        display: flex!important;
    }
    .d-md-inline-flex
    {
        display: -webkit-inline-box!important;
        display: -ms-inline-flexbox!important;
        display: inline-flex!important;
    }
}
@media(min-width: 992px)
{
    .d-lg-none
    {
        display: none!important;
    }
    .d-lg-inline
    {
        display: inline!important;
    }
    .d-lg-inline-block
    {
        display: inline-block!important;
    }
    .d-lg-block
    {
        display: block!important;
    }
    .d-lg-table
    {
        display: table!important;
    }
    .d-lg-table-row
    {
        display: table-row!important;
    }
    .d-lg-table-cell
    {
        display: table-cell!important;
    }
    .d-lg-flex
    {
        display: -webkit-box!important;
        display: -ms-flexbox!important;
        display: flex!important;
    }
    .d-lg-inline-flex
    {
        display: -webkit-inline-box!important;
        display: -ms-inline-flexbox!important;
        display: inline-flex!important;
    }
}
@media(min-width: 1200px)
{
    .d-xl-none
    {
        display: none!important;
    }
    .d-xl-inline
    {
        display: inline!important;
    }
    .d-xl-inline-block
    {
        display: inline-block!important;
    }
    .d-xl-block
    {
        display: block!important;
    }
    .d-xl-table
    {
        display: table!important;
    }
    .d-xl-table-row
    {
        display: table-row!important;
    }
    .d-xl-table-cell
    {
        display: table-cell!important;
    }
    .d-xl-flex
    {
        display: -webkit-box!important;
        display: -ms-flexbox!important;
        display: flex!important;
    }
    .d-xl-inline-flex
    {
        display: -webkit-inline-box!important;
        display: -ms-inline-flexbox!important;
        display: inline-flex!important;
    }
}
@media(min-width: 1590px)
{
    .d-xxl-none
    {
        display: none!important;
    }
    .d-xxl-inline
    {
        display: inline!important;
    }
    .d-xxl-inline-block
    {
        display: inline-block!important;
    }
    .d-xxl-block
    {
        display: block!important;
    }
    .d-xxl-table
    {
        display: table!important;
    }
    .d-xxl-table-row
    {
        display: table-row!important;
    }
    .d-xxl-table-cell
    {
        display: table-cell!important;
    }
    .d-xxl-flex
    {
        display: -webkit-box!important;
        display: -ms-flexbox!important;
        display: flex!important;
    }
    .d-xxl-inline-flex
    {
        display: -webkit-inline-box!important;
        display: -ms-inline-flexbox!important;
        display: inline-flex!important;
    }
}
@media(min-width: 1880px)
{
    .d-xhd-none
    {
        display: none!important;
    }
    .d-xhd-inline
    {
        display: inline!important;
    }
    .d-xhd-inline-block
    {
        display: inline-block!important;
    }
    .d-xhd-block
    {
        display: block!important;
    }
    .d-xhd-table
    {
        display: table!important;
    }
    .d-xhd-table-row
    {
        display: table-row!important;
    }
    .d-xhd-table-cell
    {
        display: table-cell!important;
    }
    .d-xhd-flex
    {
        display: -webkit-box!important;
        display: -ms-flexbox!important;
        display: flex!important;
    }
    .d-xhd-inline-flex
    {
        display: -webkit-inline-box!important;
        display: -ms-inline-flexbox!important;
        display: inline-flex!important;
    }
}
@media print
{
    .d-print-none
    {
        display: none!important;
    }
    .d-print-inline
    {
        display: inline!important;
    }
    .d-print-inline-block
    {
        display: inline-block!important;
    }
    .d-print-block
    {
        display: block!important;
    }
    .d-print-table
    {
        display: table!important;
    }
    .d-print-table-row
    {
        display: table-row!important;
    }
    .d-print-table-cell
    {
        display: table-cell!important;
    }
    .d-print-flex
    {
        display: -webkit-box!important;
        display: -ms-flexbox!important;
        display: flex!important;
    }
    .d-print-inline-flex
    {
        display: -webkit-inline-box!important;
        display: -ms-inline-flexbox!important;
        display: inline-flex!important;
    }
}
.embed-responsive
{
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}
.embed-responsive::before
{
    display: block;
    content: "";
}
.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.embed-responsive-21by9::before
{
    padding-top: 42.85714%;
}
.embed-responsive-16by9::before
{
    padding-top: 56.25%;
}
.embed-responsive-4by3::before
{
    padding-top: 75%;
}
.embed-responsive-1by1::before
{
    padding-top: 100%;
}
.flex-row
{
    -webkit-box-orient: horizontal!important;
    -webkit-box-direction: normal!important;
    -ms-flex-direction: row!important;
    flex-direction: row!important;
}
.flex-column
{
    -webkit-box-orient: vertical!important;
    -webkit-box-direction: normal!important;
    -ms-flex-direction: column!important;
    flex-direction: column!important;
}
.flex-row-reverse
{
    -webkit-box-orient: horizontal!important;
    -webkit-box-direction: reverse!important;
    -ms-flex-direction: row-reverse!important;
    flex-direction: row-reverse!important;
}
.flex-column-reverse
{
    -webkit-box-orient: vertical!important;
    -webkit-box-direction: reverse!important;
    -ms-flex-direction: column-reverse!important;
    flex-direction: column-reverse!important;
}
.flex-wrap
{
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important;
}
.flex-nowrap
{
    -ms-flex-wrap: nowrap!important;
    flex-wrap: nowrap!important;
}
.flex-wrap-reverse
{
    -ms-flex-wrap: wrap-reverse!important;
    flex-wrap: wrap-reverse!important;
}
.flex-fill
{
    -webkit-box-flex: 1!important;
    -ms-flex: 1 1 auto!important;
    flex: 1 1 auto!important;
}
.flex-grow-0
{
    -webkit-box-flex: 0!important;
    -ms-flex-positive: 0!important;
    flex-grow: 0!important;
}
.flex-grow-1
{
    -webkit-box-flex: 1!important;
    -ms-flex-positive: 1!important;
    flex-grow: 1!important;
}
.flex-shrink-0
{
    -ms-flex-negative: 0!important;
    flex-shrink: 0!important;
}
.flex-shrink-1
{
    -ms-flex-negative: 1!important;
    flex-shrink: 1!important;
}
.justify-content-start
{
    -webkit-box-pack: start!important;
    -ms-flex-pack: start!important;
    justify-content: flex-start!important;
}
.justify-content-end
{
    -webkit-box-pack: end!important;
    -ms-flex-pack: end!important;
    justify-content: flex-end!important;
}
.justify-content-center
{
    -webkit-box-pack: center!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
}
.justify-content-between
{
    -webkit-box-pack: justify!important;
    -ms-flex-pack: justify!important;
    justify-content: space-between!important;
}
.justify-content-around
{
    -ms-flex-pack: distribute!important;
    justify-content: space-around!important;
}
.align-items-start
{
    -webkit-box-align: start!important;
    -ms-flex-align: start!important;
    align-items: flex-start!important;
}
.align-items-end
{
    -webkit-box-align: end!important;
    -ms-flex-align: end!important;
    align-items: flex-end!important;
}
.align-items-center
{
    -webkit-box-align: center!important;
    -ms-flex-align: center!important;
    align-items: center!important;
}
.align-items-baseline
{
    -webkit-box-align: baseline!important;
    -ms-flex-align: baseline!important;
    align-items: baseline!important;
}
.align-items-stretch
{
    -webkit-box-align: stretch!important;
    -ms-flex-align: stretch!important;
    align-items: stretch!important;
}
.align-content-start
{
    -ms-flex-line-pack: start!important;
    align-content: flex-start!important;
}
.align-content-end
{
    -ms-flex-line-pack: end!important;
    align-content: flex-end!important;
}
.align-content-center
{
    -ms-flex-line-pack: center!important;
    align-content: center!important;
}
.align-content-between
{
    -ms-flex-line-pack: justify!important;
    align-content: space-between!important;
}
.align-content-around
{
    -ms-flex-line-pack: distribute!important;
    align-content: space-around!important;
}
.align-content-stretch
{
    -ms-flex-line-pack: stretch!important;
    align-content: stretch!important;
}
.align-self-auto
{
    -ms-flex-item-align: auto!important;
    align-self: auto!important;
}
.align-self-start
{
    -ms-flex-item-align: start!important;
    align-self: flex-start!important;
}
.align-self-end
{
    -ms-flex-item-align: end!important;
    align-self: flex-end!important;
}
.align-self-center
{
    -ms-flex-item-align: center!important;
    align-self: center!important;
}
.align-self-baseline
{
    -ms-flex-item-align: baseline!important;
    align-self: baseline!important;
}
.align-self-stretch
{
    -ms-flex-item-align: stretch!important;
    align-self: stretch!important;
}
@media(min-width: 576px)
{
    .flex-sm-row
    {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: normal!important;
        -ms-flex-direction: row!important;
        flex-direction: row!important;
    }
    .flex-sm-column
    {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: normal!important;
        -ms-flex-direction: column!important;
        flex-direction: column!important;
    }
    .flex-sm-row-reverse
    {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: reverse!important;
        -ms-flex-direction: row-reverse!important;
        flex-direction: row-reverse!important;
    }
    .flex-sm-column-reverse
    {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: reverse!important;
        -ms-flex-direction: column-reverse!important;
        flex-direction: column-reverse!important;
    }
    .flex-sm-wrap
    {
        -ms-flex-wrap: wrap!important;
        flex-wrap: wrap!important;
    }
    .flex-sm-nowrap
    {
        -ms-flex-wrap: nowrap!important;
        flex-wrap: nowrap!important;
    }
    .flex-sm-wrap-reverse
    {
        -ms-flex-wrap: wrap-reverse!important;
        flex-wrap: wrap-reverse!important;
    }
    .flex-sm-fill
    {
        -webkit-box-flex: 1!important;
        -ms-flex: 1 1 auto!important;
        flex: 1 1 auto!important;
    }
    .flex-sm-grow-0
    {
        -webkit-box-flex: 0!important;
        -ms-flex-positive: 0!important;
        flex-grow: 0!important;
    }
    .flex-sm-grow-1
    {
        -webkit-box-flex: 1!important;
        -ms-flex-positive: 1!important;
        flex-grow: 1!important;
    }
    .flex-sm-shrink-0
    {
        -ms-flex-negative: 0!important;
        flex-shrink: 0!important;
    }
    .flex-sm-shrink-1
    {
        -ms-flex-negative: 1!important;
        flex-shrink: 1!important;
    }
    .justify-content-sm-start
    {
        -webkit-box-pack: start!important;
        -ms-flex-pack: start!important;
        justify-content: flex-start!important;
    }
    .justify-content-sm-end
    {
        -webkit-box-pack: end!important;
        -ms-flex-pack: end!important;
        justify-content: flex-end!important;
    }
    .justify-content-sm-center
    {
        -webkit-box-pack: center!important;
        -ms-flex-pack: center!important;
        justify-content: center!important;
    }
    .justify-content-sm-between
    {
        -webkit-box-pack: justify!important;
        -ms-flex-pack: justify!important;
        justify-content: space-between!important;
    }
    .justify-content-sm-around
    {
        -ms-flex-pack: distribute!important;
        justify-content: space-around!important;
    }
    .align-items-sm-start
    {
        -webkit-box-align: start!important;
        -ms-flex-align: start!important;
        align-items: flex-start!important;
    }
    .align-items-sm-end
    {
        -webkit-box-align: end!important;
        -ms-flex-align: end!important;
        align-items: flex-end!important;
    }
    .align-items-sm-center
    {
        -webkit-box-align: center!important;
        -ms-flex-align: center!important;
        align-items: center!important;
    }
    .align-items-sm-baseline
    {
        -webkit-box-align: baseline!important;
        -ms-flex-align: baseline!important;
        align-items: baseline!important;
    }
    .align-items-sm-stretch
    {
        -webkit-box-align: stretch!important;
        -ms-flex-align: stretch!important;
        align-items: stretch!important;
    }
    .align-content-sm-start
    {
        -ms-flex-line-pack: start!important;
        align-content: flex-start!important;
    }
    .align-content-sm-end
    {
        -ms-flex-line-pack: end!important;
        align-content: flex-end!important;
    }
    .align-content-sm-center
    {
        -ms-flex-line-pack: center!important;
        align-content: center!important;
    }
    .align-content-sm-between
    {
        -ms-flex-line-pack: justify!important;
        align-content: space-between!important;
    }
    .align-content-sm-around
    {
        -ms-flex-line-pack: distribute!important;
        align-content: space-around!important;
    }
    .align-content-sm-stretch
    {
        -ms-flex-line-pack: stretch!important;
        align-content: stretch!important;
    }
    .align-self-sm-auto
    {
        -ms-flex-item-align: auto!important;
        align-self: auto!important;
    }
    .align-self-sm-start
    {
        -ms-flex-item-align: start!important;
        align-self: flex-start!important;
    }
    .align-self-sm-end
    {
        -ms-flex-item-align: end!important;
        align-self: flex-end!important;
    }
    .align-self-sm-center
    {
        -ms-flex-item-align: center!important;
        align-self: center!important;
    }
    .align-self-sm-baseline
    {
        -ms-flex-item-align: baseline!important;
        align-self: baseline!important;
    }
    .align-self-sm-stretch
    {
        -ms-flex-item-align: stretch!important;
        align-self: stretch!important;
    }
}
@media(min-width: 768px)
{
    .flex-md-row
    {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: normal!important;
        -ms-flex-direction: row!important;
        flex-direction: row!important;
    }
    .flex-md-column
    {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: normal!important;
        -ms-flex-direction: column!important;
        flex-direction: column!important;
    }
    .flex-md-row-reverse
    {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: reverse!important;
        -ms-flex-direction: row-reverse!important;
        flex-direction: row-reverse!important;
    }
    .flex-md-column-reverse
    {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: reverse!important;
        -ms-flex-direction: column-reverse!important;
        flex-direction: column-reverse!important;
    }
    .flex-md-wrap
    {
        -ms-flex-wrap: wrap!important;
        flex-wrap: wrap!important;
    }
    .flex-md-nowrap
    {
        -ms-flex-wrap: nowrap!important;
        flex-wrap: nowrap!important;
    }
    .flex-md-wrap-reverse
    {
        -ms-flex-wrap: wrap-reverse!important;
        flex-wrap: wrap-reverse!important;
    }
    .flex-md-fill
    {
        -webkit-box-flex: 1!important;
        -ms-flex: 1 1 auto!important;
        flex: 1 1 auto!important;
    }
    .flex-md-grow-0
    {
        -webkit-box-flex: 0!important;
        -ms-flex-positive: 0!important;
        flex-grow: 0!important;
    }
    .flex-md-grow-1
    {
        -webkit-box-flex: 1!important;
        -ms-flex-positive: 1!important;
        flex-grow: 1!important;
    }
    .flex-md-shrink-0
    {
        -ms-flex-negative: 0!important;
        flex-shrink: 0!important;
    }
    .flex-md-shrink-1
    {
        -ms-flex-negative: 1!important;
        flex-shrink: 1!important;
    }
    .justify-content-md-start
    {
        -webkit-box-pack: start!important;
        -ms-flex-pack: start!important;
        justify-content: flex-start!important;
    }
    .justify-content-md-end
    {
        -webkit-box-pack: end!important;
        -ms-flex-pack: end!important;
        justify-content: flex-end!important;
    }
    .justify-content-md-center
    {
        -webkit-box-pack: center!important;
        -ms-flex-pack: center!important;
        justify-content: center!important;
    }
    .justify-content-md-between
    {
        -webkit-box-pack: justify!important;
        -ms-flex-pack: justify!important;
        justify-content: space-between!important;
    }
    .justify-content-md-around
    {
        -ms-flex-pack: distribute!important;
        justify-content: space-around!important;
    }
    .align-items-md-start
    {
        -webkit-box-align: start!important;
        -ms-flex-align: start!important;
        align-items: flex-start!important;
    }
    .align-items-md-end
    {
        -webkit-box-align: end!important;
        -ms-flex-align: end!important;
        align-items: flex-end!important;
    }
    .align-items-md-center
    {
        -webkit-box-align: center!important;
        -ms-flex-align: center!important;
        align-items: center!important;
    }
    .align-items-md-baseline
    {
        -webkit-box-align: baseline!important;
        -ms-flex-align: baseline!important;
        align-items: baseline!important;
    }
    .align-items-md-stretch
    {
        -webkit-box-align: stretch!important;
        -ms-flex-align: stretch!important;
        align-items: stretch!important;
    }
    .align-content-md-start
    {
        -ms-flex-line-pack: start!important;
        align-content: flex-start!important;
    }
    .align-content-md-end
    {
        -ms-flex-line-pack: end!important;
        align-content: flex-end!important;
    }
    .align-content-md-center
    {
        -ms-flex-line-pack: center!important;
        align-content: center!important;
    }
    .align-content-md-between
    {
        -ms-flex-line-pack: justify!important;
        align-content: space-between!important;
    }
    .align-content-md-around
    {
        -ms-flex-line-pack: distribute!important;
        align-content: space-around!important;
    }
    .align-content-md-stretch
    {
        -ms-flex-line-pack: stretch!important;
        align-content: stretch!important;
    }
    .align-self-md-auto
    {
        -ms-flex-item-align: auto!important;
        align-self: auto!important;
    }
    .align-self-md-start
    {
        -ms-flex-item-align: start!important;
        align-self: flex-start!important;
    }
    .align-self-md-end
    {
        -ms-flex-item-align: end!important;
        align-self: flex-end!important;
    }
    .align-self-md-center
    {
        -ms-flex-item-align: center!important;
        align-self: center!important;
    }
    .align-self-md-baseline
    {
        -ms-flex-item-align: baseline!important;
        align-self: baseline!important;
    }
    .align-self-md-stretch
    {
        -ms-flex-item-align: stretch!important;
        align-self: stretch!important;
    }
}
@media(min-width: 992px)
{
    .flex-lg-row
    {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: normal!important;
        -ms-flex-direction: row!important;
        flex-direction: row!important;
    }
    .flex-lg-column
    {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: normal!important;
        -ms-flex-direction: column!important;
        flex-direction: column!important;
    }
    .flex-lg-row-reverse
    {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: reverse!important;
        -ms-flex-direction: row-reverse!important;
        flex-direction: row-reverse!important;
    }
    .flex-lg-column-reverse
    {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: reverse!important;
        -ms-flex-direction: column-reverse!important;
        flex-direction: column-reverse!important;
    }
    .flex-lg-wrap
    {
        -ms-flex-wrap: wrap!important;
        flex-wrap: wrap!important;
    }
    .flex-lg-nowrap
    {
        -ms-flex-wrap: nowrap!important;
        flex-wrap: nowrap!important;
    }
    .flex-lg-wrap-reverse
    {
        -ms-flex-wrap: wrap-reverse!important;
        flex-wrap: wrap-reverse!important;
    }
    .flex-lg-fill
    {
        -webkit-box-flex: 1!important;
        -ms-flex: 1 1 auto!important;
        flex: 1 1 auto!important;
    }
    .flex-lg-grow-0
    {
        -webkit-box-flex: 0!important;
        -ms-flex-positive: 0!important;
        flex-grow: 0!important;
    }
    .flex-lg-grow-1
    {
        -webkit-box-flex: 1!important;
        -ms-flex-positive: 1!important;
        flex-grow: 1!important;
    }
    .flex-lg-shrink-0
    {
        -ms-flex-negative: 0!important;
        flex-shrink: 0!important;
    }
    .flex-lg-shrink-1
    {
        -ms-flex-negative: 1!important;
        flex-shrink: 1!important;
    }
    .justify-content-lg-start
    {
        -webkit-box-pack: start!important;
        -ms-flex-pack: start!important;
        justify-content: flex-start!important;
    }
    .justify-content-lg-end
    {
        -webkit-box-pack: end!important;
        -ms-flex-pack: end!important;
        justify-content: flex-end!important;
    }
    .justify-content-lg-center
    {
        -webkit-box-pack: center!important;
        -ms-flex-pack: center!important;
        justify-content: center!important;
    }
    .justify-content-lg-between
    {
        -webkit-box-pack: justify!important;
        -ms-flex-pack: justify!important;
        justify-content: space-between!important;
    }
    .justify-content-lg-around
    {
        -ms-flex-pack: distribute!important;
        justify-content: space-around!important;
    }
    .align-items-lg-start
    {
        -webkit-box-align: start!important;
        -ms-flex-align: start!important;
        align-items: flex-start!important;
    }
    .align-items-lg-end
    {
        -webkit-box-align: end!important;
        -ms-flex-align: end!important;
        align-items: flex-end!important;
    }
    .align-items-lg-center
    {
        -webkit-box-align: center!important;
        -ms-flex-align: center!important;
        align-items: center!important;
    }
    .align-items-lg-baseline
    {
        -webkit-box-align: baseline!important;
        -ms-flex-align: baseline!important;
        align-items: baseline!important;
    }
    .align-items-lg-stretch
    {
        -webkit-box-align: stretch!important;
        -ms-flex-align: stretch!important;
        align-items: stretch!important;
    }
    .align-content-lg-start
    {
        -ms-flex-line-pack: start!important;
        align-content: flex-start!important;
    }
    .align-content-lg-end
    {
        -ms-flex-line-pack: end!important;
        align-content: flex-end!important;
    }
    .align-content-lg-center
    {
        -ms-flex-line-pack: center!important;
        align-content: center!important;
    }
    .align-content-lg-between
    {
        -ms-flex-line-pack: justify!important;
        align-content: space-between!important;
    }
    .align-content-lg-around
    {
        -ms-flex-line-pack: distribute!important;
        align-content: space-around!important;
    }
    .align-content-lg-stretch
    {
        -ms-flex-line-pack: stretch!important;
        align-content: stretch!important;
    }
    .align-self-lg-auto
    {
        -ms-flex-item-align: auto!important;
        align-self: auto!important;
    }
    .align-self-lg-start
    {
        -ms-flex-item-align: start!important;
        align-self: flex-start!important;
    }
    .align-self-lg-end
    {
        -ms-flex-item-align: end!important;
        align-self: flex-end!important;
    }
    .align-self-lg-center
    {
        -ms-flex-item-align: center!important;
        align-self: center!important;
    }
    .align-self-lg-baseline
    {
        -ms-flex-item-align: baseline!important;
        align-self: baseline!important;
    }
    .align-self-lg-stretch
    {
        -ms-flex-item-align: stretch!important;
        align-self: stretch!important;
    }
}
@media(min-width: 1200px)
{
    .flex-xl-row
    {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: normal!important;
        -ms-flex-direction: row!important;
        flex-direction: row!important;
    }
    .flex-xl-column
    {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: normal!important;
        -ms-flex-direction: column!important;
        flex-direction: column!important;
    }
    .flex-xl-row-reverse
    {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: reverse!important;
        -ms-flex-direction: row-reverse!important;
        flex-direction: row-reverse!important;
    }
    .flex-xl-column-reverse
    {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: reverse!important;
        -ms-flex-direction: column-reverse!important;
        flex-direction: column-reverse!important;
    }
    .flex-xl-wrap
    {
        -ms-flex-wrap: wrap!important;
        flex-wrap: wrap!important;
    }
    .flex-xl-nowrap
    {
        -ms-flex-wrap: nowrap!important;
        flex-wrap: nowrap!important;
    }
    .flex-xl-wrap-reverse
    {
        -ms-flex-wrap: wrap-reverse!important;
        flex-wrap: wrap-reverse!important;
    }
    .flex-xl-fill
    {
        -webkit-box-flex: 1!important;
        -ms-flex: 1 1 auto!important;
        flex: 1 1 auto!important;
    }
    .flex-xl-grow-0
    {
        -webkit-box-flex: 0!important;
        -ms-flex-positive: 0!important;
        flex-grow: 0!important;
    }
    .flex-xl-grow-1
    {
        -webkit-box-flex: 1!important;
        -ms-flex-positive: 1!important;
        flex-grow: 1!important;
    }
    .flex-xl-shrink-0
    {
        -ms-flex-negative: 0!important;
        flex-shrink: 0!important;
    }
    .flex-xl-shrink-1
    {
        -ms-flex-negative: 1!important;
        flex-shrink: 1!important;
    }
    .justify-content-xl-start
    {
        -webkit-box-pack: start!important;
        -ms-flex-pack: start!important;
        justify-content: flex-start!important;
    }
    .justify-content-xl-end
    {
        -webkit-box-pack: end!important;
        -ms-flex-pack: end!important;
        justify-content: flex-end!important;
    }
    .justify-content-xl-center
    {
        -webkit-box-pack: center!important;
        -ms-flex-pack: center!important;
        justify-content: center!important;
    }
    .justify-content-xl-between
    {
        -webkit-box-pack: justify!important;
        -ms-flex-pack: justify!important;
        justify-content: space-between!important;
    }
    .justify-content-xl-around
    {
        -ms-flex-pack: distribute!important;
        justify-content: space-around!important;
    }
    .align-items-xl-start
    {
        -webkit-box-align: start!important;
        -ms-flex-align: start!important;
        align-items: flex-start!important;
    }
    .align-items-xl-end
    {
        -webkit-box-align: end!important;
        -ms-flex-align: end!important;
        align-items: flex-end!important;
    }
    .align-items-xl-center
    {
        -webkit-box-align: center!important;
        -ms-flex-align: center!important;
        align-items: center!important;
    }
    .align-items-xl-baseline
    {
        -webkit-box-align: baseline!important;
        -ms-flex-align: baseline!important;
        align-items: baseline!important;
    }
    .align-items-xl-stretch
    {
        -webkit-box-align: stretch!important;
        -ms-flex-align: stretch!important;
        align-items: stretch!important;
    }
    .align-content-xl-start
    {
        -ms-flex-line-pack: start!important;
        align-content: flex-start!important;
    }
    .align-content-xl-end
    {
        -ms-flex-line-pack: end!important;
        align-content: flex-end!important;
    }
    .align-content-xl-center
    {
        -ms-flex-line-pack: center!important;
        align-content: center!important;
    }
    .align-content-xl-between
    {
        -ms-flex-line-pack: justify!important;
        align-content: space-between!important;
    }
    .align-content-xl-around
    {
        -ms-flex-line-pack: distribute!important;
        align-content: space-around!important;
    }
    .align-content-xl-stretch
    {
        -ms-flex-line-pack: stretch!important;
        align-content: stretch!important;
    }
    .align-self-xl-auto
    {
        -ms-flex-item-align: auto!important;
        align-self: auto!important;
    }
    .align-self-xl-start
    {
        -ms-flex-item-align: start!important;
        align-self: flex-start!important;
    }
    .align-self-xl-end
    {
        -ms-flex-item-align: end!important;
        align-self: flex-end!important;
    }
    .align-self-xl-center
    {
        -ms-flex-item-align: center!important;
        align-self: center!important;
    }
    .align-self-xl-baseline
    {
        -ms-flex-item-align: baseline!important;
        align-self: baseline!important;
    }
    .align-self-xl-stretch
    {
        -ms-flex-item-align: stretch!important;
        align-self: stretch!important;
    }
}
@media(min-width: 1590px)
{
    .flex-xxl-row
    {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: normal!important;
        -ms-flex-direction: row!important;
        flex-direction: row!important;
    }
    .flex-xxl-column
    {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: normal!important;
        -ms-flex-direction: column!important;
        flex-direction: column!important;
    }
    .flex-xxl-row-reverse
    {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: reverse!important;
        -ms-flex-direction: row-reverse!important;
        flex-direction: row-reverse!important;
    }
    .flex-xxl-column-reverse
    {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: reverse!important;
        -ms-flex-direction: column-reverse!important;
        flex-direction: column-reverse!important;
    }
    .flex-xxl-wrap
    {
        -ms-flex-wrap: wrap!important;
        flex-wrap: wrap!important;
    }
    .flex-xxl-nowrap
    {
        -ms-flex-wrap: nowrap!important;
        flex-wrap: nowrap!important;
    }
    .flex-xxl-wrap-reverse
    {
        -ms-flex-wrap: wrap-reverse!important;
        flex-wrap: wrap-reverse!important;
    }
    .flex-xxl-fill
    {
        -webkit-box-flex: 1!important;
        -ms-flex: 1 1 auto!important;
        flex: 1 1 auto!important;
    }
    .flex-xxl-grow-0
    {
        -webkit-box-flex: 0!important;
        -ms-flex-positive: 0!important;
        flex-grow: 0!important;
    }
    .flex-xxl-grow-1
    {
        -webkit-box-flex: 1!important;
        -ms-flex-positive: 1!important;
        flex-grow: 1!important;
    }
    .flex-xxl-shrink-0
    {
        -ms-flex-negative: 0!important;
        flex-shrink: 0!important;
    }
    .flex-xxl-shrink-1
    {
        -ms-flex-negative: 1!important;
        flex-shrink: 1!important;
    }
    .justify-content-xxl-start
    {
        -webkit-box-pack: start!important;
        -ms-flex-pack: start!important;
        justify-content: flex-start!important;
    }
    .justify-content-xxl-end
    {
        -webkit-box-pack: end!important;
        -ms-flex-pack: end!important;
        justify-content: flex-end!important;
    }
    .justify-content-xxl-center
    {
        -webkit-box-pack: center!important;
        -ms-flex-pack: center!important;
        justify-content: center!important;
    }
    .justify-content-xxl-between
    {
        -webkit-box-pack: justify!important;
        -ms-flex-pack: justify!important;
        justify-content: space-between!important;
    }
    .justify-content-xxl-around
    {
        -ms-flex-pack: distribute!important;
        justify-content: space-around!important;
    }
    .align-items-xxl-start
    {
        -webkit-box-align: start!important;
        -ms-flex-align: start!important;
        align-items: flex-start!important;
    }
    .align-items-xxl-end
    {
        -webkit-box-align: end!important;
        -ms-flex-align: end!important;
        align-items: flex-end!important;
    }
    .align-items-xxl-center
    {
        -webkit-box-align: center!important;
        -ms-flex-align: center!important;
        align-items: center!important;
    }
    .align-items-xxl-baseline
    {
        -webkit-box-align: baseline!important;
        -ms-flex-align: baseline!important;
        align-items: baseline!important;
    }
    .align-items-xxl-stretch
    {
        -webkit-box-align: stretch!important;
        -ms-flex-align: stretch!important;
        align-items: stretch!important;
    }
    .align-content-xxl-start
    {
        -ms-flex-line-pack: start!important;
        align-content: flex-start!important;
    }
    .align-content-xxl-end
    {
        -ms-flex-line-pack: end!important;
        align-content: flex-end!important;
    }
    .align-content-xxl-center
    {
        -ms-flex-line-pack: center!important;
        align-content: center!important;
    }
    .align-content-xxl-between
    {
        -ms-flex-line-pack: justify!important;
        align-content: space-between!important;
    }
    .align-content-xxl-around
    {
        -ms-flex-line-pack: distribute!important;
        align-content: space-around!important;
    }
    .align-content-xxl-stretch
    {
        -ms-flex-line-pack: stretch!important;
        align-content: stretch!important;
    }
    .align-self-xxl-auto
    {
        -ms-flex-item-align: auto!important;
        align-self: auto!important;
    }
    .align-self-xxl-start
    {
        -ms-flex-item-align: start!important;
        align-self: flex-start!important;
    }
    .align-self-xxl-end
    {
        -ms-flex-item-align: end!important;
        align-self: flex-end!important;
    }
    .align-self-xxl-center
    {
        -ms-flex-item-align: center!important;
        align-self: center!important;
    }
    .align-self-xxl-baseline
    {
        -ms-flex-item-align: baseline!important;
        align-self: baseline!important;
    }
    .align-self-xxl-stretch
    {
        -ms-flex-item-align: stretch!important;
        align-self: stretch!important;
    }
}
@media(min-width: 1880px)
{
    .flex-xhd-row
    {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: normal!important;
        -ms-flex-direction: row!important;
        flex-direction: row!important;
    }
    .flex-xhd-column
    {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: normal!important;
        -ms-flex-direction: column!important;
        flex-direction: column!important;
    }
    .flex-xhd-row-reverse
    {
        -webkit-box-orient: horizontal!important;
        -webkit-box-direction: reverse!important;
        -ms-flex-direction: row-reverse!important;
        flex-direction: row-reverse!important;
    }
    .flex-xhd-column-reverse
    {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: reverse!important;
        -ms-flex-direction: column-reverse!important;
        flex-direction: column-reverse!important;
    }
    .flex-xhd-wrap
    {
        -ms-flex-wrap: wrap!important;
        flex-wrap: wrap!important;
    }
    .flex-xhd-nowrap
    {
        -ms-flex-wrap: nowrap!important;
        flex-wrap: nowrap!important;
    }
    .flex-xhd-wrap-reverse
    {
        -ms-flex-wrap: wrap-reverse!important;
        flex-wrap: wrap-reverse!important;
    }
    .flex-xhd-fill
    {
        -webkit-box-flex: 1!important;
        -ms-flex: 1 1 auto!important;
        flex: 1 1 auto!important;
    }
    .flex-xhd-grow-0
    {
        -webkit-box-flex: 0!important;
        -ms-flex-positive: 0!important;
        flex-grow: 0!important;
    }
    .flex-xhd-grow-1
    {
        -webkit-box-flex: 1!important;
        -ms-flex-positive: 1!important;
        flex-grow: 1!important;
    }
    .flex-xhd-shrink-0
    {
        -ms-flex-negative: 0!important;
        flex-shrink: 0!important;
    }
    .flex-xhd-shrink-1
    {
        -ms-flex-negative: 1!important;
        flex-shrink: 1!important;
    }
    .justify-content-xhd-start
    {
        -webkit-box-pack: start!important;
        -ms-flex-pack: start!important;
        justify-content: flex-start!important;
    }
    .justify-content-xhd-end
    {
        -webkit-box-pack: end!important;
        -ms-flex-pack: end!important;
        justify-content: flex-end!important;
    }
    .justify-content-xhd-center
    {
        -webkit-box-pack: center!important;
        -ms-flex-pack: center!important;
        justify-content: center!important;
    }
    .justify-content-xhd-between
    {
        -webkit-box-pack: justify!important;
        -ms-flex-pack: justify!important;
        justify-content: space-between!important;
    }
    .justify-content-xhd-around
    {
        -ms-flex-pack: distribute!important;
        justify-content: space-around!important;
    }
    .align-items-xhd-start
    {
        -webkit-box-align: start!important;
        -ms-flex-align: start!important;
        align-items: flex-start!important;
    }
    .align-items-xhd-end
    {
        -webkit-box-align: end!important;
        -ms-flex-align: end!important;
        align-items: flex-end!important;
    }
    .align-items-xhd-center
    {
        -webkit-box-align: center!important;
        -ms-flex-align: center!important;
        align-items: center!important;
    }
    .align-items-xhd-baseline
    {
        -webkit-box-align: baseline!important;
        -ms-flex-align: baseline!important;
        align-items: baseline!important;
    }
    .align-items-xhd-stretch
    {
        -webkit-box-align: stretch!important;
        -ms-flex-align: stretch!important;
        align-items: stretch!important;
    }
    .align-content-xhd-start
    {
        -ms-flex-line-pack: start!important;
        align-content: flex-start!important;
    }
    .align-content-xhd-end
    {
        -ms-flex-line-pack: end!important;
        align-content: flex-end!important;
    }
    .align-content-xhd-center
    {
        -ms-flex-line-pack: center!important;
        align-content: center!important;
    }
    .align-content-xhd-between
    {
        -ms-flex-line-pack: justify!important;
        align-content: space-between!important;
    }
    .align-content-xhd-around
    {
        -ms-flex-line-pack: distribute!important;
        align-content: space-around!important;
    }
    .align-content-xhd-stretch
    {
        -ms-flex-line-pack: stretch!important;
        align-content: stretch!important;
    }
    .align-self-xhd-auto
    {
        -ms-flex-item-align: auto!important;
        align-self: auto!important;
    }
    .align-self-xhd-start
    {
        -ms-flex-item-align: start!important;
        align-self: flex-start!important;
    }
    .align-self-xhd-end
    {
        -ms-flex-item-align: end!important;
        align-self: flex-end!important;
    }
    .align-self-xhd-center
    {
        -ms-flex-item-align: center!important;
        align-self: center!important;
    }
    .align-self-xhd-baseline
    {
        -ms-flex-item-align: baseline!important;
        align-self: baseline!important;
    }
    .align-self-xhd-stretch
    {
        -ms-flex-item-align: stretch!important;
        align-self: stretch!important;
    }
}
.float-left
{
    float: left!important;
}
.float-right
{
    float: right!important;
}
.float-none
{
    float: none!important;
}
@media(min-width: 576px)
{
    .float-sm-left
    {
        float: left!important;
    }
    .float-sm-right
    {
        float: right!important;
    }
    .float-sm-none
    {
        float: none!important;
    }
}
@media(min-width: 768px)
{
    .float-md-left
    {
        float: left!important;
    }
    .float-md-right
    {
        float: right!important;
    }
    .float-md-none
    {
        float: none!important;
    }
}
@media(min-width: 992px)
{
    .float-lg-left
    {
        float: left!important;
    }
    .float-lg-right
    {
        float: right!important;
    }
    .float-lg-none
    {
        float: none!important;
    }
}
@media(min-width: 1200px)
{
    .float-xl-left
    {
        float: left!important;
    }
    .float-xl-right
    {
        float: right!important;
    }
    .float-xl-none
    {
        float: none!important;
    }
}
@media(min-width: 1590px)
{
    .float-xxl-left
    {
        float: left!important;
    }
    .float-xxl-right
    {
        float: right!important;
    }
    .float-xxl-none
    {
        float: none!important;
    }
}
@media(min-width: 1880px)
{
    .float-xhd-left
    {
        float: left!important;
    }
    .float-xhd-right
    {
        float: right!important;
    }
    .float-xhd-none
    {
        float: none!important;
    }
}
.overflow-auto
{
    overflow: auto!important;
}
.overflow-hidden
{
    overflow: hidden!important;
}
.position-static
{
    position: static!important;
}
.position-relative
{
    position: relative!important;
}
.position-absolute
{
    position: absolute!important;
}
.position-fixed
{
    position: fixed!important;
}
.position-sticky
{
    position: -webkit-sticky!important;
    position: sticky!important;
}
.fixed-top
{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
.fixed-bottom
{
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}
@supports((
position: -webkit-sticky) or (
position: sticky))
{
.sticky-top
{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}
}
.sr-only
{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.sr-only-focusable:active, .sr-only-focusable:focus
{
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}
.shadow-sm
{
    -webkit-box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}
.shadow
{
    -webkit-box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.shadow-lg
{
    -webkit-box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}
.shadow-none
{
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
}
.w-25
{
    width: 25%!important;
}
.w-50
{
    width: 50%!important;
}
.w-75
{
    width: 75%!important;
}
.w-100
{
    width: 100%!important;
}
.w-auto
{
    width: auto!important;
}
.h-25
{
    height: 25%!important;
}
.h-50
{
    height: 50%!important;
}
.h-75
{
    height: 75%!important;
}
.h-100
{
    height: 100%!important;
}
.h-auto
{
    height: auto!important;
}
.mw-100
{
    max-width: 100%!important;
}
.mh-100
{
    max-height: 100%!important;
}
.min-vw-100
{
    min-width: 100vw!important;
}
.min-vh-100
{
    min-height: 100vh!important;
}
.vw-100
{
    width: 100vw!important;
}
.vh-100
{
    height: 100vh!important;
}
.stretched-link::after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0,0,0,0);
}
.m-0
{
    margin: 0!important;
}
.mt-0, .my-0
{
    margin-top: 0!important;
}
.mr-0, .mx-0
{
    margin-right: 0!important;
}
.mb-0, .my-0
{
    margin-bottom: 0!important;
}
.ml-0, .mx-0
{
    margin-left: 0!important;
}
.m-1
{
    margin: .25rem!important;
}
.mt-1, .my-1
{
    margin-top: .25rem!important;
}
.mr-1, .mx-1
{
    margin-right: .25rem!important;
}
.mb-1, .my-1
{
    margin-bottom: .25rem!important;
}
.ml-1, .mx-1
{
    margin-left: .25rem!important;
}
.m-2
{
    margin: .5rem!important;
}
.mt-2, .my-2
{
    margin-top: .5rem!important;
}
.mr-2, .mx-2
{
    margin-right: .5rem!important;
}
.mb-2, .my-2
{
    margin-bottom: .5rem!important;
}
.ml-2, .mx-2
{
    margin-left: .5rem!important;
}
.m-3
{
    margin: 1rem!important;
}
.mt-3, .my-3
{
    margin-top: 1rem!important;
}
.mr-3, .mx-3
{
    margin-right: 1rem!important;
}
.mb-3, .my-3
{
    margin-bottom: 1rem!important;
}
.ml-3, .mx-3
{
    margin-left: 1rem!important;
}
.m-4
{
    margin: 1.5rem!important;
}
.mt-4, .my-4
{
    margin-top: 1.5rem!important;
}
.mr-4, .mx-4
{
    margin-right: 1.5rem!important;
}
.mb-4, .my-4
{
    margin-bottom: 1.5rem!important;
}
.ml-4, .mx-4
{
    margin-left: 1.5rem!important;
}
.m-5
{
    margin: 2rem!important;
}
.mt-5, .my-5
{
    margin-top: 2rem!important;
}
.mr-5, .mx-5
{
    margin-right: 2rem!important;
}
.mb-5, .my-5
{
    margin-bottom: 2rem!important;
}
.ml-5, .mx-5
{
    margin-left: 2rem!important;
}
.m-6
{
    margin: 2.5rem!important;
}
.mt-6, .my-6
{
    margin-top: 2.5rem!important;
}
.mr-6, .mx-6
{
    margin-right: 2.5rem!important;
}
.mb-6, .my-6
{
    margin-bottom: 2.5rem!important;
}
.ml-6, .mx-6
{
    margin-left: 2.5rem!important;
}
.m-7
{
    margin: 4rem!important;
}
.mt-7, .my-7
{
    margin-top: 4rem!important;
}
.mr-7, .mx-7
{
    margin-right: 4rem!important;
}
.mb-7, .my-7
{
    margin-bottom: 4rem!important;
}
.ml-7, .mx-7
{
    margin-left: 4rem!important;
}
.m-8
{
    margin: 6rem!important;
}
.mt-8, .my-8
{
    margin-top: 6rem!important;
}
.mr-8, .mx-8
{
    margin-right: 6rem!important;
}
.mb-8, .my-8
{
    margin-bottom: 6rem!important;
}
.ml-8, .mx-8
{
    margin-left: 6rem!important;
}
.m-9
{
    margin: 7rem!important;
}
.mt-9, .my-9
{
    margin-top: 7rem!important;
}
.mr-9, .mx-9
{
    margin-right: 7rem!important;
}
.mb-9, .my-9
{
    margin-bottom: 7rem!important;
}
.ml-9, .mx-9
{
    margin-left: 7rem!important;
}
.m-10
{
    margin: 8rem!important;
}
.mt-10, .my-10
{
    margin-top: 8rem!important;
}
.mr-10, .mx-10
{
    margin-right: 8rem!important;
}
.mb-10, .my-10
{
    margin-bottom: 8rem!important;
}
.ml-10, .mx-10
{
    margin-left: 8rem!important;
}
.p-0
{
    padding: 0!important;
}
.pt-0, .py-0
{
    padding-top: 0!important;
}
.pr-0, .px-0
{
    padding-right: 0!important;
}
.pb-0, .py-0
{
    padding-bottom: 0!important;
}
.pl-0, .px-0
{
    padding-left: 0!important;
}
.p-1
{
    padding: .25rem!important;
}
.pt-1, .py-1
{
    padding-top: .25rem!important;
}
.pr-1, .px-1
{
    padding-right: .25rem!important;
}
.pb-1, .py-1
{
    padding-bottom: .25rem!important;
}
.pl-1, .px-1
{
    padding-left: .25rem!important;
}
.p-2
{
    padding: .5rem!important;
}
.pt-2, .py-2
{
    padding-top: .5rem!important;
}
.pr-2, .px-2
{
    padding-right: .5rem!important;
}
.pb-2, .py-2
{
    padding-bottom: .5rem!important;
}
.pl-2, .px-2
{
    padding-left: .5rem!important;
}
.p-3
{
    padding: 1rem!important;
}
.pt-3, .py-3
{
    padding-top: 1rem!important;
}
.pr-3, .px-3
{
    padding-right: 1rem!important;
}
.pb-3, .py-3
{
    padding-bottom: 1rem!important;
}
.pl-3, .px-3
{
    padding-left: 1rem!important;
}
.p-4
{
    padding: 1.5rem!important;
}
.pt-4, .py-4
{
    padding-top: 1.5rem!important;
}
.pr-4, .px-4
{
    padding-right: 1.5rem!important;
}
.pb-4, .py-4
{
    padding-bottom: 1.5rem!important;
}
.pl-4, .px-4
{
    padding-left: 1.5rem!important;
}
.p-5
{
    padding: 2rem!important;
}
.pt-5, .py-5
{
    padding-top: 2rem!important;
}
.pr-5, .px-5
{
    padding-right: 2rem!important;
}
.pb-5, .py-5
{
    padding-bottom: 2rem!important;
}
.pl-5, .px-5
{
    padding-left: 2rem!important;
}
.p-6
{
    padding: 2.5rem!important;
}
.pt-6, .py-6
{
    padding-top: 2.5rem!important;
}
.pr-6, .px-6
{
    padding-right: 2.5rem!important;
}
.pb-6, .py-6
{
    padding-bottom: 2.5rem!important;
}
.pl-6, .px-6
{
    padding-left: 2.5rem!important;
}
.p-7
{
    padding: 4rem!important;
}
.pt-7, .py-7
{
    padding-top: 4rem!important;
}
.pr-7, .px-7
{
    padding-right: 4rem!important;
}
.pb-7, .py-7
{
    padding-bottom: 4rem!important;
}
.pl-7, .px-7
{
    padding-left: 4rem!important;
}
.p-8
{
    padding: 6rem!important;
}
.pt-8, .py-8
{
    padding-top: 6rem!important;
}
.pr-8, .px-8
{
    padding-right: 6rem!important;
}
.pb-8, .py-8
{
    padding-bottom: 6rem!important;
}
.pl-8, .px-8
{
    padding-left: 6rem!important;
}
.p-9
{
    padding: 7rem!important;
}
.pt-9, .py-9
{
    padding-top: 7rem!important;
}
.pr-9, .px-9
{
    padding-right: 7rem!important;
}
.pb-9, .py-9
{
    padding-bottom: 7rem!important;
}
.pl-9, .px-9
{
    padding-left: 7rem!important;
}
.p-10
{
    padding: 8rem!important;
}
.pt-10, .py-10
{
    padding-top: 8rem!important;
}
.pr-10, .px-10
{
    padding-right: 8rem!important;
}
.pb-10, .py-10
{
    padding-bottom: 8rem!important;
}
.pl-10, .px-10
{
    padding-left: 8rem!important;
}
.m-n1
{
    margin: -.25rem!important;
}
.mt-n1, .my-n1
{
    margin-top: -.25rem!important;
}
.mr-n1, .mx-n1
{
    margin-right: -.25rem!important;
}
.mb-n1, .my-n1
{
    margin-bottom: -.25rem!important;
}
.ml-n1, .mx-n1
{
    margin-left: -.25rem!important;
}
.m-n2
{
    margin: -.25rem!important;
}
.mt-n2, .my-n2
{
    margin-top: -.25rem!important;
}
.mr-n2, .mx-n2
{
    margin-right: -.25rem!important;
}
.mb-n2, .my-n2
{
    margin-bottom: -.25rem!important;
}
.ml-n2, .mx-n2
{
    margin-left: -.25rem!important;
}
.m-n3
{
    margin: -.25rem!important;
}
.mt-n3, .my-n3
{
    margin-top: -.25rem!important;
}
.mr-n3, .mx-n3
{
    margin-right: -.25rem!important;
}
.mb-n3, .my-n3
{
    margin-bottom: -.25rem!important;
}
.ml-n3, .mx-n3
{
    margin-left: -.25rem!important;
}
.m-n4
{
    margin: -.25rem!important;
}
.mt-n4, .my-n4
{
    margin-top: -.25rem!important;
}
.mr-n4, .mx-n4
{
    margin-right: -.25rem!important;
}
.mb-n4, .my-n4
{
    margin-bottom: -.25rem!important;
}
.ml-n4, .mx-n4
{
    margin-left: -.25rem!important;
}
.m-n5
{
    margin: -.25rem!important;
}
.mt-n5, .my-n5
{
    margin-top: -.25rem!important;
}
.mr-n5, .mx-n5
{
    margin-right: -.25rem!important;
}
.mb-n5, .my-n5
{
    margin-bottom: -.25rem!important;
}
.ml-n5, .mx-n5
{
    margin-left: -.25rem!important;
}
.m-n6
{
    margin: -.25rem!important;
}
.mt-n6, .my-n6
{
    margin-top: -.25rem!important;
}
.mr-n6, .mx-n6
{
    margin-right: -.25rem!important;
}
.mb-n6, .my-n6
{
    margin-bottom: -.25rem!important;
}
.ml-n6, .mx-n6
{
    margin-left: -.25rem!important;
}
.m-n7
{
    margin: -.25rem!important;
}
.mt-n7, .my-n7
{
    margin-top: -.25rem!important;
}
.mr-n7, .mx-n7
{
    margin-right: -.25rem!important;
}
.mb-n7, .my-n7
{
    margin-bottom: -.25rem!important;
}
.ml-n7, .mx-n7
{
    margin-left: -.25rem!important;
}
.m-n8
{
    margin: -.25rem!important;
}
.mt-n8, .my-n8
{
    margin-top: -.25rem!important;
}
.mr-n8, .mx-n8
{
    margin-right: -.25rem!important;
}
.mb-n8, .my-n8
{
    margin-bottom: -.25rem!important;
}
.ml-n8, .mx-n8
{
    margin-left: -.25rem!important;
}
.m-n9
{
    margin: -.25rem!important;
}
.mt-n9, .my-n9
{
    margin-top: -.25rem!important;
}
.mr-n9, .mx-n9
{
    margin-right: -.25rem!important;
}
.mb-n9, .my-n9
{
    margin-bottom: -.25rem!important;
}
.ml-n9, .mx-n9
{
    margin-left: -.25rem!important;
}
.m-n10
{
    margin: -.25rem!important;
}
.mt-n10, .my-n10
{
    margin-top: -.25rem!important;
}
.mr-n10, .mx-n10
{
    margin-right: -.25rem!important;
}
.mb-n10, .my-n10
{
    margin-bottom: -.25rem!important;
}
.ml-n10, .mx-n10
{
    margin-left: -.25rem!important;
}
.m-auto
{
    margin: auto!important;
}
.mt-auto, .my-auto
{
    margin-top: auto!important;
}
.mr-auto, .mx-auto
{
    margin-right: auto!important;
}
.mb-auto, .my-auto
{
    margin-bottom: auto!important;
}
.ml-auto, .mx-auto
{
    margin-left: auto!important;
}
@media(min-width: 576px)
{
    .m-sm-0
    {
        margin: 0!important;
    }
    .mt-sm-0, .my-sm-0
    {
        margin-top: 0!important;
    }
    .mr-sm-0, .mx-sm-0
    {
        margin-right: 0!important;
    }
    .mb-sm-0, .my-sm-0
    {
        margin-bottom: 0!important;
    }
    .ml-sm-0, .mx-sm-0
    {
        margin-left: 0!important;
    }
    .m-sm-1
    {
        margin: .25rem!important;
    }
    .mt-sm-1, .my-sm-1
    {
        margin-top: .25rem!important;
    }
    .mr-sm-1, .mx-sm-1
    {
        margin-right: .25rem!important;
    }
    .mb-sm-1, .my-sm-1
    {
        margin-bottom: .25rem!important;
    }
    .ml-sm-1, .mx-sm-1
    {
        margin-left: .25rem!important;
    }
    .m-sm-2
    {
        margin: .5rem!important;
    }
    .mt-sm-2, .my-sm-2
    {
        margin-top: .5rem!important;
    }
    .mr-sm-2, .mx-sm-2
    {
        margin-right: .5rem!important;
    }
    .mb-sm-2, .my-sm-2
    {
        margin-bottom: .5rem!important;
    }
    .ml-sm-2, .mx-sm-2
    {
        margin-left: .5rem!important;
    }
    .m-sm-3
    {
        margin: 1rem!important;
    }
    .mt-sm-3, .my-sm-3
    {
        margin-top: 1rem!important;
    }
    .mr-sm-3, .mx-sm-3
    {
        margin-right: 1rem!important;
    }
    .mb-sm-3, .my-sm-3
    {
        margin-bottom: 1rem!important;
    }
    .ml-sm-3, .mx-sm-3
    {
        margin-left: 1rem!important;
    }
    .m-sm-4
    {
        margin: 1.5rem!important;
    }
    .mt-sm-4, .my-sm-4
    {
        margin-top: 1.5rem!important;
    }
    .mr-sm-4, .mx-sm-4
    {
        margin-right: 1.5rem!important;
    }
    .mb-sm-4, .my-sm-4
    {
        margin-bottom: 1.5rem!important;
    }
    .ml-sm-4, .mx-sm-4
    {
        margin-left: 1.5rem!important;
    }
    .m-sm-5
    {
        margin: 2rem!important;
    }
    .mt-sm-5, .my-sm-5
    {
        margin-top: 2rem!important;
    }
    .mr-sm-5, .mx-sm-5
    {
        margin-right: 2rem!important;
    }
    .mb-sm-5, .my-sm-5
    {
        margin-bottom: 2rem!important;
    }
    .ml-sm-5, .mx-sm-5
    {
        margin-left: 2rem!important;
    }
    .m-sm-6
    {
        margin: 2.5rem!important;
    }
    .mt-sm-6, .my-sm-6
    {
        margin-top: 2.5rem!important;
    }
    .mr-sm-6, .mx-sm-6
    {
        margin-right: 2.5rem!important;
    }
    .mb-sm-6, .my-sm-6
    {
        margin-bottom: 2.5rem!important;
    }
    .ml-sm-6, .mx-sm-6
    {
        margin-left: 2.5rem!important;
    }
    .m-sm-7
    {
        margin: 4rem!important;
    }
    .mt-sm-7, .my-sm-7
    {
        margin-top: 4rem!important;
    }
    .mr-sm-7, .mx-sm-7
    {
        margin-right: 4rem!important;
    }
    .mb-sm-7, .my-sm-7
    {
        margin-bottom: 4rem!important;
    }
    .ml-sm-7, .mx-sm-7
    {
        margin-left: 4rem!important;
    }
    .m-sm-8
    {
        margin: 6rem!important;
    }
    .mt-sm-8, .my-sm-8
    {
        margin-top: 6rem!important;
    }
    .mr-sm-8, .mx-sm-8
    {
        margin-right: 6rem!important;
    }
    .mb-sm-8, .my-sm-8
    {
        margin-bottom: 6rem!important;
    }
    .ml-sm-8, .mx-sm-8
    {
        margin-left: 6rem!important;
    }
    .m-sm-9
    {
        margin: 7rem!important;
    }
    .mt-sm-9, .my-sm-9
    {
        margin-top: 7rem!important;
    }
    .mr-sm-9, .mx-sm-9
    {
        margin-right: 7rem!important;
    }
    .mb-sm-9, .my-sm-9
    {
        margin-bottom: 7rem!important;
    }
    .ml-sm-9, .mx-sm-9
    {
        margin-left: 7rem!important;
    }
    .m-sm-10
    {
        margin: 8rem!important;
    }
    .mt-sm-10, .my-sm-10
    {
        margin-top: 8rem!important;
    }
    .mr-sm-10, .mx-sm-10
    {
        margin-right: 8rem!important;
    }
    .mb-sm-10, .my-sm-10
    {
        margin-bottom: 8rem!important;
    }
    .ml-sm-10, .mx-sm-10
    {
        margin-left: 8rem!important;
    }
    .p-sm-0
    {
        padding: 0!important;
    }
    .pt-sm-0, .py-sm-0
    {
        padding-top: 0!important;
    }
    .pr-sm-0, .px-sm-0
    {
        padding-right: 0!important;
    }
    .pb-sm-0, .py-sm-0
    {
        padding-bottom: 0!important;
    }
    .pl-sm-0, .px-sm-0
    {
        padding-left: 0!important;
    }
    .p-sm-1
    {
        padding: .25rem!important;
    }
    .pt-sm-1, .py-sm-1
    {
        padding-top: .25rem!important;
    }
    .pr-sm-1, .px-sm-1
    {
        padding-right: .25rem!important;
    }
    .pb-sm-1, .py-sm-1
    {
        padding-bottom: .25rem!important;
    }
    .pl-sm-1, .px-sm-1
    {
        padding-left: .25rem!important;
    }
    .p-sm-2
    {
        padding: .5rem!important;
    }
    .pt-sm-2, .py-sm-2
    {
        padding-top: .5rem!important;
    }
    .pr-sm-2, .px-sm-2
    {
        padding-right: .5rem!important;
    }
    .pb-sm-2, .py-sm-2
    {
        padding-bottom: .5rem!important;
    }
    .pl-sm-2, .px-sm-2
    {
        padding-left: .5rem!important;
    }
    .p-sm-3
    {
        padding: 1rem!important;
    }
    .pt-sm-3, .py-sm-3
    {
        padding-top: 1rem!important;
    }
    .pr-sm-3, .px-sm-3
    {
        padding-right: 1rem!important;
    }
    .pb-sm-3, .py-sm-3
    {
        padding-bottom: 1rem!important;
    }
    .pl-sm-3, .px-sm-3
    {
        padding-left: 1rem!important;
    }
    .p-sm-4
    {
        padding: 1.5rem!important;
    }
    .pt-sm-4, .py-sm-4
    {
        padding-top: 1.5rem!important;
    }
    .pr-sm-4, .px-sm-4
    {
        padding-right: 1.5rem!important;
    }
    .pb-sm-4, .py-sm-4
    {
        padding-bottom: 1.5rem!important;
    }
    .pl-sm-4, .px-sm-4
    {
        padding-left: 1.5rem!important;
    }
    .p-sm-5
    {
        padding: 2rem!important;
    }
    .pt-sm-5, .py-sm-5
    {
        padding-top: 2rem!important;
    }
    .pr-sm-5, .px-sm-5
    {
        padding-right: 2rem!important;
    }
    .pb-sm-5, .py-sm-5
    {
        padding-bottom: 2rem!important;
    }
    .pl-sm-5, .px-sm-5
    {
        padding-left: 2rem!important;
    }
    .p-sm-6
    {
        padding: 2.5rem!important;
    }
    .pt-sm-6, .py-sm-6
    {
        padding-top: 2.5rem!important;
    }
    .pr-sm-6, .px-sm-6
    {
        padding-right: 2.5rem!important;
    }
    .pb-sm-6, .py-sm-6
    {
        padding-bottom: 2.5rem!important;
    }
    .pl-sm-6, .px-sm-6
    {
        padding-left: 2.5rem!important;
    }
    .p-sm-7
    {
        padding: 4rem!important;
    }
    .pt-sm-7, .py-sm-7
    {
        padding-top: 4rem!important;
    }
    .pr-sm-7, .px-sm-7
    {
        padding-right: 4rem!important;
    }
    .pb-sm-7, .py-sm-7
    {
        padding-bottom: 4rem!important;
    }
    .pl-sm-7, .px-sm-7
    {
        padding-left: 4rem!important;
    }
    .p-sm-8
    {
        padding: 6rem!important;
    }
    .pt-sm-8, .py-sm-8
    {
        padding-top: 6rem!important;
    }
    .pr-sm-8, .px-sm-8
    {
        padding-right: 6rem!important;
    }
    .pb-sm-8, .py-sm-8
    {
        padding-bottom: 6rem!important;
    }
    .pl-sm-8, .px-sm-8
    {
        padding-left: 6rem!important;
    }
    .p-sm-9
    {
        padding: 7rem!important;
    }
    .pt-sm-9, .py-sm-9
    {
        padding-top: 7rem!important;
    }
    .pr-sm-9, .px-sm-9
    {
        padding-right: 7rem!important;
    }
    .pb-sm-9, .py-sm-9
    {
        padding-bottom: 7rem!important;
    }
    .pl-sm-9, .px-sm-9
    {
        padding-left: 7rem!important;
    }
    .p-sm-10
    {
        padding: 8rem!important;
    }
    .pt-sm-10, .py-sm-10
    {
        padding-top: 8rem!important;
    }
    .pr-sm-10, .px-sm-10
    {
        padding-right: 8rem!important;
    }
    .pb-sm-10, .py-sm-10
    {
        padding-bottom: 8rem!important;
    }
    .pl-sm-10, .px-sm-10
    {
        padding-left: 8rem!important;
    }
    .m-sm-n1
    {
        margin: -.25rem!important;
    }
    .mt-sm-n1, .my-sm-n1
    {
        margin-top: -.25rem!important;
    }
    .mr-sm-n1, .mx-sm-n1
    {
        margin-right: -.25rem!important;
    }
    .mb-sm-n1, .my-sm-n1
    {
        margin-bottom: -.25rem!important;
    }
    .ml-sm-n1, .mx-sm-n1
    {
        margin-left: -.25rem!important;
    }
    .m-sm-n2
    {
        margin: -.25rem!important;
    }
    .mt-sm-n2, .my-sm-n2
    {
        margin-top: -.25rem!important;
    }
    .mr-sm-n2, .mx-sm-n2
    {
        margin-right: -.25rem!important;
    }
    .mb-sm-n2, .my-sm-n2
    {
        margin-bottom: -.25rem!important;
    }
    .ml-sm-n2, .mx-sm-n2
    {
        margin-left: -.25rem!important;
    }
    .m-sm-n3
    {
        margin: -.25rem!important;
    }
    .mt-sm-n3, .my-sm-n3
    {
        margin-top: -.25rem!important;
    }
    .mr-sm-n3, .mx-sm-n3
    {
        margin-right: -.25rem!important;
    }
    .mb-sm-n3, .my-sm-n3
    {
        margin-bottom: -.25rem!important;
    }
    .ml-sm-n3, .mx-sm-n3
    {
        margin-left: -.25rem!important;
    }
    .m-sm-n4
    {
        margin: -.25rem!important;
    }
    .mt-sm-n4, .my-sm-n4
    {
        margin-top: -.25rem!important;
    }
    .mr-sm-n4, .mx-sm-n4
    {
        margin-right: -.25rem!important;
    }
    .mb-sm-n4, .my-sm-n4
    {
        margin-bottom: -.25rem!important;
    }
    .ml-sm-n4, .mx-sm-n4
    {
        margin-left: -.25rem!important;
    }
    .m-sm-n5
    {
        margin: -.25rem!important;
    }
    .mt-sm-n5, .my-sm-n5
    {
        margin-top: -.25rem!important;
    }
    .mr-sm-n5, .mx-sm-n5
    {
        margin-right: -.25rem!important;
    }
    .mb-sm-n5, .my-sm-n5
    {
        margin-bottom: -.25rem!important;
    }
    .ml-sm-n5, .mx-sm-n5
    {
        margin-left: -.25rem!important;
    }
    .m-sm-n6
    {
        margin: -.25rem!important;
    }
    .mt-sm-n6, .my-sm-n6
    {
        margin-top: -.25rem!important;
    }
    .mr-sm-n6, .mx-sm-n6
    {
        margin-right: -.25rem!important;
    }
    .mb-sm-n6, .my-sm-n6
    {
        margin-bottom: -.25rem!important;
    }
    .ml-sm-n6, .mx-sm-n6
    {
        margin-left: -.25rem!important;
    }
    .m-sm-n7
    {
        margin: -.25rem!important;
    }
    .mt-sm-n7, .my-sm-n7
    {
        margin-top: -.25rem!important;
    }
    .mr-sm-n7, .mx-sm-n7
    {
        margin-right: -.25rem!important;
    }
    .mb-sm-n7, .my-sm-n7
    {
        margin-bottom: -.25rem!important;
    }
    .ml-sm-n7, .mx-sm-n7
    {
        margin-left: -.25rem!important;
    }
    .m-sm-n8
    {
        margin: -.25rem!important;
    }
    .mt-sm-n8, .my-sm-n8
    {
        margin-top: -.25rem!important;
    }
    .mr-sm-n8, .mx-sm-n8
    {
        margin-right: -.25rem!important;
    }
    .mb-sm-n8, .my-sm-n8
    {
        margin-bottom: -.25rem!important;
    }
    .ml-sm-n8, .mx-sm-n8
    {
        margin-left: -.25rem!important;
    }
    .m-sm-n9
    {
        margin: -.25rem!important;
    }
    .mt-sm-n9, .my-sm-n9
    {
        margin-top: -.25rem!important;
    }
    .mr-sm-n9, .mx-sm-n9
    {
        margin-right: -.25rem!important;
    }
    .mb-sm-n9, .my-sm-n9
    {
        margin-bottom: -.25rem!important;
    }
    .ml-sm-n9, .mx-sm-n9
    {
        margin-left: -.25rem!important;
    }
    .m-sm-n10
    {
        margin: -.25rem!important;
    }
    .mt-sm-n10, .my-sm-n10
    {
        margin-top: -.25rem!important;
    }
    .mr-sm-n10, .mx-sm-n10
    {
        margin-right: -.25rem!important;
    }
    .mb-sm-n10, .my-sm-n10
    {
        margin-bottom: -.25rem!important;
    }
    .ml-sm-n10, .mx-sm-n10
    {
        margin-left: -.25rem!important;
    }
    .m-sm-auto
    {
        margin: auto!important;
    }
    .mt-sm-auto, .my-sm-auto
    {
        margin-top: auto!important;
    }
    .mr-sm-auto, .mx-sm-auto
    {
        margin-right: auto!important;
    }
    .mb-sm-auto, .my-sm-auto
    {
        margin-bottom: auto!important;
    }
    .ml-sm-auto, .mx-sm-auto
    {
        margin-left: auto!important;
    }
}
@media(min-width: 768px)
{
    .m-md-0
    {
        margin: 0!important;
    }
    .mt-md-0, .my-md-0
    {
        margin-top: 0!important;
    }
    .mr-md-0, .mx-md-0
    {
        margin-right: 0!important;
    }
    .mb-md-0, .my-md-0
    {
        margin-bottom: 0!important;
    }
    .ml-md-0, .mx-md-0
    {
        margin-left: 0!important;
    }
    .m-md-1
    {
        margin: .25rem!important;
    }
    .mt-md-1, .my-md-1
    {
        margin-top: .25rem!important;
    }
    .mr-md-1, .mx-md-1
    {
        margin-right: .25rem!important;
    }
    .mb-md-1, .my-md-1
    {
        margin-bottom: .25rem!important;
    }
    .ml-md-1, .mx-md-1
    {
        margin-left: .25rem!important;
    }
    .m-md-2
    {
        margin: .5rem!important;
    }
    .mt-md-2, .my-md-2
    {
        margin-top: .5rem!important;
    }
    .mr-md-2, .mx-md-2
    {
        margin-right: .5rem!important;
    }
    .mb-md-2, .my-md-2
    {
        margin-bottom: .5rem!important;
    }
    .ml-md-2, .mx-md-2
    {
        margin-left: .5rem!important;
    }
    .m-md-3
    {
        margin: 1rem!important;
    }
    .mt-md-3, .my-md-3
    {
        margin-top: 1rem!important;
    }
    .mr-md-3, .mx-md-3
    {
        margin-right: 1rem!important;
    }
    .mb-md-3, .my-md-3
    {
        margin-bottom: 1rem!important;
    }
    .ml-md-3, .mx-md-3
    {
        margin-left: 1rem!important;
    }
    .m-md-4
    {
        margin: 1.5rem!important;
    }
    .mt-md-4, .my-md-4
    {
        margin-top: 1.5rem!important;
    }
    .mr-md-4, .mx-md-4
    {
        margin-right: 1.5rem!important;
    }
    .mb-md-4, .my-md-4
    {
        margin-bottom: 1.5rem!important;
    }
    .ml-md-4, .mx-md-4
    {
        margin-left: 1.5rem!important;
    }
    .m-md-5
    {
        margin: 2rem!important;
    }
    .mt-md-5, .my-md-5
    {
        margin-top: 2rem!important;
    }
    .mr-md-5, .mx-md-5
    {
        margin-right: 2rem!important;
    }
    .mb-md-5, .my-md-5
    {
        margin-bottom: 2rem!important;
    }
    .ml-md-5, .mx-md-5
    {
        margin-left: 2rem!important;
    }
    .m-md-6
    {
        margin: 2.5rem!important;
    }
    .mt-md-6, .my-md-6
    {
        margin-top: 2.5rem!important;
    }
    .mr-md-6, .mx-md-6
    {
        margin-right: 2.5rem!important;
    }
    .mb-md-6, .my-md-6
    {
        margin-bottom: 2.5rem!important;
    }
    .ml-md-6, .mx-md-6
    {
        margin-left: 2.5rem!important;
    }
    .m-md-7
    {
        margin: 4rem!important;
    }
    .mt-md-7, .my-md-7
    {
        margin-top: 4rem!important;
    }
    .mr-md-7, .mx-md-7
    {
        margin-right: 4rem!important;
    }
    .mb-md-7, .my-md-7
    {
        margin-bottom: 4rem!important;
    }
    .ml-md-7, .mx-md-7
    {
        margin-left: 4rem!important;
    }
    .m-md-8
    {
        margin: 6rem!important;
    }
    .mt-md-8, .my-md-8
    {
        margin-top: 6rem!important;
    }
    .mr-md-8, .mx-md-8
    {
        margin-right: 6rem!important;
    }
    .mb-md-8, .my-md-8
    {
        margin-bottom: 6rem!important;
    }
    .ml-md-8, .mx-md-8
    {
        margin-left: 6rem!important;
    }
    .m-md-9
    {
        margin: 7rem!important;
    }
    .mt-md-9, .my-md-9
    {
        margin-top: 7rem!important;
    }
    .mr-md-9, .mx-md-9
    {
        margin-right: 7rem!important;
    }
    .mb-md-9, .my-md-9
    {
        margin-bottom: 7rem!important;
    }
    .ml-md-9, .mx-md-9
    {
        margin-left: 7rem!important;
    }
    .m-md-10
    {
        margin: 8rem!important;
    }
    .mt-md-10, .my-md-10
    {
        margin-top: 8rem!important;
    }
    .mr-md-10, .mx-md-10
    {
        margin-right: 8rem!important;
    }
    .mb-md-10, .my-md-10
    {
        margin-bottom: 8rem!important;
    }
    .ml-md-10, .mx-md-10
    {
        margin-left: 8rem!important;
    }
    .p-md-0
    {
        padding: 0!important;
    }
    .pt-md-0, .py-md-0
    {
        padding-top: 0!important;
    }
    .pr-md-0, .px-md-0
    {
        padding-right: 0!important;
    }
    .pb-md-0, .py-md-0
    {
        padding-bottom: 0!important;
    }
    .pl-md-0, .px-md-0
    {
        padding-left: 0!important;
    }
    .p-md-1
    {
        padding: .25rem!important;
    }
    .pt-md-1, .py-md-1
    {
        padding-top: .25rem!important;
    }
    .pr-md-1, .px-md-1
    {
        padding-right: .25rem!important;
    }
    .pb-md-1, .py-md-1
    {
        padding-bottom: .25rem!important;
    }
    .pl-md-1, .px-md-1
    {
        padding-left: .25rem!important;
    }
    .p-md-2
    {
        padding: .5rem!important;
    }
    .pt-md-2, .py-md-2
    {
        padding-top: .5rem!important;
    }
    .pr-md-2, .px-md-2
    {
        padding-right: .5rem!important;
    }
    .pb-md-2, .py-md-2
    {
        padding-bottom: .5rem!important;
    }
    .pl-md-2, .px-md-2
    {
        padding-left: .5rem!important;
    }
    .p-md-3
    {
        padding: 1rem!important;
    }
    .pt-md-3, .py-md-3
    {
        padding-top: 1rem!important;
    }
    .pr-md-3, .px-md-3
    {
        padding-right: 1rem!important;
    }
    .pb-md-3, .py-md-3
    {
        padding-bottom: 1rem!important;
    }
    .pl-md-3, .px-md-3
    {
        padding-left: 1rem!important;
    }
    .p-md-4
    {
        padding: 1.5rem!important;
    }
    .pt-md-4, .py-md-4
    {
        padding-top: 1.5rem!important;
    }
    .pr-md-4, .px-md-4
    {
        padding-right: 1.5rem!important;
    }
    .pb-md-4, .py-md-4
    {
        padding-bottom: 1.5rem!important;
    }
    .pl-md-4, .px-md-4
    {
        padding-left: 1.5rem!important;
    }
    .p-md-5
    {
        padding: 2rem!important;
    }
    .pt-md-5, .py-md-5
    {
        padding-top: 2rem!important;
    }
    .pr-md-5, .px-md-5
    {
        padding-right: 2rem!important;
    }
    .pb-md-5, .py-md-5
    {
        padding-bottom: 2rem!important;
    }
    .pl-md-5, .px-md-5
    {
        padding-left: 2rem!important;
    }
    .p-md-6
    {
        padding: 2.5rem!important;
    }
    .pt-md-6, .py-md-6
    {
        padding-top: 2.5rem!important;
    }
    .pr-md-6, .px-md-6
    {
        padding-right: 2.5rem!important;
    }
    .pb-md-6, .py-md-6
    {
        padding-bottom: 2.5rem!important;
    }
    .pl-md-6, .px-md-6
    {
        padding-left: 2.5rem!important;
    }
    .p-md-7
    {
        padding: 4rem!important;
    }
    .pt-md-7, .py-md-7
    {
        padding-top: 4rem!important;
    }
    .pr-md-7, .px-md-7
    {
        padding-right: 4rem!important;
    }
    .pb-md-7, .py-md-7
    {
        padding-bottom: 4rem!important;
    }
    .pl-md-7, .px-md-7
    {
        padding-left: 4rem!important;
    }
    .p-md-8
    {
        padding: 6rem!important;
    }
    .pt-md-8, .py-md-8
    {
        padding-top: 6rem!important;
    }
    .pr-md-8, .px-md-8
    {
        padding-right: 6rem!important;
    }
    .pb-md-8, .py-md-8
    {
        padding-bottom: 6rem!important;
    }
    .pl-md-8, .px-md-8
    {
        padding-left: 6rem!important;
    }
    .p-md-9
    {
        padding: 7rem!important;
    }
    .pt-md-9, .py-md-9
    {
        padding-top: 7rem!important;
    }
    .pr-md-9, .px-md-9
    {
        padding-right: 7rem!important;
    }
    .pb-md-9, .py-md-9
    {
        padding-bottom: 7rem!important;
    }
    .pl-md-9, .px-md-9
    {
        padding-left: 7rem!important;
    }
    .p-md-10
    {
        padding: 8rem!important;
    }
    .pt-md-10, .py-md-10
    {
        padding-top: 8rem!important;
    }
    .pr-md-10, .px-md-10
    {
        padding-right: 8rem!important;
    }
    .pb-md-10, .py-md-10
    {
        padding-bottom: 8rem!important;
    }
    .pl-md-10, .px-md-10
    {
        padding-left: 8rem!important;
    }
    .m-md-n1
    {
        margin: -.25rem!important;
    }
    .mt-md-n1, .my-md-n1
    {
        margin-top: -.25rem!important;
    }
    .mr-md-n1, .mx-md-n1
    {
        margin-right: -.25rem!important;
    }
    .mb-md-n1, .my-md-n1
    {
        margin-bottom: -.25rem!important;
    }
    .ml-md-n1, .mx-md-n1
    {
        margin-left: -.25rem!important;
    }
    .m-md-n2
    {
        margin: -.25rem!important;
    }
    .mt-md-n2, .my-md-n2
    {
        margin-top: -.25rem!important;
    }
    .mr-md-n2, .mx-md-n2
    {
        margin-right: -.25rem!important;
    }
    .mb-md-n2, .my-md-n2
    {
        margin-bottom: -.25rem!important;
    }
    .ml-md-n2, .mx-md-n2
    {
        margin-left: -.25rem!important;
    }
    .m-md-n3
    {
        margin: -.25rem!important;
    }
    .mt-md-n3, .my-md-n3
    {
        margin-top: -.25rem!important;
    }
    .mr-md-n3, .mx-md-n3
    {
        margin-right: -.25rem!important;
    }
    .mb-md-n3, .my-md-n3
    {
        margin-bottom: -.25rem!important;
    }
    .ml-md-n3, .mx-md-n3
    {
        margin-left: -.25rem!important;
    }
    .m-md-n4
    {
        margin: -.25rem!important;
    }
    .mt-md-n4, .my-md-n4
    {
        margin-top: -.25rem!important;
    }
    .mr-md-n4, .mx-md-n4
    {
        margin-right: -.25rem!important;
    }
    .mb-md-n4, .my-md-n4
    {
        margin-bottom: -.25rem!important;
    }
    .ml-md-n4, .mx-md-n4
    {
        margin-left: -.25rem!important;
    }
    .m-md-n5
    {
        margin: -.25rem!important;
    }
    .mt-md-n5, .my-md-n5
    {
        margin-top: -.25rem!important;
    }
    .mr-md-n5, .mx-md-n5
    {
        margin-right: -.25rem!important;
    }
    .mb-md-n5, .my-md-n5
    {
        margin-bottom: -.25rem!important;
    }
    .ml-md-n5, .mx-md-n5
    {
        margin-left: -.25rem!important;
    }
    .m-md-n6
    {
        margin: -.25rem!important;
    }
    .mt-md-n6, .my-md-n6
    {
        margin-top: -.25rem!important;
    }
    .mr-md-n6, .mx-md-n6
    {
        margin-right: -.25rem!important;
    }
    .mb-md-n6, .my-md-n6
    {
        margin-bottom: -.25rem!important;
    }
    .ml-md-n6, .mx-md-n6
    {
        margin-left: -.25rem!important;
    }
    .m-md-n7
    {
        margin: -.25rem!important;
    }
    .mt-md-n7, .my-md-n7
    {
        margin-top: -.25rem!important;
    }
    .mr-md-n7, .mx-md-n7
    {
        margin-right: -.25rem!important;
    }
    .mb-md-n7, .my-md-n7
    {
        margin-bottom: -.25rem!important;
    }
    .ml-md-n7, .mx-md-n7
    {
        margin-left: -.25rem!important;
    }
    .m-md-n8
    {
        margin: -.25rem!important;
    }
    .mt-md-n8, .my-md-n8
    {
        margin-top: -.25rem!important;
    }
    .mr-md-n8, .mx-md-n8
    {
        margin-right: -.25rem!important;
    }
    .mb-md-n8, .my-md-n8
    {
        margin-bottom: -.25rem!important;
    }
    .ml-md-n8, .mx-md-n8
    {
        margin-left: -.25rem!important;
    }
    .m-md-n9
    {
        margin: -.25rem!important;
    }
    .mt-md-n9, .my-md-n9
    {
        margin-top: -.25rem!important;
    }
    .mr-md-n9, .mx-md-n9
    {
        margin-right: -.25rem!important;
    }
    .mb-md-n9, .my-md-n9
    {
        margin-bottom: -.25rem!important;
    }
    .ml-md-n9, .mx-md-n9
    {
        margin-left: -.25rem!important;
    }
    .m-md-n10
    {
        margin: -.25rem!important;
    }
    .mt-md-n10, .my-md-n10
    {
        margin-top: -.25rem!important;
    }
    .mr-md-n10, .mx-md-n10
    {
        margin-right: -.25rem!important;
    }
    .mb-md-n10, .my-md-n10
    {
        margin-bottom: -.25rem!important;
    }
    .ml-md-n10, .mx-md-n10
    {
        margin-left: -.25rem!important;
    }
    .m-md-auto
    {
        margin: auto!important;
    }
    .mt-md-auto, .my-md-auto
    {
        margin-top: auto!important;
    }
    .mr-md-auto, .mx-md-auto
    {
        margin-right: auto!important;
    }
    .mb-md-auto, .my-md-auto
    {
        margin-bottom: auto!important;
    }
    .ml-md-auto, .mx-md-auto
    {
        margin-left: auto!important;
    }
}
@media(min-width: 992px)
{
    .m-lg-0
    {
        margin: 0!important;
    }
    .mt-lg-0, .my-lg-0
    {
        margin-top: 0!important;
    }
    .mr-lg-0, .mx-lg-0
    {
        margin-right: 0!important;
    }
    .mb-lg-0, .my-lg-0
    {
        margin-bottom: 0!important;
    }
    .ml-lg-0, .mx-lg-0
    {
        margin-left: 0!important;
    }
    .m-lg-1
    {
        margin: .25rem!important;
    }
    .mt-lg-1, .my-lg-1
    {
        margin-top: .25rem!important;
    }
    .mr-lg-1, .mx-lg-1
    {
        margin-right: .25rem!important;
    }
    .mb-lg-1, .my-lg-1
    {
        margin-bottom: .25rem!important;
    }
    .ml-lg-1, .mx-lg-1
    {
        margin-left: .25rem!important;
    }
    .m-lg-2
    {
        margin: .5rem!important;
    }
    .mt-lg-2, .my-lg-2
    {
        margin-top: .5rem!important;
    }
    .mr-lg-2, .mx-lg-2
    {
        margin-right: .5rem!important;
    }
    .mb-lg-2, .my-lg-2
    {
        margin-bottom: .5rem!important;
    }
    .ml-lg-2, .mx-lg-2
    {
        margin-left: .5rem!important;
    }
    .m-lg-3
    {
        margin: 1rem!important;
    }
    .mt-lg-3, .my-lg-3
    {
        margin-top: 1rem!important;
    }
    .mr-lg-3, .mx-lg-3
    {
        margin-right: 1rem!important;
    }
    .mb-lg-3, .my-lg-3
    {
        margin-bottom: 1rem!important;
    }
    .ml-lg-3, .mx-lg-3
    {
        margin-left: 1rem!important;
    }
    .m-lg-4
    {
        margin: 1.5rem!important;
    }
    .mt-lg-4, .my-lg-4
    {
        margin-top: 1.5rem!important;
    }
    .mr-lg-4, .mx-lg-4
    {
        margin-right: 1.5rem!important;
    }
    .mb-lg-4, .my-lg-4
    {
        margin-bottom: 1.5rem!important;
    }
    .ml-lg-4, .mx-lg-4
    {
        margin-left: 1.5rem!important;
    }
    .m-lg-5
    {
        margin: 2rem!important;
    }
    .mt-lg-5, .my-lg-5
    {
        margin-top: 2rem!important;
    }
    .mr-lg-5, .mx-lg-5
    {
        margin-right: 2rem!important;
    }
    .mb-lg-5, .my-lg-5
    {
        margin-bottom: 2rem!important;
    }
    .ml-lg-5, .mx-lg-5
    {
        margin-left: 2rem!important;
    }
    .m-lg-6
    {
        margin: 2.5rem!important;
    }
    .mt-lg-6, .my-lg-6
    {
        margin-top: 2.5rem!important;
    }
    .mr-lg-6, .mx-lg-6
    {
        margin-right: 2.5rem!important;
    }
    .mb-lg-6, .my-lg-6
    {
        margin-bottom: 2.5rem!important;
    }
    .ml-lg-6, .mx-lg-6
    {
        margin-left: 2.5rem!important;
    }
    .m-lg-7
    {
        margin: 4rem!important;
    }
    .mt-lg-7, .my-lg-7
    {
        margin-top: 4rem!important;
    }
    .mr-lg-7, .mx-lg-7
    {
        margin-right: 4rem!important;
    }
    .mb-lg-7, .my-lg-7
    {
        margin-bottom: 4rem!important;
    }
    .ml-lg-7, .mx-lg-7
    {
        margin-left: 4rem!important;
    }
    .m-lg-8
    {
        margin: 6rem!important;
    }
    .mt-lg-8, .my-lg-8
    {
        margin-top: 6rem!important;
    }
    .mr-lg-8, .mx-lg-8
    {
        margin-right: 6rem!important;
    }
    .mb-lg-8, .my-lg-8
    {
        margin-bottom: 6rem!important;
    }
    .ml-lg-8, .mx-lg-8
    {
        margin-left: 6rem!important;
    }
    .m-lg-9
    {
        margin: 7rem!important;
    }
    .mt-lg-9, .my-lg-9
    {
        margin-top: 7rem!important;
    }
    .mr-lg-9, .mx-lg-9
    {
        margin-right: 7rem!important;
    }
    .mb-lg-9, .my-lg-9
    {
        margin-bottom: 7rem!important;
    }
    .ml-lg-9, .mx-lg-9
    {
        margin-left: 7rem!important;
    }
    .m-lg-10
    {
        margin: 8rem!important;
    }
    .mt-lg-10, .my-lg-10
    {
        margin-top: 8rem!important;
    }
    .mr-lg-10, .mx-lg-10
    {
        margin-right: 8rem!important;
    }
    .mb-lg-10, .my-lg-10
    {
        margin-bottom: 8rem!important;
    }
    .ml-lg-10, .mx-lg-10
    {
        margin-left: 8rem!important;
    }
    .p-lg-0
    {
        padding: 0!important;
    }
    .pt-lg-0, .py-lg-0
    {
        padding-top: 0!important;
    }
    .pr-lg-0, .px-lg-0
    {
        padding-right: 0!important;
    }
    .pb-lg-0, .py-lg-0
    {
        padding-bottom: 0!important;
    }
    .pl-lg-0, .px-lg-0
    {
        padding-left: 0!important;
    }
    .p-lg-1
    {
        padding: .25rem!important;
    }
    .pt-lg-1, .py-lg-1
    {
        padding-top: .25rem!important;
    }
    .pr-lg-1, .px-lg-1
    {
        padding-right: .25rem!important;
    }
    .pb-lg-1, .py-lg-1
    {
        padding-bottom: .25rem!important;
    }
    .pl-lg-1, .px-lg-1
    {
        padding-left: .25rem!important;
    }
    .p-lg-2
    {
        padding: .5rem!important;
    }
    .pt-lg-2, .py-lg-2
    {
        padding-top: .5rem!important;
    }
    .pr-lg-2, .px-lg-2
    {
        padding-right: .5rem!important;
    }
    .pb-lg-2, .py-lg-2
    {
        padding-bottom: .5rem!important;
    }
    .pl-lg-2, .px-lg-2
    {
        padding-left: .5rem!important;
    }
    .p-lg-3
    {
        padding: 1rem!important;
    }
    .pt-lg-3, .py-lg-3
    {
        padding-top: 1rem!important;
    }
    .pr-lg-3, .px-lg-3
    {
        padding-right: 1rem!important;
    }
    .pb-lg-3, .py-lg-3
    {
        padding-bottom: 1rem!important;
    }
    .pl-lg-3, .px-lg-3
    {
        padding-left: 1rem!important;
    }
    .p-lg-4
    {
        padding: 1.5rem!important;
    }
    .pt-lg-4, .py-lg-4
    {
        padding-top: 1.5rem!important;
    }
    .pr-lg-4, .px-lg-4
    {
        padding-right: 1.5rem!important;
    }
    .pb-lg-4, .py-lg-4
    {
        padding-bottom: 1.5rem!important;
    }
    .pl-lg-4, .px-lg-4
    {
        padding-left: 1.5rem!important;
    }
    .p-lg-5
    {
        padding: 2rem!important;
    }
    .pt-lg-5, .py-lg-5
    {
        padding-top: 2rem!important;
    }
    .pr-lg-5, .px-lg-5
    {
        padding-right: 2rem!important;
    }
    .pb-lg-5, .py-lg-5
    {
        padding-bottom: 2rem!important;
    }
    .pl-lg-5, .px-lg-5
    {
        padding-left: 2rem!important;
    }
    .p-lg-6
    {
        padding: 2.5rem!important;
    }
    .pt-lg-6, .py-lg-6
    {
        padding-top: 2.5rem!important;
    }
    .pr-lg-6, .px-lg-6
    {
        padding-right: 2.5rem!important;
    }
    .pb-lg-6, .py-lg-6
    {
        padding-bottom: 2.5rem!important;
    }
    .pl-lg-6, .px-lg-6
    {
        padding-left: 2.5rem!important;
    }
    .p-lg-7
    {
        padding: 4rem!important;
    }
    .pt-lg-7, .py-lg-7
    {
        padding-top: 4rem!important;
    }
    .pr-lg-7, .px-lg-7
    {
        padding-right: 4rem!important;
    }
    .pb-lg-7, .py-lg-7
    {
        padding-bottom: 4rem!important;
    }
    .pl-lg-7, .px-lg-7
    {
        padding-left: 4rem!important;
    }
    .p-lg-8
    {
        padding: 6rem!important;
    }
    .pt-lg-8, .py-lg-8
    {
        padding-top: 6rem!important;
    }
    .pr-lg-8, .px-lg-8
    {
        padding-right: 6rem!important;
    }
    .pb-lg-8, .py-lg-8
    {
        padding-bottom: 6rem!important;
    }
    .pl-lg-8, .px-lg-8
    {
        padding-left: 6rem!important;
    }
    .p-lg-9
    {
        padding: 7rem!important;
    }
    .pt-lg-9, .py-lg-9
    {
        padding-top: 7rem!important;
    }
    .pr-lg-9, .px-lg-9
    {
        padding-right: 7rem!important;
    }
    .pb-lg-9, .py-lg-9
    {
        padding-bottom: 7rem!important;
    }
    .pl-lg-9, .px-lg-9
    {
        padding-left: 7rem!important;
    }
    .p-lg-10
    {
        padding: 8rem!important;
    }
    .pt-lg-10, .py-lg-10
    {
        padding-top: 8rem!important;
    }
    .pr-lg-10, .px-lg-10
    {
        padding-right: 8rem!important;
    }
    .pb-lg-10, .py-lg-10
    {
        padding-bottom: 8rem!important;
    }
    .pl-lg-10, .px-lg-10
    {
        padding-left: 8rem!important;
    }
    .m-lg-n1
    {
        margin: -.25rem!important;
    }
    .mt-lg-n1, .my-lg-n1
    {
        margin-top: -.25rem!important;
    }
    .mr-lg-n1, .mx-lg-n1
    {
        margin-right: -.25rem!important;
    }
    .mb-lg-n1, .my-lg-n1
    {
        margin-bottom: -.25rem!important;
    }
    .ml-lg-n1, .mx-lg-n1
    {
        margin-left: -.25rem!important;
    }
    .m-lg-n2
    {
        margin: -.25rem!important;
    }
    .mt-lg-n2, .my-lg-n2
    {
        margin-top: -.25rem!important;
    }
    .mr-lg-n2, .mx-lg-n2
    {
        margin-right: -.25rem!important;
    }
    .mb-lg-n2, .my-lg-n2
    {
        margin-bottom: -.25rem!important;
    }
    .ml-lg-n2, .mx-lg-n2
    {
        margin-left: -.25rem!important;
    }
    .m-lg-n3
    {
        margin: -.25rem!important;
    }
    .mt-lg-n3, .my-lg-n3
    {
        margin-top: -.25rem!important;
    }
    .mr-lg-n3, .mx-lg-n3
    {
        margin-right: -.25rem!important;
    }
    .mb-lg-n3, .my-lg-n3
    {
        margin-bottom: -.25rem!important;
    }
    .ml-lg-n3, .mx-lg-n3
    {
        margin-left: -.25rem!important;
    }
    .m-lg-n4
    {
        margin: -.25rem!important;
    }
    .mt-lg-n4, .my-lg-n4
    {
        margin-top: -.25rem!important;
    }
    .mr-lg-n4, .mx-lg-n4
    {
        margin-right: -.25rem!important;
    }
    .mb-lg-n4, .my-lg-n4
    {
        margin-bottom: -.25rem!important;
    }
    .ml-lg-n4, .mx-lg-n4
    {
        margin-left: -.25rem!important;
    }
    .m-lg-n5
    {
        margin: -.25rem!important;
    }
    .mt-lg-n5, .my-lg-n5
    {
        margin-top: -.25rem!important;
    }
    .mr-lg-n5, .mx-lg-n5
    {
        margin-right: -.25rem!important;
    }
    .mb-lg-n5, .my-lg-n5
    {
        margin-bottom: -.25rem!important;
    }
    .ml-lg-n5, .mx-lg-n5
    {
        margin-left: -.25rem!important;
    }
    .m-lg-n6
    {
        margin: -.25rem!important;
    }
    .mt-lg-n6, .my-lg-n6
    {
        margin-top: -.25rem!important;
    }
    .mr-lg-n6, .mx-lg-n6
    {
        margin-right: -.25rem!important;
    }
    .mb-lg-n6, .my-lg-n6
    {
        margin-bottom: -.25rem!important;
    }
    .ml-lg-n6, .mx-lg-n6
    {
        margin-left: -.25rem!important;
    }
    .m-lg-n7
    {
        margin: -.25rem!important;
    }
    .mt-lg-n7, .my-lg-n7
    {
        margin-top: -.25rem!important;
    }
    .mr-lg-n7, .mx-lg-n7
    {
        margin-right: -.25rem!important;
    }
    .mb-lg-n7, .my-lg-n7
    {
        margin-bottom: -.25rem!important;
    }
    .ml-lg-n7, .mx-lg-n7
    {
        margin-left: -.25rem!important;
    }
    .m-lg-n8
    {
        margin: -.25rem!important;
    }
    .mt-lg-n8, .my-lg-n8
    {
        margin-top: -.25rem!important;
    }
    .mr-lg-n8, .mx-lg-n8
    {
        margin-right: -.25rem!important;
    }
    .mb-lg-n8, .my-lg-n8
    {
        margin-bottom: -.25rem!important;
    }
    .ml-lg-n8, .mx-lg-n8
    {
        margin-left: -.25rem!important;
    }
    .m-lg-n9
    {
        margin: -.25rem!important;
    }
    .mt-lg-n9, .my-lg-n9
    {
        margin-top: -.25rem!important;
    }
    .mr-lg-n9, .mx-lg-n9
    {
        margin-right: -.25rem!important;
    }
    .mb-lg-n9, .my-lg-n9
    {
        margin-bottom: -.25rem!important;
    }
    .ml-lg-n9, .mx-lg-n9
    {
        margin-left: -.25rem!important;
    }
    .m-lg-n10
    {
        margin: -.25rem!important;
    }
    .mt-lg-n10, .my-lg-n10
    {
        margin-top: -.25rem!important;
    }
    .mr-lg-n10, .mx-lg-n10
    {
        margin-right: -.25rem!important;
    }
    .mb-lg-n10, .my-lg-n10
    {
        margin-bottom: -.25rem!important;
    }
    .ml-lg-n10, .mx-lg-n10
    {
        margin-left: -.25rem!important;
    }
    .m-lg-auto
    {
        margin: auto!important;
    }
    .mt-lg-auto, .my-lg-auto
    {
        margin-top: auto!important;
    }
    .mr-lg-auto, .mx-lg-auto
    {
        margin-right: auto!important;
    }
    .mb-lg-auto, .my-lg-auto
    {
        margin-bottom: auto!important;
    }
    .ml-lg-auto, .mx-lg-auto
    {
        margin-left: auto!important;
    }
}
@media(min-width: 1200px)
{
    .m-xl-0
    {
        margin: 0!important;
    }
    .mt-xl-0, .my-xl-0
    {
        margin-top: 0!important;
    }
    .mr-xl-0, .mx-xl-0
    {
        margin-right: 0!important;
    }
    .mb-xl-0, .my-xl-0
    {
        margin-bottom: 0!important;
    }
    .ml-xl-0, .mx-xl-0
    {
        margin-left: 0!important;
    }
    .m-xl-1
    {
        margin: .25rem!important;
    }
    .mt-xl-1, .my-xl-1
    {
        margin-top: .25rem!important;
    }
    .mr-xl-1, .mx-xl-1
    {
        margin-right: .25rem!important;
    }
    .mb-xl-1, .my-xl-1
    {
        margin-bottom: .25rem!important;
    }
    .ml-xl-1, .mx-xl-1
    {
        margin-left: .25rem!important;
    }
    .m-xl-2
    {
        margin: .5rem!important;
    }
    .mt-xl-2, .my-xl-2
    {
        margin-top: .5rem!important;
    }
    .mr-xl-2, .mx-xl-2
    {
        margin-right: .5rem!important;
    }
    .mb-xl-2, .my-xl-2
    {
        margin-bottom: .5rem!important;
    }
    .ml-xl-2, .mx-xl-2
    {
        margin-left: .5rem!important;
    }
    .m-xl-3
    {
        margin: 1rem!important;
    }
    .mt-xl-3, .my-xl-3
    {
        margin-top: 1rem!important;
    }
    .mr-xl-3, .mx-xl-3
    {
        margin-right: 1rem!important;
    }
    .mb-xl-3, .my-xl-3
    {
        margin-bottom: 1rem!important;
    }
    .ml-xl-3, .mx-xl-3
    {
        margin-left: 1rem!important;
    }
    .m-xl-4
    {
        margin: 1.5rem!important;
    }
    .mt-xl-4, .my-xl-4
    {
        margin-top: 1.5rem!important;
    }
    .mr-xl-4, .mx-xl-4
    {
        margin-right: 1.5rem!important;
    }
    .mb-xl-4, .my-xl-4
    {
        margin-bottom: 1.5rem!important;
    }
    .ml-xl-4, .mx-xl-4
    {
        margin-left: 1.5rem!important;
    }
    .m-xl-5
    {
        margin: 2rem!important;
    }
    .mt-xl-5, .my-xl-5
    {
        margin-top: 2rem!important;
    }
    .mr-xl-5, .mx-xl-5
    {
        margin-right: 2rem!important;
    }
    .mb-xl-5, .my-xl-5
    {
        margin-bottom: 2rem!important;
    }
    .ml-xl-5, .mx-xl-5
    {
        margin-left: 2rem!important;
    }
    .m-xl-6
    {
        margin: 2.5rem!important;
    }
    .mt-xl-6, .my-xl-6
    {
        margin-top: 2.5rem!important;
    }
    .mr-xl-6, .mx-xl-6
    {
        margin-right: 2.5rem!important;
    }
    .mb-xl-6, .my-xl-6
    {
        margin-bottom: 2.5rem!important;
    }
    .ml-xl-6, .mx-xl-6
    {
        margin-left: 2.5rem!important;
    }
    .m-xl-7
    {
        margin: 4rem!important;
    }
    .mt-xl-7, .my-xl-7
    {
        margin-top: 4rem!important;
    }
    .mr-xl-7, .mx-xl-7
    {
        margin-right: 4rem!important;
    }
    .mb-xl-7, .my-xl-7
    {
        margin-bottom: 4rem!important;
    }
    .ml-xl-7, .mx-xl-7
    {
        margin-left: 4rem!important;
    }
    .m-xl-8
    {
        margin: 6rem!important;
    }
    .mt-xl-8, .my-xl-8
    {
        margin-top: 6rem!important;
    }
    .mr-xl-8, .mx-xl-8
    {
        margin-right: 6rem!important;
    }
    .mb-xl-8, .my-xl-8
    {
        margin-bottom: 6rem!important;
    }
    .ml-xl-8, .mx-xl-8
    {
        margin-left: 6rem!important;
    }
    .m-xl-9
    {
        margin: 7rem!important;
    }
    .mt-xl-9, .my-xl-9
    {
        margin-top: 7rem!important;
    }
    .mr-xl-9, .mx-xl-9
    {
        margin-right: 7rem!important;
    }
    .mb-xl-9, .my-xl-9
    {
        margin-bottom: 7rem!important;
    }
    .ml-xl-9, .mx-xl-9
    {
        margin-left: 7rem!important;
    }
    .m-xl-10
    {
        margin: 8rem!important;
    }
    .mt-xl-10, .my-xl-10
    {
        margin-top: 8rem!important;
    }
    .mr-xl-10, .mx-xl-10
    {
        margin-right: 8rem!important;
    }
    .mb-xl-10, .my-xl-10
    {
        margin-bottom: 8rem!important;
    }
    .ml-xl-10, .mx-xl-10
    {
        margin-left: 8rem!important;
    }
    .p-xl-0
    {
        padding: 0!important;
    }
    .pt-xl-0, .py-xl-0
    {
        padding-top: 0!important;
    }
    .pr-xl-0, .px-xl-0
    {
        padding-right: 0!important;
    }
    .pb-xl-0, .py-xl-0
    {
        padding-bottom: 0!important;
    }
    .pl-xl-0, .px-xl-0
    {
        padding-left: 0!important;
    }
    .p-xl-1
    {
        padding: .25rem!important;
    }
    .pt-xl-1, .py-xl-1
    {
        padding-top: .25rem!important;
    }
    .pr-xl-1, .px-xl-1
    {
        padding-right: .25rem!important;
    }
    .pb-xl-1, .py-xl-1
    {
        padding-bottom: .25rem!important;
    }
    .pl-xl-1, .px-xl-1
    {
        padding-left: .25rem!important;
    }
    .p-xl-2
    {
        padding: .5rem!important;
    }
    .pt-xl-2, .py-xl-2
    {
        padding-top: .5rem!important;
    }
    .pr-xl-2, .px-xl-2
    {
        padding-right: .5rem!important;
    }
    .pb-xl-2, .py-xl-2
    {
        padding-bottom: .5rem!important;
    }
    .pl-xl-2, .px-xl-2
    {
        padding-left: .5rem!important;
    }
    .p-xl-3
    {
        padding: 1rem!important;
    }
    .pt-xl-3, .py-xl-3
    {
        padding-top: 1rem!important;
    }
    .pr-xl-3, .px-xl-3
    {
        padding-right: 1rem!important;
    }
    .pb-xl-3, .py-xl-3
    {
        padding-bottom: 1rem!important;
    }
    .pl-xl-3, .px-xl-3
    {
        padding-left: 1rem!important;
    }
    .p-xl-4
    {
        padding: 1.5rem!important;
    }
    .pt-xl-4, .py-xl-4
    {
        padding-top: 1.5rem!important;
    }
    .pr-xl-4, .px-xl-4
    {
        padding-right: 1.5rem!important;
    }
    .pb-xl-4, .py-xl-4
    {
        padding-bottom: 1.5rem!important;
    }
    .pl-xl-4, .px-xl-4
    {
        padding-left: 1.5rem!important;
    }
    .p-xl-5
    {
        padding: 2rem!important;
    }
    .pt-xl-5, .py-xl-5
    {
        padding-top: 2rem!important;
    }
    .pr-xl-5, .px-xl-5
    {
        padding-right: 2rem!important;
    }
    .pb-xl-5, .py-xl-5
    {
        padding-bottom: 2rem!important;
    }
    .pl-xl-5, .px-xl-5
    {
        padding-left: 2rem!important;
    }
    .p-xl-6
    {
        padding: 2.5rem!important;
    }
    .pt-xl-6, .py-xl-6
    {
        padding-top: 2.5rem!important;
    }
    .pr-xl-6, .px-xl-6
    {
        padding-right: 2.5rem!important;
    }
    .pb-xl-6, .py-xl-6
    {
        padding-bottom: 2.5rem!important;
    }
    .pl-xl-6, .px-xl-6
    {
        padding-left: 2.5rem!important;
    }
    .p-xl-7
    {
        padding: 4rem!important;
    }
    .pt-xl-7, .py-xl-7
    {
        padding-top: 4rem!important;
    }
    .pr-xl-7, .px-xl-7
    {
        padding-right: 4rem!important;
    }
    .pb-xl-7, .py-xl-7
    {
        padding-bottom: 4rem!important;
    }
    .pl-xl-7, .px-xl-7
    {
        padding-left: 4rem!important;
    }
    .p-xl-8
    {
        padding: 6rem!important;
    }
    .pt-xl-8, .py-xl-8
    {
        padding-top: 6rem!important;
    }
    .pr-xl-8, .px-xl-8
    {
        padding-right: 6rem!important;
    }
    .pb-xl-8, .py-xl-8
    {
        padding-bottom: 6rem!important;
    }
    .pl-xl-8, .px-xl-8
    {
        padding-left: 6rem!important;
    }
    .p-xl-9
    {
        padding: 7rem!important;
    }
    .pt-xl-9, .py-xl-9
    {
        padding-top: 7rem!important;
    }
    .pr-xl-9, .px-xl-9
    {
        padding-right: 7rem!important;
    }
    .pb-xl-9, .py-xl-9
    {
        padding-bottom: 7rem!important;
    }
    .pl-xl-9, .px-xl-9
    {
        padding-left: 7rem!important;
    }
    .p-xl-10
    {
        padding: 8rem!important;
    }
    .pt-xl-10, .py-xl-10
    {
        padding-top: 8rem!important;
    }
    .pr-xl-10, .px-xl-10
    {
        padding-right: 8rem!important;
    }
    .pb-xl-10, .py-xl-10
    {
        padding-bottom: 8rem!important;
    }
    .pl-xl-10, .px-xl-10
    {
        padding-left: 8rem!important;
    }
    .m-xl-n1
    {
        margin: -.25rem!important;
    }
    .mt-xl-n1, .my-xl-n1
    {
        margin-top: -.25rem!important;
    }
    .mr-xl-n1, .mx-xl-n1
    {
        margin-right: -.25rem!important;
    }
    .mb-xl-n1, .my-xl-n1
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xl-n1, .mx-xl-n1
    {
        margin-left: -.25rem!important;
    }
    .m-xl-n2
    {
        margin: -.25rem!important;
    }
    .mt-xl-n2, .my-xl-n2
    {
        margin-top: -.25rem!important;
    }
    .mr-xl-n2, .mx-xl-n2
    {
        margin-right: -.25rem!important;
    }
    .mb-xl-n2, .my-xl-n2
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xl-n2, .mx-xl-n2
    {
        margin-left: -.25rem!important;
    }
    .m-xl-n3
    {
        margin: -.25rem!important;
    }
    .mt-xl-n3, .my-xl-n3
    {
        margin-top: -.25rem!important;
    }
    .mr-xl-n3, .mx-xl-n3
    {
        margin-right: -.25rem!important;
    }
    .mb-xl-n3, .my-xl-n3
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xl-n3, .mx-xl-n3
    {
        margin-left: -.25rem!important;
    }
    .m-xl-n4
    {
        margin: -.25rem!important;
    }
    .mt-xl-n4, .my-xl-n4
    {
        margin-top: -.25rem!important;
    }
    .mr-xl-n4, .mx-xl-n4
    {
        margin-right: -.25rem!important;
    }
    .mb-xl-n4, .my-xl-n4
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xl-n4, .mx-xl-n4
    {
        margin-left: -.25rem!important;
    }
    .m-xl-n5
    {
        margin: -.25rem!important;
    }
    .mt-xl-n5, .my-xl-n5
    {
        margin-top: -.25rem!important;
    }
    .mr-xl-n5, .mx-xl-n5
    {
        margin-right: -.25rem!important;
    }
    .mb-xl-n5, .my-xl-n5
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xl-n5, .mx-xl-n5
    {
        margin-left: -.25rem!important;
    }
    .m-xl-n6
    {
        margin: -.25rem!important;
    }
    .mt-xl-n6, .my-xl-n6
    {
        margin-top: -.25rem!important;
    }
    .mr-xl-n6, .mx-xl-n6
    {
        margin-right: -.25rem!important;
    }
    .mb-xl-n6, .my-xl-n6
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xl-n6, .mx-xl-n6
    {
        margin-left: -.25rem!important;
    }
    .m-xl-n7
    {
        margin: -.25rem!important;
    }
    .mt-xl-n7, .my-xl-n7
    {
        margin-top: -.25rem!important;
    }
    .mr-xl-n7, .mx-xl-n7
    {
        margin-right: -.25rem!important;
    }
    .mb-xl-n7, .my-xl-n7
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xl-n7, .mx-xl-n7
    {
        margin-left: -.25rem!important;
    }
    .m-xl-n8
    {
        margin: -.25rem!important;
    }
    .mt-xl-n8, .my-xl-n8
    {
        margin-top: -.25rem!important;
    }
    .mr-xl-n8, .mx-xl-n8
    {
        margin-right: -.25rem!important;
    }
    .mb-xl-n8, .my-xl-n8
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xl-n8, .mx-xl-n8
    {
        margin-left: -.25rem!important;
    }
    .m-xl-n9
    {
        margin: -.25rem!important;
    }
    .mt-xl-n9, .my-xl-n9
    {
        margin-top: -.25rem!important;
    }
    .mr-xl-n9, .mx-xl-n9
    {
        margin-right: -.25rem!important;
    }
    .mb-xl-n9, .my-xl-n9
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xl-n9, .mx-xl-n9
    {
        margin-left: -.25rem!important;
    }
    .m-xl-n10
    {
        margin: -.25rem!important;
    }
    .mt-xl-n10, .my-xl-n10
    {
        margin-top: -.25rem!important;
    }
    .mr-xl-n10, .mx-xl-n10
    {
        margin-right: -.25rem!important;
    }
    .mb-xl-n10, .my-xl-n10
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xl-n10, .mx-xl-n10
    {
        margin-left: -.25rem!important;
    }
    .m-xl-auto
    {
        margin: auto!important;
    }
    .mt-xl-auto, .my-xl-auto
    {
        margin-top: auto!important;
    }
    .mr-xl-auto, .mx-xl-auto
    {
        margin-right: auto!important;
    }
    .mb-xl-auto, .my-xl-auto
    {
        margin-bottom: auto!important;
    }
    .ml-xl-auto, .mx-xl-auto
    {
        margin-left: auto!important;
    }
}
@media(min-width: 1590px)
{
    .m-xxl-0
    {
        margin: 0!important;
    }
    .mt-xxl-0, .my-xxl-0
    {
        margin-top: 0!important;
    }
    .mr-xxl-0, .mx-xxl-0
    {
        margin-right: 0!important;
    }
    .mb-xxl-0, .my-xxl-0
    {
        margin-bottom: 0!important;
    }
    .ml-xxl-0, .mx-xxl-0
    {
        margin-left: 0!important;
    }
    .m-xxl-1
    {
        margin: .25rem!important;
    }
    .mt-xxl-1, .my-xxl-1
    {
        margin-top: .25rem!important;
    }
    .mr-xxl-1, .mx-xxl-1
    {
        margin-right: .25rem!important;
    }
    .mb-xxl-1, .my-xxl-1
    {
        margin-bottom: .25rem!important;
    }
    .ml-xxl-1, .mx-xxl-1
    {
        margin-left: .25rem!important;
    }
    .m-xxl-2
    {
        margin: .5rem!important;
    }
    .mt-xxl-2, .my-xxl-2
    {
        margin-top: .5rem!important;
    }
    .mr-xxl-2, .mx-xxl-2
    {
        margin-right: .5rem!important;
    }
    .mb-xxl-2, .my-xxl-2
    {
        margin-bottom: .5rem!important;
    }
    .ml-xxl-2, .mx-xxl-2
    {
        margin-left: .5rem!important;
    }
    .m-xxl-3
    {
        margin: 1rem!important;
    }
    .mt-xxl-3, .my-xxl-3
    {
        margin-top: 1rem!important;
    }
    .mr-xxl-3, .mx-xxl-3
    {
        margin-right: 1rem!important;
    }
    .mb-xxl-3, .my-xxl-3
    {
        margin-bottom: 1rem!important;
    }
    .ml-xxl-3, .mx-xxl-3
    {
        margin-left: 1rem!important;
    }
    .m-xxl-4
    {
        margin: 1.5rem!important;
    }
    .mt-xxl-4, .my-xxl-4
    {
        margin-top: 1.5rem!important;
    }
    .mr-xxl-4, .mx-xxl-4
    {
        margin-right: 1.5rem!important;
    }
    .mb-xxl-4, .my-xxl-4
    {
        margin-bottom: 1.5rem!important;
    }
    .ml-xxl-4, .mx-xxl-4
    {
        margin-left: 1.5rem!important;
    }
    .m-xxl-5
    {
        margin: 2rem!important;
    }
    .mt-xxl-5, .my-xxl-5
    {
        margin-top: 2rem!important;
    }
    .mr-xxl-5, .mx-xxl-5
    {
        margin-right: 2rem!important;
    }
    .mb-xxl-5, .my-xxl-5
    {
        margin-bottom: 2rem!important;
    }
    .ml-xxl-5, .mx-xxl-5
    {
        margin-left: 2rem!important;
    }
    .m-xxl-6
    {
        margin: 2.5rem!important;
    }
    .mt-xxl-6, .my-xxl-6
    {
        margin-top: 2.5rem!important;
    }
    .mr-xxl-6, .mx-xxl-6
    {
        margin-right: 2.5rem!important;
    }
    .mb-xxl-6, .my-xxl-6
    {
        margin-bottom: 2.5rem!important;
    }
    .ml-xxl-6, .mx-xxl-6
    {
        margin-left: 2.5rem!important;
    }
    .m-xxl-7
    {
        margin: 4rem!important;
    }
    .mt-xxl-7, .my-xxl-7
    {
        margin-top: 4rem!important;
    }
    .mr-xxl-7, .mx-xxl-7
    {
        margin-right: 4rem!important;
    }
    .mb-xxl-7, .my-xxl-7
    {
        margin-bottom: 4rem!important;
    }
    .ml-xxl-7, .mx-xxl-7
    {
        margin-left: 4rem!important;
    }
    .m-xxl-8
    {
        margin: 6rem!important;
    }
    .mt-xxl-8, .my-xxl-8
    {
        margin-top: 6rem!important;
    }
    .mr-xxl-8, .mx-xxl-8
    {
        margin-right: 6rem!important;
    }
    .mb-xxl-8, .my-xxl-8
    {
        margin-bottom: 6rem!important;
    }
    .ml-xxl-8, .mx-xxl-8
    {
        margin-left: 6rem!important;
    }
    .m-xxl-9
    {
        margin: 7rem!important;
    }
    .mt-xxl-9, .my-xxl-9
    {
        margin-top: 7rem!important;
    }
    .mr-xxl-9, .mx-xxl-9
    {
        margin-right: 7rem!important;
    }
    .mb-xxl-9, .my-xxl-9
    {
        margin-bottom: 7rem!important;
    }
    .ml-xxl-9, .mx-xxl-9
    {
        margin-left: 7rem!important;
    }
    .m-xxl-10
    {
        margin: 8rem!important;
    }
    .mt-xxl-10, .my-xxl-10
    {
        margin-top: 8rem!important;
    }
    .mr-xxl-10, .mx-xxl-10
    {
        margin-right: 8rem!important;
    }
    .mb-xxl-10, .my-xxl-10
    {
        margin-bottom: 8rem!important;
    }
    .ml-xxl-10, .mx-xxl-10
    {
        margin-left: 8rem!important;
    }
    .p-xxl-0
    {
        padding: 0!important;
    }
    .pt-xxl-0, .py-xxl-0
    {
        padding-top: 0!important;
    }
    .pr-xxl-0, .px-xxl-0
    {
        padding-right: 0!important;
    }
    .pb-xxl-0, .py-xxl-0
    {
        padding-bottom: 0!important;
    }
    .pl-xxl-0, .px-xxl-0
    {
        padding-left: 0!important;
    }
    .p-xxl-1
    {
        padding: .25rem!important;
    }
    .pt-xxl-1, .py-xxl-1
    {
        padding-top: .25rem!important;
    }
    .pr-xxl-1, .px-xxl-1
    {
        padding-right: .25rem!important;
    }
    .pb-xxl-1, .py-xxl-1
    {
        padding-bottom: .25rem!important;
    }
    .pl-xxl-1, .px-xxl-1
    {
        padding-left: .25rem!important;
    }
    .p-xxl-2
    {
        padding: .5rem!important;
    }
    .pt-xxl-2, .py-xxl-2
    {
        padding-top: .5rem!important;
    }
    .pr-xxl-2, .px-xxl-2
    {
        padding-right: .5rem!important;
    }
    .pb-xxl-2, .py-xxl-2
    {
        padding-bottom: .5rem!important;
    }
    .pl-xxl-2, .px-xxl-2
    {
        padding-left: .5rem!important;
    }
    .p-xxl-3
    {
        padding: 1rem!important;
    }
    .pt-xxl-3, .py-xxl-3
    {
        padding-top: 1rem!important;
    }
    .pr-xxl-3, .px-xxl-3
    {
        padding-right: 1rem!important;
    }
    .pb-xxl-3, .py-xxl-3
    {
        padding-bottom: 1rem!important;
    }
    .pl-xxl-3, .px-xxl-3
    {
        padding-left: 1rem!important;
    }
    .p-xxl-4
    {
        padding: 1.5rem!important;
    }
    .pt-xxl-4, .py-xxl-4
    {
        padding-top: 1.5rem!important;
    }
    .pr-xxl-4, .px-xxl-4
    {
        padding-right: 1.5rem!important;
    }
    .pb-xxl-4, .py-xxl-4
    {
        padding-bottom: 1.5rem!important;
    }
    .pl-xxl-4, .px-xxl-4
    {
        padding-left: 1.5rem!important;
    }
    .p-xxl-5
    {
        padding: 2rem!important;
    }
    .pt-xxl-5, .py-xxl-5
    {
        padding-top: 2rem!important;
    }
    .pr-xxl-5, .px-xxl-5
    {
        padding-right: 2rem!important;
    }
    .pb-xxl-5, .py-xxl-5
    {
        padding-bottom: 2rem!important;
    }
    .pl-xxl-5, .px-xxl-5
    {
        padding-left: 2rem!important;
    }
    .p-xxl-6
    {
        padding: 2.5rem!important;
    }
    .pt-xxl-6, .py-xxl-6
    {
        padding-top: 2.5rem!important;
    }
    .pr-xxl-6, .px-xxl-6
    {
        padding-right: 2.5rem!important;
    }
    .pb-xxl-6, .py-xxl-6
    {
        padding-bottom: 2.5rem!important;
    }
    .pl-xxl-6, .px-xxl-6
    {
        padding-left: 2.5rem!important;
    }
    .p-xxl-7
    {
        padding: 4rem!important;
    }
    .pt-xxl-7, .py-xxl-7
    {
        padding-top: 4rem!important;
    }
    .pr-xxl-7, .px-xxl-7
    {
        padding-right: 4rem!important;
    }
    .pb-xxl-7, .py-xxl-7
    {
        padding-bottom: 4rem!important;
    }
    .pl-xxl-7, .px-xxl-7
    {
        padding-left: 4rem!important;
    }
    .p-xxl-8
    {
        padding: 6rem!important;
    }
    .pt-xxl-8, .py-xxl-8
    {
        padding-top: 6rem!important;
    }
    .pr-xxl-8, .px-xxl-8
    {
        padding-right: 6rem!important;
    }
    .pb-xxl-8, .py-xxl-8
    {
        padding-bottom: 6rem!important;
    }
    .pl-xxl-8, .px-xxl-8
    {
        padding-left: 6rem!important;
    }
    .p-xxl-9
    {
        padding: 7rem!important;
    }
    .pt-xxl-9, .py-xxl-9
    {
        padding-top: 7rem!important;
    }
    .pr-xxl-9, .px-xxl-9
    {
        padding-right: 7rem!important;
    }
    .pb-xxl-9, .py-xxl-9
    {
        padding-bottom: 7rem!important;
    }
    .pl-xxl-9, .px-xxl-9
    {
        padding-left: 7rem!important;
    }
    .p-xxl-10
    {
        padding: 8rem!important;
    }
    .pt-xxl-10, .py-xxl-10
    {
        padding-top: 8rem!important;
    }
    .pr-xxl-10, .px-xxl-10
    {
        padding-right: 8rem!important;
    }
    .pb-xxl-10, .py-xxl-10
    {
        padding-bottom: 8rem!important;
    }
    .pl-xxl-10, .px-xxl-10
    {
        padding-left: 8rem!important;
    }
    .m-xxl-n1
    {
        margin: -.25rem!important;
    }
    .mt-xxl-n1, .my-xxl-n1
    {
        margin-top: -.25rem!important;
    }
    .mr-xxl-n1, .mx-xxl-n1
    {
        margin-right: -.25rem!important;
    }
    .mb-xxl-n1, .my-xxl-n1
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xxl-n1, .mx-xxl-n1
    {
        margin-left: -.25rem!important;
    }
    .m-xxl-n2
    {
        margin: -.25rem!important;
    }
    .mt-xxl-n2, .my-xxl-n2
    {
        margin-top: -.25rem!important;
    }
    .mr-xxl-n2, .mx-xxl-n2
    {
        margin-right: -.25rem!important;
    }
    .mb-xxl-n2, .my-xxl-n2
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xxl-n2, .mx-xxl-n2
    {
        margin-left: -.25rem!important;
    }
    .m-xxl-n3
    {
        margin: -.25rem!important;
    }
    .mt-xxl-n3, .my-xxl-n3
    {
        margin-top: -.25rem!important;
    }
    .mr-xxl-n3, .mx-xxl-n3
    {
        margin-right: -.25rem!important;
    }
    .mb-xxl-n3, .my-xxl-n3
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xxl-n3, .mx-xxl-n3
    {
        margin-left: -.25rem!important;
    }
    .m-xxl-n4
    {
        margin: -.25rem!important;
    }
    .mt-xxl-n4, .my-xxl-n4
    {
        margin-top: -.25rem!important;
    }
    .mr-xxl-n4, .mx-xxl-n4
    {
        margin-right: -.25rem!important;
    }
    .mb-xxl-n4, .my-xxl-n4
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xxl-n4, .mx-xxl-n4
    {
        margin-left: -.25rem!important;
    }
    .m-xxl-n5
    {
        margin: -.25rem!important;
    }
    .mt-xxl-n5, .my-xxl-n5
    {
        margin-top: -.25rem!important;
    }
    .mr-xxl-n5, .mx-xxl-n5
    {
        margin-right: -.25rem!important;
    }
    .mb-xxl-n5, .my-xxl-n5
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xxl-n5, .mx-xxl-n5
    {
        margin-left: -.25rem!important;
    }
    .m-xxl-n6
    {
        margin: -.25rem!important;
    }
    .mt-xxl-n6, .my-xxl-n6
    {
        margin-top: -.25rem!important;
    }
    .mr-xxl-n6, .mx-xxl-n6
    {
        margin-right: -.25rem!important;
    }
    .mb-xxl-n6, .my-xxl-n6
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xxl-n6, .mx-xxl-n6
    {
        margin-left: -.25rem!important;
    }
    .m-xxl-n7
    {
        margin: -.25rem!important;
    }
    .mt-xxl-n7, .my-xxl-n7
    {
        margin-top: -.25rem!important;
    }
    .mr-xxl-n7, .mx-xxl-n7
    {
        margin-right: -.25rem!important;
    }
    .mb-xxl-n7, .my-xxl-n7
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xxl-n7, .mx-xxl-n7
    {
        margin-left: -.25rem!important;
    }
    .m-xxl-n8
    {
        margin: -.25rem!important;
    }
    .mt-xxl-n8, .my-xxl-n8
    {
        margin-top: -.25rem!important;
    }
    .mr-xxl-n8, .mx-xxl-n8
    {
        margin-right: -.25rem!important;
    }
    .mb-xxl-n8, .my-xxl-n8
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xxl-n8, .mx-xxl-n8
    {
        margin-left: -.25rem!important;
    }
    .m-xxl-n9
    {
        margin: -.25rem!important;
    }
    .mt-xxl-n9, .my-xxl-n9
    {
        margin-top: -.25rem!important;
    }
    .mr-xxl-n9, .mx-xxl-n9
    {
        margin-right: -.25rem!important;
    }
    .mb-xxl-n9, .my-xxl-n9
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xxl-n9, .mx-xxl-n9
    {
        margin-left: -.25rem!important;
    }
    .m-xxl-n10
    {
        margin: -.25rem!important;
    }
    .mt-xxl-n10, .my-xxl-n10
    {
        margin-top: -.25rem!important;
    }
    .mr-xxl-n10, .mx-xxl-n10
    {
        margin-right: -.25rem!important;
    }
    .mb-xxl-n10, .my-xxl-n10
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xxl-n10, .mx-xxl-n10
    {
        margin-left: -.25rem!important;
    }
    .m-xxl-auto
    {
        margin: auto!important;
    }
    .mt-xxl-auto, .my-xxl-auto
    {
        margin-top: auto!important;
    }
    .mr-xxl-auto, .mx-xxl-auto
    {
        margin-right: auto!important;
    }
    .mb-xxl-auto, .my-xxl-auto
    {
        margin-bottom: auto!important;
    }
    .ml-xxl-auto, .mx-xxl-auto
    {
        margin-left: auto!important;
    }
}
@media(min-width: 1880px)
{
    .m-xhd-0
    {
        margin: 0!important;
    }
    .mt-xhd-0, .my-xhd-0
    {
        margin-top: 0!important;
    }
    .mr-xhd-0, .mx-xhd-0
    {
        margin-right: 0!important;
    }
    .mb-xhd-0, .my-xhd-0
    {
        margin-bottom: 0!important;
    }
    .ml-xhd-0, .mx-xhd-0
    {
        margin-left: 0!important;
    }
    .m-xhd-1
    {
        margin: .25rem!important;
    }
    .mt-xhd-1, .my-xhd-1
    {
        margin-top: .25rem!important;
    }
    .mr-xhd-1, .mx-xhd-1
    {
        margin-right: .25rem!important;
    }
    .mb-xhd-1, .my-xhd-1
    {
        margin-bottom: .25rem!important;
    }
    .ml-xhd-1, .mx-xhd-1
    {
        margin-left: .25rem!important;
    }
    .m-xhd-2
    {
        margin: .5rem!important;
    }
    .mt-xhd-2, .my-xhd-2
    {
        margin-top: .5rem!important;
    }
    .mr-xhd-2, .mx-xhd-2
    {
        margin-right: .5rem!important;
    }
    .mb-xhd-2, .my-xhd-2
    {
        margin-bottom: .5rem!important;
    }
    .ml-xhd-2, .mx-xhd-2
    {
        margin-left: .5rem!important;
    }
    .m-xhd-3
    {
        margin: 1rem!important;
    }
    .mt-xhd-3, .my-xhd-3
    {
        margin-top: 1rem!important;
    }
    .mr-xhd-3, .mx-xhd-3
    {
        margin-right: 1rem!important;
    }
    .mb-xhd-3, .my-xhd-3
    {
        margin-bottom: 1rem!important;
    }
    .ml-xhd-3, .mx-xhd-3
    {
        margin-left: 1rem!important;
    }
    .m-xhd-4
    {
        margin: 1.5rem!important;
    }
    .mt-xhd-4, .my-xhd-4
    {
        margin-top: 1.5rem!important;
    }
    .mr-xhd-4, .mx-xhd-4
    {
        margin-right: 1.5rem!important;
    }
    .mb-xhd-4, .my-xhd-4
    {
        margin-bottom: 1.5rem!important;
    }
    .ml-xhd-4, .mx-xhd-4
    {
        margin-left: 1.5rem!important;
    }
    .m-xhd-5
    {
        margin: 2rem!important;
    }
    .mt-xhd-5, .my-xhd-5
    {
        margin-top: 2rem!important;
    }
    .mr-xhd-5, .mx-xhd-5
    {
        margin-right: 2rem!important;
    }
    .mb-xhd-5, .my-xhd-5
    {
        margin-bottom: 2rem!important;
    }
    .ml-xhd-5, .mx-xhd-5
    {
        margin-left: 2rem!important;
    }
    .m-xhd-6
    {
        margin: 2.5rem!important;
    }
    .mt-xhd-6, .my-xhd-6
    {
        margin-top: 2.5rem!important;
    }
    .mr-xhd-6, .mx-xhd-6
    {
        margin-right: 2.5rem!important;
    }
    .mb-xhd-6, .my-xhd-6
    {
        margin-bottom: 2.5rem!important;
    }
    .ml-xhd-6, .mx-xhd-6
    {
        margin-left: 2.5rem!important;
    }
    .m-xhd-7
    {
        margin: 4rem!important;
    }
    .mt-xhd-7, .my-xhd-7
    {
        margin-top: 4rem!important;
    }
    .mr-xhd-7, .mx-xhd-7
    {
        margin-right: 4rem!important;
    }
    .mb-xhd-7, .my-xhd-7
    {
        margin-bottom: 4rem!important;
    }
    .ml-xhd-7, .mx-xhd-7
    {
        margin-left: 4rem!important;
    }
    .m-xhd-8
    {
        margin: 6rem!important;
    }
    .mt-xhd-8, .my-xhd-8
    {
        margin-top: 6rem!important;
    }
    .mr-xhd-8, .mx-xhd-8
    {
        margin-right: 6rem!important;
    }
    .mb-xhd-8, .my-xhd-8
    {
        margin-bottom: 6rem!important;
    }
    .ml-xhd-8, .mx-xhd-8
    {
        margin-left: 6rem!important;
    }
    .m-xhd-9
    {
        margin: 7rem!important;
    }
    .mt-xhd-9, .my-xhd-9
    {
        margin-top: 7rem!important;
    }
    .mr-xhd-9, .mx-xhd-9
    {
        margin-right: 7rem!important;
    }
    .mb-xhd-9, .my-xhd-9
    {
        margin-bottom: 7rem!important;
    }
    .ml-xhd-9, .mx-xhd-9
    {
        margin-left: 7rem!important;
    }
    .m-xhd-10
    {
        margin: 8rem!important;
    }
    .mt-xhd-10, .my-xhd-10
    {
        margin-top: 8rem!important;
    }
    .mr-xhd-10, .mx-xhd-10
    {
        margin-right: 8rem!important;
    }
    .mb-xhd-10, .my-xhd-10
    {
        margin-bottom: 8rem!important;
    }
    .ml-xhd-10, .mx-xhd-10
    {
        margin-left: 8rem!important;
    }
    .p-xhd-0
    {
        padding: 0!important;
    }
    .pt-xhd-0, .py-xhd-0
    {
        padding-top: 0!important;
    }
    .pr-xhd-0, .px-xhd-0
    {
        padding-right: 0!important;
    }
    .pb-xhd-0, .py-xhd-0
    {
        padding-bottom: 0!important;
    }
    .pl-xhd-0, .px-xhd-0
    {
        padding-left: 0!important;
    }
    .p-xhd-1
    {
        padding: .25rem!important;
    }
    .pt-xhd-1, .py-xhd-1
    {
        padding-top: .25rem!important;
    }
    .pr-xhd-1, .px-xhd-1
    {
        padding-right: .25rem!important;
    }
    .pb-xhd-1, .py-xhd-1
    {
        padding-bottom: .25rem!important;
    }
    .pl-xhd-1, .px-xhd-1
    {
        padding-left: .25rem!important;
    }
    .p-xhd-2
    {
        padding: .5rem!important;
    }
    .pt-xhd-2, .py-xhd-2
    {
        padding-top: .5rem!important;
    }
    .pr-xhd-2, .px-xhd-2
    {
        padding-right: .5rem!important;
    }
    .pb-xhd-2, .py-xhd-2
    {
        padding-bottom: .5rem!important;
    }
    .pl-xhd-2, .px-xhd-2
    {
        padding-left: .5rem!important;
    }
    .p-xhd-3
    {
        padding: 1rem!important;
    }
    .pt-xhd-3, .py-xhd-3
    {
        padding-top: 1rem!important;
    }
    .pr-xhd-3, .px-xhd-3
    {
        padding-right: 1rem!important;
    }
    .pb-xhd-3, .py-xhd-3
    {
        padding-bottom: 1rem!important;
    }
    .pl-xhd-3, .px-xhd-3
    {
        padding-left: 1rem!important;
    }
    .p-xhd-4
    {
        padding: 1.5rem!important;
    }
    .pt-xhd-4, .py-xhd-4
    {
        padding-top: 1.5rem!important;
    }
    .pr-xhd-4, .px-xhd-4
    {
        padding-right: 1.5rem!important;
    }
    .pb-xhd-4, .py-xhd-4
    {
        padding-bottom: 1.5rem!important;
    }
    .pl-xhd-4, .px-xhd-4
    {
        padding-left: 1.5rem!important;
    }
    .p-xhd-5
    {
        padding: 2rem!important;
    }
    .pt-xhd-5, .py-xhd-5
    {
        padding-top: 2rem!important;
    }
    .pr-xhd-5, .px-xhd-5
    {
        padding-right: 2rem!important;
    }
    .pb-xhd-5, .py-xhd-5
    {
        padding-bottom: 2rem!important;
    }
    .pl-xhd-5, .px-xhd-5
    {
        padding-left: 2rem!important;
    }
    .p-xhd-6
    {
        padding: 2.5rem!important;
    }
    .pt-xhd-6, .py-xhd-6
    {
        padding-top: 2.5rem!important;
    }
    .pr-xhd-6, .px-xhd-6
    {
        padding-right: 2.5rem!important;
    }
    .pb-xhd-6, .py-xhd-6
    {
        padding-bottom: 2.5rem!important;
    }
    .pl-xhd-6, .px-xhd-6
    {
        padding-left: 2.5rem!important;
    }
    .p-xhd-7
    {
        padding: 4rem!important;
    }
    .pt-xhd-7, .py-xhd-7
    {
        padding-top: 4rem!important;
    }
    .pr-xhd-7, .px-xhd-7
    {
        padding-right: 4rem!important;
    }
    .pb-xhd-7, .py-xhd-7
    {
        padding-bottom: 4rem!important;
    }
    .pl-xhd-7, .px-xhd-7
    {
        padding-left: 4rem!important;
    }
    .p-xhd-8
    {
        padding: 6rem!important;
    }
    .pt-xhd-8, .py-xhd-8
    {
        padding-top: 6rem!important;
    }
    .pr-xhd-8, .px-xhd-8
    {
        padding-right: 6rem!important;
    }
    .pb-xhd-8, .py-xhd-8
    {
        padding-bottom: 6rem!important;
    }
    .pl-xhd-8, .px-xhd-8
    {
        padding-left: 6rem!important;
    }
    .p-xhd-9
    {
        padding: 7rem!important;
    }
    .pt-xhd-9, .py-xhd-9
    {
        padding-top: 7rem!important;
    }
    .pr-xhd-9, .px-xhd-9
    {
        padding-right: 7rem!important;
    }
    .pb-xhd-9, .py-xhd-9
    {
        padding-bottom: 7rem!important;
    }
    .pl-xhd-9, .px-xhd-9
    {
        padding-left: 7rem!important;
    }
    .p-xhd-10
    {
        padding: 8rem!important;
    }
    .pt-xhd-10, .py-xhd-10
    {
        padding-top: 8rem!important;
    }
    .pr-xhd-10, .px-xhd-10
    {
        padding-right: 8rem!important;
    }
    .pb-xhd-10, .py-xhd-10
    {
        padding-bottom: 8rem!important;
    }
    .pl-xhd-10, .px-xhd-10
    {
        padding-left: 8rem!important;
    }
    .m-xhd-n1
    {
        margin: -.25rem!important;
    }
    .mt-xhd-n1, .my-xhd-n1
    {
        margin-top: -.25rem!important;
    }
    .mr-xhd-n1, .mx-xhd-n1
    {
        margin-right: -.25rem!important;
    }
    .mb-xhd-n1, .my-xhd-n1
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xhd-n1, .mx-xhd-n1
    {
        margin-left: -.25rem!important;
    }
    .m-xhd-n2
    {
        margin: -.25rem!important;
    }
    .mt-xhd-n2, .my-xhd-n2
    {
        margin-top: -.25rem!important;
    }
    .mr-xhd-n2, .mx-xhd-n2
    {
        margin-right: -.25rem!important;
    }
    .mb-xhd-n2, .my-xhd-n2
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xhd-n2, .mx-xhd-n2
    {
        margin-left: -.25rem!important;
    }
    .m-xhd-n3
    {
        margin: -.25rem!important;
    }
    .mt-xhd-n3, .my-xhd-n3
    {
        margin-top: -.25rem!important;
    }
    .mr-xhd-n3, .mx-xhd-n3
    {
        margin-right: -.25rem!important;
    }
    .mb-xhd-n3, .my-xhd-n3
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xhd-n3, .mx-xhd-n3
    {
        margin-left: -.25rem!important;
    }
    .m-xhd-n4
    {
        margin: -.25rem!important;
    }
    .mt-xhd-n4, .my-xhd-n4
    {
        margin-top: -.25rem!important;
    }
    .mr-xhd-n4, .mx-xhd-n4
    {
        margin-right: -.25rem!important;
    }
    .mb-xhd-n4, .my-xhd-n4
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xhd-n4, .mx-xhd-n4
    {
        margin-left: -.25rem!important;
    }
    .m-xhd-n5
    {
        margin: -.25rem!important;
    }
    .mt-xhd-n5, .my-xhd-n5
    {
        margin-top: -.25rem!important;
    }
    .mr-xhd-n5, .mx-xhd-n5
    {
        margin-right: -.25rem!important;
    }
    .mb-xhd-n5, .my-xhd-n5
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xhd-n5, .mx-xhd-n5
    {
        margin-left: -.25rem!important;
    }
    .m-xhd-n6
    {
        margin: -.25rem!important;
    }
    .mt-xhd-n6, .my-xhd-n6
    {
        margin-top: -.25rem!important;
    }
    .mr-xhd-n6, .mx-xhd-n6
    {
        margin-right: -.25rem!important;
    }
    .mb-xhd-n6, .my-xhd-n6
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xhd-n6, .mx-xhd-n6
    {
        margin-left: -.25rem!important;
    }
    .m-xhd-n7
    {
        margin: -.25rem!important;
    }
    .mt-xhd-n7, .my-xhd-n7
    {
        margin-top: -.25rem!important;
    }
    .mr-xhd-n7, .mx-xhd-n7
    {
        margin-right: -.25rem!important;
    }
    .mb-xhd-n7, .my-xhd-n7
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xhd-n7, .mx-xhd-n7
    {
        margin-left: -.25rem!important;
    }
    .m-xhd-n8
    {
        margin: -.25rem!important;
    }
    .mt-xhd-n8, .my-xhd-n8
    {
        margin-top: -.25rem!important;
    }
    .mr-xhd-n8, .mx-xhd-n8
    {
        margin-right: -.25rem!important;
    }
    .mb-xhd-n8, .my-xhd-n8
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xhd-n8, .mx-xhd-n8
    {
        margin-left: -.25rem!important;
    }
    .m-xhd-n9
    {
        margin: -.25rem!important;
    }
    .mt-xhd-n9, .my-xhd-n9
    {
        margin-top: -.25rem!important;
    }
    .mr-xhd-n9, .mx-xhd-n9
    {
        margin-right: -.25rem!important;
    }
    .mb-xhd-n9, .my-xhd-n9
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xhd-n9, .mx-xhd-n9
    {
        margin-left: -.25rem!important;
    }
    .m-xhd-n10
    {
        margin: -.25rem!important;
    }
    .mt-xhd-n10, .my-xhd-n10
    {
        margin-top: -.25rem!important;
    }
    .mr-xhd-n10, .mx-xhd-n10
    {
        margin-right: -.25rem!important;
    }
    .mb-xhd-n10, .my-xhd-n10
    {
        margin-bottom: -.25rem!important;
    }
    .ml-xhd-n10, .mx-xhd-n10
    {
        margin-left: -.25rem!important;
    }
    .m-xhd-auto
    {
        margin: auto!important;
    }
    .mt-xhd-auto, .my-xhd-auto
    {
        margin-top: auto!important;
    }
    .mr-xhd-auto, .mx-xhd-auto
    {
        margin-right: auto!important;
    }
    .mb-xhd-auto, .my-xhd-auto
    {
        margin-bottom: auto!important;
    }
    .ml-xhd-auto, .mx-xhd-auto
    {
        margin-left: auto!important;
    }
}
.text-monospace
{
    font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important;
}
.text-justify
{
    text-align: justify!important;
}
.text-wrap
{
    white-space: normal!important;
}
.text-nowrap
{
    white-space: nowrap!important;
}
.text-truncate
{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.text-left
{
    text-align: left!important;
}
.text-right
{
    text-align: right!important;
}
.text-center
{
    text-align: center!important;
}
@media(min-width: 576px)
{
    .text-sm-left
    {
        text-align: left!important;
    }
    .text-sm-right
    {
        text-align: right!important;
    }
    .text-sm-center
    {
        text-align: center!important;
    }
}
@media(min-width: 768px)
{
    .text-md-left
    {
        text-align: left!important;
    }
    .text-md-right
    {
        text-align: right!important;
    }
    .text-md-center
    {
        text-align: center!important;
    }
}
@media(min-width: 992px)
{
    .text-lg-left
    {
        text-align: left!important;
    }
    .text-lg-right
    {
        text-align: right!important;
    }
    .text-lg-center
    {
        text-align: center!important;
    }
}
@media(min-width: 1200px)
{
    .text-xl-left
    {
        text-align: left!important;
    }
    .text-xl-right
    {
        text-align: right!important;
    }
    .text-xl-center
    {
        text-align: center!important;
    }
}
@media(min-width: 1590px)
{
    .text-xxl-left
    {
        text-align: left!important;
    }
    .text-xxl-right
    {
        text-align: right!important;
    }
    .text-xxl-center
    {
        text-align: center!important;
    }
}
@media(min-width: 1880px)
{
    .text-xhd-left
    {
        text-align: left!important;
    }
    .text-xhd-right
    {
        text-align: right!important;
    }
    .text-xhd-center
    {
        text-align: center!important;
    }
}
.text-lowercase
{
    text-transform: lowercase!important;
}
.text-uppercase
{
    text-transform: uppercase!important;
}
.text-capitalize
{
    text-transform: capitalize!important;
}
.font-weight-light
{
    font-weight: 300!important;
}
.font-weight-lighter
{
    font-weight: lighter!important;
}
.font-weight-normal
{
    font-weight: 400!important;
}
.font-weight-bold
{
    font-weight: 700!important;
}
.font-weight-bolder
{
    font-weight: bolder!important;
}
.font-italic
{
    font-style: italic!important;
}
.text-white
{
    color: #fff!important;
}
.text-primary
{
    color: #007bff!important;
}
a.text-primary:focus, a.text-primary:hover
{
    color: #0056b3!important;
}
.text-secondary
{
    color: #6c757d!important;
}
a.text-secondary:focus, a.text-secondary:hover
{
    color: #494f54!important;
}
.text-success
{
    color: #28a745!important;
}
a.text-success:focus, a.text-success:hover
{
    color: #19692c!important;
}
.text-info
{
    color: #17a2b8!important;
}
a.text-info:focus, a.text-info:hover
{
    color: #0f6674!important;
}
.text-warning
{
    color: #ffc107!important;
}
a.text-warning:focus, a.text-warning:hover
{
    color: #ba8b00!important;
}
.text-danger
{
    color: #dc3545!important;
}
a.text-danger:focus, a.text-danger:hover
{
    color: #a71d2a!important;
}
.text-light
{
    color: #f8f9fa!important;
}
a.text-light:focus, a.text-light:hover
{
    color: #cbd3da!important;
}
.text-dark
{
    color: #343a40!important;
}
a.text-dark:focus, a.text-dark:hover
{
    color: #121416!important;
}
.text-body
{
    color: #212529!important;
}
.text-muted
{
    color: #6c757d!important;
}
.text-black-50
{
    color: rgba(0,0,0,.5)!important;
}
.text-white-50
{
    color: rgba(255,255,255,.5)!important;
}
.text-hide
{
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}
.text-decoration-none
{
    text-decoration: none!important;
}
.text-break
{
    word-break: break-word!important;
    overflow-wrap: break-word!important;
}
.text-reset
{
    color: inherit!important;
}
.visible
{
    visibility: visible!important;
}
.invisible
{
    visibility: hidden!important;
}
@media print
{
    *, ::after, ::before
    {
        text-shadow: none!important;
        -webkit-box-shadow: none!important;
        box-shadow: none!important;
    }
    a:not(.btn)
    {
        text-decoration: underline;
    }
    abbr[title]::after
    {
        content: " (" attr(title) ")";
    }
    pre
    {
        white-space: pre-wrap!important;
    }
    blockquote, pre
    {
        border: 1px solid #adb5bd;
        page-break-inside: avoid;
    }
    thead
    {
        display: table-header-group;
    }
    img, tr
    {
        page-break-inside: avoid;
    }
    h2, h3, p
    {
        orphans: 3;
        widows: 3;
    }
    h2, h3
    {
        page-break-after: avoid;
    }
    @page
    {
        size: a3;
    }
    body
    {
        min-width: 992px!important;
    }
    .container
    {
        min-width: 992px!important;
    }
    .navbar
    {
        display: none;
    }
    .badge
    {
        border: 1px solid #000;
    }
    .table
    {
        border-collapse: collapse!important;
    }
    .table td, .table th
    {
        background-color: #fff!important;
    }
    .table-bordered td, .table-bordered th
    {
        border: 1px solid #dee2e6!important;
    }
    .table-dark
    {
        color: inherit;
    }
    .table-dark tbody+tbody, .table-dark td, .table-dark th, .table-dark thead th
    {
        border-color: #dee2e6;
    }
    .table .thead-dark th
    {
        color: inherit;
        border-color: #dee2e6;
    }
}
.fa, .fab, .fad, .fal, .far, .fas
{
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}
.fa-lg
{
    font-size: 1.33333em;
    line-height: .75em;
    vertical-align: -.0667em;
}
.fa-xs
{
    font-size: .75em;
}
.fa-sm
{
    font-size: .875em;
}
.fa-1x
{
    font-size: 1em;
}
.fa-2x
{
    font-size: 2em;
}
.fa-3x
{
    font-size: 3em;
}
.fa-4x
{
    font-size: 4em;
}
.fa-5x
{
    font-size: 5em;
}
.fa-6x
{
    font-size: 6em;
}
.fa-7x
{
    font-size: 7em;
}
.fa-8x
{
    font-size: 8em;
}
.fa-9x
{
    font-size: 9em;
}
.fa-10x
{
    font-size: 10em;
}
.fa-fw
{
    text-align: center;
    width: 1.25em;
}
.fa-ul
{
    list-style-type: none;
    margin-left: 2.5em;
    padding-left: 0;
}
.fa-ul>li
{
    position: relative;
}
.fa-li
{
    left: -2em;
    position: absolute;
    text-align: center;
    width: 2em;
    line-height: inherit;
}
.fa-border
{
    border: solid .08em #eee;
    border-radius: .1em;
    padding: .2em .25em .15em;
}
.fa-pull-left
{
    float: left;
}
.fa-pull-right
{
    float: right;
}
.fa.fa-pull-left, .fab.fa-pull-left, .fal.fa-pull-left, .far.fa-pull-left, .fas.fa-pull-left
{
    margin-right: .3em;
}
.fa.fa-pull-right, .fab.fa-pull-right, .fal.fa-pull-right, .far.fa-pull-right, .fas.fa-pull-right
{
    margin-left: .3em;
}
.fa-spin
{
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}
.fa-pulse
{
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin
{
    0%
    {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100%
    {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes fa-spin
{
    0%
    {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100%
    {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.fa-rotate-90
{
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.fa-rotate-180
{
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.fa-rotate-270
{
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}
.fa-flip-horizontal
{
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1,1);
    -ms-transform: scale(-1,1);
    transform: scale(-1,1);
}
.fa-flip-vertical
{
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1,-1);
    -ms-transform: scale(1,-1);
    transform: scale(1,-1);
}
.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical
{
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(-1,-1);
    -ms-transform: scale(-1,-1);
    transform: scale(-1,-1);
}
:root .fa-flip-both, :root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-rotate-90
{
    -webkit-filter: none;
    filter: none;
}
.fa-stack
{
    display: inline-block;
    height: 2em;
    line-height: 2em;
    position: relative;
    vertical-align: middle;
    width: 2.5em;
}
.fa-stack-1x, .fa-stack-2x
{
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
}
.fa-stack-1x
{
    line-height: inherit;
}
.fa-stack-2x
{
    font-size: 2em;
}
.fa-inverse
{
    color: #fff;
}
.fa-500px:before
{
    content: "";
}
.fa-accessible-icon:before
{
    content: "";
}
.fa-accusoft:before
{
    content: "";
}
.fa-acquisitions-incorporated:before
{
    content: "";
}
.fa-ad:before
{
    content: "";
}
.fa-address-book:before
{
    content: "";
}
.fa-address-card:before
{
    content: "";
}
.fa-adjust:before
{
    content: "";
}
.fa-adn:before
{
    content: "";
}
.fa-adobe:before
{
    content: "";
}
.fa-adversal:before
{
    content: "";
}
.fa-affiliatetheme:before
{
    content: "";
}
.fa-air-freshener:before
{
    content: "";
}
.fa-airbnb:before
{
    content: "";
}
.fa-algolia:before
{
    content: "";
}
.fa-align-center:before
{
    content: "";
}
.fa-align-justify:before
{
    content: "";
}
.fa-align-left:before
{
    content: "";
}
.fa-align-right:before
{
    content: "";
}
.fa-alipay:before
{
    content: "";
}
.fa-allergies:before
{
    content: "";
}
.fa-amazon:before
{
    content: "";
}
.fa-amazon-pay:before
{
    content: "";
}
.fa-ambulance:before
{
    content: "";
}
.fa-american-sign-language-interpreting:before
{
    content: "";
}
.fa-amilia:before
{
    content: "";
}
.fa-anchor:before
{
    content: "";
}
.fa-android:before
{
    content: "";
}
.fa-angellist:before
{
    content: "";
}
.fa-angle-double-down:before
{
    content: "";
}
.fa-angle-double-left:before
{
    content: "";
}
.fa-angle-double-right:before
{
    content: "";
}
.fa-angle-double-up:before
{
    content: "";
}
.fa-angle-down:before
{
    content: "";
}
.fa-angle-left:before
{
    content: "";
}
.fa-angle-right:before
{
    content: "";
}
.fa-angle-up:before
{
    content: "";
}
.fa-angry:before
{
    content: "";
}
.fa-angrycreative:before
{
    content: "";
}
.fa-angular:before
{
    content: "";
}
.fa-ankh:before
{
    content: "";
}
.fa-app-store:before
{
    content: "";
}
.fa-app-store-ios:before
{
    content: "";
}
.fa-apper:before
{
    content: "";
}
.fa-apple:before
{
    content: "";
}
.fa-apple-alt:before
{
    content: "";
}
.fa-apple-pay:before
{
    content: "";
}
.fa-archive:before
{
    content: "";
}
.fa-archway:before
{
    content: "";
}
.fa-arrow-alt-circle-down:before
{
    content: "";
}
.fa-arrow-alt-circle-left:before
{
    content: "";
}
.fa-arrow-alt-circle-right:before
{
    content: "";
}
.fa-arrow-alt-circle-up:before
{
    content: "";
}
.fa-arrow-circle-down:before
{
    content: "";
}
.fa-arrow-circle-left:before
{
    content: "";
}
.fa-arrow-circle-right:before
{
    content: "";
}
.fa-arrow-circle-up:before
{
    content: "";
}
.fa-arrow-down:before
{
    content: "";
}
.fa-arrow-left:before
{
    content: "";
}
.fa-arrow-right:before
{
    content: "";
}
.fa-arrow-up:before
{
    content: "";
}
.fa-arrows-alt:before
{
    content: "";
}
.fa-arrows-alt-h:before
{
    content: "";
}
.fa-arrows-alt-v:before
{
    content: "";
}
.fa-artstation:before
{
    content: "";
}
.fa-assistive-listening-systems:before
{
    content: "";
}
.fa-asterisk:before
{
    content: "";
}
.fa-asymmetrik:before
{
    content: "";
}
.fa-at:before
{
    content: "";
}
.fa-atlas:before
{
    content: "";
}
.fa-atlassian:before
{
    content: "";
}
.fa-atom:before
{
    content: "";
}
.fa-audible:before
{
    content: "";
}
.fa-audio-description:before
{
    content: "";
}
.fa-autoprefixer:before
{
    content: "";
}
.fa-avianex:before
{
    content: "";
}
.fa-aviato:before
{
    content: "";
}
.fa-award:before
{
    content: "";
}
.fa-aws:before
{
    content: "";
}
.fa-baby:before
{
    content: "";
}
.fa-baby-carriage:before
{
    content: "";
}
.fa-backspace:before
{
    content: "";
}
.fa-backward:before
{
    content: "";
}
.fa-bacon:before
{
    content: "";
}
.fa-balance-scale:before
{
    content: "";
}
.fa-balance-scale-left:before
{
    content: "";
}
.fa-balance-scale-right:before
{
    content: "";
}
.fa-ban:before
{
    content: "";
}
.fa-band-aid:before
{
    content: "";
}
.fa-bandcamp:before
{
    content: "";
}
.fa-barcode:before
{
    content: "";
}
.fa-bars:before
{
    content: "";
}
.fa-baseball-ball:before
{
    content: "";
}
.fa-basketball-ball:before
{
    content: "";
}
.fa-bath:before
{
    content: "";
}
.fa-battery-empty:before
{
    content: "";
}
.fa-battery-full:before
{
    content: "";
}
.fa-battery-half:before
{
    content: "";
}
.fa-battery-quarter:before
{
    content: "";
}
.fa-battery-three-quarters:before
{
    content: "";
}
.fa-battle-net:before
{
    content: "";
}
.fa-bed:before
{
    content: "";
}
.fa-beer:before
{
    content: "";
}
.fa-behance:before
{
    content: "";
}
.fa-behance-square:before
{
    content: "";
}
.fa-bell:before
{
    content: "";
}
.fa-bell-slash:before
{
    content: "";
}
.fa-bezier-curve:before
{
    content: "";
}
.fa-bible:before
{
    content: "";
}
.fa-bicycle:before
{
    content: "";
}
.fa-biking:before
{
    content: "";
}
.fa-bimobject:before
{
    content: "";
}
.fa-binoculars:before
{
    content: "";
}
.fa-biohazard:before
{
    content: "";
}
.fa-birthday-cake:before
{
    content: "";
}
.fa-bitbucket:before
{
    content: "";
}
.fa-bitcoin:before
{
    content: "";
}
.fa-bity:before
{
    content: "";
}
.fa-black-tie:before
{
    content: "";
}
.fa-blackberry:before
{
    content: "";
}
.fa-blender:before
{
    content: "";
}
.fa-blender-phone:before
{
    content: "";
}
.fa-blind:before
{
    content: "";
}
.fa-blog:before
{
    content: "";
}
.fa-blogger:before
{
    content: "";
}
.fa-blogger-b:before
{
    content: "";
}
.fa-bluetooth:before
{
    content: "";
}
.fa-bluetooth-b:before
{
    content: "";
}
.fa-bold:before
{
    content: "";
}
.fa-bolt:before
{
    content: "";
}
.fa-bomb:before
{
    content: "";
}
.fa-bone:before
{
    content: "";
}
.fa-bong:before
{
    content: "";
}
.fa-book:before
{
    content: "";
}
.fa-book-dead:before
{
    content: "";
}
.fa-book-medical:before
{
    content: "";
}
.fa-book-open:before
{
    content: "";
}
.fa-book-reader:before
{
    content: "";
}
.fa-bookmark:before
{
    content: "";
}
.fa-bootstrap:before
{
    content: "";
}
.fa-border-all:before
{
    content: "";
}
.fa-border-none:before
{
    content: "";
}
.fa-border-style:before
{
    content: "";
}
.fa-bowling-ball:before
{
    content: "";
}
.fa-box:before
{
    content: "";
}
.fa-box-open:before
{
    content: "";
}
.fa-boxes:before
{
    content: "";
}
.fa-braille:before
{
    content: "";
}
.fa-brain:before
{
    content: "";
}
.fa-bread-slice:before
{
    content: "";
}
.fa-briefcase:before
{
    content: "";
}
.fa-briefcase-medical:before
{
    content: "";
}
.fa-broadcast-tower:before
{
    content: "";
}
.fa-broom:before
{
    content: "";
}
.fa-brush:before
{
    content: "";
}
.fa-btc:before
{
    content: "";
}
.fa-buffer:before
{
    content: "";
}
.fa-bug:before
{
    content: "";
}
.fa-building:before
{
    content: "";
}
.fa-bullhorn:before
{
    content: "";
}
.fa-bullseye:before
{
    content: "";
}
.fa-burn:before
{
    content: "";
}
.fa-buromobelexperte:before
{
    content: "";
}
.fa-bus:before
{
    content: "";
}
.fa-bus-alt:before
{
    content: "";
}
.fa-business-time:before
{
    content: "";
}
.fa-buy-n-large:before
{
    content: "";
}
.fa-buysellads:before
{
    content: "";
}
.fa-calculator:before
{
    content: "";
}
.fa-calendar:before
{
    content: "";
}
.fa-calendar-alt:before
{
    content: "";
}
.fa-calendar-check:before
{
    content: "";
}
.fa-calendar-day:before
{
    content: "";
}
.fa-calendar-minus:before
{
    content: "";
}
.fa-calendar-plus:before
{
    content: "";
}
.fa-calendar-times:before
{
    content: "";
}
.fa-calendar-week:before
{
    content: "";
}
.fa-camera:before
{
    content: "";
}
.fa-camera-retro:before
{
    content: "";
}
.fa-campground:before
{
    content: "";
}
.fa-canadian-maple-leaf:before
{
    content: "";
}
.fa-candy-cane:before
{
    content: "";
}
.fa-cannabis:before
{
    content: "";
}
.fa-capsules:before
{
    content: "";
}
.fa-car:before
{
    content: "";
}
.fa-car-alt:before
{
    content: "";
}
.fa-car-battery:before
{
    content: "";
}
.fa-car-crash:before
{
    content: "";
}
.fa-car-side:before
{
    content: "";
}
.fa-caret-down:before
{
    content: "";
}
.fa-caret-left:before
{
    content: "";
}
.fa-caret-right:before
{
    content: "";
}
.fa-caret-square-down:before
{
    content: "";
}
.fa-caret-square-left:before
{
    content: "";
}
.fa-caret-square-right:before
{
    content: "";
}
.fa-caret-square-up:before
{
    content: "";
}
.fa-caret-up:before
{
    content: "";
}
.fa-carrot:before
{
    content: "";
}
.fa-cart-arrow-down:before
{
    content: "";
}
.fa-cart-plus:before
{
    content: "";
}
.fa-cash-register:before
{
    content: "";
}
.fa-cat:before
{
    content: "";
}
.fa-cc-amazon-pay:before
{
    content: "";
}
.fa-cc-amex:before
{
    content: "";
}
.fa-cc-apple-pay:before
{
    content: "";
}
.fa-cc-diners-club:before
{
    content: "";
}
.fa-cc-discover:before
{
    content: "";
}
.fa-cc-jcb:before
{
    content: "";
}
.fa-cc-mastercard:before
{
    content: "";
}
.fa-cc-paypal:before
{
    content: "";
}
.fa-cc-stripe:before
{
    content: "";
}
.fa-cc-visa:before
{
    content: "";
}
.fa-centercode:before
{
    content: "";
}
.fa-centos:before
{
    content: "";
}
.fa-certificate:before
{
    content: "";
}
.fa-chair:before
{
    content: "";
}
.fa-chalkboard:before
{
    content: "";
}
.fa-chalkboard-teacher:before
{
    content: "";
}
.fa-charging-station:before
{
    content: "";
}
.fa-chart-area:before
{
    content: "";
}
.fa-chart-bar:before
{
    content: "";
}
.fa-chart-line:before
{
    content: "";
}
.fa-chart-pie:before
{
    content: "";
}
.fa-check:before
{
    content: "";
}
.fa-check-circle:before
{
    content: "";
}
.fa-check-double:before
{
    content: "";
}
.fa-check-square:before
{
    content: "";
}
.fa-cheese:before
{
    content: "";
}
.fa-chess:before
{
    content: "";
}
.fa-chess-bishop:before
{
    content: "";
}
.fa-chess-board:before
{
    content: "";
}
.fa-chess-king:before
{
    content: "";
}
.fa-chess-knight:before
{
    content: "";
}
.fa-chess-pawn:before
{
    content: "";
}
.fa-chess-queen:before
{
    content: "";
}
.fa-chess-rook:before
{
    content: "";
}
.fa-chevron-circle-down:before
{
    content: "";
}
.fa-chevron-circle-left:before
{
    content: "";
}
.fa-chevron-circle-right:before
{
    content: "";
}
.fa-chevron-circle-up:before
{
    content: "";
}
.fa-chevron-down:before
{
    content: "";
}
.fa-chevron-left:before
{
    content: "";
}
.fa-chevron-right:before
{
    content: "";
}
.fa-chevron-up:before
{
    content: "";
}
.fa-child:before
{
    content: "";
}
.fa-chrome:before
{
    content: "";
}
.fa-chromecast:before
{
    content: "";
}
.fa-church:before
{
    content: "";
}
.fa-circle:before
{
    content: "";
}
.fa-circle-notch:before
{
    content: "";
}
.fa-city:before
{
    content: "";
}
.fa-clinic-medical:before
{
    content: "";
}
.fa-clipboard:before
{
    content: "";
}
.fa-clipboard-check:before
{
    content: "";
}
.fa-clipboard-list:before
{
    content: "";
}
.fa-clock:before
{
    content: "";
}
.fa-clone:before
{
    content: "";
}
.fa-closed-captioning:before
{
    content: "";
}
.fa-cloud:before
{
    content: "";
}
.fa-cloud-download-alt:before
{
    content: "";
}
.fa-cloud-meatball:before
{
    content: "";
}
.fa-cloud-moon:before
{
    content: "";
}
.fa-cloud-moon-rain:before
{
    content: "";
}
.fa-cloud-rain:before
{
    content: "";
}
.fa-cloud-showers-heavy:before
{
    content: "";
}
.fa-cloud-sun:before
{
    content: "";
}
.fa-cloud-sun-rain:before
{
    content: "";
}
.fa-cloud-upload-alt:before
{
    content: "";
}
.fa-cloudscale:before
{
    content: "";
}
.fa-cloudsmith:before
{
    content: "";
}
.fa-cloudversify:before
{
    content: "";
}
.fa-cocktail:before
{
    content: "";
}
.fa-code:before
{
    content: "";
}
.fa-code-branch:before
{
    content: "";
}
.fa-codepen:before
{
    content: "";
}
.fa-codiepie:before
{
    content: "";
}
.fa-coffee:before
{
    content: "";
}
.fa-cog:before
{
    content: "";
}
.fa-cogs:before
{
    content: "";
}
.fa-coins:before
{
    content: "";
}
.fa-columns:before
{
    content: "";
}
.fa-comment:before
{
    content: "";
}
.fa-comment-alt:before
{
    content: "";
}
.fa-comment-dollar:before
{
    content: "";
}
.fa-comment-dots:before
{
    content: "";
}
.fa-comment-medical:before
{
    content: "";
}
.fa-comment-slash:before
{
    content: "";
}
.fa-comments:before
{
    content: "";
}
.fa-comments-dollar:before
{
    content: "";
}
.fa-compact-disc:before
{
    content: "";
}
.fa-compass:before
{
    content: "";
}
.fa-compress:before
{
    content: "";
}
.fa-compress-arrows-alt:before
{
    content: "";
}
.fa-concierge-bell:before
{
    content: "";
}
.fa-confluence:before
{
    content: "";
}
.fa-connectdevelop:before
{
    content: "";
}
.fa-contao:before
{
    content: "";
}
.fa-cookie:before
{
    content: "";
}
.fa-cookie-bite:before
{
    content: "";
}
.fa-copy:before
{
    content: "";
}
.fa-copyright:before
{
    content: "";
}
.fa-cotton-bureau:before
{
    content: "";
}
.fa-couch:before
{
    content: "";
}
.fa-cpanel:before
{
    content: "";
}
.fa-creative-commons:before
{
    content: "";
}
.fa-creative-commons-by:before
{
    content: "";
}
.fa-creative-commons-nc:before
{
    content: "";
}
.fa-creative-commons-nc-eu:before
{
    content: "";
}
.fa-creative-commons-nc-jp:before
{
    content: "";
}
.fa-creative-commons-nd:before
{
    content: "";
}
.fa-creative-commons-pd:before
{
    content: "";
}
.fa-creative-commons-pd-alt:before
{
    content: "";
}
.fa-creative-commons-remix:before
{
    content: "";
}
.fa-creative-commons-sa:before
{
    content: "";
}
.fa-creative-commons-sampling:before
{
    content: "";
}
.fa-creative-commons-sampling-plus:before
{
    content: "";
}
.fa-creative-commons-share:before
{
    content: "";
}
.fa-creative-commons-zero:before
{
    content: "";
}
.fa-credit-card:before
{
    content: "";
}
.fa-critical-role:before
{
    content: "";
}
.fa-crop:before
{
    content: "";
}
.fa-crop-alt:before
{
    content: "";
}
.fa-cross:before
{
    content: "";
}
.fa-crosshairs:before
{
    content: "";
}
.fa-crow:before
{
    content: "";
}
.fa-crown:before
{
    content: "";
}
.fa-crutch:before
{
    content: "";
}
.fa-css3:before
{
    content: "";
}
.fa-css3-alt:before
{
    content: "";
}
.fa-cube:before
{
    content: "";
}
.fa-cubes:before
{
    content: "";
}
.fa-cut:before
{
    content: "";
}
.fa-cuttlefish:before
{
    content: "";
}
.fa-d-and-d:before
{
    content: "";
}
.fa-d-and-d-beyond:before
{
    content: "";
}
.fa-dashcube:before
{
    content: "";
}
.fa-database:before
{
    content: "";
}
.fa-deaf:before
{
    content: "";
}
.fa-delicious:before
{
    content: "";
}
.fa-democrat:before
{
    content: "";
}
.fa-deploydog:before
{
    content: "";
}
.fa-deskpro:before
{
    content: "";
}
.fa-desktop:before
{
    content: "";
}
.fa-dev:before
{
    content: "";
}
.fa-deviantart:before
{
    content: "";
}
.fa-dharmachakra:before
{
    content: "";
}
.fa-dhl:before
{
    content: "";
}
.fa-diagnoses:before
{
    content: "";
}
.fa-diaspora:before
{
    content: "";
}
.fa-dice:before
{
    content: "";
}
.fa-dice-d20:before
{
    content: "";
}
.fa-dice-d6:before
{
    content: "";
}
.fa-dice-five:before
{
    content: "";
}
.fa-dice-four:before
{
    content: "";
}
.fa-dice-one:before
{
    content: "";
}
.fa-dice-six:before
{
    content: "";
}
.fa-dice-three:before
{
    content: "";
}
.fa-dice-two:before
{
    content: "";
}
.fa-digg:before
{
    content: "";
}
.fa-digital-ocean:before
{
    content: "";
}
.fa-digital-tachograph:before
{
    content: "";
}
.fa-directions:before
{
    content: "";
}
.fa-discord:before
{
    content: "";
}
.fa-discourse:before
{
    content: "";
}
.fa-divide:before
{
    content: "";
}
.fa-dizzy:before
{
    content: "";
}
.fa-dna:before
{
    content: "";
}
.fa-dochub:before
{
    content: "";
}
.fa-docker:before
{
    content: "";
}
.fa-dog:before
{
    content: "";
}
.fa-dollar-sign:before
{
    content: "";
}
.fa-dolly:before
{
    content: "";
}
.fa-dolly-flatbed:before
{
    content: "";
}
.fa-donate:before
{
    content: "";
}
.fa-door-closed:before
{
    content: "";
}
.fa-door-open:before
{
    content: "";
}
.fa-dot-circle:before
{
    content: "";
}
.fa-dove:before
{
    content: "";
}
.fa-download:before
{
    content: "";
}
.fa-draft2digital:before
{
    content: "";
}
.fa-drafting-compass:before
{
    content: "";
}
.fa-dragon:before
{
    content: "";
}
.fa-draw-polygon:before
{
    content: "";
}
.fa-dribbble:before
{
    content: "";
}
.fa-dribbble-square:before
{
    content: "";
}
.fa-dropbox:before
{
    content: "";
}
.fa-drum:before
{
    content: "";
}
.fa-drum-steelpan:before
{
    content: "";
}
.fa-drumstick-bite:before
{
    content: "";
}
.fa-drupal:before
{
    content: "";
}
.fa-dumbbell:before
{
    content: "";
}
.fa-dumpster:before
{
    content: "";
}
.fa-dumpster-fire:before
{
    content: "";
}
.fa-dungeon:before
{
    content: "";
}
.fa-dyalog:before
{
    content: "";
}
.fa-earlybirds:before
{
    content: "";
}
.fa-ebay:before
{
    content: "";
}
.fa-edge:before
{
    content: "";
}
.fa-edit:before
{
    content: "";
}
.fa-egg:before
{
    content: "";
}
.fa-eject:before
{
    content: "";
}
.fa-elementor:before
{
    content: "";
}
.fa-ellipsis-h:before
{
    content: "";
}
.fa-ellipsis-v:before
{
    content: "";
}
.fa-ello:before
{
    content: "";
}
.fa-ember:before
{
    content: "";
}
.fa-empire:before
{
    content: "";
}
.fa-envelope:before
{
    content: "";
}
.fa-envelope-open:before
{
    content: "";
}
.fa-envelope-open-text:before
{
    content: "";
}
.fa-envelope-square:before
{
    content: "";
}
.fa-envira:before
{
    content: "";
}
.fa-equals:before
{
    content: "";
}
.fa-eraser:before
{
    content: "";
}
.fa-erlang:before
{
    content: "";
}
.fa-ethereum:before
{
    content: "";
}
.fa-ethernet:before
{
    content: "";
}
.fa-etsy:before
{
    content: "";
}
.fa-euro-sign:before
{
    content: "";
}
.fa-evernote:before
{
    content: "";
}
.fa-exchange-alt:before
{
    content: "";
}
.fa-exclamation:before
{
    content: "";
}
.fa-exclamation-circle:before
{
    content: "";
}
.fa-exclamation-triangle:before
{
    content: "";
}
.fa-expand:before
{
    content: "";
}
.fa-expand-arrows-alt:before
{
    content: "";
}
.fa-expeditedssl:before
{
    content: "";
}
.fa-external-link-alt:before
{
    content: "";
}
.fa-external-link-square-alt:before
{
    content: "";
}
.fa-eye:before
{
    content: "";
}
.fa-eye-dropper:before
{
    content: "";
}
.fa-eye-slash:before
{
    content: "";
}
.fa-facebook:before
{
    content: "";
}
.fa-facebook-f:before
{
    content: "";
}
.fa-facebook-messenger:before
{
    content: "";
}
.fa-facebook-square:before
{
    content: "";
}
.fa-fan:before
{
    content: "";
}
.fa-fantasy-flight-games:before
{
    content: "";
}
.fa-fast-backward:before
{
    content: "";
}
.fa-fast-forward:before
{
    content: "";
}
.fa-fax:before
{
    content: "";
}
.fa-feather:before
{
    content: "";
}
.fa-feather-alt:before
{
    content: "";
}
.fa-fedex:before
{
    content: "";
}
.fa-fedora:before
{
    content: "";
}
.fa-female:before
{
    content: "";
}
.fa-fighter-jet:before
{
    content: "";
}
.fa-figma:before
{
    content: "";
}
.fa-file:before
{
    content: "";
}
.fa-file-alt:before
{
    content: "";
}
.fa-file-archive:before
{
    content: "";
}
.fa-file-audio:before
{
    content: "";
}
.fa-file-code:before
{
    content: "";
}
.fa-file-contract:before
{
    content: "";
}
.fa-file-csv:before
{
    content: "";
}
.fa-file-download:before
{
    content: "";
}
.fa-file-excel:before
{
    content: "";
}
.fa-file-export:before
{
    content: "";
}
.fa-file-image:before
{
    content: "";
}
.fa-file-import:before
{
    content: "";
}
.fa-file-invoice:before
{
    content: "";
}
.fa-file-invoice-dollar:before
{
    content: "";
}
.fa-file-medical:before
{
    content: "";
}
.fa-file-medical-alt:before
{
    content: "";
}
.fa-file-pdf:before
{
    content: "";
}
.fa-file-powerpoint:before
{
    content: "";
}
.fa-file-prescription:before
{
    content: "";
}
.fa-file-signature:before
{
    content: "";
}
.fa-file-upload:before
{
    content: "";
}
.fa-file-video:before
{
    content: "";
}
.fa-file-word:before
{
    content: "";
}
.fa-fill:before
{
    content: "";
}
.fa-fill-drip:before
{
    content: "";
}
.fa-film:before
{
    content: "";
}
.fa-filter:before
{
    content: "";
}
.fa-fingerprint:before
{
    content: "";
}
.fa-fire:before
{
    content: "";
}
.fa-fire-alt:before
{
    content: "";
}
.fa-fire-extinguisher:before
{
    content: "";
}
.fa-firefox:before
{
    content: "";
}
.fa-first-aid:before
{
    content: "";
}
.fa-first-order:before
{
    content: "";
}
.fa-first-order-alt:before
{
    content: "";
}
.fa-firstdraft:before
{
    content: "";
}
.fa-fish:before
{
    content: "";
}
.fa-fist-raised:before
{
    content: "";
}
.fa-flag:before
{
    content: "";
}
.fa-flag-checkered:before
{
    content: "";
}
.fa-flag-usa:before
{
    content: "";
}
.fa-flask:before
{
    content: "";
}
.fa-flickr:before
{
    content: "";
}
.fa-flipboard:before
{
    content: "";
}
.fa-flushed:before
{
    content: "";
}
.fa-fly:before
{
    content: "";
}
.fa-folder:before
{
    content: "";
}
.fa-folder-minus:before
{
    content: "";
}
.fa-folder-open:before
{
    content: "";
}
.fa-folder-plus:before
{
    content: "";
}
.fa-font:before
{
    content: "";
}
.fa-font-awesome:before
{
    content: "";
}
.fa-font-awesome-alt:before
{
    content: "";
}
.fa-font-awesome-flag:before
{
    content: "";
}
.fa-font-awesome-logo-full:before
{
    content: "";
}
.fa-fonticons:before
{
    content: "";
}
.fa-fonticons-fi:before
{
    content: "";
}
.fa-football-ball:before
{
    content: "";
}
.fa-fort-awesome:before
{
    content: "";
}
.fa-fort-awesome-alt:before
{
    content: "";
}
.fa-forumbee:before
{
    content: "";
}
.fa-forward:before
{
    content: "";
}
.fa-foursquare:before
{
    content: "";
}
.fa-free-code-camp:before
{
    content: "";
}
.fa-freebsd:before
{
    content: "";
}
.fa-frog:before
{
    content: "";
}
.fa-frown:before
{
    content: "";
}
.fa-frown-open:before
{
    content: "";
}
.fa-fulcrum:before
{
    content: "";
}
.fa-funnel-dollar:before
{
    content: "";
}
.fa-futbol:before
{
    content: "";
}
.fa-galactic-republic:before
{
    content: "";
}
.fa-galactic-senate:before
{
    content: "";
}
.fa-gamepad:before
{
    content: "";
}
.fa-gas-pump:before
{
    content: "";
}
.fa-gavel:before
{
    content: "";
}
.fa-gem:before
{
    content: "";
}
.fa-genderless:before
{
    content: "";
}
.fa-get-pocket:before
{
    content: "";
}
.fa-gg:before
{
    content: "";
}
.fa-gg-circle:before
{
    content: "";
}
.fa-ghost:before
{
    content: "";
}
.fa-gift:before
{
    content: "";
}
.fa-gifts:before
{
    content: "";
}
.fa-git:before
{
    content: "";
}
.fa-git-alt:before
{
    content: "";
}
.fa-git-square:before
{
    content: "";
}
.fa-github:before
{
    content: "";
}
.fa-github-alt:before
{
    content: "";
}
.fa-github-square:before
{
    content: "";
}
.fa-gitkraken:before
{
    content: "";
}
.fa-gitlab:before
{
    content: "";
}
.fa-gitter:before
{
    content: "";
}
.fa-glass-cheers:before
{
    content: "";
}
.fa-glass-martini:before
{
    content: "";
}
.fa-glass-martini-alt:before
{
    content: "";
}
.fa-glass-whiskey:before
{
    content: "";
}
.fa-glasses:before
{
    content: "";
}
.fa-glide:before
{
    content: "";
}
.fa-glide-g:before
{
    content: "";
}
.fa-globe:before
{
    content: "";
}
.fa-globe-africa:before
{
    content: "";
}
.fa-globe-americas:before
{
    content: "";
}
.fa-globe-asia:before
{
    content: "";
}
.fa-globe-europe:before
{
    content: "";
}
.fa-gofore:before
{
    content: "";
}
.fa-golf-ball:before
{
    content: "";
}
.fa-goodreads:before
{
    content: "";
}
.fa-goodreads-g:before
{
    content: "";
}
.fa-google:before
{
    content: "";
}
.fa-google-drive:before
{
    content: "";
}
.fa-google-play:before
{
    content: "";
}
.fa-google-plus:before
{
    content: "";
}
.fa-google-plus-g:before
{
    content: "";
}
.fa-google-plus-square:before
{
    content: "";
}
.fa-google-wallet:before
{
    content: "";
}
.fa-gopuram:before
{
    content: "";
}
.fa-graduation-cap:before
{
    content: "";
}
.fa-gratipay:before
{
    content: "";
}
.fa-grav:before
{
    content: "";
}
.fa-greater-than:before
{
    content: "";
}
.fa-greater-than-equal:before
{
    content: "";
}
.fa-grimace:before
{
    content: "";
}
.fa-grin:before
{
    content: "";
}
.fa-grin-alt:before
{
    content: "";
}
.fa-grin-beam:before
{
    content: "";
}
.fa-grin-beam-sweat:before
{
    content: "";
}
.fa-grin-hearts:before
{
    content: "";
}
.fa-grin-squint:before
{
    content: "";
}
.fa-grin-squint-tears:before
{
    content: "";
}
.fa-grin-stars:before
{
    content: "";
}
.fa-grin-tears:before
{
    content: "";
}
.fa-grin-tongue:before
{
    content: "";
}
.fa-grin-tongue-squint:before
{
    content: "";
}
.fa-grin-tongue-wink:before
{
    content: "";
}
.fa-grin-wink:before
{
    content: "";
}
.fa-grip-horizontal:before
{
    content: "";
}
.fa-grip-lines:before
{
    content: "";
}
.fa-grip-lines-vertical:before
{
    content: "";
}
.fa-grip-vertical:before
{
    content: "";
}
.fa-gripfire:before
{
    content: "";
}
.fa-grunt:before
{
    content: "";
}
.fa-guitar:before
{
    content: "";
}
.fa-gulp:before
{
    content: "";
}
.fa-h-square:before
{
    content: "";
}
.fa-hacker-news:before
{
    content: "";
}
.fa-hacker-news-square:before
{
    content: "";
}
.fa-hackerrank:before
{
    content: "";
}
.fa-hamburger:before
{
    content: "";
}
.fa-hammer:before
{
    content: "";
}
.fa-hamsa:before
{
    content: "";
}
.fa-hand-holding:before
{
    content: "";
}
.fa-hand-holding-heart:before
{
    content: "";
}
.fa-hand-holding-usd:before
{
    content: "";
}
.fa-hand-lizard:before
{
    content: "";
}
.fa-hand-middle-finger:before
{
    content: "";
}
.fa-hand-paper:before
{
    content: "";
}
.fa-hand-peace:before
{
    content: "";
}
.fa-hand-point-down:before
{
    content: "";
}
.fa-hand-point-left:before
{
    content: "";
}
.fa-hand-point-right:before
{
    content: "";
}
.fa-hand-point-up:before
{
    content: "";
}
.fa-hand-pointer:before
{
    content: "";
}
.fa-hand-rock:before
{
    content: "";
}
.fa-hand-scissors:before
{
    content: "";
}
.fa-hand-spock:before
{
    content: "";
}
.fa-hands:before
{
    content: "";
}
.fa-hands-helping:before
{
    content: "";
}
.fa-handshake:before
{
    content: "";
}
.fa-hanukiah:before
{
    content: "";
}
.fa-hard-hat:before
{
    content: "";
}
.fa-hashtag:before
{
    content: "";
}
.fa-hat-cowboy:before
{
    content: "";
}
.fa-hat-cowboy-side:before
{
    content: "";
}
.fa-hat-wizard:before
{
    content: "";
}
.fa-haykal:before
{
    content: "";
}
.fa-hdd:before
{
    content: "";
}
.fa-heading:before
{
    content: "";
}
.fa-headphones:before
{
    content: "";
}
.fa-headphones-alt:before
{
    content: "";
}
.fa-headset:before
{
    content: "";
}
.fa-heart:before
{
    content: "";
}
.fa-heart-broken:before
{
    content: "";
}
.fa-heartbeat:before
{
    content: "";
}
.fa-helicopter:before
{
    content: "";
}
.fa-highlighter:before
{
    content: "";
}
.fa-hiking:before
{
    content: "";
}
.fa-hippo:before
{
    content: "";
}
.fa-hips:before
{
    content: "";
}
.fa-hire-a-helper:before
{
    content: "";
}
.fa-history:before
{
    content: "";
}
.fa-hockey-puck:before
{
    content: "";
}
.fa-holly-berry:before
{
    content: "";
}
.fa-home:before
{
    content: "";
}
.fa-hooli:before
{
    content: "";
}
.fa-hornbill:before
{
    content: "";
}
.fa-horse:before
{
    content: "";
}
.fa-horse-head:before
{
    content: "";
}
.fa-hospital:before
{
    content: "";
}
.fa-hospital-alt:before
{
    content: "";
}
.fa-hospital-symbol:before
{
    content: "";
}
.fa-hot-tub:before
{
    content: "";
}
.fa-hotdog:before
{
    content: "";
}
.fa-hotel:before
{
    content: "";
}
.fa-hotjar:before
{
    content: "";
}
.fa-hourglass:before
{
    content: "";
}
.fa-hourglass-end:before
{
    content: "";
}
.fa-hourglass-half:before
{
    content: "";
}
.fa-hourglass-start:before
{
    content: "";
}
.fa-house-damage:before
{
    content: "";
}
.fa-houzz:before
{
    content: "";
}
.fa-hryvnia:before
{
    content: "";
}
.fa-html5:before
{
    content: "";
}
.fa-hubspot:before
{
    content: "";
}
.fa-i-cursor:before
{
    content: "";
}
.fa-ice-cream:before
{
    content: "";
}
.fa-icicles:before
{
    content: "";
}
.fa-icons:before
{
    content: "";
}
.fa-id-badge:before
{
    content: "";
}
.fa-id-card:before
{
    content: "";
}
.fa-id-card-alt:before
{
    content: "";
}
.fa-igloo:before
{
    content: "";
}
.fa-image:before
{
    content: "";
}
.fa-images:before
{
    content: "";
}
.fa-imdb:before
{
    content: "";
}
.fa-inbox:before
{
    content: "";
}
.fa-indent:before
{
    content: "";
}
.fa-industry:before
{
    content: "";
}
.fa-infinity:before
{
    content: "";
}
.fa-info:before
{
    content: "";
}
.fa-info-circle:before
{
    content: "";
}
.fa-instagram:before
{
    content: "";
}
.fa-intercom:before
{
    content: "";
}
.fa-internet-explorer:before
{
    content: "";
}
.fa-invision:before
{
    content: "";
}
.fa-ioxhost:before
{
    content: "";
}
.fa-italic:before
{
    content: "";
}
.fa-itch-io:before
{
    content: "";
}
.fa-itunes:before
{
    content: "";
}
.fa-itunes-note:before
{
    content: "";
}
.fa-java:before
{
    content: "";
}
.fa-jedi:before
{
    content: "";
}
.fa-jedi-order:before
{
    content: "";
}
.fa-jenkins:before
{
    content: "";
}
.fa-jira:before
{
    content: "";
}
.fa-joget:before
{
    content: "";
}
.fa-joint:before
{
    content: "";
}
.fa-joomla:before
{
    content: "";
}
.fa-journal-whills:before
{
    content: "";
}
.fa-js:before
{
    content: "";
}
.fa-js-square:before
{
    content: "";
}
.fa-jsfiddle:before
{
    content: "";
}
.fa-kaaba:before
{
    content: "";
}
.fa-kaggle:before
{
    content: "";
}
.fa-key:before
{
    content: "";
}
.fa-keybase:before
{
    content: "";
}
.fa-keyboard:before
{
    content: "";
}
.fa-keycdn:before
{
    content: "";
}
.fa-khanda:before
{
    content: "";
}
.fa-kickstarter:before
{
    content: "";
}
.fa-kickstarter-k:before
{
    content: "";
}
.fa-kiss:before
{
    content: "";
}
.fa-kiss-beam:before
{
    content: "";
}
.fa-kiss-wink-heart:before
{
    content: "";
}
.fa-kiwi-bird:before
{
    content: "";
}
.fa-korvue:before
{
    content: "";
}
.fa-landmark:before
{
    content: "";
}
.fa-language:before
{
    content: "";
}
.fa-laptop:before
{
    content: "";
}
.fa-laptop-code:before
{
    content: "";
}
.fa-laptop-medical:before
{
    content: "";
}
.fa-laravel:before
{
    content: "";
}
.fa-lastfm:before
{
    content: "";
}
.fa-lastfm-square:before
{
    content: "";
}
.fa-laugh:before
{
    content: "";
}
.fa-laugh-beam:before
{
    content: "";
}
.fa-laugh-squint:before
{
    content: "";
}
.fa-laugh-wink:before
{
    content: "";
}
.fa-layer-group:before
{
    content: "";
}
.fa-leaf:before
{
    content: "";
}
.fa-leanpub:before
{
    content: "";
}
.fa-lemon:before
{
    content: "";
}
.fa-less:before
{
    content: "";
}
.fa-less-than:before
{
    content: "";
}
.fa-less-than-equal:before
{
    content: "";
}
.fa-level-down-alt:before
{
    content: "";
}
.fa-level-up-alt:before
{
    content: "";
}
.fa-life-ring:before
{
    content: "";
}
.fa-lightbulb:before
{
    content: "";
}
.fa-line:before
{
    content: "";
}
.fa-link:before
{
    content: "";
}
.fa-linkedin:before
{
    content: "";
}
.fa-linkedin-in:before
{
    content: "";
}
.fa-linode:before
{
    content: "";
}
.fa-linux:before
{
    content: "";
}
.fa-lira-sign:before
{
    content: "";
}
.fa-list:before
{
    content: "";
}
.fa-list-alt:before
{
    content: "";
}
.fa-list-ol:before
{
    content: "";
}
.fa-list-ul:before
{
    content: "";
}
.fa-location-arrow:before
{
    content: "";
}
.fa-lock:before
{
    content: "";
}
.fa-lock-open:before
{
    content: "";
}
.fa-long-arrow-alt-down:before
{
    content: "";
}
.fa-long-arrow-alt-left:before
{
    content: "";
}
.fa-long-arrow-alt-right:before
{
    content: "";
}
.fa-long-arrow-alt-up:before
{
    content: "";
}
.fa-low-vision:before
{
    content: "";
}
.fa-luggage-cart:before
{
    content: "";
}
.fa-lyft:before
{
    content: "";
}
.fa-magento:before
{
    content: "";
}
.fa-magic:before
{
    content: "";
}
.fa-magnet:before
{
    content: "";
}
.fa-mail-bulk:before
{
    content: "";
}
.fa-mailchimp:before
{
    content: "";
}
.fa-male:before
{
    content: "";
}
.fa-mandalorian:before
{
    content: "";
}
.fa-map:before
{
    content: "";
}
.fa-map-marked:before
{
    content: "";
}
.fa-map-marked-alt:before
{
    content: "";
}
.fa-map-marker:before
{
    content: "";
}
.fa-map-marker-alt:before
{
    content: "";
}
.fa-map-pin:before
{
    content: "";
}
.fa-map-signs:before
{
    content: "";
}
.fa-markdown:before
{
    content: "";
}
.fa-marker:before
{
    content: "";
}
.fa-mars:before
{
    content: "";
}
.fa-mars-double:before
{
    content: "";
}
.fa-mars-stroke:before
{
    content: "";
}
.fa-mars-stroke-h:before
{
    content: "";
}
.fa-mars-stroke-v:before
{
    content: "";
}
.fa-mask:before
{
    content: "";
}
.fa-mastodon:before
{
    content: "";
}
.fa-maxcdn:before
{
    content: "";
}
.fa-mdb:before
{
    content: "";
}
.fa-medal:before
{
    content: "";
}
.fa-medapps:before
{
    content: "";
}
.fa-medium:before
{
    content: "";
}
.fa-medium-m:before
{
    content: "";
}
.fa-medkit:before
{
    content: "";
}
.fa-medrt:before
{
    content: "";
}
.fa-meetup:before
{
    content: "";
}
.fa-megaport:before
{
    content: "";
}
.fa-meh:before
{
    content: "";
}
.fa-meh-blank:before
{
    content: "";
}
.fa-meh-rolling-eyes:before
{
    content: "";
}
.fa-memory:before
{
    content: "";
}
.fa-mendeley:before
{
    content: "";
}
.fa-menorah:before
{
    content: "";
}
.fa-mercury:before
{
    content: "";
}
.fa-meteor:before
{
    content: "";
}
.fa-microchip:before
{
    content: "";
}
.fa-microphone:before
{
    content: "";
}
.fa-microphone-alt:before
{
    content: "";
}
.fa-microphone-alt-slash:before
{
    content: "";
}
.fa-microphone-slash:before
{
    content: "";
}
.fa-microscope:before
{
    content: "";
}
.fa-microsoft:before
{
    content: "";
}
.fa-minus:before
{
    content: "";
}
.fa-minus-circle:before
{
    content: "";
}
.fa-minus-square:before
{
    content: "";
}
.fa-mitten:before
{
    content: "";
}
.fa-mix:before
{
    content: "";
}
.fa-mixcloud:before
{
    content: "";
}
.fa-mizuni:before
{
    content: "";
}
.fa-mobile:before
{
    content: "";
}
.fa-mobile-alt:before
{
    content: "";
}
.fa-modx:before
{
    content: "";
}
.fa-monero:before
{
    content: "";
}
.fa-money-bill:before
{
    content: "";
}
.fa-money-bill-alt:before
{
    content: "";
}
.fa-money-bill-wave:before
{
    content: "";
}
.fa-money-bill-wave-alt:before
{
    content: "";
}
.fa-money-check:before
{
    content: "";
}
.fa-money-check-alt:before
{
    content: "";
}
.fa-monument:before
{
    content: "";
}
.fa-moon:before
{
    content: "";
}
.fa-mortar-pestle:before
{
    content: "";
}
.fa-mosque:before
{
    content: "";
}
.fa-motorcycle:before
{
    content: "";
}
.fa-mountain:before
{
    content: "";
}
.fa-mouse:before
{
    content: "";
}
.fa-mouse-pointer:before
{
    content: "";
}
.fa-mug-hot:before
{
    content: "";
}
.fa-music:before
{
    content: "";
}
.fa-napster:before
{
    content: "";
}
.fa-neos:before
{
    content: "";
}
.fa-network-wired:before
{
    content: "";
}
.fa-neuter:before
{
    content: "";
}
.fa-newspaper:before
{
    content: "";
}
.fa-nimblr:before
{
    content: "";
}
.fa-node:before
{
    content: "";
}
.fa-node-js:before
{
    content: "";
}
.fa-not-equal:before
{
    content: "";
}
.fa-notes-medical:before
{
    content: "";
}
.fa-npm:before
{
    content: "";
}
.fa-ns8:before
{
    content: "";
}
.fa-nutritionix:before
{
    content: "";
}
.fa-object-group:before
{
    content: "";
}
.fa-object-ungroup:before
{
    content: "";
}
.fa-odnoklassniki:before
{
    content: "";
}
.fa-odnoklassniki-square:before
{
    content: "";
}
.fa-oil-can:before
{
    content: "";
}
.fa-old-republic:before
{
    content: "";
}
.fa-om:before
{
    content: "";
}
.fa-opencart:before
{
    content: "";
}
.fa-openid:before
{
    content: "";
}
.fa-opera:before
{
    content: "";
}
.fa-optin-monster:before
{
    content: "";
}
.fa-orcid:before
{
    content: "";
}
.fa-osi:before
{
    content: "";
}
.fa-otter:before
{
    content: "";
}
.fa-outdent:before
{
    content: "";
}
.fa-page4:before
{
    content: "";
}
.fa-pagelines:before
{
    content: "";
}
.fa-pager:before
{
    content: "";
}
.fa-paint-brush:before
{
    content: "";
}
.fa-paint-roller:before
{
    content: "";
}
.fa-palette:before
{
    content: "";
}
.fa-palfed:before
{
    content: "";
}
.fa-pallet:before
{
    content: "";
}
.fa-paper-plane:before
{
    content: "";
}
.fa-paperclip:before
{
    content: "";
}
.fa-parachute-box:before
{
    content: "";
}
.fa-paragraph:before
{
    content: "";
}
.fa-parking:before
{
    content: "";
}
.fa-passport:before
{
    content: "";
}
.fa-pastafarianism:before
{
    content: "";
}
.fa-paste:before
{
    content: "";
}
.fa-patreon:before
{
    content: "";
}
.fa-pause:before
{
    content: "";
}
.fa-pause-circle:before
{
    content: "";
}
.fa-paw:before
{
    content: "";
}
.fa-paypal:before
{
    content: "";
}
.fa-peace:before
{
    content: "";
}
.fa-pen:before
{
    content: "";
}
.fa-pen-alt:before
{
    content: "";
}
.fa-pen-fancy:before
{
    content: "";
}
.fa-pen-nib:before
{
    content: "";
}
.fa-pen-square:before
{
    content: "";
}
.fa-pencil-alt:before
{
    content: "";
}
.fa-pencil-ruler:before
{
    content: "";
}
.fa-penny-arcade:before
{
    content: "";
}
.fa-people-carry:before
{
    content: "";
}
.fa-pepper-hot:before
{
    content: "";
}
.fa-percent:before
{
    content: "";
}
.fa-percentage:before
{
    content: "";
}
.fa-periscope:before
{
    content: "";
}
.fa-person-booth:before
{
    content: "";
}
.fa-phabricator:before
{
    content: "";
}
.fa-phoenix-framework:before
{
    content: "";
}
.fa-phoenix-squadron:before
{
    content: "";
}
.fa-phone:before
{
    content: "";
}
.fa-phone-alt:before
{
    content: "";
}
.fa-phone-slash:before
{
    content: "";
}
.fa-phone-square:before
{
    content: "";
}
.fa-phone-square-alt:before
{
    content: "";
}
.fa-phone-volume:before
{
    content: "";
}
.fa-photo-video:before
{
    content: "";
}
.fa-php:before
{
    content: "";
}
.fa-pied-piper:before
{
    content: "";
}
.fa-pied-piper-alt:before
{
    content: "";
}
.fa-pied-piper-hat:before
{
    content: "";
}
.fa-pied-piper-pp:before
{
    content: "";
}
.fa-piggy-bank:before
{
    content: "";
}
.fa-pills:before
{
    content: "";
}
.fa-pinterest:before
{
    content: "";
}
.fa-pinterest-p:before
{
    content: "";
}
.fa-pinterest-square:before
{
    content: "";
}
.fa-pizza-slice:before
{
    content: "";
}
.fa-place-of-worship:before
{
    content: "";
}
.fa-plane:before
{
    content: "";
}
.fa-plane-arrival:before
{
    content: "";
}
.fa-plane-departure:before
{
    content: "";
}
.fa-play:before
{
    content: "";
}
.fa-play-circle:before
{
    content: "";
}
.fa-playstation:before
{
    content: "";
}
.fa-plug:before
{
    content: "";
}
.fa-plus:before
{
    content: "";
}
.fa-plus-circle:before
{
    content: "";
}
.fa-plus-square:before
{
    content: "";
}
.fa-podcast:before
{
    content: "";
}
.fa-poll:before
{
    content: "";
}
.fa-poll-h:before
{
    content: "";
}
.fa-poo:before
{
    content: "";
}
.fa-poo-storm:before
{
    content: "";
}
.fa-poop:before
{
    content: "";
}
.fa-portrait:before
{
    content: "";
}
.fa-pound-sign:before
{
    content: "";
}
.fa-power-off:before
{
    content: "";
}
.fa-pray:before
{
    content: "";
}
.fa-praying-hands:before
{
    content: "";
}
.fa-prescription:before
{
    content: "";
}
.fa-prescription-bottle:before
{
    content: "";
}
.fa-prescription-bottle-alt:before
{
    content: "";
}
.fa-print:before
{
    content: "";
}
.fa-procedures:before
{
    content: "";
}
.fa-product-hunt:before
{
    content: "";
}
.fa-project-diagram:before
{
    content: "";
}
.fa-pushed:before
{
    content: "";
}
.fa-puzzle-piece:before
{
    content: "";
}
.fa-python:before
{
    content: "";
}
.fa-qq:before
{
    content: "";
}
.fa-qrcode:before
{
    content: "";
}
.fa-question:before
{
    content: "";
}
.fa-question-circle:before
{
    content: "";
}
.fa-quidditch:before
{
    content: "";
}
.fa-quinscape:before
{
    content: "";
}
.fa-quora:before
{
    content: "";
}
.fa-quote-left:before
{
    content: "";
}
.fa-quote-right:before
{
    content: "";
}
.fa-quran:before
{
    content: "";
}
.fa-r-project:before
{
    content: "";
}
.fa-radiation:before
{
    content: "";
}
.fa-radiation-alt:before
{
    content: "";
}
.fa-rainbow:before
{
    content: "";
}
.fa-random:before
{
    content: "";
}
.fa-raspberry-pi:before
{
    content: "";
}
.fa-ravelry:before
{
    content: "";
}
.fa-react:before
{
    content: "";
}
.fa-reacteurope:before
{
    content: "";
}
.fa-readme:before
{
    content: "";
}
.fa-rebel:before
{
    content: "";
}
.fa-receipt:before
{
    content: "";
}
.fa-record-vinyl:before
{
    content: "";
}
.fa-recycle:before
{
    content: "";
}
.fa-red-river:before
{
    content: "";
}
.fa-reddit:before
{
    content: "";
}
.fa-reddit-alien:before
{
    content: "";
}
.fa-reddit-square:before
{
    content: "";
}
.fa-redhat:before
{
    content: "";
}
.fa-redo:before
{
    content: "";
}
.fa-redo-alt:before
{
    content: "";
}
.fa-registered:before
{
    content: "";
}
.fa-remove-format:before
{
    content: "";
}
.fa-renren:before
{
    content: "";
}
.fa-reply:before
{
    content: "";
}
.fa-reply-all:before
{
    content: "";
}
.fa-replyd:before
{
    content: "";
}
.fa-republican:before
{
    content: "";
}
.fa-researchgate:before
{
    content: "";
}
.fa-resolving:before
{
    content: "";
}
.fa-restroom:before
{
    content: "";
}
.fa-retweet:before
{
    content: "";
}
.fa-rev:before
{
    content: "";
}
.fa-ribbon:before
{
    content: "";
}
.fa-ring:before
{
    content: "";
}
.fa-road:before
{
    content: "";
}
.fa-robot:before
{
    content: "";
}
.fa-rocket:before
{
    content: "";
}
.fa-rocketchat:before
{
    content: "";
}
.fa-rockrms:before
{
    content: "";
}
.fa-route:before
{
    content: "";
}
.fa-rss:before
{
    content: "";
}
.fa-rss-square:before
{
    content: "";
}
.fa-ruble-sign:before
{
    content: "";
}
.fa-ruler:before
{
    content: "";
}
.fa-ruler-combined:before
{
    content: "";
}
.fa-ruler-horizontal:before
{
    content: "";
}
.fa-ruler-vertical:before
{
    content: "";
}
.fa-running:before
{
    content: "";
}
.fa-rupee-sign:before
{
    content: "";
}
.fa-sad-cry:before
{
    content: "";
}
.fa-sad-tear:before
{
    content: "";
}
.fa-safari:before
{
    content: "";
}
.fa-salesforce:before
{
    content: "";
}
.fa-sass:before
{
    content: "";
}
.fa-satellite:before
{
    content: "";
}
.fa-satellite-dish:before
{
    content: "";
}
.fa-save:before
{
    content: "";
}
.fa-schlix:before
{
    content: "";
}
.fa-school:before
{
    content: "";
}
.fa-screwdriver:before
{
    content: "";
}
.fa-scribd:before
{
    content: "";
}
.fa-scroll:before
{
    content: "";
}
.fa-sd-card:before
{
    content: "";
}
.fa-search:before
{
    content: "";
}
.fa-search-dollar:before
{
    content: "";
}
.fa-search-location:before
{
    content: "";
}
.fa-search-minus:before
{
    content: "";
}
.fa-search-plus:before
{
    content: "";
}
.fa-searchengin:before
{
    content: "";
}
.fa-seedling:before
{
    content: "";
}
.fa-sellcast:before
{
    content: "";
}
.fa-sellsy:before
{
    content: "";
}
.fa-server:before
{
    content: "";
}
.fa-servicestack:before
{
    content: "";
}
.fa-shapes:before
{
    content: "";
}
.fa-share:before
{
    content: "";
}
.fa-share-alt:before
{
    content: "";
}
.fa-share-alt-square:before
{
    content: "";
}
.fa-share-square:before
{
    content: "";
}
.fa-shekel-sign:before
{
    content: "";
}
.fa-shield-alt:before
{
    content: "";
}
.fa-ship:before
{
    content: "";
}
.fa-shipping-fast:before
{
    content: "";
}
.fa-shirtsinbulk:before
{
    content: "";
}
.fa-shoe-prints:before
{
    content: "";
}
.fa-shopping-bag:before
{
    content: "";
}
.fa-shopping-basket:before
{
    content: "";
}
.fa-shopping-cart:before
{
    content: "";
}
.fa-shopware:before
{
    content: "";
}
.fa-shower:before
{
    content: "";
}
.fa-shuttle-van:before
{
    content: "";
}
.fa-sign:before
{
    content: "";
}
.fa-sign-in-alt:before
{
    content: "";
}
.fa-sign-language:before
{
    content: "";
}
.fa-sign-out-alt:before
{
    content: "";
}
.fa-signal:before
{
    content: "";
}
.fa-signature:before
{
    content: "";
}
.fa-sim-card:before
{
    content: "";
}
.fa-simplybuilt:before
{
    content: "";
}
.fa-sistrix:before
{
    content: "";
}
.fa-sitemap:before
{
    content: "";
}
.fa-sith:before
{
    content: "";
}
.fa-skating:before
{
    content: "";
}
.fa-sketch:before
{
    content: "";
}
.fa-skiing:before
{
    content: "";
}
.fa-skiing-nordic:before
{
    content: "";
}
.fa-skull:before
{
    content: "";
}
.fa-skull-crossbones:before
{
    content: "";
}
.fa-skyatlas:before
{
    content: "";
}
.fa-skype:before
{
    content: "";
}
.fa-slack:before
{
    content: "";
}
.fa-slack-hash:before
{
    content: "";
}
.fa-slash:before
{
    content: "";
}
.fa-sleigh:before
{
    content: "";
}
.fa-sliders-h:before
{
    content: "";
}
.fa-slideshare:before
{
    content: "";
}
.fa-smile:before
{
    content: "";
}
.fa-smile-beam:before
{
    content: "";
}
.fa-smile-wink:before
{
    content: "";
}
.fa-smog:before
{
    content: "";
}
.fa-smoking:before
{
    content: "";
}
.fa-smoking-ban:before
{
    content: "";
}
.fa-sms:before
{
    content: "";
}
.fa-snapchat:before
{
    content: "";
}
.fa-snapchat-ghost:before
{
    content: "";
}
.fa-snapchat-square:before
{
    content: "";
}
.fa-snowboarding:before
{
    content: "";
}
.fa-snowflake:before
{
    content: "";
}
.fa-snowman:before
{
    content: "";
}
.fa-snowplow:before
{
    content: "";
}
.fa-socks:before
{
    content: "";
}
.fa-solar-panel:before
{
    content: "";
}
.fa-sort:before
{
    content: "";
}
.fa-sort-alpha-down:before
{
    content: "";
}
.fa-sort-alpha-down-alt:before
{
    content: "";
}
.fa-sort-alpha-up:before
{
    content: "";
}
.fa-sort-alpha-up-alt:before
{
    content: "";
}
.fa-sort-amount-down:before
{
    content: "";
}
.fa-sort-amount-down-alt:before
{
    content: "";
}
.fa-sort-amount-up:before
{
    content: "";
}
.fa-sort-amount-up-alt:before
{
    content: "";
}
.fa-sort-down:before
{
    content: "";
}
.fa-sort-numeric-down:before
{
    content: "";
}
.fa-sort-numeric-down-alt:before
{
    content: "";
}
.fa-sort-numeric-up:before
{
    content: "";
}
.fa-sort-numeric-up-alt:before
{
    content: "";
}
.fa-sort-up:before
{
    content: "";
}
.fa-soundcloud:before
{
    content: "";
}
.fa-sourcetree:before
{
    content: "";
}
.fa-spa:before
{
    content: "";
}
.fa-space-shuttle:before
{
    content: "";
}
.fa-speakap:before
{
    content: "";
}
.fa-speaker-deck:before
{
    content: "";
}
.fa-spell-check:before
{
    content: "";
}
.fa-spider:before
{
    content: "";
}
.fa-spinner:before
{
    content: "";
}
.fa-splotch:before
{
    content: "";
}
.fa-spotify:before
{
    content: "";
}
.fa-spray-can:before
{
    content: "";
}
.fa-square:before
{
    content: "";
}
.fa-square-full:before
{
    content: "";
}
.fa-square-root-alt:before
{
    content: "";
}
.fa-squarespace:before
{
    content: "";
}
.fa-stack-exchange:before
{
    content: "";
}
.fa-stack-overflow:before
{
    content: "";
}
.fa-stackpath:before
{
    content: "";
}
.fa-stamp:before
{
    content: "";
}
.fa-star:before
{
    content: "";
}
.fa-star-and-crescent:before
{
    content: "";
}
.fa-star-half:before
{
    content: "";
}
.fa-star-half-alt:before
{
    content: "";
}
.fa-star-of-david:before
{
    content: "";
}
.fa-star-of-life:before
{
    content: "";
}
.fa-staylinked:before
{
    content: "";
}
.fa-steam:before
{
    content: "";
}
.fa-steam-square:before
{
    content: "";
}
.fa-steam-symbol:before
{
    content: "";
}
.fa-step-backward:before
{
    content: "";
}
.fa-step-forward:before
{
    content: "";
}
.fa-stethoscope:before
{
    content: "";
}
.fa-sticker-mule:before
{
    content: "";
}
.fa-sticky-note:before
{
    content: "";
}
.fa-stop:before
{
    content: "";
}
.fa-stop-circle:before
{
    content: "";
}
.fa-stopwatch:before
{
    content: "";
}
.fa-store:before
{
    content: "";
}
.fa-store-alt:before
{
    content: "";
}
.fa-strava:before
{
    content: "";
}
.fa-stream:before
{
    content: "";
}
.fa-street-view:before
{
    content: "";
}
.fa-strikethrough:before
{
    content: "";
}
.fa-stripe:before
{
    content: "";
}
.fa-stripe-s:before
{
    content: "";
}
.fa-stroopwafel:before
{
    content: "";
}
.fa-studiovinari:before
{
    content: "";
}
.fa-stumbleupon:before
{
    content: "";
}
.fa-stumbleupon-circle:before
{
    content: "";
}
.fa-subscript:before
{
    content: "";
}
.fa-subway:before
{
    content: "";
}
.fa-suitcase:before
{
    content: "";
}
.fa-suitcase-rolling:before
{
    content: "";
}
.fa-sun:before
{
    content: "";
}
.fa-superpowers:before
{
    content: "";
}
.fa-superscript:before
{
    content: "";
}
.fa-supple:before
{
    content: "";
}
.fa-surprise:before
{
    content: "";
}
.fa-suse:before
{
    content: "";
}
.fa-swatchbook:before
{
    content: "";
}
.fa-swift:before
{
    content: "";
}
.fa-swimmer:before
{
    content: "";
}
.fa-swimming-pool:before
{
    content: "";
}
.fa-symfony:before
{
    content: "";
}
.fa-synagogue:before
{
    content: "";
}
.fa-sync:before
{
    content: "";
}
.fa-sync-alt:before
{
    content: "";
}
.fa-syringe:before
{
    content: "";
}
.fa-table:before
{
    content: "";
}
.fa-table-tennis:before
{
    content: "";
}
.fa-tablet:before
{
    content: "";
}
.fa-tablet-alt:before
{
    content: "";
}
.fa-tablets:before
{
    content: "";
}
.fa-tachometer-alt:before
{
    content: "";
}
.fa-tag:before
{
    content: "";
}
.fa-tags:before
{
    content: "";
}
.fa-tape:before
{
    content: "";
}
.fa-tasks:before
{
    content: "";
}
.fa-taxi:before
{
    content: "";
}
.fa-teamspeak:before
{
    content: "";
}
.fa-teeth:before
{
    content: "";
}
.fa-teeth-open:before
{
    content: "";
}
.fa-telegram:before
{
    content: "";
}
.fa-telegram-plane:before
{
    content: "";
}
.fa-temperature-high:before
{
    content: "";
}
.fa-temperature-low:before
{
    content: "";
}
.fa-tencent-weibo:before
{
    content: "";
}
.fa-tenge:before
{
    content: "";
}
.fa-terminal:before
{
    content: "";
}
.fa-text-height:before
{
    content: "";
}
.fa-text-width:before
{
    content: "";
}
.fa-th:before
{
    content: "";
}
.fa-th-large:before
{
    content: "";
}
.fa-th-list:before
{
    content: "";
}
.fa-the-red-yeti:before
{
    content: "";
}
.fa-theater-masks:before
{
    content: "";
}
.fa-themeco:before
{
    content: "";
}
.fa-themeisle:before
{
    content: "";
}
.fa-thermometer:before
{
    content: "";
}
.fa-thermometer-empty:before
{
    content: "";
}
.fa-thermometer-full:before
{
    content: "";
}
.fa-thermometer-half:before
{
    content: "";
}
.fa-thermometer-quarter:before
{
    content: "";
}
.fa-thermometer-three-quarters:before
{
    content: "";
}
.fa-think-peaks:before
{
    content: "";
}
.fa-thumbs-down:before
{
    content: "";
}
.fa-thumbs-up:before
{
    content: "";
}
.fa-thumbtack:before
{
    content: "";
}
.fa-ticket-alt:before
{
    content: "";
}
.fa-times:before
{
    content: "";
}
.fa-times-circle:before
{
    content: "";
}
.fa-tint:before
{
    content: "";
}
.fa-tint-slash:before
{
    content: "";
}
.fa-tired:before
{
    content: "";
}
.fa-toggle-off:before
{
    content: "";
}
.fa-toggle-on:before
{
    content: "";
}
.fa-toilet:before
{
    content: "";
}
.fa-toilet-paper:before
{
    content: "";
}
.fa-toolbox:before
{
    content: "";
}
.fa-tools:before
{
    content: "";
}
.fa-tooth:before
{
    content: "";
}
.fa-torah:before
{
    content: "";
}
.fa-torii-gate:before
{
    content: "";
}
.fa-tractor:before
{
    content: "";
}
.fa-trade-federation:before
{
    content: "";
}
.fa-trademark:before
{
    content: "";
}
.fa-traffic-light:before
{
    content: "";
}
.fa-train:before
{
    content: "";
}
.fa-tram:before
{
    content: "";
}
.fa-transgender:before
{
    content: "";
}
.fa-transgender-alt:before
{
    content: "";
}
.fa-trash:before
{
    content: "";
}
.fa-trash-alt:before
{
    content: "";
}
.fa-trash-restore:before
{
    content: "";
}
.fa-trash-restore-alt:before
{
    content: "";
}
.fa-tree:before
{
    content: "";
}
.fa-trello:before
{
    content: "";
}
.fa-tripadvisor:before
{
    content: "";
}
.fa-trophy:before
{
    content: "";
}
.fa-truck:before
{
    content: "";
}
.fa-truck-loading:before
{
    content: "";
}
.fa-truck-monster:before
{
    content: "";
}
.fa-truck-moving:before
{
    content: "";
}
.fa-truck-pickup:before
{
    content: "";
}
.fa-tshirt:before
{
    content: "";
}
.fa-tty:before
{
    content: "";
}
.fa-tumblr:before
{
    content: "";
}
.fa-tumblr-square:before
{
    content: "";
}
.fa-tv:before
{
    content: "";
}
.fa-twitch:before
{
    content: "";
}
.fa-twitter:before
{
    content: "";
}
.fa-twitter-square:before
{
    content: "";
}
.fa-typo3:before
{
    content: "";
}
.fa-uber:before
{
    content: "";
}
.fa-ubuntu:before
{
    content: "";
}
.fa-uikit:before
{
    content: "";
}
.fa-umbraco:before
{
    content: "";
}
.fa-umbrella:before
{
    content: "";
}
.fa-umbrella-beach:before
{
    content: "";
}
.fa-underline:before
{
    content: "";
}
.fa-undo:before
{
    content: "";
}
.fa-undo-alt:before
{
    content: "";
}
.fa-uniregistry:before
{
    content: "";
}
.fa-universal-access:before
{
    content: "";
}
.fa-university:before
{
    content: "";
}
.fa-unlink:before
{
    content: "";
}
.fa-unlock:before
{
    content: "";
}
.fa-unlock-alt:before
{
    content: "";
}
.fa-untappd:before
{
    content: "";
}
.fa-upload:before
{
    content: "";
}
.fa-ups:before
{
    content: "";
}
.fa-usb:before
{
    content: "";
}
.fa-user:before
{
    content: "";
}
.fa-user-alt:before
{
    content: "";
}
.fa-user-alt-slash:before
{
    content: "";
}
.fa-user-astronaut:before
{
    content: "";
}
.fa-user-check:before
{
    content: "";
}
.fa-user-circle:before
{
    content: "";
}
.fa-user-clock:before
{
    content: "";
}
.fa-user-cog:before
{
    content: "";
}
.fa-user-edit:before
{
    content: "";
}
.fa-user-friends:before
{
    content: "";
}
.fa-user-graduate:before
{
    content: "";
}
.fa-user-injured:before
{
    content: "";
}
.fa-user-lock:before
{
    content: "";
}
.fa-user-md:before
{
    content: "";
}
.fa-user-minus:before
{
    content: "";
}
.fa-user-ninja:before
{
    content: "";
}
.fa-user-nurse:before
{
    content: "";
}
.fa-user-plus:before
{
    content: "";
}
.fa-user-secret:before
{
    content: "";
}
.fa-user-shield:before
{
    content: "";
}
.fa-user-slash:before
{
    content: "";
}
.fa-user-tag:before
{
    content: "";
}
.fa-user-tie:before
{
    content: "";
}
.fa-user-times:before
{
    content: "";
}
.fa-users:before
{
    content: "";
}
.fa-users-cog:before
{
    content: "";
}
.fa-usps:before
{
    content: "";
}
.fa-ussunnah:before
{
    content: "";
}
.fa-utensil-spoon:before
{
    content: "";
}
.fa-utensils:before
{
    content: "";
}
.fa-vaadin:before
{
    content: "";
}
.fa-vector-square:before
{
    content: "";
}
.fa-venus:before
{
    content: "";
}
.fa-venus-double:before
{
    content: "";
}
.fa-venus-mars:before
{
    content: "";
}
.fa-viacoin:before
{
    content: "";
}
.fa-viadeo:before
{
    content: "";
}
.fa-viadeo-square:before
{
    content: "";
}
.fa-vial:before
{
    content: "";
}
.fa-vials:before
{
    content: "";
}
.fa-viber:before
{
    content: "";
}
.fa-video:before
{
    content: "";
}
.fa-video-slash:before
{
    content: "";
}
.fa-vihara:before
{
    content: "";
}
.fa-vimeo:before
{
    content: "";
}
.fa-vimeo-square:before
{
    content: "";
}
.fa-vimeo-v:before
{
    content: "";
}
.fa-vine:before
{
    content: "";
}
.fa-vk:before
{
    content: "";
}
.fa-vnv:before
{
    content: "";
}
.fa-voicemail:before
{
    content: "";
}
.fa-volleyball-ball:before
{
    content: "";
}
.fa-volume-down:before
{
    content: "";
}
.fa-volume-mute:before
{
    content: "";
}
.fa-volume-off:before
{
    content: "";
}
.fa-volume-up:before
{
    content: "";
}
.fa-vote-yea:before
{
    content: "";
}
.fa-vr-cardboard:before
{
    content: "";
}
.fa-vuejs:before
{
    content: "";
}
.fa-walking:before
{
    content: "";
}
.fa-wallet:before
{
    content: "";
}
.fa-warehouse:before
{
    content: "";
}
.fa-water:before
{
    content: "";
}
.fa-wave-square:before
{
    content: "";
}
.fa-waze:before
{
    content: "";
}
.fa-weebly:before
{
    content: "";
}
.fa-weibo:before
{
    content: "";
}
.fa-weight:before
{
    content: "";
}
.fa-weight-hanging:before
{
    content: "";
}
.fa-weixin:before
{
    content: "";
}
.fa-whatsapp:before
{
    content: "";
}
.fa-whatsapp-square:before
{
    content: "";
}
.fa-wheelchair:before
{
    content: "";
}
.fa-whmcs:before
{
    content: "";
}
.fa-wifi:before
{
    content: "";
}
.fa-wikipedia-w:before
{
    content: "";
}
.fa-wind:before
{
    content: "";
}
.fa-window-close:before
{
    content: "";
}
.fa-window-maximize:before
{
    content: "";
}
.fa-window-minimize:before
{
    content: "";
}
.fa-window-restore:before
{
    content: "";
}
.fa-windows:before
{
    content: "";
}
.fa-wine-bottle:before
{
    content: "";
}
.fa-wine-glass:before
{
    content: "";
}
.fa-wine-glass-alt:before
{
    content: "";
}
.fa-wix:before
{
    content: "";
}
.fa-wizards-of-the-coast:before
{
    content: "";
}
.fa-wolf-pack-battalion:before
{
    content: "";
}
.fa-won-sign:before
{
    content: "";
}
.fa-wordpress:before
{
    content: "";
}
.fa-wordpress-simple:before
{
    content: "";
}
.fa-wpbeginner:before
{
    content: "";
}
.fa-wpexplorer:before
{
    content: "";
}
.fa-wpforms:before
{
    content: "";
}
.fa-wpressr:before
{
    content: "";
}
.fa-wrench:before
{
    content: "";
}
.fa-x-ray:before
{
    content: "";
}
.fa-xbox:before
{
    content: "";
}
.fa-xing:before
{
    content: "";
}
.fa-xing-square:before
{
    content: "";
}
.fa-y-combinator:before
{
    content: "";
}
.fa-yahoo:before
{
    content: "";
}
.fa-yammer:before
{
    content: "";
}
.fa-yandex:before
{
    content: "";
}
.fa-yandex-international:before
{
    content: "";
}
.fa-yarn:before
{
    content: "";
}
.fa-yelp:before
{
    content: "";
}
.fa-yen-sign:before
{
    content: "";
}
.fa-yin-yang:before
{
    content: "";
}
.fa-yoast:before
{
    content: "";
}
.fa-youtube:before
{
    content: "";
}
.fa-youtube-square:before
{
    content: "";
}
.fa-zhihu:before
{
    content: "";
}
.sr-only
{
    border: 0;
    clip: rect(0,0,0,0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.sr-only-focusable:active, .sr-only-focusable:focus
{
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}
@font-face
{
    font-family: 'Font Awesome 5 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: auto;
    src: url(/wp-content/themes/mytheme/dist/assets/webfonts/fa-brands-400.eot?);
    src: url(/wp-content/themes/mytheme/dist/assets/webfonts/fa-brands-400.eot?) format("embedded-opentype"),url(/wp-content/themes/mytheme/dist/assets/webfonts/fa-brands-400.woff2) format("woff2"),url(/wp-content/themes/mytheme/dist/assets/webfonts/fa-brands-400.woff) format("woff"),url(/wp-content/themes/mytheme/dist/assets/webfonts/fa-brands-400.ttf) format("truetype"),url(/wp-content/themes/mytheme/dist/assets/webfonts/fa-brands-400.svg) format("svg");
}
.fab
{
    font-family: 'Font Awesome 5 Brands';
}
@font-face
{
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 400;
    font-display: auto;
    src: url(/wp-content/themes/mytheme/dist/assets/webfonts/fa-regular-400.eot?);
    src: url(/wp-content/themes/mytheme/dist/assets/webfonts/fa-regular-400.eot?) format("embedded-opentype"),url(/wp-content/themes/mytheme/dist/assets/webfonts/fa-regular-400.woff2) format("woff2"),url(/wp-content/themes/mytheme/dist/assets/webfonts/fa-regular-400.woff) format("woff"),url(/wp-content/themes/mytheme/dist/assets/webfonts/fa-regular-400.ttf) format("truetype"),url(/wp-content/themes/mytheme/dist/assets/webfonts/fa-regular-400.svg) format("svg");
}
.far
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
@font-face
{
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    font-display: auto;
    src: url(/wp-content/themes/mytheme/dist/assets/webfonts/fa-solid-900.eot?);
    src: url(/wp-content/themes/mytheme/dist/assets/webfonts/fa-solid-900.eot?) format("embedded-opentype"),url(/wp-content/themes/mytheme/dist/assets/webfonts/fa-solid-900.woff2) format("woff2"),url(/wp-content/themes/mytheme/dist/assets/webfonts/fa-solid-900.woff) format("woff"),url(/wp-content/themes/mytheme/dist/assets/webfonts/fa-solid-900.ttf) format("truetype"),url(/wp-content/themes/mytheme/dist/assets/webfonts/fa-solid-900.svg) format("svg");
}
.fa, .fas
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
.fa.fa-glass:before
{
    content: "";
}
.fa.fa-meetup
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-star-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-star-o:before
{
    content: "";
}
.fa.fa-remove:before
{
    content: "";
}
.fa.fa-close:before
{
    content: "";
}
.fa.fa-gear:before
{
    content: "";
}
.fa.fa-trash-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-trash-o:before
{
    content: "";
}
.fa.fa-file-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-file-o:before
{
    content: "";
}
.fa.fa-clock-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-clock-o:before
{
    content: "";
}
.fa.fa-arrow-circle-o-down
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-arrow-circle-o-down:before
{
    content: "";
}
.fa.fa-arrow-circle-o-up
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-arrow-circle-o-up:before
{
    content: "";
}
.fa.fa-play-circle-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-play-circle-o:before
{
    content: "";
}
.fa.fa-repeat:before
{
    content: "";
}
.fa.fa-rotate-right:before
{
    content: "";
}
.fa.fa-refresh:before
{
    content: "";
}
.fa.fa-list-alt
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-dedent:before
{
    content: "";
}
.fa.fa-video-camera:before
{
    content: "";
}
.fa.fa-picture-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-picture-o:before
{
    content: "";
}
.fa.fa-photo
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-photo:before
{
    content: "";
}
.fa.fa-image
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-image:before
{
    content: "";
}
.fa.fa-pencil:before
{
    content: "";
}
.fa.fa-map-marker:before
{
    content: "";
}
.fa.fa-pencil-square-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-pencil-square-o:before
{
    content: "";
}
.fa.fa-share-square-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-share-square-o:before
{
    content: "";
}
.fa.fa-check-square-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-check-square-o:before
{
    content: "";
}
.fa.fa-arrows:before
{
    content: "";
}
.fa.fa-times-circle-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-times-circle-o:before
{
    content: "";
}
.fa.fa-check-circle-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-check-circle-o:before
{
    content: "";
}
.fa.fa-mail-forward:before
{
    content: "";
}
.fa.fa-eye
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-eye-slash
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-warning:before
{
    content: "";
}
.fa.fa-calendar:before
{
    content: "";
}
.fa.fa-arrows-v:before
{
    content: "";
}
.fa.fa-arrows-h:before
{
    content: "";
}
.fa.fa-bar-chart
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-bar-chart:before
{
    content: "";
}
.fa.fa-bar-chart-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-bar-chart-o:before
{
    content: "";
}
.fa.fa-twitter-square
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-facebook-square
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-gears:before
{
    content: "";
}
.fa.fa-thumbs-o-up
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-thumbs-o-up:before
{
    content: "";
}
.fa.fa-thumbs-o-down
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-thumbs-o-down:before
{
    content: "";
}
.fa.fa-heart-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-heart-o:before
{
    content: "";
}
.fa.fa-sign-out:before
{
    content: "";
}
.fa.fa-linkedin-square
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-linkedin-square:before
{
    content: "";
}
.fa.fa-thumb-tack:before
{
    content: "";
}
.fa.fa-external-link:before
{
    content: "";
}
.fa.fa-sign-in:before
{
    content: "";
}
.fa.fa-github-square
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-lemon-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-lemon-o:before
{
    content: "";
}
.fa.fa-square-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-square-o:before
{
    content: "";
}
.fa.fa-bookmark-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-bookmark-o:before
{
    content: "";
}
.fa.fa-twitter
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-facebook
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-facebook:before
{
    content: "";
}
.fa.fa-facebook-f
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-facebook-f:before
{
    content: "";
}
.fa.fa-github
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-credit-card
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-feed:before
{
    content: "";
}
.fa.fa-hdd-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-hdd-o:before
{
    content: "";
}
.fa.fa-hand-o-right
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-hand-o-right:before
{
    content: "";
}
.fa.fa-hand-o-left
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-hand-o-left:before
{
    content: "";
}
.fa.fa-hand-o-up
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-hand-o-up:before
{
    content: "";
}
.fa.fa-hand-o-down
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-hand-o-down:before
{
    content: "";
}
.fa.fa-arrows-alt:before
{
    content: "";
}
.fa.fa-group:before
{
    content: "";
}
.fa.fa-chain:before
{
    content: "";
}
.fa.fa-scissors:before
{
    content: "";
}
.fa.fa-files-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-files-o:before
{
    content: "";
}
.fa.fa-floppy-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-floppy-o:before
{
    content: "";
}
.fa.fa-navicon:before
{
    content: "";
}
.fa.fa-reorder:before
{
    content: "";
}
.fa.fa-pinterest
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-pinterest-square
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-google-plus-square
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-google-plus
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-google-plus:before
{
    content: "";
}
.fa.fa-money
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-money:before
{
    content: "";
}
.fa.fa-unsorted:before
{
    content: "";
}
.fa.fa-sort-desc:before
{
    content: "";
}
.fa.fa-sort-asc:before
{
    content: "";
}
.fa.fa-linkedin
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-linkedin:before
{
    content: "";
}
.fa.fa-rotate-left:before
{
    content: "";
}
.fa.fa-legal:before
{
    content: "";
}
.fa.fa-tachometer:before
{
    content: "";
}
.fa.fa-dashboard:before
{
    content: "";
}
.fa.fa-comment-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-comment-o:before
{
    content: "";
}
.fa.fa-comments-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-comments-o:before
{
    content: "";
}
.fa.fa-flash:before
{
    content: "";
}
.fa.fa-clipboard
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-paste
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-paste:before
{
    content: "";
}
.fa.fa-lightbulb-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-lightbulb-o:before
{
    content: "";
}
.fa.fa-exchange:before
{
    content: "";
}
.fa.fa-cloud-download:before
{
    content: "";
}
.fa.fa-cloud-upload:before
{
    content: "";
}
.fa.fa-bell-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-bell-o:before
{
    content: "";
}
.fa.fa-cutlery:before
{
    content: "";
}
.fa.fa-file-text-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-file-text-o:before
{
    content: "";
}
.fa.fa-building-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-building-o:before
{
    content: "";
}
.fa.fa-hospital-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-hospital-o:before
{
    content: "";
}
.fa.fa-tablet:before
{
    content: "";
}
.fa.fa-mobile:before
{
    content: "";
}
.fa.fa-mobile-phone:before
{
    content: "";
}
.fa.fa-circle-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-circle-o:before
{
    content: "";
}
.fa.fa-mail-reply:before
{
    content: "";
}
.fa.fa-github-alt
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-folder-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-folder-o:before
{
    content: "";
}
.fa.fa-folder-open-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-folder-open-o:before
{
    content: "";
}
.fa.fa-smile-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-smile-o:before
{
    content: "";
}
.fa.fa-frown-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-frown-o:before
{
    content: "";
}
.fa.fa-meh-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-meh-o:before
{
    content: "";
}
.fa.fa-keyboard-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-keyboard-o:before
{
    content: "";
}
.fa.fa-flag-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-flag-o:before
{
    content: "";
}
.fa.fa-mail-reply-all:before
{
    content: "";
}
.fa.fa-star-half-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-star-half-o:before
{
    content: "";
}
.fa.fa-star-half-empty
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-star-half-empty:before
{
    content: "";
}
.fa.fa-star-half-full
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-star-half-full:before
{
    content: "";
}
.fa.fa-code-fork:before
{
    content: "";
}
.fa.fa-chain-broken:before
{
    content: "";
}
.fa.fa-shield:before
{
    content: "";
}
.fa.fa-calendar-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-calendar-o:before
{
    content: "";
}
.fa.fa-maxcdn
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-html5
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-css3
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-ticket:before
{
    content: "";
}
.fa.fa-minus-square-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-minus-square-o:before
{
    content: "";
}
.fa.fa-level-up:before
{
    content: "";
}
.fa.fa-level-down:before
{
    content: "";
}
.fa.fa-pencil-square:before
{
    content: "";
}
.fa.fa-external-link-square:before
{
    content: "";
}
.fa.fa-compass
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-caret-square-o-down
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-caret-square-o-down:before
{
    content: "";
}
.fa.fa-toggle-down
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-toggle-down:before
{
    content: "";
}
.fa.fa-caret-square-o-up
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-caret-square-o-up:before
{
    content: "";
}
.fa.fa-toggle-up
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-toggle-up:before
{
    content: "";
}
.fa.fa-caret-square-o-right
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-caret-square-o-right:before
{
    content: "";
}
.fa.fa-toggle-right
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-toggle-right:before
{
    content: "";
}
.fa.fa-eur:before
{
    content: "";
}
.fa.fa-euro:before
{
    content: "";
}
.fa.fa-gbp:before
{
    content: "";
}
.fa.fa-usd:before
{
    content: "";
}
.fa.fa-dollar:before
{
    content: "";
}
.fa.fa-inr:before
{
    content: "";
}
.fa.fa-rupee:before
{
    content: "";
}
.fa.fa-jpy:before
{
    content: "";
}
.fa.fa-cny:before
{
    content: "";
}
.fa.fa-rmb:before
{
    content: "";
}
.fa.fa-yen:before
{
    content: "";
}
.fa.fa-rub:before
{
    content: "";
}
.fa.fa-ruble:before
{
    content: "";
}
.fa.fa-rouble:before
{
    content: "";
}
.fa.fa-krw:before
{
    content: "";
}
.fa.fa-won:before
{
    content: "";
}
.fa.fa-btc
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-bitcoin
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-bitcoin:before
{
    content: "";
}
.fa.fa-file-text:before
{
    content: "";
}
.fa.fa-sort-alpha-asc:before
{
    content: "";
}
.fa.fa-sort-alpha-desc:before
{
    content: "";
}
.fa.fa-sort-amount-asc:before
{
    content: "";
}
.fa.fa-sort-amount-desc:before
{
    content: "";
}
.fa.fa-sort-numeric-asc:before
{
    content: "";
}
.fa.fa-sort-numeric-desc:before
{
    content: "";
}
.fa.fa-youtube-square
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-youtube
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-xing
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-xing-square
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-youtube-play
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-youtube-play:before
{
    content: "";
}
.fa.fa-dropbox
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-stack-overflow
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-instagram
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-flickr
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-adn
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-bitbucket
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-bitbucket-square
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-bitbucket-square:before
{
    content: "";
}
.fa.fa-tumblr
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-tumblr-square
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-long-arrow-down:before
{
    content: "";
}
.fa.fa-long-arrow-up:before
{
    content: "";
}
.fa.fa-long-arrow-left:before
{
    content: "";
}
.fa.fa-long-arrow-right:before
{
    content: "";
}
.fa.fa-apple
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-windows
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-android
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-linux
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-dribbble
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-skype
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-foursquare
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-trello
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-gratipay
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-gittip
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-gittip:before
{
    content: "";
}
.fa.fa-sun-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-sun-o:before
{
    content: "";
}
.fa.fa-moon-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-moon-o:before
{
    content: "";
}
.fa.fa-vk
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-weibo
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-renren
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-pagelines
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-stack-exchange
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-arrow-circle-o-right
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-arrow-circle-o-right:before
{
    content: "";
}
.fa.fa-arrow-circle-o-left
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-arrow-circle-o-left:before
{
    content: "";
}
.fa.fa-caret-square-o-left
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-caret-square-o-left:before
{
    content: "";
}
.fa.fa-toggle-left
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-toggle-left:before
{
    content: "";
}
.fa.fa-dot-circle-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-dot-circle-o:before
{
    content: "";
}
.fa.fa-vimeo-square
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-try:before
{
    content: "";
}
.fa.fa-turkish-lira:before
{
    content: "";
}
.fa.fa-plus-square-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-plus-square-o:before
{
    content: "";
}
.fa.fa-slack
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-wordpress
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-openid
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-institution:before
{
    content: "";
}
.fa.fa-bank:before
{
    content: "";
}
.fa.fa-mortar-board:before
{
    content: "";
}
.fa.fa-yahoo
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-google
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-reddit
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-reddit-square
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-stumbleupon-circle
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-stumbleupon
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-delicious
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-digg
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-pied-piper-pp
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-pied-piper-alt
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-drupal
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-joomla
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-spoon:before
{
    content: "";
}
.fa.fa-behance
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-behance-square
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-steam
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-steam-square
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-automobile:before
{
    content: "";
}
.fa.fa-cab:before
{
    content: "";
}
.fa.fa-envelope-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-envelope-o:before
{
    content: "";
}
.fa.fa-deviantart
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-soundcloud
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-file-pdf-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-file-pdf-o:before
{
    content: "";
}
.fa.fa-file-word-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-file-word-o:before
{
    content: "";
}
.fa.fa-file-excel-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-file-excel-o:before
{
    content: "";
}
.fa.fa-file-powerpoint-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-file-powerpoint-o:before
{
    content: "";
}
.fa.fa-file-image-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-file-image-o:before
{
    content: "";
}
.fa.fa-file-photo-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-file-photo-o:before
{
    content: "";
}
.fa.fa-file-picture-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-file-picture-o:before
{
    content: "";
}
.fa.fa-file-archive-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-file-archive-o:before
{
    content: "";
}
.fa.fa-file-zip-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-file-zip-o:before
{
    content: "";
}
.fa.fa-file-audio-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-file-audio-o:before
{
    content: "";
}
.fa.fa-file-sound-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-file-sound-o:before
{
    content: "";
}
.fa.fa-file-video-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-file-video-o:before
{
    content: "";
}
.fa.fa-file-movie-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-file-movie-o:before
{
    content: "";
}
.fa.fa-file-code-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-file-code-o:before
{
    content: "";
}
.fa.fa-vine
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-codepen
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-jsfiddle
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-life-ring
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-life-bouy
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-life-bouy:before
{
    content: "";
}
.fa.fa-life-buoy
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-life-buoy:before
{
    content: "";
}
.fa.fa-life-saver
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-life-saver:before
{
    content: "";
}
.fa.fa-support
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-support:before
{
    content: "";
}
.fa.fa-circle-o-notch:before
{
    content: "";
}
.fa.fa-rebel
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-ra
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-ra:before
{
    content: "";
}
.fa.fa-resistance
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-resistance:before
{
    content: "";
}
.fa.fa-empire
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-ge
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-ge:before
{
    content: "";
}
.fa.fa-git-square
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-git
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-hacker-news
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-y-combinator-square
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-y-combinator-square:before
{
    content: "";
}
.fa.fa-yc-square
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-yc-square:before
{
    content: "";
}
.fa.fa-tencent-weibo
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-qq
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-weixin
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-wechat
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-wechat:before
{
    content: "";
}
.fa.fa-send:before
{
    content: "";
}
.fa.fa-paper-plane-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-paper-plane-o:before
{
    content: "";
}
.fa.fa-send-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-send-o:before
{
    content: "";
}
.fa.fa-circle-thin
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-circle-thin:before
{
    content: "";
}
.fa.fa-header:before
{
    content: "";
}
.fa.fa-sliders:before
{
    content: "";
}
.fa.fa-futbol-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-futbol-o:before
{
    content: "";
}
.fa.fa-soccer-ball-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-soccer-ball-o:before
{
    content: "";
}
.fa.fa-slideshare
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-twitch
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-yelp
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-newspaper-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-newspaper-o:before
{
    content: "";
}
.fa.fa-paypal
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-google-wallet
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-cc-visa
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-cc-mastercard
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-cc-discover
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-cc-amex
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-cc-paypal
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-cc-stripe
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-bell-slash-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-bell-slash-o:before
{
    content: "";
}
.fa.fa-trash:before
{
    content: "";
}
.fa.fa-copyright
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-eyedropper:before
{
    content: "";
}
.fa.fa-area-chart:before
{
    content: "";
}
.fa.fa-pie-chart:before
{
    content: "";
}
.fa.fa-line-chart:before
{
    content: "";
}
.fa.fa-lastfm
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-lastfm-square
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-ioxhost
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-angellist
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-cc
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-cc:before
{
    content: "";
}
.fa.fa-ils:before
{
    content: "";
}
.fa.fa-shekel:before
{
    content: "";
}
.fa.fa-sheqel:before
{
    content: "";
}
.fa.fa-meanpath
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-meanpath:before
{
    content: "";
}
.fa.fa-buysellads
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-connectdevelop
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-dashcube
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-forumbee
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-leanpub
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-sellsy
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-shirtsinbulk
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-simplybuilt
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-skyatlas
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-diamond
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-diamond:before
{
    content: "";
}
.fa.fa-intersex:before
{
    content: "";
}
.fa.fa-facebook-official
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-facebook-official:before
{
    content: "";
}
.fa.fa-pinterest-p
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-whatsapp
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-hotel:before
{
    content: "";
}
.fa.fa-viacoin
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-medium
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-y-combinator
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-yc
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-yc:before
{
    content: "";
}
.fa.fa-optin-monster
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-opencart
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-expeditedssl
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-battery-4:before
{
    content: "";
}
.fa.fa-battery:before
{
    content: "";
}
.fa.fa-battery-3:before
{
    content: "";
}
.fa.fa-battery-2:before
{
    content: "";
}
.fa.fa-battery-1:before
{
    content: "";
}
.fa.fa-battery-0:before
{
    content: "";
}
.fa.fa-object-group
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-object-ungroup
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-sticky-note-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-sticky-note-o:before
{
    content: "";
}
.fa.fa-cc-jcb
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-cc-diners-club
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-clone
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-hourglass-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-hourglass-o:before
{
    content: "";
}
.fa.fa-hourglass-1:before
{
    content: "";
}
.fa.fa-hourglass-2:before
{
    content: "";
}
.fa.fa-hourglass-3:before
{
    content: "";
}
.fa.fa-hand-rock-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-hand-rock-o:before
{
    content: "";
}
.fa.fa-hand-grab-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-hand-grab-o:before
{
    content: "";
}
.fa.fa-hand-paper-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-hand-paper-o:before
{
    content: "";
}
.fa.fa-hand-stop-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-hand-stop-o:before
{
    content: "";
}
.fa.fa-hand-scissors-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-hand-scissors-o:before
{
    content: "";
}
.fa.fa-hand-lizard-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-hand-lizard-o:before
{
    content: "";
}
.fa.fa-hand-spock-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-hand-spock-o:before
{
    content: "";
}
.fa.fa-hand-pointer-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-hand-pointer-o:before
{
    content: "";
}
.fa.fa-hand-peace-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-hand-peace-o:before
{
    content: "";
}
.fa.fa-registered
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-creative-commons
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-gg
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-gg-circle
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-tripadvisor
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-odnoklassniki
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-odnoklassniki-square
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-get-pocket
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-wikipedia-w
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-safari
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-chrome
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-firefox
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-opera
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-internet-explorer
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-television:before
{
    content: "";
}
.fa.fa-contao
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-500px
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-amazon
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-calendar-plus-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-calendar-plus-o:before
{
    content: "";
}
.fa.fa-calendar-minus-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-calendar-minus-o:before
{
    content: "";
}
.fa.fa-calendar-times-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-calendar-times-o:before
{
    content: "";
}
.fa.fa-calendar-check-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-calendar-check-o:before
{
    content: "";
}
.fa.fa-map-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-map-o:before
{
    content: "";
}
.fa.fa-commenting:before
{
    content: "";
}
.fa.fa-commenting-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-commenting-o:before
{
    content: "";
}
.fa.fa-houzz
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-vimeo
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-vimeo:before
{
    content: "";
}
.fa.fa-black-tie
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-fonticons
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-reddit-alien
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-edge
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-credit-card-alt:before
{
    content: "";
}
.fa.fa-codiepie
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-modx
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-fort-awesome
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-usb
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-product-hunt
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-mixcloud
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-scribd
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-pause-circle-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-pause-circle-o:before
{
    content: "";
}
.fa.fa-stop-circle-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-stop-circle-o:before
{
    content: "";
}
.fa.fa-bluetooth
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-bluetooth-b
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-gitlab
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-wpbeginner
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-wpforms
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-envira
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-wheelchair-alt
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-wheelchair-alt:before
{
    content: "";
}
.fa.fa-question-circle-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-question-circle-o:before
{
    content: "";
}
.fa.fa-volume-control-phone:before
{
    content: "";
}
.fa.fa-asl-interpreting:before
{
    content: "";
}
.fa.fa-deafness:before
{
    content: "";
}
.fa.fa-hard-of-hearing:before
{
    content: "";
}
.fa.fa-glide
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-glide-g
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-signing:before
{
    content: "";
}
.fa.fa-viadeo
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-viadeo-square
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-snapchat
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-snapchat-ghost
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-snapchat-square
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-pied-piper
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-first-order
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-yoast
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-themeisle
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-google-plus-official
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-google-plus-official:before
{
    content: "";
}
.fa.fa-google-plus-circle
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-google-plus-circle:before
{
    content: "";
}
.fa.fa-font-awesome
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-fa
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-fa:before
{
    content: "";
}
.fa.fa-handshake-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-handshake-o:before
{
    content: "";
}
.fa.fa-envelope-open-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-envelope-open-o:before
{
    content: "";
}
.fa.fa-linode
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-address-book-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-address-book-o:before
{
    content: "";
}
.fa.fa-vcard:before
{
    content: "";
}
.fa.fa-address-card-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-address-card-o:before
{
    content: "";
}
.fa.fa-vcard-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-vcard-o:before
{
    content: "";
}
.fa.fa-user-circle-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-user-circle-o:before
{
    content: "";
}
.fa.fa-user-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-user-o:before
{
    content: "";
}
.fa.fa-id-badge
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-drivers-license:before
{
    content: "";
}
.fa.fa-id-card-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-id-card-o:before
{
    content: "";
}
.fa.fa-drivers-license-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-drivers-license-o:before
{
    content: "";
}
.fa.fa-quora
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-free-code-camp
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-telegram
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-thermometer-4:before
{
    content: "";
}
.fa.fa-thermometer:before
{
    content: "";
}
.fa.fa-thermometer-3:before
{
    content: "";
}
.fa.fa-thermometer-2:before
{
    content: "";
}
.fa.fa-thermometer-1:before
{
    content: "";
}
.fa.fa-thermometer-0:before
{
    content: "";
}
.fa.fa-bathtub:before
{
    content: "";
}
.fa.fa-s15:before
{
    content: "";
}
.fa.fa-window-maximize
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-window-restore
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-times-rectangle:before
{
    content: "";
}
.fa.fa-window-close-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-window-close-o:before
{
    content: "";
}
.fa.fa-times-rectangle-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-times-rectangle-o:before
{
    content: "";
}
.fa.fa-bandcamp
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-grav
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-etsy
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-imdb
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-ravelry
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-eercast
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-eercast:before
{
    content: "";
}
.fa.fa-snowflake-o
{
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}
.fa.fa-snowflake-o:before
{
    content: "";
}
.fa.fa-superpowers
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-wpexplorer
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.fa.fa-spotify
{
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}
.lity
{
    z-index: 9990;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    white-space: nowrap;
    background: #0b0b0b;
    background: rgba(0,0,0,.9);
    outline: 0!important;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
}
.lity.lity-opened
{
    opacity: 1;
}
.lity.lity-closed
{
    opacity: 0;
}
.lity *
{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.lity-wrap
{
    z-index: 9990;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    outline: 0!important;
}
.lity-wrap:before
{
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -.25em;
}
.lity-loader
{
    z-index: 9991;
    color: #fff;
    position: absolute;
    top: 50%;
    margin-top: -.8em;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-family: Arial,Helvetica,sans-serif;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
}
.lity-loading .lity-loader
{
    opacity: 1;
}
.lity-container
{
    z-index: 9992;
    position: relative;
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    white-space: normal;
    max-width: 100%;
    max-height: 100%;
    outline: 0!important;
}
.lity-content
{
    z-index: 9993;
    width: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease,-webkit-transform .3s ease;
}
.lity-closed .lity-content, .lity-loading .lity-content
{
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
}
.lity-content:after
{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
}
.lity-close
{
    z-index: 9994;
    width: 35px;
    height: 35px;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-appearance: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    padding: 0;
    color: #fff;
    font-style: normal;
    font-size: 35px;
    font-family: Arial,Baskerville,monospace;
    line-height: 35px;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
    border: 0;
    background: 0 0;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.lity-close::-moz-focus-inner
{
    border: 0;
    padding: 0;
}
.lity-close:active, .lity-close:focus, .lity-close:hover, .lity-close:visited
{
    text-decoration: none;
    text-align: center;
    padding: 0;
    color: #fff;
    font-style: normal;
    font-size: 35px;
    font-family: Arial,Baskerville,monospace;
    line-height: 35px;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
    border: 0;
    background: 0 0;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.lity-close:active
{
    top: 1px;
}
.lity-image img
{
    max-width: 100%;
    display: block;
    line-height: 0;
    border: 0;
}
.lity-facebookvideo .lity-container, .lity-googlemaps .lity-container, .lity-iframe .lity-container, .lity-vimeo .lity-container, .lity-youtube .lity-container
{
    width: 100%;
    max-width: 964px;
}
.lity-iframe-container
{
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    overflow: auto;
    pointer-events: auto;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-overflow-scrolling: touch;
}
.lity-iframe-container iframe
{
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 8px rgba(0,0,0,.6);
    box-shadow: 0 0 8px rgba(0,0,0,.6);
    background: #000;
}
.lity-hide
{
    display: none;
}
.lity
{
    background: rgba(0,0,0,.5);
    z-index: 100000!important;
}
.slick-slider
{
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list
{
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: 0;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-list, .slick-slider .slick-track
{
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.slick-track
{
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:after, .slick-track:before
{
    content: "";
    display: table;
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}
.slick-slide
{
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}
[dir=rtl] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden
{
    display: none;
}
html
{
    font-size: 62.5%;
    overflow-x: hidden!important;
}
@media(max-width: 1879.98px)
{
    html
    {
        font-size: 55%;
    }
}
@media(max-width: 1589.98px)
{
    html
    {
        font-size: 45%;
    }
}
body
{
    background: #fff;
    min-width: 320px;
}
.alignnone
{
    margin: .5rem 2rem 2rem 0;
}
.aligncenter, div.aligncenter
{
    display: block;
    margin: 3rem auto 3rem auto;
}
.alignright
{
    float: right;
    margin: 2rem 0 3rem 3rem;
}
.alignleft
{
    float: left;
    margin: 2rem 3rem 3rem 0;
}
a img.alignright
{
    float: right;
    margin: 2rem 0 3rem 3rem;
}
a img.alignnone
{
    margin: 2rem 3rem 3rem 0;
}
a img.alignleft
{
    float: left;
    margin: 2rem 3rem 3rem 0;
}
a img.aligncenter
{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.wp-caption
{
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: .5rem .3rem 1rem;
    text-align: center;
}
.wp-caption.alignnone
{
    margin: 2rem 3rem 3rem 0;
}
.wp-caption.alignleft
{
    margin: 2rem 3rem 3rem 0;
}
.wp-caption.alignright
{
    margin: 2rem 0 3rem 3rem;
}
.wp-caption img
{
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}
.wp-caption p.wp-caption-text
{
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
    padding: 0 2rem 2rem;
}
.screen-reader-text
{
    border: 0;
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute!important;
    width: 1px;
    word-wrap: normal!important;
}
.screen-reader-text:focus
{
    background-color: #eee;
    clip: auto!important;
    -webkit-clip-path: none;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: .5rem;
    line-height: normal;
    padding: 1.5rem 23px 14px;
    text-decoration: none;
    top: .5rem;
    width: auto;
    z-index: 100000;
}
.gallery
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -.625rem 2rem;
}
.gallery .gallery-item
{
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: .625rem;
    margin-right: .625rem;
    margin-bottom: 2rem;
    text-align: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.gallery.gallery-columns-1 .gallery-item
{
    width: calc(100% - 1.25rem);
}
.gallery.gallery-columns-2 .gallery-item
{
    width: calc(50% - 1.25rem);
}
.gallery.gallery-columns-3 .gallery-item
{
    width: calc(33.33333% - 1.25rem);
}
.gallery.gallery-columns-4 .gallery-item
{
    width: calc(25% - 1.25rem);
}
.gallery.gallery-columns-5 .gallery-item
{
    width: calc(20% - 1.25rem);
}
.gallery.gallery-columns-6 .gallery-item
{
    width: calc(16.66667% - 1.25rem);
}
.gallery.gallery-columns-7 .gallery-item
{
    width: calc(14.28571% - 1.25rem);
}
.gallery.gallery-columns-8 .gallery-item
{
    width: calc(12.5% - 1.25rem);
}
.gallery.gallery-columns-9 .gallery-item
{
    width: calc(11.11111% - 1.25rem);
}
.gallery .gallery-caption
{
    color: #888;
    font-size: 1.2rem;
    margin-top: 1rem;
}
img
{
    max-width: 100%;
    height: auto;
}
a
{
    color: #212529;
}
a:hover
{
    color: #f99f35;
}
a
{
    -webkit-transition: color .1s ease-in,background-color .1s ease-in;
    transition: color .1s ease-in,background-color .1s ease-in;
}
a:focus, a:hover
{
    outline: 0;
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6
{
    margin: 0;
}
::-webkit-input-placeholder
{
    opacity: 1;
    color: #212529;
}
::-moz-placeholder
{
    opacity: 1;
    color: #212529;
}
:-ms-input-placeholder
{
    opacity: 1;
    color: #212529;
}
:-moz-placeholder
{
    opacity: 1;
    color: #212529;
}
.z1
{
    z-index: 1!important;
}
.z2
{
    z-index: 2!important;
}
.z3
{
    z-index: 3!important;
}
.z4
{
    z-index: 4!important;
}
.z5
{
    z-index: 5!important;
}
.z6
{
    z-index: 6!important;
}
.z7
{
    z-index: 7!important;
}
.z8
{
    z-index: 8!important;
}
.z9
{
    z-index: 9!important;
}
.z10
{
    z-index: 10!important;
}
.relative
{
    position: relative!important;
}
a.fill_div
{
    position: absolute!important;
    top: 0!important;
    bottom: 0!important;
    right: 0!important;
    left: 0!important;
    display: block!important;
    height: 100%!important;
    width: 100%!important;
    text-decoration: none!important;
}
.plastmb0 p:last-child, .plastmb0 ul:last-child
{
    margin-bottom: 0!important;
}
body
{
    font-family: K2D,sans-serif;
    font-weight: 400;
    color: #212529;
    font-size: 1.6rem;
}
.themecolor
{
    color: #f99f35;
}
a.themecolor:hover
{
    color: #212529;
}
.color-maincolor
{
    color: #212529!important;
}
.color-themecolor
{
    color: #f99f35!important;
}
.color-secondarycolor
{
    color: #a2db6b!important;
}
.color-thirdcolor
{
    color: #1f2337!important;
}
.color-white
{
    color: #fff!important;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6
{
    line-height: 1.2;
    margin-bottom: 3rem;
}
p
{
    margin-bottom: 3rem;
}
ol, ul
{
    margin-bottom: 3rem;
}
.desc
{
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.5;
}
.desc a
{
    color: #f99f35;
    text-decoration: underline;
}
.desc a:hover
{
    color: #a2db6b;
}
.headings-themecolor h1, .headings-themecolor h2, .headings-themecolor h3, .headings-themecolor h4, .headings-themecolor h5, .headings-themecolor h6
{
    color: #f99f35;
}
.lh15
{
    line-height: 1.5!important;
}
.fw300
{
    font-weight: 300!important;
}
.fw400
{
    font-weight: 400!important;
}
.fw500
{
    font-weight: 500!important;
}
.fw600
{
    font-weight: 600!important;
}
.fw700
{
    font-weight: 700!important;
}
.fw900
{
    font-weight: 900!important;
}
.text-underline
{
    text-decoration: underline;
}
.h1, h1
{
    font-size: 5rem;
}
@media(max-width: 767.98px)
{
    .h1, h1
    {
        font-size: 4rem;
    }
}
.h2, h2
{
    font-size: 4rem;
}
@media(max-width: 767.98px)
{
    .h2, h2
    {
        font-size: 3.5rem;
    }
}
.h3, h3
{
    font-size: 3rem;
}
.h4, h4
{
    font-size: 2.8rem;
}
.h5, h5
{
    font-size: 2rem;
}
.h6, h6
{
    font-size: 2rem;
}
b, strong
{
    font-weight: 700;
}
footer.footer
{
    position: relative;
    padding-top: 3rem;
    background-color: #1f2337;
    margin-top: 22rem;
}
@media(max-width: 767.98px)
{
    footer.footer
    {
        margin-top: 12rem;
    }
}
footer.footer .footer-brief
{
    margin-top: -14rem;
    position: relative;
}
footer.footer .footer-brief .title
{
    width: 100%;
    position: absolute;
    top: 43%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 2;
}
@media(max-width: 767.98px)
{
    footer.footer .footer-brief .title
    {
        font-size: 5rem;
    }
}
footer.footer .footer-brief .im
{
    width: 43.9rem;
}
@media(max-width: 767.98px)
{
    footer.footer .footer-brief .im
    {
        width: 36rem;
    }
}
footer.footer ul.menu
{
    list-style: none;
    margin: 5rem 0 0 0;
    padding: 0;
    text-align: center;
}
@media(max-width: 767.98px)
{
    footer.footer ul.menu
    {
        margin-top: 3rem;
    }
}
footer.footer ul.menu li
{
    display: inline;
    padding: 0 3rem;
}
@media(max-width: 767.98px)
{
    footer.footer ul.menu li
    {
        padding: 0 1rem;
    }
}
footer.footer ul.menu a
{
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: .179rem;
    text-transform: uppercase;
}
footer.footer ul.menu a:hover
{
    color: #f99f35;
}
footer.footer .footer-copyright
{
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid #f99f35;
    padding-bottom: 3rem;
}
footer.footer .footer-logo svg path.logo-letter
{
    fill: #fff;
}
.wrap-mylity .place-map iframe
{
    display: block;
    height: 70rem;
}
.col-contact>.sub
{
    background-color: #fff;
    -webkit-box-shadow: 0 1.6rem 5.4rem #07114014;
    box-shadow: 0 1.6rem 5.4rem #07114014;
}
.col-contact .content
{
    padding: 6.5rem 10rem;
}
@media(max-width: 991.98px)
{
    .col-contact .content
    {
        padding: 3rem;
    }
}
.col-contact .wr-im
{
    background-color: #1f2337;
    position: relative;
}
.col-contact .wr-im .title
{
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%;
    text-align: center;
}
.col-contact .wr-im .im
{
    opacity: .5;
    height: 25rem;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
header.headerTopMenu
{
    position: relative;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}
header.headerTopMenu .fixedWrapMenu
{
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    background-color: rgba(255,0,0,.5);
}
@media(max-width: 991.98px)
{
    body
    {
        padding-top: 80px;
    }
    header.headerTopMenu
    {
        display: none;
    }
    .logo-h-abs, .menu_top_right-wr-abs
    {
        display: none;
    }
}
@media(min-width: 992px)
{
    .mobileMenuWrap, .mobileNavBar, .mobileWrapHamb, .placeClickMobileCloseMenu
    {
        display: none!important;
    }
}
.wrapSubHeader
{
    margin-bottom: 6rem;
    padding-top: 15rem;
    position: relative;
}
@media(max-width: 767.98px)
{
    .wrapSubHeader
    {
        padding-top: 3rem;
    }
}
.wrapSubHeader .img-header-default
{
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 180rem;
}
.wrapSubHeader .img-header-right
{
    position: absolute;
    top: 0;
    right: 0;
    width: 120rem;
}
.wrapSubHeader .img-header-purple-right
{
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
}
@media(max-width: 767.98px)
{
    .wrapSubHeader .img-header-purple-right
    {
        opacity: .5;
    }
}
.wrapSubHeader .title
{
    text-transform: none;
}
.wrapSubHeader .hero-photo
{
    position: absolute;
    width: 100%;
    height: 100rem;
    background: no-repeat center/cover;
    top: 0;
    left: 0;
}
@media(max-width: 767.98px)
{
    .wrapSubHeader .hero-photo
    {
        height: 120rem;
    }
}
.wrapSubHeader .hero-photo:before
{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(31,35,55,.9);
    content: "";
}
.custom-header-1
{
    background: url(/wp-content/themes/mytheme/dist/assets/images/bg-top-gradient.svg) no-repeat center bottom/cover;
    padding: 8rem 5rem 15rem 5rem;
    text-align: center;
    margin-bottom: 5rem;
}
@media(min-width: 2700px)
{
    .custom-header-1
    {
        background-position: center center;
        padding-top: 8rem;
        padding-bottom: 4rem;
    }
}
.single-portf-subheader
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 3rem 0 3rem 0;
}
.single-portf-subheader a
{
    font-size: 2rem;
}
.mobileMenuWrap
{
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background: #1f2337;
    z-index: 8000;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: .3s;
    transition: .3s;
    width: 300px;
    border-right: 1px solid rgba(255,255,255,.2);
}
.mobileMenuWrap.open
{
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
.mobileMenuWrap ul.menu, .mobileMenuWrap ul.sub-menu
{
    list-style: none;
    padding: 0 0;
    margin: 0 0;
}
.mobileMenuWrap ul.menu li a, .mobileMenuWrap ul.sub-menu li a
{
    color: #fff;
    font-size: 2rem;
    font-weight: 400;
    padding: 8px 15px;
    border-top: 1px solid rgba(255,255,255,.2);
    display: block;
    text-transform: uppercase;
}
.mobileMenuWrap ul.menu .li-tel-menu-top, .mobileMenuWrap ul.sub-menu .li-tel-menu-top
{
    display: none;
}
.mobileMenuWrap ul.menu li.menu-item-has-children>a, .mobileMenuWrap ul.sub-menu li.menu-item-has-children>a
{
    position: relative;
}
.mobileMenuWrap ul.menu li.menu-item-has-children>a:before, .mobileMenuWrap ul.sub-menu li.menu-item-has-children>a:before
{
    content: "";
    position: absolute;
    display: block;
    left: calc(100% - 23px);
    top: 11px;
    background: url(/wp-content/themes/mytheme/dist/assets/images/mobile_li.svg) no-repeat;
    background-size: auto;
    background-size: 100%;
    width: 8px;
    height: 14px;
}
.mobileMenuWrap ul.menu li.menu-item-has-children ul, .mobileMenuWrap ul.sub-menu li.menu-item-has-children ul
{
    display: none;
}
.mobileMenuWrap ul.menu li.menu-item-has-children.show, .mobileMenuWrap ul.sub-menu li.menu-item-has-children.show
{
    background-color: rgba(255,255,255,.3);
}
.mobileMenuWrap ul.menu li.menu-item-has-children.show>ul, .mobileMenuWrap ul.sub-menu li.menu-item-has-children.show>ul
{
    display: block;
}
.mobileMenuWrap ul.menu li.menu-item-has-children.show>a::before, .mobileMenuWrap ul.sub-menu li.menu-item-has-children.show>a::before
{
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.mobileNavBar
{
    -webkit-box-shadow: 0 5px 5px 0 rgba(31,35,55,.27);
    box-shadow: 0 5px 5px 0 rgba(31,35,55,.27);
    height: 80px;
    background: #1f2337;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 15px;
}
.mobileNavBar img
{
    height: 35px;
}
.wrapSameAsMobileNav
{
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 15px;
}
.wrapSameAsMobileNav img
{
    height: 35px;
}
.mobileWrapHamb
{
    position: fixed;
    top: calc(2px + (44px / 2));
    right: calc(15px + 5px);
    z-index: 9000;
}
.placeClickMobileCloseMenu
{
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 7000;
    background: rgba(31,35,55,.7);
    display: none;
}
.placeClickMobileCloseMenu.open
{
    display: block;
}
.nav-icon-5
{
    width: 35px;
    height: 30px;
    position: relative;
    cursor: pointer;
    display: inline-block;
}
.nav-icon-5:before
{
    position: absolute;
    content: "";
    background: #f99f35;
    left: -5px;
    top: -5px;
    right: -5px;
    bottom: -5px;
    display: none;
}
.nav-icon-5.open span
{
    background: #fff;
}
.nav-icon-5 span
{
    background-color: #fff;
    position: absolute;
    border-radius: 2px;
    -webkit-transition: .3s cubic-bezier(.8,.5,.2,1.4);
    transition: .3s cubic-bezier(.8,.5,.2,1.4);
    width: 100%;
    height: 4px;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}
.nav-icon-5 span:nth-child(1)
{
    top: 0;
    left: 0;
}
.nav-icon-5 span:nth-child(2)
{
    top: 13px;
    left: 0;
    opacity: 1;
    background-color: #f99f35;
}
.nav-icon-5 span:nth-child(3)
{
    bottom: 0;
    left: 0;
}
.nav-icon-5:not(.open):hover span:nth-child(1)
{
    -webkit-transform: rotate(-3deg) scaleY(1.1);
    -ms-transform: rotate(-3deg) scaleY(1.1);
    transform: rotate(-3deg) scaleY(1.1);
}
.nav-icon-5:not(.open):hover span:nth-child(2)
{
    -webkit-transform: rotate(3deg) scaleY(1.1);
    -ms-transform: rotate(3deg) scaleY(1.1);
    transform: rotate(3deg) scaleY(1.1);
}
.nav-icon-5:not(.open):hover span:nth-child(3)
{
    -webkit-transform: rotate(-4deg) scaleY(1.1);
    -ms-transform: rotate(-4deg) scaleY(1.1);
    transform: rotate(-4deg) scaleY(1.1);
}
.nav-icon-5.open span:nth-child(1)
{
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 13px;
}
.nav-icon-5.open span:nth-child(2)
{
    opacity: 0;
}
.nav-icon-5.open span:nth-child(3)
{
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 13px;
}
.wrap-mobile-icons-menu-icons
{
    padding: 0 15px 8px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.wrap-mobile-icons-menu-icons ul
{
    padding: 0;
    margin: 0;
}
.wrap-icons-mobile
{
    position: fixed;
    right: 80px;
    top: 23px;
    z-index: 1001;
}
.wrap-icons-mobile a
{
    color: #f99f35;
    font-size: 23px;
}
.wrap-icons-mobile a:last-child
{
    color: #fff;
}
@media(min-width: 992px)
{
    .wrap-icons-mobile
    {
        display: none;
    }
}
.navigation .nav-links
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 2rem;
    padding-bottom: 2rem;
    color: #000;
    font-size: 1.8rem;
    font-weight: 400;
}
@media(max-width: 767.98px)
{
    .navigation .nav-links
    {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.page-numbers
{
    width: 4rem;
    height: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.page-numbers.current
{
    border-radius: 50%;
    background: #f99f35;
    color: #fff!important;
}
.page-numbers.dots:hover
{
    color: #000;
}
.page-numbers.next, .page-numbers.prev
{
    width: 1.2rem;
}
.page-numbers.next
{
    margin-left: 1rem;
}
.page-numbers.prev
{
    margin-right: 1rem;
}
.page-numbers.current, .page-numbers:hover
{
    color: #f99f35;
}
.slick-slider-all
{
    visibility: hidden;
    position: relative;
    -webkit-user-select: text!important;
    -moz-user-select: text!important;
    -ms-user-select: text!important;
    user-select: text!important;
}
.slick-slider-all.slick-initialized
{
    visibility: visible;
}
ul.slick-dots
{
    list-style: none;
    padding: 0;
    margin: 1.8rem 0 2rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
ul.slick-dots li
{
    cursor: pointer;
    padding: 0;
    margin: 0 .5rem;
    width: 1.3rem;
    height: 1.3rem;
    background: #212529;
    border-radius: 50%;
}
ul.slick-dots li.slick-active
{
    background: #f99f35;
}
ul.slick-dots li button
{
    display: none;
}
.slick-arrow
{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    width: 5rem;
    height: auto;
    text-align: center;
    font-size: 2rem;
    color: #fff;
}
.slick-arrow.prev
{
    left: 0;
}
.slick-arrow.next
{
    right: 0;
}
.slick-list
{
    margin: 0 -15px;
}
.slick-list .slick-slide
{
    padding: 0 15px;
}
.slid-anim-1, .slid-anim-2
{
    opacity: 0;
    -webkit-animation: hideElement .5s,translateXBack .9s forwards;
    animation: hideElement .5s,translateXBack .9s forwards;
}
.slid-anim-3
{
    opacity: 0;
    -webkit-animation: hideElement .5s,translateXBack1 .9s forwards;
    animation: hideElement .5s,translateXBack1 .9s forwards;
}
.slick-active .slid-anim-1
{
    -webkit-animation: showElement .9s .3s forwards,translateXForward .5s .2s forwards;
    animation: showElement .9s .3s forwards,translateXForward .5s .2s forwards;
}
.slick-active .slid-anim-2
{
    -webkit-animation: showElement .9s .3s forwards,translateXForward .7s .3s forwards;
    animation: showElement .9s .3s forwards,translateXForward .7s .3s forwards;
}
.slick-active .slid-anim-3
{
    -webkit-animation: showElement .9s .3s forwards,translateXForward1 .7s .3s forwards;
    animation: showElement .9s .3s forwards,translateXForward1 .7s .3s forwards;
}
@-webkit-keyframes showElement
{
    0%
    {
        opacity: 0;
    }
    100%
    {
        opacity: 1;
    }
}
@keyframes showElement
{
    0%
    {
        opacity: 0;
    }
    100%
    {
        opacity: 1;
    }
}
@-webkit-keyframes hideElement
{
    0%
    {
        opacity: 1;
    }
    100%
    {
        opacity: 0;
    }
}
@keyframes hideElement
{
    0%
    {
        opacity: 1;
    }
    100%
    {
        opacity: 0;
    }
}
@-webkit-keyframes scaleElement
{
    0%
    {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
    100%
    {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}
@keyframes scaleElement
{
    0%
    {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
    100%
    {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}
@-webkit-keyframes scaleBackElement
{
    0%
    {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
    100%
    {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}
@keyframes scaleBackElement
{
    0%
    {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
    100%
    {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}
@-webkit-keyframes translateXBack
{
    0%
    {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
    100%
    {
        -webkit-transform: translateX(-100rem);
        transform: translateX(-100rem);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}
@keyframes translateXBack
{
    0%
    {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
    100%
    {
        -webkit-transform: translateX(-100rem);
        transform: translateX(-100rem);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}
@-webkit-keyframes translateXBack1
{
    0%
    {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
    100%
    {
        -webkit-transform: translateX(100rem);
        transform: translateX(100rem);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}
@keyframes translateXBack1
{
    0%
    {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
    100%
    {
        -webkit-transform: translateX(100rem);
        transform: translateX(100rem);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}
@-webkit-keyframes translateXForward
{
    0%
    {
        -webkit-transform: translateX(-100rem);
        transform: translateX(-100rem);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
    100%
    {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}
@keyframes translateXForward
{
    0%
    {
        -webkit-transform: translateX(-100rem);
        transform: translateX(-100rem);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
    100%
    {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}
@-webkit-keyframes translateXForward1
{
    0%
    {
        -webkit-transform: translateX(100rem);
        transform: translateX(100rem);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
    100%
    {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}
@keyframes translateXForward1
{
    0%
    {
        -webkit-transform: translateX(100rem);
        transform: translateX(100rem);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
    100%
    {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}
#catapult-cookie-bar
{
    font-size: 13px!important;
    padding-top: 5px!important;
    padding-bottom: 5px!important;
}
.pll-parent-menu-item>a>span.ubermenu-target-title
{
    display: block!important;
}
@media(min-width: 992px)
{
    .pll-parent-menu-item
    {
        margin-left: -1rem!important;
    }
    .pll-parent-menu-item img
    {
        display: block;
        margin: 0 auto;
    }
}
.pll-parent-menu-item ul
{
    margin-top: 0!important;
    min-width: auto!important;
}
.pll-parent-menu-item ul span
{
    display: block!important;
}
.pll-parent-menu-item ul li
{
    min-width: auto!important;
}
.pll-parent-menu-item ul li a
{
    padding-left: 0!important;
    padding-right: 0!important;
}
#breadcrumbs
{
    margin-bottom: 0;
    font-size: 1.3rem;
    font-family: K2D,sans-serif;
}
@media(max-width: 1589.98px)
{
    #breadcrumbs
    {
        font-size: 1.6rem;
    }
}
body.page-template-t-career #breadcrumbs
{
    color: #fff;
}
body.page-template-t-career #breadcrumbs a
{
    color: #fff;
}
.wrap-mylity
{
    width: 125rem;
    max-width: calc(100% - 30px);
    margin: 0 15px;
}
.wrap-mylity>.sub
{
    -webkit-box-shadow: 0 0 6rem rgba(0,0,0,.16);
    box-shadow: 0 0 6rem rgba(0,0,0,.16);
    background-color: #fff;
    padding: 2rem 2rem;
}
@media(max-width: 991.98px)
{
    .wrap-mylity>.sub
    {
        padding: 15px 15px;
    }
}
.my-lity-content
{
    max-height: 75rem;
    overflow: auto;
    padding: 0 0;
}
@media(max-width: 767.98px)
{
    .my-lity-content
    {
        max-height: 450px;
    }
}
.my-lity-close
{
    z-index: 999;
}
.my-lity-close.cl_popup
{
    position: absolute;
    right: calc(2rem + 15px);
    top: 2rem;
}
.my-lity-close.cl_popup .cl
{
    width: 2.5rem;
    height: 2.5rem;
    display: block;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    opacity: 1;
}
.my-lity-close.cl_popup .cl:hover
{
    opacity: .5;
}
span.wpcf7-not-valid-tip
{
    font-size: 1.5rem!important;
}
div.wpcf7-response-output
{
    font-size: 1.6rem!important;
    margin: 2rem 0 1rem 0!important;
}
div.wpcf7 .ajax-loader
{
    position: absolute;
    right: 0;
    bottom: 0;
}
div.wpcf7 .wpcf7-submit:disabled
{
    opacity: .5;
}
div.wpcf7-response-output
{
    padding: 1.8rem;
    text-align: center;
}
div.wpcf7-acceptance-missing, div.wpcf7-validation-errors
{
    border-color: #f99f35;
}
div.wpcf7-mail-sent-ok
{
    border-color: #a2db6b;
}
.d-cf-check
{
    display: block;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-size: 1.3rem!important;
}
.d-cf-check+.wpcf7-not-valid-tip
{
    margin-bottom: 2rem;
}
.d-cf-check .wpcf7-list-item
{
    margin: 0 0 0 0!important;
}
.d-cf-check input
{
    display: none;
}
.d-cf-check input+span::before
{
    content: "";
    display: block;
    width: 2rem;
    height: 2rem;
    border-radius: .3rem;
    border: .2rem solid #a2db6b;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.d-cf-check input:checked+span::before
{
    background: #a2db6b url(/wp-content/themes/mytheme/dist/assets/images/ok.svg) no-repeat center/1.5rem;
}
.d-cf-check input+span
{
    position: relative;
    padding-left: 3.5rem;
    display: block;
}
.sub-add-file
{
    position: relative;
}
.sub-add-file:after
{
    background: url(/wp-content/themes/mytheme/dist/assets/images/plus-circle.svg) no-repeat left center/4.1rem;
    content: attr(data-content);
    color: #1f2337;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    padding-left: 6rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: block;
    margin-top: .5rem;
    cursor: pointer;
}
.sub-add-file:hover:after
{
    color: #a2db6b;
}
.sub-add-file br
{
    display: none;
}
.sub-add-file .wpcf7-form-control-wrap>input
{
    display: none;
}
.wrap-contact-form-1
{
    margin: 0 -1rem;
}
.wrap-contact-form-1 .incl
{
    padding-left: 3.5rem;
    font-size: 1.6rem;
}
.wrap-contact-form-1 .incl:before
{
    content: "+ ";
}
.wrap-contact-form-1 p
{
    margin-bottom: 0;
}
.wrap-contact-form-1 [data-toggle=collapse]
{
    background: url(/wp-content/themes/mytheme/dist/assets/images/accordeon-closed.svg) no-repeat right 0 center;
    background-size: 1.6rem;
}
.wrap-contact-form-1 [aria-expanded=true]
{
    background-image: url(/wp-content/themes/mytheme/dist/assets/images/accordeon-opened.svg);
}
.wrap-contact-form-1 #collapse_1 .d-cf-check, .wrap-contact-form-1 #collapse_2 .d-cf-check
{
    font-size: 2rem!important;
}
.wrap-contact-form-1 #collapse_1 .d-cf-check input+span::before, .wrap-contact-form-1 #collapse_2 .d-cf-check input+span::before
{
    top: 53%;
}
.wrap-contact-form-1 #collapse_2 .d-cf-check input+span::before
{
    border-color: #f99f35;
}
.wrap-contact-form-1 #collapse_2 .d-cf-check input:checked+span::before
{
    background-color: #f99f35;
}
.wrap-contact-form-1 .line
{
    height: 1px;
    background: #e7e7e7;
    margin: 2rem 0;
}
.wrap-contact-form-1 ::-webkit-input-placeholder
{
    opacity: .5;
    color: #212529;
}
.wrap-contact-form-1 ::-moz-placeholder
{
    opacity: .5;
    color: #212529;
}
.wrap-contact-form-1 :-ms-input-placeholder
{
    opacity: .5;
    color: #212529;
}
.wrap-contact-form-1 :-moz-placeholder
{
    opacity: .5;
    color: #212529;
}
.wrap-contact-form-1 .colForm
{
    padding: 0 1rem;
}
.wrap-contact-form-1 .rowForm
{
    margin: 0 -1rem;
}
.wrap-contact-form-1 .colInput input, .wrap-contact-form-1 .colInput select, .wrap-contact-form-1 .colInput textarea
{
    outline: 0;
    background-color: #fff;
    width: 100%;
    padding: 1.8rem 1.7rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    -webkit-transition: all .3s;
    transition: all .3s;
    font-size: 1.7rem;
    border: 1px solid #e7e7e7;
}
.wrap-contact-form-1 .colInput input:focus, .wrap-contact-form-1 .colInput select:focus, .wrap-contact-form-1 .colInput textarea:focus
{
    border-color: #a2db6b;
    -webkit-box-shadow: 0 .5rem 3rem rgba(105,97,249,.08);
    box-shadow: 0 .5rem 3rem rgba(105,97,249,.08);
}
.wrap-contact-form-1 .colInput textarea
{
    height: 17rem;
    min-height: 17rem;
    max-height: 30rem;
}
.wrap-contact-form-1 .colInput select
{
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-overflow: "";
    background-image: url(/wp-content/themes/mytheme/dist/assets/images/select.svg);
    background-position: right 1.7rem center;
    background-repeat: no-repeat;
    background-size: 1.6rem;
    color: #212529;
}
.wrap-contact-form-1 .colSubmit
{
    text-align: center;
    font-size: 1.6rem;
}
.wrap-contact-form-1 .colSubmit, .wrap-contact-form-1 .colSubmit a
{
    color: #a2db6b;
}
.wrap-contact-form-1 .colSubmit a:hover
{
    color: #f99f35;
}
.wrap-contact-form-1 .colSubmit a.send-email
{
    text-decoration: underline;
    font-weight: 700;
}
.wrap-contact-form-1 .wpcf7-submit
{
    -webkit-transition: all .3s;
    transition: all .3s;
    display: inline-block;
    background-color: #f99f35;
    padding: 1.5rem 2rem;
    color: #fff;
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: .192rem;
    text-transform: uppercase;
    text-align: center;
    border: .2rem solid transparent;
    display: inline-block;
    min-width: 25rem;
    margin-top: 2rem;
    cursor: pointer;
}
.wrap-contact-form-1 .wpcf7-submit:hover
{
    background-color: #212529;
    color: #fff;
}
.brief-circle-wr
{
    margin-top: 6rem;
    width: 50rem;
    height: 50rem;
    position: relative;
}
@media(max-width: 767.98px)
{
    .brief-circle-wr
    {
        width: 290px;
        height: 290px;
    }
}
.brief-circle-wr .brief-circle
{
    height: 100%;
    border: 3rem solid #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 10rem rgba(204,204,204,.5);
    box-shadow: 0 0 10rem rgba(204,204,204,.5);
}
.brief-circle-wr canvas
{
    max-width: 100%;
    max-height: 100%;
}
.brief-circle-wr .minus, .brief-circle-wr .plus
{
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: #1f2337;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    background-repeat: no-repeat;
    background-size: 3rem;
    background-position: center;
}
.brief-circle-wr .minus:hover, .brief-circle-wr .plus:hover
{
    background-color: #a2db6b;
}
.brief-circle-wr .plus
{
    bottom: calc(50% + 10rem);
    background-image: url(/wp-content/themes/mytheme/dist/assets/images/ic_plus.svg);
}
.brief-circle-wr .minus
{
    top: calc(50% + 10rem);
    background-image: url(/wp-content/themes/mytheme/dist/assets/images/ic_minus.svg);
}
.brief-circle-wr .abs
{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    text-align: center;
}
.brief-circle-wr .abs .budget-title
{
    font-size: 1.8rem;
    font-weight: 700;
}
.brief-circle-wr .abs .number-title
{
    font-size: 4.2rem;
    font-weight: 700;
}
.col-counters
{
    margin-bottom: 30px;
}
.col-counters .sub-wr
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.col-counters .sub-wr .ic-wr
{
    width: 8.5rem;
    text-align: center;
}
.col-counters .sub-wr .ic-wr .im
{
    width: 8rem;
}
.col-counters .sub-wr .data-wr
{
    width: calc(100% - 8.5rem);
    padding-left: 4rem;
}
.d-slick-main
{
    border: 1px solid #f00;
}
.d-slick-simple
{
    border: 1px solid #00f;
}
.wr-acc .title
{
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1f2337;
}
.wr-acc .place
{
    font-size: 2rem;
    font-weight: 300;
    color: #212529;
    padding-right: 8rem;
}
.wr-acc .place i
{
    color: #a2db6b;
}
.wr-acc .more
{
    font-size: 2rem;
    font-weight: 300;
    color: #212529;
    padding-right: 3rem;
}
@media(max-width: 767.98px)
{
    .wr-acc .more
    {
        display: none;
    }
}
.we-offer-wr
{
    padding: 0 10rem;
}
@media(max-width: 767.98px)
{
    .we-offer-wr
    {
        padding: 0 5rem;
    }
}
.wrapQt
{
    background: #fff;
    margin-bottom: 2rem;
    -webkit-box-shadow: 0 .8rem 15.5rem #b9b9b84f;
    box-shadow: 0 .8rem 15.5rem #b9b9b84f;
    position: relative;
}
.cont-acc
{
    position: relative;
    cursor: pointer;
    padding: 6rem 10rem 6rem 10rem;
    background: url(/wp-content/themes/mytheme/dist/assets/images/accordeon-closed.svg) no-repeat right 10rem center;
    background-size: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media(max-width: 767.98px)
{
    .cont-acc
    {
        padding: 2rem 5rem 2rem 2rem;
        background-position: right 2rem center;
    }
    .cont-acc .title
    {
        width: 100%;
    }
}
.cont-acc[aria-expanded=true]
{
    background-image: url(/wp-content/themes/mytheme/dist/assets/images/accordeon-opened.svg);
    background-color: #f8f8f8;
    color: #a2db6b!important;
}
.subInCollapse
{
    padding: 6rem 10rem;
}
@media(max-width: 767.98px)
{
    .subInCollapse
    {
        padding: 3rem;
    }
}
.author-wr
{
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.author-wr .im-wr
{
    width: 6rem;
}
.author-wr .im-wr .im
{
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}
.author-wr .data-wr
{
    width: calc(100% - 6rem);
    padding-left: 2rem;
    font-size: 1.8rem;
}
.author-wr .nickname
{
    font-weight: 700;
    margin-bottom: -.5rem;
}
.col-card-blog
{
    margin-bottom: 5rem;
}
.col-card-blog:last-child .author-wr
{
    border-bottom: 0;
    padding-bottom: 0;
}
.col-card-blog>.sub-card-blog
{
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.col-card-blog>.sub-card-blog .content
{
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.col-card-blog .image-thumb
{
    display: block;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 18rem;
    border-radius: .5rem;
    margin-bottom: 2rem;
}
@media(max-width: 767.98px)
{
    .col-card-blog .image-thumb
    {
        height: auto;
        width: auto;
        margin: 3rem auto;
    }
}
.col-card-blog .tags
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 1rem 0;
    font-size: 80%;
}
@media(max-width: 767.98px)
{
    .col-card-blog .tags
    {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 100%;
    }
}
.col-card-blog .tags a
{
    margin: 0 1rem 1rem 0;
    background: #a2db6b;
    padding: .2rem 1rem;
    color: #fff;
}
.col-card-blog .tags a:hover
{
    color: #212529;
}
.col-card-blog .desc
{
    color: #a2db6b;
}
.col-card-blog .title
{
    margin-bottom: 2rem;
    font-size: 3rem;
}
.col-card-blog .title a
{
    color: #1f2337;
    font-weight: 700;
    line-height: 1.2;
}
.col-card-blog .title a:hover
{
    color: #f99f35;
}
@media(min-width: 768px)
{
    .col-card-blog .sub-card-blog.first .image-thumb
    {
        height: 40rem;
        margin-bottom: 0;
        border-radius: .5rem .5rem 0 0;
    }
    .col-card-blog .sub-card-blog.first .title
    {
        font-size: 4.4rem;
    }
    .col-card-blog .sub-card-blog.first .content
    {
        border: .1rem solid #e2e2e2;
        padding: 5rem;
        border-radius: 0 0 .5rem .5rem;
    }
    .col-card-blog .sub-card-blog.author-line .author-wr
    {
        padding-bottom: 5rem;
        border-bottom: 1px solid #f99f35;
    }
}
.meta-single
{
    color: #a2db6b;
    font-size: 1.7rem;
    font-weight: 700;
    text-transform: uppercase;
}
.meta-single a
{
    color: #a2db6b;
}
.meta-single a:hover
{
    color: #1f2337;
}
.d_btn_simple_1
{
    background-color: #f99f35;
    padding: 1.5rem 2rem;
    color: #fff;
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: .192rem;
    text-transform: uppercase;
    text-align: center;
    border: .2rem solid transparent;
    display: inline-block;
}
@media(min-width: 768px)
{
    .d_btn_simple_1
    {
        min-width: 25rem;
    }
}
.d_btn_simple_1:hover
{
    background-color: #212529;
    color: #fff;
}
.d_btn_simple_1.v2
{
    border-color: #f99f35;
    background-color: transparent;
    color: #f99f35;
}
.d_btn_simple_1.v2:hover
{
    background-color: #f99f35;
    color: #fff;
}
.d_btn_simple_1.v3
{
    background-color: #fff;
    color: #1f2337;
}
.d_btn_simple_1.v3:hover
{
    background-color: #1f2337;
    color: #fff;
}
.d_btn_simple_1.v4
{
    border-color: #a2db6b;
    background-color: transparent;
    color: #a2db6b;
}
.d_btn_simple_1.v4:hover
{
    background-color: #a2db6b;
    color: #fff;
}
.d_btn_simple_1.single-portfolio-btn:hover
{
    background-color: #1f2337!important;
}
.d_heading_type_1
{
    font-size: 8rem;
    font-weight: 600;
    line-height: 1;
}
@media(max-width: 991.98px)
{
    .d_heading_type_1
    {
        font-size: 6rem;
    }
}
.d_heading_type_2
{
    font-size: 7rem;
    font-weight: 600;
    line-height: 1.1;
}
@media(max-width: 991.98px)
{
    .d_heading_type_2
    {
        font-size: 5rem;
    }
}
.d_heading_type_3
{
    font-size: 5.7rem;
    font-weight: 600;
    line-height: 1.39;
}
@media(max-width: 991.98px)
{
    .d_heading_type_3
    {
        font-size: 5rem;
    }
}
.d_heading_type_4
{
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2;
}
@media(max-width: 991.98px)
{
    .d_heading_type_4
    {
        font-size: 5rem;
    }
}
.d_heading_type_5
{
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.2;
}
@media(max-width: 991.98px)
{
    .d_heading_type_5
    {
        font-size: 4rem;
    }
}
.d_heading_type_6
{
    font-size: 4.2rem;
    font-weight: 600;
    line-height: 1.6;
}
@media(max-width: 991.98px)
{
    .d_heading_type_6
    {
        font-size: 4rem;
    }
}
.d_desc_1 h2, .d_heading_type_7
{
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.2;
}
@media(max-width: 991.98px)
{
    .d_desc_1 h2, .d_heading_type_7
    {
        font-size: 3rem;
    }
}
.d_desc_1 h2.v2, .d_heading_type_7.v2
{
    font-weight: 700;
    line-height: 1.32;
}
.d_heading_type_8
{
    font-size: 3.1rem;
    font-weight: 700;
}
.d_desc_1 h3, .d_heading_type_9
{
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
}
.d_heading_type_10
{
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.33;
    position: relative;
    padding-top: 2rem;
}
.d_heading_type_10:before
{
    width: 5rem;
    height: .3rem;
    background-color: #f99f35;
    position: absolute;
    left: 50%;
    top: 0;
    content: "";
    display: block;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.d_heading_type_11
{
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
}
.d_heading_type_12
{
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
}
.d_heading_type_13
{
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.76;
}
.d_desc_1 h1, .d_heading_type_14
{
    font-size: 6rem;
    font-weight: 600;
    line-height: 1.19;
}
.d_desc_1 h4, .d_heading_type_15
{
    font-size: 2.3rem;
    font-weight: 600;
}
.d_desc_1
{
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.5;
}
@media(max-width: 767.98px)
{
    .d_desc_1
    {
        font-size: 2.3rem;
    }
}
.d_desc_1 h1, .d_desc_1 h2, .d_desc_1 h3, .d_desc_1 h4, .d_desc_1 h5, .d_desc_1 h6
{
    font-weight: 600;
}
.d_desc_1.v1
{
    line-height: 1.9;
}
@media(min-width: 768px)
{
    .d_desc_1.v2
    {
        font-size: 2.6rem;
        line-height: 1.7;
    }
}
.d_desc_1.v3
{
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 1.5;
}
@media(max-width: 767.98px)
{
    .d_desc_1.v3
    {
        font-size: 2.5rem;
    }
}
.d_desc_1.v4 ul
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.d_desc_1.v4 ul li
{
    margin-bottom: 2rem;
}
@media(min-width: 768px)
{
    .d_desc_1.v4 ul li
    {
        width: 50%;
    }
}
.d_desc_1.desc-clean-ul li:before
{
    display: none;
}
.d_desc_1.desc-clean-ul li a:hover
{
    color: #212529!important;
}
.d_desc_1.links-as-normal a
{
    color: #212529;
    text-decoration: none;
}
.d_desc_1.links-as-normal a:hover
{
    color: #f99f35;
}
.d_desc_1 ul
{
    padding-left: 0;
    list-style: none;
}
.d_desc_1 ul li
{
    margin-bottom: 1rem;
    position: relative;
}
.d_desc_1 ul li:before
{
    content: "⦁";
    position: relative;
    top: .2rem;
    padding-right: 2rem;
    color: #f99f35;
}
.d_desc_1 ol:last-child, .d_desc_1 p:last-child, .d_desc_1 ul:last-child
{
    margin-bottom: 0!important;
}
.d_desc_1 a
{
    color: #f99f35;
    text-decoration: underline;
}
.d_desc_1 a:hover
{
    color: #a2db6b;
}
img.mylazy
{
    opacity: 0;
}
img.mylazy:not(.initial)
{
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}
img.mylazy.error, img.mylazy.initial, img.mylazy.loaded
{
    opacity: 1;
}
img.mylazy:not([src])
{
    visibility: hidden;
}
.single-tags a
{
    border-radius: .5rem;
    border: .2rem solid #a2db6b;
    background-color: #e9eaef;
    color: #a2db6b;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.07;
    text-align: center;
    padding: 1rem 2rem;
    display: inline-block;
    margin-top: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
}
.single-tags a:hover
{
    background-color: #a2db6b;
    color: #fff;
}
.part-social-wrap a
{
    color: #fff;
    font-size: 2.5rem;
}
.part-social-wrap a:not(:last-child)
{
    margin-right: 2rem;
}
.part-social-wrap a:hover
{
    color: #a2db6b;
}
.logo-h-abs
{
    position: fixed;
    top: 0;
    left: 10rem;
    padding-top: 2rem;
    z-index: 99999;
}
.logo-header-wr
{
    display: inline-block;
    position: relative;
}
.logo-header-wr .logo-header svg.logo-wiwi
{
    position: relative;
}
.logo-header-wr svg.bubble
{
    position: absolute;
    width: 24rem;
    left: 50%;
    -webkit-transform: translateX(-45%);
    -ms-transform: translateX(-45%);
    transform: translateX(-45%);
    top: -12rem;
}
svg.logo-wiwi
{
    width: 9.5rem;
    height: auto;
}
.brief_offer
{
    max-width: 32.6rem;
    position: relative;
    z-index: 10;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: .24rem;
    text-transform: uppercase;
    text-align: center;
}
body.page-template-t-shops .brief_offer, body.page-template-t-websites .brief_offer
{
    max-width: 24rem;
}
.brief_offer.head_brief
{
    max-width: 34.6rem!important;
    position: absolute;
    right: -5rem;
    bottom: -14rem;
}
@media(max-width: 1199.98px)
{
    .brief_offer.head_brief
    {
        right: auto;
        left: -1rem;
        max-width: 25rem!important;
        bottom: -5rem;
    }
}
.brief_offer span.mid
{
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 20%;
}
.brief_offer span.mid img
{
    margin-bottom: 1.5rem;
    width: 4.9rem;
}
.brief_offer:hover
{
    color: #000;
}
.col-clients
{
    margin-bottom: 30px;
}
.col-clients>.sub
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #e7e7e7;
    height: 15rem;
    padding: 2rem;
}
.col-clients>.sub .hide-border-fix
{
    position: relative;
}
.col-clients>.sub .hide-border-fix:before
{
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 2px solid #fff;
    z-index: 3;
}
.col-clients>.sub .im
{
    max-height: 13rem;
}
.about-team-wr .d_circle
{
    position: absolute;
    border-radius: 50%;
}
.about-team-wr .d_circle .elem-1, .about-team-wr .d_circle .elem-2
{
    position: absolute;
    z-index: -1;
}
.about-team-wr .d_circle .elem-1 path, .about-team-wr .d_circle .elem-2 path
{
    fill: linear-gradient(90deg,#c7ff95 0,#14b3db 35%,#00d4ff 100%);
}
.row-team
{
    position: relative;
}
.col-team
{
    margin-bottom: 30px;
}
@media(max-width: 767.98px)
{
    .col-team
    {
        top: 0!important;
        margin-bottom: 0!important;
        width: 50%!important;
    }
}
.col-team .im
{
    margin-bottom: 30px;
}
#form-contact
{
    border: 1px solid #e7e7e7;
}
#form-contact .heading-form
{
    background: url(/wp-content/themes/mytheme/dist/assets/images/bg-top-gradient.svg) no-repeat center/cover;
    padding: 8rem 5rem 12rem 5rem;
    text-align: center;
}
#form-contact>.sub
{
    padding: 5rem 5rem;
    margin: 0 auto;
    width: 100rem;
    max-width: 100%;
}
.col-colors
{
    margin-bottom: 30px;
}
.col-colors .sub
{
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    background: no-repeat center/cover;
    border: 1px solid transparent;
    border-radius: .5rem;
}
.col-colors .sub .color-title
{
    color: #fff;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}
.col-colors .sub.light-color
{
    border-color: #cfcfcf;
}
.col-colors .sub.light-color .color-title
{
    color: #cfcfcf;
}
@media(max-width: 767.98px)
{
    .row-colors
    {
        margin: 0 -10px;
    }
    .row-colors .col-colors
    {
        padding: 0 10px;
        margin-bottom: 20px;
    }
}
.opacity-0
{
    opacity: 0;
}
.effect-popup-title
{
    text-transform: capitalize;
}
.slick-effetcts-wr
{
    padding: 0 2rem;
}
.slick-effetcts-wr ul.slick-dots li
{
    width: .5rem;
    height: .5rem;
}
.slick-effetcts-wr .wr-links a
{
    display: inline-block;
    color: #fff;
    background-color: #a2db6b;
    padding: .5rem 1rem;
    margin-bottom: .5rem;
    border: 0;
}
.slick-effetcts-wr .wr-links a:hover
{
    background-color: #f99f35;
}
.slick-effetcts-wr .slick-list .slick-slide
{
    padding-right: 1.6rem;
    overflow: hidden;
    padding-left: 1.6rem;
}
.slick-effetcts-wr .effects-desc
{
    font-size: 1.6rem;
}
@media(max-width: 767.98px)
{
    .slick-effetcts-wr .slick-arrow
    {
        top: -4rem;
    }
}
.slick-effetcts-wr .prev
{
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}
.slick-effetcts-wr .step-wr
{
    margin-top: 2rem;
}
.slick-effetcts-wr .step-wr .step
{
    position: relative;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
}
.slick-effetcts-wr .step-wr .step:before
{
    content: "";
    position: absolute;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    background-color: #f99f35;
}
.sec-1-websites
{
    margin-top: -15rem;
}
@media(max-width: 991.98px)
{
    .sec-1-websites
    {
        margin-top: 0;
    }
}
.sec-1-websites.shop
{
    margin-top: 0;
}
.max1920
{
    width: 1920px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.sec-2-websites
{
    margin-top: 5rem;
    margin-bottom: 5rem;
}
.sec-3-websites
{
    margin-bottom: 5rem;
}
.b-tabs
{
    background-color: #1f2337;
    padding-top: 10rem;
    padding-bottom: 10rem;
}
@media(max-width: 767.98px)
{
    .b-tabs
    {
        padding: 5rem 0;
    }
}
.b-tabs .wrap-ac-left .title
{
    color: #fff;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.b-tabs .wrap-ac-right
{
    border-left: .8rem solid #a2db6b;
    padding: 5rem 8rem;
    background-color: #fff;
}
@media(max-width: 767.98px)
{
    .b-tabs .wrap-ac-right
    {
        padding: 3rem;
    }
}
.b-tabs .nav-tabs
{
    border: 0;
}
.b-tabs .nav-tabs .nav-link
{
    padding: 0;
    border-radius: 0;
    border: 0;
    width: 100%;
    background-color: transparent!important;
}
.b-tabs .nav-tabs .nav-link.active
{
    color: #a2db6b;
}
.b-tabs .col-inside
{
    margin-bottom: 30px;
}
.b-tabs .col-inside .wr-im
{
    padding-bottom: 56%;
    height: 0;
    position: relative;
    margin-bottom: 1rem;
}
.b-tabs .col-inside .wr-im .im
{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}
.b-tabs .col-inside .d-link
{
    color: #f99f35;
    font-size: 2rem;
    font-weight: 600;
}
.b-tabs .col-inside .d-link:hover
{
    color: #a2db6b;
}
.www-gallery-wr
{
    background-color: #1f2337;
    padding-bottom: 6rem;
}
.cart-1
{
    position: absolute;
    width: 7rem;
    right: 100%;
    top: -5rem;
}
.cart-2
{
    width: 5.8rem;
    position: absolute;
    left: calc(100% + 7rem);
    bottom: 3rem;
}
.element_ecommerce
{
    width: 75rem;
    position: absolute;
    top: -6rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.col-shop-icons
{
    margin-bottom: 6rem;
}
.col-shop-icons .im-wr
{
    height: 8rem;
    margin-bottom: 2rem;
}
.col-shop-icons .im-wr .im
{
    max-height: 100%;
}
.sec-shop-steps
{
    position: relative;
    padding-top: 8rem;
}
.sec-shop-steps:before
{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 40rem;
    background-color: #1f2337;
    width: 100%;
}
.sec-shop-steps .col-shop-steps
{
    margin-bottom: 30px;
}
.sec-shop-steps .col-shop-steps>.sub
{
    background-color: #212529;
    color: #fff;
    padding: 5rem;
    height: 100%;
}
.sec-shop-steps .col-shop-steps:nth-of-type(2)>.sub
{
    background-color: #a2db6b;
    position: relative;
}
@media(min-width: 768px)
{
    .sec-shop-steps .col-shop-steps:nth-of-type(2)>.sub
    {
        bottom: 4rem;
    }
}
.sec-shop-steps .col-shop-steps:nth-of-type(3)>.sub
{
    background-color: #f99f35;
}
.sec-shop-steps .col-shop-steps .number
{
    color: #fff;
    text-align: right;
    font-size: 12.6rem;
    font-weight: 600;
    line-height: .4;
    opacity: .5;
    margin-bottom: 5rem;
}
.effects-seo-wr
{
    background-color: #1f2337;
}
.effects-seo-wr .title
{
    color: #fff;
}
.big-font
{
    font-size: 21rem;
    font-weight: 500;
    line-height: 1;
}
@media(max-width: 991.98px)
{
    .big-font
    {
        font-size: 16rem;
    }
}
@media(max-width: 991.98px)
{
    .big-font
    {
        font-size: 13rem;
    }
}
.grow-right
{
    position: absolute;
    width: 40rem;
    bottom: 15rem;
    left: calc(100% - 6rem);
    z-index: 3;
}
@media(max-width: 991.98px)
{
    .grow-right
    {
        bottom: 12rem;
        left: calc(100% - 5rem);
    }
}
@media(max-width: 767.98px)
{
    .grow-right
    {
        bottom: 10rem;
        left: calc(100% - 4rem);
        width: 20rem;
    }
}
.grow-left
{
    position: absolute;
    width: 150rem;
    max-width: none;
    top: calc(100% - 2rem);
    right: 13rem;
}
@media(max-width: 991.98px)
{
    .grow-left
    {
        top: calc(100% - 2rem);
        right: 10rem;
    }
}
@media(max-width: 767.98px)
{
    .grow-left
    {
        top: calc(100% - 1rem);
        right: 8rem;
        width: 60rem;
    }
}
.sh-wr .title
{
    font-size: 2rem;
    margin-right: 3rem;
}
.sh-wr .d-social-share-wrap a
{
    font-size: 2.5rem;
    color: #a2db6b;
}
.sh-wr .d-social-share-wrap a:hover
{
    color: #1f2337!important;
}
.sh-wr .d-social-share-wrap a:not(:last-child)
{
    margin-right: 3rem;
}
.arch-proj-tabs
{
    display: block;
    border: 0;
}
.arch-proj-tabs a.nav-link
{
    display: block;
    border: 0;
    border-radius: 0;
    margin: 0 0 0 0;
    padding: 0;
    color: #1f2337;
    font-size: 2.4rem;
    font-weight: 600;
}
.arch-proj-tabs a.nav-link:hover
{
    color: #a2db6b;
}
.arch-proj-tabs a.nav-link.active
{
    border: 0;
    color: #a2db6b;
}
.home-img-arch-portf
{
    -webkit-box-shadow: 0 0 .5rem #ccc;
    box-shadow: 0 0 .5rem #ccc;
}
.card-columns
{
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 2.75rem;
    -moz-column-gap: 2.75rem;
    column-gap: 2.75rem;
}
.card-columns .card
{
    margin-bottom: 2.75rem;
    border: 0;
    text-align: center;
}
.lang-wrap
{
    padding: 0;
    margin: 0 0 2rem 0;
    list-style: none;
}
.lang-wrap img
{
    width: 2.8rem;
}
.lang-wrap li
{
    display: inline-block;
    margin-right: 1rem;
}
.row-blog
{
    margin: 0 -5rem;
}
.row-blog .col-blog
{
    padding: 0 5rem;
}
.categories-header a
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem 2rem;
    text-align: center;
    color: #1f2337;
    font-size: 1.8rem;
    font-weight: 600;
    border: .1rem solid #e2e2e2;
    border-radius: .5rem;
    background-color: #fff;
    line-height: 1.3;
}
.categories-header a.active
{
    background-color: #a2db6b;
    color: #fff;
    border-color: #a2db6b;
}
.categories-header a:hover
{
    background-color: #f99f35;
    border-color: #f99f35;
    color: #fff;
}
.categories-header .row-links-categories-header
{
    margin: 0 -1rem;
    margin-bottom: -2rem;
}
.categories-header .row-links-categories-header .col-links-categories-header
{
    padding: 0 1rem;
    margin-bottom: 2rem;
}
.d_searchform
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #1f2337;
}
.d_searchform .d_text
{
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border: 0;
    outline: 0;
}
.d_searchform .im
{
    width: 2rem;
}
.blog_2, .blog_4
{
    padding-top: 8rem;
    padding-bottom: 3rem;
}
.blog_2::before, .blog_4::before
{
    content: "";
    position: absolute;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    top: 0;
    background-color: #faf8f5;
    height: 100%;
}
.thumb-single-wr
{
    margin-bottom: 6rem;
}
@media(max-width: 767.98px)
{
    .thumb-single-wr
    {
        margin-bottom: 3rem;
    }
}
.thumb-single-wr img
{
    border-radius: 1rem;
}
.aligncenter
{
    border-radius: 1rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
}
@media(min-width: 768px)
{
    .thumb-single-wr
    {
        margin: 0 -10rem 6rem -10rem;
    }
    .aligncenter
    {
        max-width: calc(100% + 20rem);
        margin-left: -10rem;
        margin-right: -10rem;
    }
}
@media(min-width: 768px)
{
    .our-team-homepage-wr
    {
        width: 75%;
    }
}
@media(max-width: 767.98px)
{
    .first-mobile-col-proj
    {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
}
.proj-cllps-wr a[data-toggle=collapse][aria-expanded=false]:before
{
    content: attr(data-d-show);
}
.proj-cllps-wr a[data-toggle=collapse][aria-expanded=true]:before
{
    content: attr(data-d-hide);
}
.proj-cllps-wr .show-hide-projects-link
{
    font-size: 3rem;
    display: block;
    margin-bottom: 2rem;
}
@media(max-width: 767.98px)
{
    .proj-cllps-wr .show-hide-projects-link
    {
        text-align: center;
        margin: 0 auto 2rem auto;
    }
}
.menu_top_right-wr-abs
{
    position: fixed;
    top: 0;
    right: 10rem;
    padding-top: 3rem;
    z-index: 99999;
}
.menu_top_right-wr
{
    position: relative;
}
.menu_top_right-wr svg.bubble
{
    position: absolute;
    width: 38rem;
    left: 50%;
    -webkit-transform: translateX(-46%);
    -ms-transform: translateX(-46%);
    transform: translateX(-46%);
    top: -22rem;
    pointer-events: none;
}
.menu_top_right
{
    position: relative;
    color: #212529;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 1.036rem;
    text-transform: uppercase;
}
.menu_top_right .svg-dots
{
    width: 6.1rem;
}
.menu_top_right svg path
{
    fill: #212529;
}
.menu_top_right a
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 1rem;
}
.fixed_menu
{
    position: fixed;
    width: 100%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .5s;
    transition: all .5s;
    height: 100vh;
    background: rgba(31,35,55,.97);
    top: 0;
    right: 0;
    z-index: 1010;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.fixed_menu span.as_a
{
    color: #a2db6b;
}
.fixed_menu .part-social-wrap a
{
    font-size: 4rem;
    color: #1f2337;
}
.fixed_menu .part-social-wrap a:hover
{
    color: #f99f35;
}
.fixed_menu.show-menu
{
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
.fixed_menu .part-social a
{
    color: #a2db6b!important;
}
.fixed_menu .part-social a:hover
{
    color: #f99f35!important;
}
.fixed_menu .colMenuLeft a, .fixed_menu .colMenuRight a
{
    color: #fff;
    text-decoration: underline;
}
.fixed_menu .colMenuLeft .el_1 a, .fixed_menu .colMenuLeft .el_2 a, .fixed_menu .colMenuRight .el_1 a, .fixed_menu .colMenuRight .el_2 a
{
    position: relative;
}
.fixed_menu .colMenuLeft .el_1 a:hover:before, .fixed_menu .colMenuLeft .el_2 a:hover:before, .fixed_menu .colMenuRight .el_1 a:hover:before, .fixed_menu .colMenuRight .el_2 a:hover:before
{
    left: 0;
    right: 0;
    width: 100%;
}
.fixed_menu .colMenuLeft .el_1 a:hover, .fixed_menu .colMenuRight .el_1 a:hover
{
    color: #f99f35;
}
.fixed_menu .colMenuLeft .el_2 a, .fixed_menu .colMenuRight .el_2 a
{
    color: #fff;
}
.fixed_menu .colMenuLeft .el_2 a:before, .fixed_menu .colMenuRight .el_2 a:before
{
    position: absolute;
    content: "";
    background: #a2db6b;
    width: 100%;
    left: 50%;
    right: 50%;
    width: 0;
    bottom: 0;
    height: 50%;
    opacity: .5;
    z-index: -1;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.fixed_menu .colMenuLeft .el_1, .fixed_menu .colMenuRight .el_1
{
    font-weight: 600;
    font-size: 6.8rem;
    margin-bottom: 3rem;
}
@media(max-width: 1879.98px)
{
    .fixed_menu .colMenuLeft .el_1, .fixed_menu .colMenuRight .el_1
    {
        font-size: 6rem;
    }
}
@media(max-width: 1199.98px)
{
    .fixed_menu .colMenuLeft .el_1, .fixed_menu .colMenuRight .el_1
    {
        font-size: 5rem;
    }
}
.fixed_menu .colMenuLeft .el_1.r, .fixed_menu .colMenuRight .el_1.r
{
    margin-bottom: 1rem;
}
.fixed_menu .colMenuLeft .el_2, .fixed_menu .colMenuRight .el_2
{
    font-size: 3.5rem;
    margin-bottom: 4rem;
}
.fixed_menu .colMenuLeft .wrap, .fixed_menu .colMenuRight .wrap
{
    margin-bottom: 10rem;
}
@media(max-width: 1199.98px)
{
    .fixed_menu .colMenuLeft .wrap, .fixed_menu .colMenuRight .wrap
    {
        margin-bottom: 6rem;
    }
}
.fixed_menu .colMenuLeft .wrap a, .fixed_menu .colMenuRight .wrap a
{
    color: #fff;
    font-size: 3rem;
    font-weight: 400;
    text-decoration: underline;
}
.fixed_menu .colMenuLeft .wrap a:hover, .fixed_menu .colMenuRight .wrap a:hover
{
    color: #f99f35;
}
.cont_offer_team
{
    padding-top: 10rem;
    padding-bottom: 10rem;
}
@media(max-width: 767.98px)
{
    .cont_offer_team
    {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }
}
.cont_offer_team .tab-content ul
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
}
.cont_offer_team .tab-content ul a
{
    text-decoration: underline;
}
@media(min-width: 768px)
{
    .cont_offer_team .tab-content ul a
    {
        font-size: 3rem;
    }
}
.cont_offer_team .tab-content ul a:hover
{
    color: #f99f35;
}
.cont_offer_team .tab-content ul li
{
    margin-right: 4rem;
}
.cont_offer_team ul.nav-tabs
{
    margin-bottom: 7rem;
    border-bottom: 2px solid #e2e2e2;
}
@media(max-width: 767.98px)
{
    .cont_offer_team ul.nav-tabs
    {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        margin-bottom: 3rem;
    }
}
.cont_offer_team ul.nav-tabs li:last-child a
{
    margin-right: 0;
}
.cont_offer_team ul.nav-tabs a
{
    border: 0;
    font-size: 3.6rem;
    font-weight: 600;
    color: #f99f35;
    padding: 0 0 2rem 0;
    margin-right: 6rem;
}
@media(max-width: 767.98px)
{
    .cont_offer_team ul.nav-tabs a
    {
        margin-right: 2rem;
        font-size: 2.3rem;
        border: 0!important;
    }
}
.cont_offer_team ul.nav-tabs a.nav-link.active
{
    background-color: transparent;
    color: #1f2337;
    border-bottom: 2px solid #1f2337;
}
.cont_offer_team ul.nav-tabs li.nav-item
{
    margin-bottom: -2px;
}
.cont_offer_team .sec_offer
{
    margin-bottom: 10rem;
}
@media(max-width: 767.98px)
{
    .cont_offer_team .sec_offer
    {
        margin-bottom: 5rem;
    }
}
.cont_offer_team .sec_team
{
    margin-bottom: 15rem;
}
.sec_news #result_news_homepage
{
    overflow: hidden;
    position: relative;
}
.sec_news #result_news_homepage:before
{
    content: "";
    position: absolute;
    height: .3rem;
    background-color: #a2db6b;
    width: 100%;
    top: calc(8rem - 1.2rem);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    margin-left: -50vw;
    width: 100vw;
    left: 50%;
}
.sec_news .slickNewsHomepage .slick-slide>div
{
    width: 100%;
}
.sec_news .slickNewsHomepage .item
{
    height: 100%;
}
.sec_news .slickNewsHomepage .item .sub
{
    -webkit-box-shadow: 0 3.7rem 4.3rem rgba(0,0,0,.08);
    box-shadow: 0 3.7rem 4.3rem rgba(0,0,0,.08);
    margin-bottom: 7rem;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.sec_news .slickNewsHomepage .item .time
{
    font-size: 3rem;
    font-weight: 700;
    color: #a2db6b;
    height: 8rem;
    margin-bottom: 6rem;
}
.sec_news .slickNewsHomepage .item .dot
{
    margin-top: 1rem;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: .5rem solid #a2db6b;
    background: #fff;
}
.sec_news .slickNewsHomepage .item .block_img
{
    position: relative;
    height: 22rem;
}
.sec_news .slickNewsHomepage .item .block_img img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.sec_news .slickNewsHomepage .item .content
{
    padding: 3rem;
    font-size: 2rem;
    font-weight: 600;
}
.sec_news .slickNewsHomepage .item .content .desc
{
    height: 15rem;
    margin-bottom: 2rem;
    overflow: hidden;
}
.sec_news .slickNewsHomepage .item .content a
{
    color: #1f2337;
}
.sec_news .slickNewsHomepage .item .content a:hover
{
    color: #f99f35;
}
.sec_news .slickNewsHomepage .slick-list
{
    margin-right: -2rem;
    margin-left: -2rem;
}
.sec_news .slickNewsHomepage .slick-slide
{
    padding-left: 2rem;
    padding-right: 2rem;
}
.sec_news .slickNewsHomepage .slick-track
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.sec_news .slickNewsHomepage .slick-track .slick-slide
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
}
.sec_news .slick-arrow
{
    width: 3rem;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.sec_news .slick-arrow.pp
{
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
    left: 5rem;
}
.sec_news .slick-arrow.nn
{
    right: 5rem;
}
.sec_news .slick-arrow.slick-disabled
{
    opacity: 0;
    cursor: initial;
}
.instaAdd
{
    display: grid;
    grid-template-columns: repeat(12,1fr);
    counter-reset: div;
    grid-gap: 1rem;
}
@media(max-width: 767.98px)
{
    .instaAdd
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .instaAdd .item
    {
        width: 33.333333%;
    }
    .instaAdd .item>.sub
    {
        height: 0;
        padding-bottom: 100%;
        min-height: 1px;
    }
}
.instaAdd .im
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.instaAdd .item>.sub
{
    min-height: 15rem;
    background-color: #1f2337;
    position: relative;
    height: 100%;
    overflow: hidden;
}
.instaAdd .item>.sub:hover .im
{
    opacity: .5;
    -webkit-transform: scale(1.2) rotate(10deg);
    -ms-transform: scale(1.2) rotate(10deg);
    transform: scale(1.2) rotate(10deg);
}
.instaAdd .abs-counter
{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.2);
}
.instaAdd .abs-counter .counters
{
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
}
.instaAdd .item.custom_1
{
    background: -webkit-linear-gradient(45deg,#405de6,#5851db,#833ab4,#c13584,#e1306c,#fd1d1d);
    background: linear-gradient(45deg,#405de6,#5851db,#833ab4,#c13584,#e1306c,#fd1d1d);
}
@media(max-width: 767.98px)
{
    .instaAdd .item.custom_1
    {
        display: none;
    }
}
.instaAdd .item.custom_1>.sub
{
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 4rem;
    color: #fff;
}
.instaAdd .item.custom_2
{
    grid-column: auto/span 2;
    background: #1f2337 url(/wp-content/themes/mytheme/dist/assets/images/wiwi.svg) no-repeat center/8rem;
    border-bottom: 1px solid #f7f7f7;
}
.instaAdd .item.custom_2>.sub
{
    background-color: transparent;
}
.instaAdd .item:nth-child(12n+2)
{
    grid-column: auto/span 3;
    grid-row: auto/span 3;
}
.instaAdd .item:nth-child(12n+3)
{
    grid-column: auto/span 2;
    grid-row: auto/span 2;
}
.instaAdd .item:nth-child(12n+5)
{
    grid-column: auto/span 3;
    grid-row: auto/span 3;
}
.instaAdd .item:nth-child(12n+6)
{
    grid-column: auto/span 2;
    grid-row: auto/span 2;
}
.sec-main
{
    position: relative;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.sec-main.opacity-1
{
    opacity: 1;
}
.sec-main .sub
{
    position: absolute;
    background-color: #fff;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
@media(max-width: 767.98px)
{
    .sec-main .sub
    {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
}
.sec-main .mask
{
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    position: absolute;
    top: 4rem;
    bottom: 4rem;
    left: 50rem;
    right: 4rem;
    position: absolute;
}
@media(max-width: 767.98px)
{
    .sec-main .mask
    {
        display: none;
    }
}
.subWrapSlid
{
    position: relative;
    width: 70%;
    z-index: 999;
}
.Modern-Slider .img-fill .headSlid
{
    font-size: 11rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 1rem;
}
@media(max-width: 1589.98px)
{
    .Modern-Slider .img-fill .headSlid
    {
        font-size: 9rem;
    }
}
.Modern-Slider .img-fill .descSlid
{
    font-size: 7.4rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 6rem;
}
@media(max-width: 1589.98px)
{
    .Modern-Slider .img-fill .descSlid
    {
        font-size: 6rem;
    }
}
.Modern-Slider .slick-track
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.Modern-Slider .slick-track .slick-slide
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.Modern-Slider .slick-track .slick-slide>div
{
    width: 100%;
}
.Modern-Slider .slick-list, .navSlid .slick-list
{
    margin: 0 0;
}
.Modern-Slider .slick-slide, .navSlid .slick-slide
{
    padding: 0 0;
}
.Modern-Slider .descSlid, .Modern-Slider .headSlid
{
    opacity: 0;
    -webkit-animation: hideImage .5s,translateXBack .9s forwards;
    animation: hideImage .5s,translateXBack .9s forwards;
}
.Modern-Slider .d_btn_simple_1
{
    opacity: 0;
    -webkit-animation: hideImage .5s,translateXBack .9s forwards;
    animation: hideImage .5s,translateXBack .9s forwards;
}
.Modern-Slider .slick-active .headSlid
{
    -webkit-animation: showImage .9s .3s forwards,translateXForward .5s .2s forwards;
    animation: showImage .9s .3s forwards,translateXForward .5s .2s forwards;
}
.Modern-Slider .slick-active .descSlid
{
    -webkit-animation: showImage .9s .3s forwards,translateXForward .7s .3s forwards;
    animation: showImage .9s .3s forwards,translateXForward .7s .3s forwards;
}
.Modern-Slider .slick-active .imgSlid
{
    -webkit-animation: showImage .9s .3s forwards,translateXForward1 .7s .3s forwards;
    animation: showImage .9s .3s forwards,translateXForward1 .7s .3s forwards;
}
.Modern-Slider .slick-active .d_btn_simple_1
{
    -webkit-animation: showImage .5s .3s forwards,translateXForward .5s .2s forwards;
    animation: showImage .5s .3s forwards,translateXForward .5s .2s forwards;
}
@-webkit-keyframes showImage
{
    0%
    {
        opacity: 0;
    }
    100%
    {
        opacity: 1;
    }
}
@keyframes showImage
{
    0%
    {
        opacity: 0;
    }
    100%
    {
        opacity: 1;
    }
}
@-webkit-keyframes hideImage
{
    0%
    {
        opacity: 1;
    }
    100%
    {
        opacity: 0;
    }
}
@keyframes hideImage
{
    0%
    {
        opacity: 1;
    }
    100%
    {
        opacity: 0;
    }
}
@-webkit-keyframes scaleImage
{
    0%
    {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
    100%
    {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}
@keyframes scaleImage
{
    0%
    {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
    100%
    {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}
@-webkit-keyframes scaleBackImage
{
    0%
    {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
    100%
    {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}
@keyframes scaleBackImage
{
    0%
    {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
    100%
    {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}
@keyframes translateXBack
{
    0%
    {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
    100%
    {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}
@keyframes translateXBack1
{
    0%
    {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
    100%
    {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}
@keyframes translateXForward
{
    0%
    {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
    100%
    {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}
@keyframes translateXForward1
{
    0%
    {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
    100%
    {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}
.perspective-card-wrap
{
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-perspective-origin: top center;
    perspective-origin: top center;
}
.perspective-card__content
{
    top: 2rem;
    left: 0;
    -webkit-transform: translateZ(40px);
    transform: translateZ(40px);
    z-index: 90;
}
.perspective-card__content span.s1
{
    position: relative;
}
.perspective-card
{
    position: relative;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    will-change: transform;
}
.overflowWrapNavSlid
{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: 100;
    overflow: hidden;
}
.wrapNavSlid
{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -10rem;
    z-index: 99;
}
.wrapNavSlid .subWidth
{
    width: 80rem;
    position: relative;
}
.wrapNavSlid .subWidth .whatWeAreDoing
{
    position: absolute;
    left: calc(50% + 2rem);
    -webkit-transform: translateX(-10rem);
    -ms-transform: translateX(-10rem);
    transform: translateX(-10rem);
    top: calc(100% + 10rem);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: .24rem;
    text-transform: uppercase;
    z-index: 200;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.wrapNavSlid .subWidth .whatWeAreDoing span
{
    margin-right: -2.3rem;
    -webkit-animation: blinker 1s linear infinite;
    animation: blinker 1s linear infinite;
}
.wrapNavSlid .subWidth .whatWeAreDoing img
{
    width: 8.2rem;
}
@-webkit-keyframes blinker
{
    50%
    {
        opacity: 0;
    }
}
@keyframes blinker
{
    50%
    {
        opacity: 0;
    }
}
.wrapNavSlid .slick-list
{
    margin: 0 -3rem;
    overflow: initial;
}
.wrapNavSlid .it
{
    padding: 0 3rem;
}
.wrapNavSlid .slick-slider .slick-list, .wrapNavSlid .slick-slider .slick-track
{
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition-delay: 10ms;
    transition-delay: 10ms;
}
.wrapNavSlid .slick-slider div
{
    -webkit-transition: none;
    transition: none;
}
.wrapNavSlid .navSlid
{
    visibility: hidden;
}
.wrapNavSlid .navSlid.slick-initialized
{
    visibility: visible;
}
.wrapNavSlid .navSlid .it .sub
{
    position: relative;
    height: 31rem;
}
.wrapNavSlid .navSlid .it .sub .nav_head
{
    position: absolute;
    top: 3rem;
    left: 2rem;
    right: 2rem;
    color: #fffefe;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    line-height: 1;
    z-index: 10;
    -webkit-transition: all 1s;
    transition: all 1s;
}
.wrapNavSlid .navSlid .it img
{
    width: 100%;
    height: 100%;
}
.wrapNavSlid .it .sub
{
    -webkit-transition: -webkit-transform .3s linear;
    transition: -webkit-transform .3s linear;
    transition: transform .3s linear;
    transition: transform .3s linear,-webkit-transform .3s linear;
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
    -webkit-transform: scale(5.3);
    -ms-transform: scale(5.3);
    transform: scale(5.3);
}
.wrapNavSlid .it .sub .nav_head
{
    opacity: 0;
}
.wrapNavSlid .slick-current .subsub
{
    -webkit-transform: rotateX(0) rotateY(0)!important;
    transform: rotateX(0) rotateY(0)!important;
}
.wrapNavSlid .slick-slide:not(.slick-current) .sub
{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
.wrapNavSlid .slick-slide:not(.slick-current) .sub .nav_head
{
    opacity: 1;
}
.intro
{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    position: relative;
}
.intro .blockText
{
    color: #fff;
    max-width: 35rem;
    position: absolute;
    top: 30%;
    left: 15px;
    z-index: 10;
}
.intro .blockText .desc
{
    font-size: 2.4rem;
    font-weight: 300;
    margin-bottom: 2rem;
}
.intro .blockText .name
{
    font-size: 11rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
}
.intro .wrapBtnPortf
{
    position: absolute;
    bottom: 20%;
    right: 15px;
    z-index: 10;
}
.intro
{
    overflow: hidden;
}
#fullpage .portf_hugge .intro .hand
{
    position: absolute;
    left: 20%;
    width: 65rem;
    bottom: 0;
}
#fullpage .portf_hugge .intro .wrapCircle_1
{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 105rem;
    height: 105rem;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
#fullpage .portf_hugge .intro .wrapCircle_2
{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 76rem;
    height: 76rem;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
#fullpage .portf_hugge .intro .circle_1, #fullpage .portf_hugge .intro .circle_2
{
    border: 1px solid rgba(255,255,255,.5);
    height: 100%;
    width: 100%;
    border-radius: 50%;
}
#fullpage .portf_junak .intro .junak_img_wrap
{
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
#fullpage .portf_junak .intro .wrapCircle_1
{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 76rem;
    height: 76rem;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
#fullpage .portf_junak .intro .circle_1
{
    border: 1px solid rgba(255,255,255,.2);
    width: 76rem;
    height: 76rem;
    border-radius: 50%;
}
#fullpage .portf_wygonin .intro .przystan_img_wrap
{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 120rem;
}
#fullpage .portf_3form .intro .trzyform_img_wrap
{
    position: absolute;
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 120rem;
}
#fullpage .portf_sienko .intro .sienko_img_wrap
{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 120rem;
}
#fp-nav ul li .fp-tooltip
{
    color: #fff!important;
}
#fp-nav ul li a span
{
    border-color: #fff!important;
    background: #fff!important;
}
.grid_portf:after
{
    content: "";
    display: block;
    clear: both;
}
.grid-item.grid-item_portf
{
    width: calc(33.333333%);
}
.grid:after
{
    content: "";
    display: block;
    clear: both;
}
.grid-item
{
    float: left;
    width: calc(25%);
}
.grid-item--width2
{
    width: 200px;
}
.grid-item--height2
{
    height: 200px;
}
.grid-item:hover
{
    border-color: rgba(255,255,255,.5);
    cursor: move;
}
.grid-item.is-dragging, .grid-item.is-positioning-post-drag
{
    background: rgba(204,204,204,.5);
    z-index: 2;
}
.packery-drop-placeholder
{
    outline: 3px dashed rgba(0,0,0,.5);
    outline-offset: -6px;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s,-webkit-transform .2s;
}
.is-pointer-down
{
    opacity: .5;
}
.cta-card
{
    background-color: #1f2337;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4rem 6rem;
}
.cta-card .im-wr
{
    text-align: center;
    width: 12rem;
}
.cta-card .im-wr .im
{
    width: 12rem;
}
.cta-card .title-wr
{
    color: #fff;
    width: calc(100% - 42rem);
    padding: 0 6rem;
}
.cta-card .btn-wr
{
    width: 30rem;
    text-align: right;
}
@media(max-width: 991.98px)
{
    .cta-card .cta-card
    {
        text-align: center;
    }
    .cta-card .im-wr
    {
        width: 100%;
    }
    .cta-card .title-wr
    {
        width: 100%;
        text-align: center;
        padding: 3rem 0;
    }
    .cta-card .btn-wr
    {
        width: 100%;
        text-align: center;
    }
}
body
{
    background-color: #1f2337;
}
body .animsition-overlay
{
    background-color: #fff;
}
.animsition-loading-1
{
    position: fixed;
    z-index: 9999999999999;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.animsition-overlay-slide
{
    background-color: rgba(31,35,55,.9)!important;
    z-index: 999999999!important;
}
.persons-career
{
    position: relative;
    padding: 3rem 0 3rem 0;
    margin-right: 21rem;
}
@media(max-width: 1199.98px)
{
    .persons-career
    {
        margin-right: 0;
    }
}
.persons-career:before
{
    border-radius: 0 28.3rem 28.3rem 0;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    background: transparent -webkit-gradient(linear,right top,left top,from(#c7ff95),color-stop(51%,#26fff8),color-stop(100%,#14b3db),to(#808080)) 0 0 no-repeat padding-box;
    background: transparent -webkit-linear-gradient(right,#c7ff95 0,#26fff8 51%,#14b3db 100%,#808080 100%) 0 0 no-repeat padding-box;
    background: transparent linear-gradient(-90deg,#c7ff95 0,#26fff8 51%,#14b3db 100%,#808080 100%) 0 0 no-repeat padding-box;
}
@media(max-width: 767.98px)
{
    .persons-career:before
    {
        width: 100vw;
    }
}
.row-branding-chars
{
    margin: 0 -5rem;
}
.row-branding-chars .col-branding-chars
{
    padding: 0 5rem;
    margin-bottom: 4rem;
}
.printing
{
    margin-top: 20rem;
    position: relative;
    background-color: #1e3163;
    padding: 15rem 0 5rem 0;
}
@media(max-width: 767.98px)
{
    .printing
    {
        margin-top: 0;
        padding-top: 5rem;
    }
}
.printing .im
{
    position: absolute;
    width: 114rem;
    top: -20rem;
    left: 0;
}
@media(max-width: 767.98px)
{
    .printing .im
    {
        position: relative;
        top: 0;
    }
}
.printing:before
{
    content: "";
    width: 100%;
    bottom: 0;
    height: 60rem;
    background-color: #fff;
    position: absolute;
    left: 0;
}
.row-printing-imgs
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -2rem;
}
.row-printing-imgs .col-printing-imgs
{
    margin-bottom: 4rem;
    padding: 0 2rem;
    width: 100%;
    text-align: center;
}
.row-printing-imgs .col-printing-imgs:nth-of-type(2), .row-printing-imgs .col-printing-imgs:nth-of-type(3), .row-printing-imgs .col-printing-imgs:nth-of-type(4)
{
    width: 33.333333%;
}
.row-printing-imgs .col-printing-imgs:nth-of-type(5), .row-printing-imgs .col-printing-imgs:nth-of-type(6)
{
    width: 50%;
}
.gadgets_text
{
    width: 50rem;
    max-width: 100%;
    margin: 0 auto 7rem auto;
}
.stands
{
    background-color: #1e3163;
    padding-top: 30rem;
    position: relative;
}
@media(max-width: 767.98px)
{
    .stands
    {
        padding-bottom: 5rem;
    }
}
.stands:before
{
    width: 100%;
    height: 20rem;
    bottom: 0;
    left: 0;
    position: absolute;
    background-color: #fff;
    content: "";
}
@media(max-width: 767.98px)
{
    .stands:before
    {
        height: 0;
    }
}
.cont-gadgets
{
    margin-bottom: -20rem;
}
.rwd-branding
{
    padding: 10rem 0;
    background-color: #1e3163;
}
.row-gads-chars
{
    margin-bottom: 16rem;
}
@media(max-width: 767.98px)
{
    .row-gads-chars
    {
        margin-bottom: 8rem;
    }
}
@media(min-width: 768px)
{
    .row-gads-chars:nth-of-type(odd) .cl>.sub
    {
        padding-right: 7rem;
    }
    .row-gads-chars:nth-of-type(even) .cr
    {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .row-gads-chars:nth-of-type(even) .cl>.sub
    {
        padding-left: 7rem;
    }
}
@media(max-width: 767.98px)
{
    .row-gads-chars .cl, .row-gads-chars .cr
    {
        margin-bottom: 6rem;
    }
}
.row-gads-chars .element-bubble
{
    position: absolute;
    width: 40rem;
    left: -3rem;
    top: 5rem;
}
@media(max-width: 991.98px)
{
    .row-gads-chars .element-bubble
    {
        top: -15rem;
    }
}
.col-icons-ads, .col-partners-ads
{
    margin-bottom: 8rem;
}
.col-icons-ads .wr-im, .col-partners-ads .wr-im
{
    height: 6rem;
    margin-bottom: 2rem;
}
.col-icons-ads .wr-im .im, .col-partners-ads .wr-im .im
{
    max-height: 100%;
}
.col-icons-ads .sub, .col-partners-ads .sub
{
    width: 41rem;
    max-width: 100%;
    margin: 0 auto;
}
.content-partner-wr
{
    margin-top: 5rem;
    position: relative;
}
.content-partner-wr:before
{
    content: "";
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background-color: #1f2337;
    position: absolute;
}
.content-partner>.sub
{
    background-color: #296cdc;
    padding: 0 5rem;
}
.cert-ads-wr
{
    background-color: #1f2337;
    padding-top: 6rem;
    padding-bottom: 4rem;
}
.cert-ads-wr .cert-icon-wr
{
    margin-bottom: 2rem;
}
.cert-ads-wr .cert-icon-wr .im
{
    height: 7rem;
}
.partner_img_wr .im
{
    height: 9rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.col-numbers-ads
{
    margin-bottom: 4rem;
}
.col-numbers-ads .number
{
    color: #a2db6b;
    font-size: 17.1rem;
    font-weight: 600;
    line-height: 1;
}
.comparison-slider-wrapper
{
    position: relative;
    width: 100%;
    background-color: #fff;
}
.comparison-slider-wrapper img
{
    max-width: none;
}
.comparison-slider-wrapper .comparison-slider
{
    position: relative;
    width: 100%;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.comparison-slider-wrapper .comparison-slider>img
{
    width: 100%;
    height: auto;
    display: block;
}
.comparison-slider-wrapper .comparison-slider .overlay
{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
}
@media screen and (min-width: 767px)
{
    .comparison-slider-wrapper .comparison-slider .overlay
    {
        display: block;
    }
}
.comparison-slider-wrapper .comparison-slider .resize
{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
}
.comparison-slider-wrapper .comparison-slider .resize>img
{
    display: block;
}
.comparison-slider-wrapper .comparison-slider .divider
{
    position: absolute;
    width: 3px;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    left: 50%;
    top: 0;
    bottom: 0;
    margin-left: -1px;
    cursor: ew-resize;
}
.comparison-slider-wrapper .comparison-slider .divider:before
{
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    left: -18px;
    top: 50%;
    margin-top: -20px;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}
.comparison-slider-wrapper .comparison-slider .divider:after
{
    content: "‹ ›";
    position: absolute;
    font-size: 28px;
    top: 50%;
    margin-top: -24px;
    margin-left: -12px;
    color: #000;
    font-weight: 900;
    text-align: center;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}
.comparison-slider-wrapper .comparison-slider .divider.draggable:before
{
    width: 60px;
    height: 60px;
    left: -28px;
    margin-top: -30px;
}
@media(min-width: 1200px)
{
    .wr-d-ba
    {
        width: 80rem;
        height: 70rem;
        padding: 3.3rem 3rem 0 3rem;
        margin: 0 auto;
        background: url(/wp-content/themes/mytheme/dist/assets/images/macbook.png) no-repeat center/100% 100%;
    }
}
body.page-template-t-projects .wr-slick-gal-2 .color-white, body.single-projekty .wr-slick-gal-2 .color-white
{
    color: #1f2337!important;
}
body.page-template-t-projects .slick-gal-2 .slick-arrow.bb, body.single-projekty .slick-gal-2 .slick-arrow.bb
{
    top: 5rem;
    -webkit-transform: translateY(0) rotate(180deg);
    -ms-transform: translateY(0) rotate(180deg);
    transform: translateY(0) rotate(180deg);
}
body.page-template-t-projects .slick-gal-2 .slick-arrow.tt, body.single-projekty .slick-gal-2 .slick-arrow.tt
{
    top: 5rem;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.wr-slick-gal-2
{
    position: relative;
    max-width: 2600px;
    margin: 0 auto;
}
.slick-gal-2 .slick-list
{
    margin: 0 -5rem;
}
.slick-gal-2 .slick-list .slick-slide
{
    padding: 0 5rem;
}
@media(max-width: 767.98px)
{
    .slick-gal-2 .slick-list
    {
        margin: 0 -2rem;
    }
    .slick-gal-2 .slick-list .slick-slide
    {
        padding: 0 2rem;
    }
}
.slick-gal-2 .slick-slide img
{
    width: 100%;
}
.slick-gal-2 .slick-slide
{
    opacity: .3;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.slick-gal-2 .slick-slide.slick-current
{
    opacity: 1;
}
.slick-gal-2 .wr-im
{
    position: relative;
    text-align: center;
}
.slick-gal-2 .wr-im .im
{
    display: inline-block!important;
    width: auto!important;
}
.slick-gal-2 .wr-im.same-height
{
    height: 0;
    padding-bottom: 45%;
}
.slick-gal-2 .wr-im.same-height .im
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}
.slick-gal-2 .slick-arrow
{
    position: absolute;
    background-color: transparent;
    border-radius: 0;
    width: 3.1rem;
}
.slick-gal-2 .slick-arrow.bb
{
    left: 5rem;
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}
.slick-gal-2 .slick-arrow.tt
{
    right: 5rem;
}
.slick-gal-2 .sub-content
{
    width: 80rem;
    max-width: 100%;
    margin: 0 auto;
}
section.mountains
{
    background: #1f2337;
    padding-top: 10.5rem;
    color: #fff;
    padding-bottom: 10rem;
    position: relative;
    z-index: 2;
}
.vectors>div
{
    position: absolute;
}
.vectors>.mountain
{
    position: relative;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
.camp
{
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
    bottom: -35rem;
}
.vectors
{
    position: relative;
}
.tree_right
{
    right: 12.5rem;
    bottom: -28.5rem;
    z-index: 1;
}
.tree_right img
{
    width: 50rem;
}
@media(max-width: 991.98px)
{
    .tree_right img
    {
        width: 30rem;
    }
}
.tree_left
{
    left: 6rem;
    bottom: -29.5rem;
    z-index: 1;
}
.tree_left img
{
    width: 55rem;
}
@media(max-width: 991.98px)
{
    .tree_left img
    {
        width: 30rem;
    }
}
.vectors>div.top
{
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}
.bottom-headings
{
    z-index: 1;
    position: relative;
    top: 15rem;
}
.bottom-headings h2 span
{
    font-size: 3rem;
    display: block;
}
path.star.star-1, path.star.star-6, path.star.star-9
{
    opacity: .2;
    -webkit-animation: fadeInFromNone 15s linear infinite;
    animation: fadeInFromNone 15s linear infinite;
}
path.star.star-2, path.star.star-5
{
    -webkit-animation: fadeInFromNone 3s linear infinite;
    animation: fadeInFromNone 3s linear infinite;
}
.camp image, path.star.star-3, path.star.star-8
{
    -webkit-animation: fadeInFromNone 6s linear infinite;
    animation: fadeInFromNone 6s linear infinite;
}
path.moon, path.star.star-4, path.star.star-7
{
    -webkit-animation: fadeInFromNone 11s linear infinite;
    animation: fadeInFromNone 11s linear infinite;
}
@-webkit-keyframes fadeInFromNone
{
    0%
    {
        opacity: .2;
    }
    10%
    {
        opacity: .4;
    }
    20%
    {
        opacity: .6;
    }
    30%
    {
        opacity: .8;
    }
    40%
    {
        opacity: 1;
    }
    50%
    {
        opacity: .8;
    }
    60%
    {
        opacity: .6;
    }
    70%
    {
        opacity: .4;
    }
    100%
    {
        opacity: .2;
    }
}
@keyframes fadeInFromNone
{
    0%
    {
        opacity: .2;
    }
    10%
    {
        opacity: .4;
    }
    20%
    {
        opacity: .6;
    }
    30%
    {
        opacity: .8;
    }
    40%
    {
        opacity: 1;
    }
    50%
    {
        opacity: .8;
    }
    60%
    {
        opacity: .6;
    }
    70%
    {
        opacity: .4;
    }
    100%
    {
        opacity: .2;
    }
}
.top-headings, .vectors>.mountain, .vectors>div.top
{
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transition: all 1.4s ease;
    transition: all 1.4s ease;
}
.bottom-headings, .camp, .tree_left, .tree_right
{
    -webkit-transform: scale(.6);
    -ms-transform: scale(.6);
    transform: scale(.6);
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}
section.mountains.activated .top-headings
{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
section.mountains.activated .vectors>.mountain, section.mountains.activated .vectors>.top
{
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
}
.bottom-headings, section.mountains.activated .camp, section.mountains.activated .tree_left, section.mountains.activated .tree_right
{
    -webkit-transform: scale(.5);
    -ms-transform: scale(.5);
    transform: scale(.5);
}
section.mountains.campactivated .tree_left
{
    z-index: 3;
    bottom: 0;
}
section.mountains.campactivated .camp
{
    z-index: 2;
    bottom: -5rem;
}
section.mountains.campactivated .tree_right
{
    z-index: 3;
    bottom: 0;
}
section.mountains.campactivated .bottom-headings
{
    z-index: 3;
    top: 0;
}
section.mountains.campactivated .top-headings
{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
section.mountains.campactivated .vectors>.mountain
{
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
}
section.mountains.campactivated .vectors>.top
{
    z-index: 1;
}
section.mountains.campactivated .bottom-headings, section.mountains.campactivated .camp, section.mountains.campactivated .tree_left, section.mountains.campactivated .tree_right
{
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}
section.tabs-boxes-s
{
    padding-top: 25rem;
}
.afv-img img
{
    width: 100%;
}
.change-seo-wr
{
    background-color: #1f2337;
    padding: 7rem 0;
}
.change-seo-wr .block
{
    margin-bottom: 1.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.change-seo-wr .block .im
{
    height: 5.7rem;
}
.change-seo-wr .block .number
{
    width: 4rem;
    font-size: 1.6rem;
    font-weight: 300;
    color: #fff;
    text-align: right;
}
.change-seo-wr .block .im-wr
{
    width: calc(100% - 4rem);
    padding-left: 2rem;
}
.change-seo-wr .w .im
{
    height: 6.3rem;
}
.change-seo-wr .w .number
{
    color: #a2db6b;
    font-size: 3rem;
}
.change-seo-wr .wr
{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-right: 3rem;
    height: 46rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    overflow-y: auto;
    position: relative;
}
.change-seo-wr .wr-window
{
    position: relative;
}
.change-seo-wr .wr-window:after
{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 3rem;
    background-color: #1f2337;
    z-index: 10;
}
.change-seo-wr .wr-window::before
{
    z-index: 2;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.change-seo-wr ul
{
    list-style: none;
    color: #fff;
    margin: 0;
    padding: 0;
}
.change-seo-wr ul li
{
    cursor: pointer;
    color: #646ea2;
    font-size: 3.1rem;
    font-weight: 700;
    padding-left: 3rem;
    position: relative;
}
.change-seo-wr ul li:before
{
    content: "";
    position: absolute;
    top: 1.8rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 2px solid #646ea2;
    left: 0;
    z-index: 4;
}
.change-seo-wr ul li:not(:last-child)
{
    margin-bottom: 3rem;
}
.change-seo-wr ul li:not(:first-child):after
{
    width: .2rem;
    height: 6.2rem;
    bottom: calc(1.3rem + 1.5rem);
    content: "";
    background-color: #646ea2;
    left: .7rem;
    position: absolute;
}
.change-seo-wr ul li.active
{
    color: #f99f35;
}
.change-seo-wr ul li.active:before
{
    border-color: #a2db6b;
}
.change-seo-wr ul li.active:after
{
    background-color: #a2db6b;
}
.d_content
{
    overflow: auto;
    position: relative;
    width: 100%;
    height: 100vh;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.mCSB_scrollTools
{
    padding-top: 10rem!important;
    padding-bottom: 10rem!important;
    z-index: 9;
}
.mCSB_inside>.mCSB_container
{
    margin-right: 0!important;
}
.mCSB_scrollTools
{
    width: 8rem!important;
    left: 50%!important;
    -webkit-transform: translateX(-50%)!important;
    -ms-transform: translateX(-50%)!important;
    transform: translateX(-50%)!important;
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar
{
    width: 8rem!important;
    margin: 0 auto!important;
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger, .mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger, .mCS-rounded.mCSB_scrollTools .mCSB_dragger
{
    height: 8rem!important;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar
{
    border-radius: 50%!important;
}
.mCSB_scrollTools .mCSB_dragger
{
    background-color: #f99f35!important;
    border-radius: 50%!important;
}
.mCSB_scrollTools .mCSB_dragger:before
{
    top: 1rem;
    -webkit-transform: translateX(-50%) rotate(180deg);
    -ms-transform: translateX(-50%) rotate(180deg);
    transform: translateX(-50%) rotate(180deg);
}
.mCSB_scrollTools .mCSB_dragger:after
{
    bottom: 1rem;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.mCSB_scrollTools .mCSB_dragger:after, .mCSB_scrollTools .mCSB_dragger:before
{
    content: "";
    position: absolute;
    background: url(/wp-content/themes/mytheme/dist/assets/images/arrow-bottom-white.svg) no-repeat center/contain;
    width: 1rem;
    height: 1rem;
    left: 50%;
    z-index: 10;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar
{
    background-color: transparent!important;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:before
{
    content: "";
    position: absolute;
    width: 2rem;
    height: 3rem;
    border: 1px solid #fff;
    top: 50%;
    left: 50%;
    z-index: 5;
    border-radius: 1rem;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:after
{
    content: "";
    position: absolute;
    width: .5rem;
    height: .5rem;
    background-color: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-animation: move_dot .5s alternate infinite;
    animation: move_dot .5s alternate infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
@-webkit-keyframes move_dot
{
    0%
    {
        -webkit-transform: translate(-50%,-100%);
        transform: translate(-50%,-100%);
    }
    100%
    {
        -webkit-transform: translate(-50%,100%);
        transform: translate(-50%,100%);
    }
}
@keyframes move_dot
{
    0%
    {
        -webkit-transform: translate(-50%,-100%);
        transform: translate(-50%,-100%);
    }
    100%
    {
        -webkit-transform: translate(-50%,100%);
        transform: translate(-50%,100%);
    }
}
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag
{
    background-color: #a2db6b!important;
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
}
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail
{
    background-image: url(/wp-content/themes/mytheme/dist/assets/images/dot.png)!important;
}
.mCSB_scrollTools .mCSB_dragger
{
    -webkit-transition: all .5s;
    transition: all .5s;
}
.mCSB_dragger
{
    min-height: 1px!important;
}
.mCSB_scrollTools, .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar
{
    opacity: 1!important;
}
.d_backdrop
{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 3;
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    pointer-events: none;
}
@media(max-width: 767.98px)
{
    .d_backdrop
    {
        display: none!important;
    }
}
.d_backdrop.active
{
    opacity: 1;
}
.d_backdrop.active .text, .d_backdrop.active .title
{
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.d_backdrop .d_backdrop_mask
{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .9;
}
.d_backdrop .d_backdrop_image
{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .7;
    background: no-repeat center/cover;
}
.d_backdrop_description
{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 5;
    width: 40rem;
    color: #fff;
}
.d_backdrop_description .text, .d_backdrop_description .title
{
    -webkit-transform: translateY(-5rem);
    -ms-transform: translateY(-5rem);
    transform: translateY(-5rem);
    -webkit-transition: all .3s;
    transition: all .3s;
}
.d_backdrop_description .title
{
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.2;
}
.d_backdrop_description .text
{
    font-size: 2.2rem;
    line-height: 1.5;
    font-weight: 400;
}
.hover-portfolio
{
    z-index: 2;
    position: relative;
    display: block;
}
.hover-portfolio .im-wr
{
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.hover-portfolio .goto
{
    width: 6rem;
    border-radius: .5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    display: none;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    background-color: #fff;
    -webkit-box-shadow: 0 0 25px rgba(0,0,0,.3);
    box-shadow: 0 0 25px rgba(0,0,0,.3);
    -webkit-transition: all .3s;
    transition: all .3s;
}
.hover-portfolio.active
{
    z-index: 4;
}
.hover-portfolio.active .goto
{
    display: block;
}
.hover-portfolio.active .im-wr
{
    -webkit-transform: translateY(-3rem);
    -ms-transform: translateY(-3rem);
    transform: translateY(-3rem);
}
.hover-portfolio.active .mask
{
    -webkit-transform: translateY(-3rem);
    -ms-transform: translateY(-3rem);
    transform: translateY(-3rem);
    height: 0!important;
}
.hover-portfolio .mask
{
    -webkit-transition: none;
    transition: none;
    position: absolute;
    width: 100%;
    height: 0%;
    background-color: #000;
    top: 0;
    left: 0;
    z-index: 4;
}
@media(max-width: 767.98px)
{
    .hover-portfolio .mask
    {
        background-color: rgba(255,255,255,.5);
    }
}
.hover-portfolio .mask.over-all
{
    height: 100%;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.col-portfolio-page
{
    margin-top: 15rem;
    margin-bottom: 15rem;
}
@media(max-width: 991.98px)
{
    .col-portfolio-page
    {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }
}
.col-portfolio-page:nth-of-type(even) .d_backdrop_description
{
    right: calc(50% + 15rem);
}
@media(max-width: 991.98px)
{
    .col-portfolio-page:nth-of-type(even) .d_backdrop_description
    {
        right: calc(50%);
    }
}
.col-portfolio-page:nth-of-type(odd)
{
    position: relative;
    top: 10rem;
}
.col-portfolio-page:nth-of-type(odd) .d_backdrop_description
{
    left: calc(50% + 15rem);
}
@media(max-width: 991.98px)
{
    .col-portfolio-page:nth-of-type(odd) .d_backdrop_description
    {
        left: calc(50%);
    }
}
.col-arch-proj
{
    margin: 15rem 0;
}
@media(max-width: 991.98px)
{
    .col-arch-proj
    {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }
}
.col-arch-proj>.sub
{
    height: 100%;
    border: 2px solid #f99f35;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem;
    -webkit-transition: all .3s;
    transition: all .3s;
    border-radius: 1rem;
}
.col-arch-proj>.sub .arch-project
{
    color: #f99f35;
    font-size: 5rem;
    text-align: center;
    line-height: 1.2;
    -webkit-transition: all .3s;
    transition: all .3s;
}
@media(max-width: 991.98px)
{
    .col-arch-proj>.sub .arch-project
    {
        font-size: 3rem;
    }
}
.col-arch-proj>.sub:hover
{
    background-color: #f99f35;
}
.col-arch-proj>.sub:hover .arch-project
{
    color: #fff;
}
.single-portf-bg
{
    padding-top: 35rem;
    padding-bottom: 5rem;
    background: no-repeat center/cover;
}
@media(max-width: 767.98px)
{
    .single-portf-bg
    {
        padding-top: 15rem;
    }
}
.right_img_mobile
{
    margin-top: -18rem;
}
@media(max-width: 767.98px)
{
    .right_img_mobile
    {
        margin-top: 5rem;
    }
}
.portf-video-wr:before
{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255,0,0,0);
    z-index: 3;
}
.sec-portf-homepage
{
    margin-top: -35rem;
    padding-top: 30rem;
    padding-bottom: 10rem;
    position: relative;
}
@media(max-width: 767.98px)
{
    .sec-portf-homepage
    {
        margin-top: -15rem;
        padding-top: 10rem;
    }
}
.sec-portf-homepage .mask
{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}
.sec-mobile-portf
{
    padding-top: 8rem;
}
.sec-related-portf
{
    padding-top: 8rem;
    padding-bottom: 6rem;
    position: relative;
}
.sec-related-portf .mask
{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000 no-repeat center/cover;
}
.slick-main-wr
{
    overflow-x: hidden;
}
.slick-main .slick-list
{
    margin: 0;
}
.slick-main .slick-list .slick-slide
{
    padding: 0;
}
.slick-main .slick-slide>div>div
{
    height: 100vh;
    display: block!important;
    width: 100%;
}
.slick-main .slick-arrow
{
    width: auto;
}
.slick-main .slick-arrow.prev
{
    left: -6rem;
}
.slick-main .slick-arrow.prev .ar
{
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    right: 10.5rem;
}
.slick-main .slick-arrow.next
{
    right: -10rem;
}
.slick-main .slick-arrow.next .blob
{
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.slick-main .slick-arrow .ar
{
    width: 5rem;
    position: relative;
    right: 11rem;
}
.slick-main .blob
{
    max-width: 17rem;
    width: 17rem;
    height: auto;
}