﻿@charset "UTF-8";

@-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(.39062deg) skewY(.39062deg);
        transform: skewX(.39062deg) skewY(.39062deg)
    }

    88.8% {
        -webkit-transform: skewX(-.19531deg) skewY(-.19531deg);
        transform: skewX(-.19531deg) skewY(-.19531deg)
    }
}

@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(.39062deg) skewY(.39062deg);
        transform: skewX(.39062deg) skewY(.39062deg)
    }

    88.8% {
        -webkit-transform: skewX(-.19531deg) skewY(-.19531deg);
        transform: skewX(-.19531deg) skewY(-.19531deg)
    }
}

.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 (prefers-reduced-motion) {
    .animated {
        -webkit-animation: unset !important;
        animation: unset !important;
        -webkit-transition: none !important;
        transition: none !important
    }
}

[data-aos][data-aos][data-aos-duration="50"], body[data-aos-duration="50"] [data-aos] {
    -webkit-transition-duration: 50ms;
    transition-duration: 50ms
}

[data-aos][data-aos][data-aos-delay="50"], body[data-aos-delay="50"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="50"].aos-animate, body[data-aos-delay="50"] [data-aos].aos-animate {
        -webkit-transition-delay: 50ms;
        transition-delay: 50ms
    }

[data-aos][data-aos][data-aos-duration="100"], body[data-aos-duration="100"] [data-aos] {
    -webkit-transition-duration: .1s;
    transition-duration: .1s
}

[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
        -webkit-transition-delay: .1s;
        transition-delay: .1s
    }

[data-aos][data-aos][data-aos-duration="150"], body[data-aos-duration="150"] [data-aos] {
    -webkit-transition-duration: .15s;
    transition-duration: .15s
}

[data-aos][data-aos][data-aos-delay="150"], body[data-aos-delay="150"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="150"].aos-animate, body[data-aos-delay="150"] [data-aos].aos-animate {
        -webkit-transition-delay: .15s;
        transition-delay: .15s
    }

[data-aos][data-aos][data-aos-duration="200"], body[data-aos-duration="200"] [data-aos] {
    -webkit-transition-duration: .2s;
    transition-duration: .2s
}

[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
        -webkit-transition-delay: .2s;
        transition-delay: .2s
    }

[data-aos][data-aos][data-aos-duration="250"], body[data-aos-duration="250"] [data-aos] {
    -webkit-transition-duration: .25s;
    transition-duration: .25s
}

[data-aos][data-aos][data-aos-delay="250"], body[data-aos-delay="250"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="250"].aos-animate, body[data-aos-delay="250"] [data-aos].aos-animate {
        -webkit-transition-delay: .25s;
        transition-delay: .25s
    }

[data-aos][data-aos][data-aos-duration="300"], body[data-aos-duration="300"] [data-aos] {
    -webkit-transition-duration: .3s;
    transition-duration: .3s
}

[data-aos][data-aos][data-aos-delay="300"], body[data-aos-delay="300"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="300"].aos-animate, body[data-aos-delay="300"] [data-aos].aos-animate {
        -webkit-transition-delay: .3s;
        transition-delay: .3s
    }

[data-aos][data-aos][data-aos-duration="350"], body[data-aos-duration="350"] [data-aos] {
    -webkit-transition-duration: .35s;
    transition-duration: .35s
}

[data-aos][data-aos][data-aos-delay="350"], body[data-aos-delay="350"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="350"].aos-animate, body[data-aos-delay="350"] [data-aos].aos-animate {
        -webkit-transition-delay: .35s;
        transition-delay: .35s
    }

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
    -webkit-transition-duration: .4s;
    transition-duration: .4s
}

[data-aos][data-aos][data-aos-delay="400"], body[data-aos-delay="400"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
        -webkit-transition-delay: .4s;
        transition-delay: .4s
    }

[data-aos][data-aos][data-aos-duration="450"], body[data-aos-duration="450"] [data-aos] {
    -webkit-transition-duration: .45s;
    transition-duration: .45s
}

[data-aos][data-aos][data-aos-delay="450"], body[data-aos-delay="450"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="450"].aos-animate, body[data-aos-delay="450"] [data-aos].aos-animate {
        -webkit-transition-delay: .45s;
        transition-delay: .45s
    }

[data-aos][data-aos][data-aos-duration="500"], body[data-aos-duration="500"] [data-aos] {
    -webkit-transition-duration: .5s;
    transition-duration: .5s
}

[data-aos][data-aos][data-aos-delay="500"], body[data-aos-delay="500"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="500"].aos-animate, body[data-aos-delay="500"] [data-aos].aos-animate {
        -webkit-transition-delay: .5s;
        transition-delay: .5s
    }

[data-aos][data-aos][data-aos-duration="550"], body[data-aos-duration="550"] [data-aos] {
    -webkit-transition-duration: .55s;
    transition-duration: .55s
}

[data-aos][data-aos][data-aos-delay="550"], body[data-aos-delay="550"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="550"].aos-animate, body[data-aos-delay="550"] [data-aos].aos-animate {
        -webkit-transition-delay: .55s;
        transition-delay: .55s
    }

[data-aos][data-aos][data-aos-duration="600"], body[data-aos-duration="600"] [data-aos] {
    -webkit-transition-duration: .6s;
    transition-duration: .6s
}

[data-aos][data-aos][data-aos-delay="600"], body[data-aos-delay="600"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="600"].aos-animate, body[data-aos-delay="600"] [data-aos].aos-animate {
        -webkit-transition-delay: .6s;
        transition-delay: .6s
    }

[data-aos][data-aos][data-aos-duration="650"], body[data-aos-duration="650"] [data-aos] {
    -webkit-transition-duration: .65s;
    transition-duration: .65s
}

[data-aos][data-aos][data-aos-delay="650"], body[data-aos-delay="650"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="650"].aos-animate, body[data-aos-delay="650"] [data-aos].aos-animate {
        -webkit-transition-delay: .65s;
        transition-delay: .65s
    }

[data-aos][data-aos][data-aos-duration="700"], body[data-aos-duration="700"] [data-aos] {
    -webkit-transition-duration: .7s;
    transition-duration: .7s
}

[data-aos][data-aos][data-aos-delay="700"], body[data-aos-delay="700"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="700"].aos-animate, body[data-aos-delay="700"] [data-aos].aos-animate {
        -webkit-transition-delay: .7s;
        transition-delay: .7s
    }

[data-aos][data-aos][data-aos-duration="750"], body[data-aos-duration="750"] [data-aos] {
    -webkit-transition-duration: .75s;
    transition-duration: .75s
}

[data-aos][data-aos][data-aos-delay="750"], body[data-aos-delay="750"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="750"].aos-animate, body[data-aos-delay="750"] [data-aos].aos-animate {
        -webkit-transition-delay: .75s;
        transition-delay: .75s
    }

[data-aos][data-aos][data-aos-duration="800"], body[data-aos-duration="800"] [data-aos] {
    -webkit-transition-duration: .8s;
    transition-duration: .8s
}

[data-aos][data-aos][data-aos-delay="800"], body[data-aos-delay="800"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="800"].aos-animate, body[data-aos-delay="800"] [data-aos].aos-animate {
        -webkit-transition-delay: .8s;
        transition-delay: .8s
    }

[data-aos][data-aos][data-aos-duration="850"], body[data-aos-duration="850"] [data-aos] {
    -webkit-transition-duration: .85s;
    transition-duration: .85s
}

[data-aos][data-aos][data-aos-delay="850"], body[data-aos-delay="850"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="850"].aos-animate, body[data-aos-delay="850"] [data-aos].aos-animate {
        -webkit-transition-delay: .85s;
        transition-delay: .85s
    }

[data-aos][data-aos][data-aos-duration="900"], body[data-aos-duration="900"] [data-aos] {
    -webkit-transition-duration: .9s;
    transition-duration: .9s
}

[data-aos][data-aos][data-aos-delay="900"], body[data-aos-delay="900"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="900"].aos-animate, body[data-aos-delay="900"] [data-aos].aos-animate {
        -webkit-transition-delay: .9s;
        transition-delay: .9s
    }

[data-aos][data-aos][data-aos-duration="950"], body[data-aos-duration="950"] [data-aos] {
    -webkit-transition-duration: .95s;
    transition-duration: .95s
}

[data-aos][data-aos][data-aos-delay="950"], body[data-aos-delay="950"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="950"].aos-animate, body[data-aos-delay="950"] [data-aos].aos-animate {
        -webkit-transition-delay: .95s;
        transition-delay: .95s
    }

[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
    -webkit-transition-duration: 1s;
    transition-duration: 1s
}

[data-aos][data-aos][data-aos-delay="1000"], body[data-aos-delay="1000"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="1000"].aos-animate, body[data-aos-delay="1000"] [data-aos].aos-animate {
        -webkit-transition-delay: 1s;
        transition-delay: 1s
    }

[data-aos][data-aos][data-aos-duration="1050"], body[data-aos-duration="1050"] [data-aos] {
    -webkit-transition-duration: 1.05s;
    transition-duration: 1.05s
}

[data-aos][data-aos][data-aos-delay="1050"], body[data-aos-delay="1050"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="1050"].aos-animate, body[data-aos-delay="1050"] [data-aos].aos-animate {
        -webkit-transition-delay: 1.05s;
        transition-delay: 1.05s
    }

[data-aos][data-aos][data-aos-duration="1100"], body[data-aos-duration="1100"] [data-aos] {
    -webkit-transition-duration: 1.1s;
    transition-duration: 1.1s
}

[data-aos][data-aos][data-aos-delay="1100"], body[data-aos-delay="1100"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="1100"].aos-animate, body[data-aos-delay="1100"] [data-aos].aos-animate {
        -webkit-transition-delay: 1.1s;
        transition-delay: 1.1s
    }

[data-aos][data-aos][data-aos-duration="1150"], body[data-aos-duration="1150"] [data-aos] {
    -webkit-transition-duration: 1.15s;
    transition-duration: 1.15s
}

[data-aos][data-aos][data-aos-delay="1150"], body[data-aos-delay="1150"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="1150"].aos-animate, body[data-aos-delay="1150"] [data-aos].aos-animate {
        -webkit-transition-delay: 1.15s;
        transition-delay: 1.15s
    }

[data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos] {
    -webkit-transition-duration: 1.2s;
    transition-duration: 1.2s
}

[data-aos][data-aos][data-aos-delay="1200"], body[data-aos-delay="1200"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="1200"].aos-animate, body[data-aos-delay="1200"] [data-aos].aos-animate {
        -webkit-transition-delay: 1.2s;
        transition-delay: 1.2s
    }

[data-aos][data-aos][data-aos-duration="1250"], body[data-aos-duration="1250"] [data-aos] {
    -webkit-transition-duration: 1.25s;
    transition-duration: 1.25s
}

[data-aos][data-aos][data-aos-delay="1250"], body[data-aos-delay="1250"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="1250"].aos-animate, body[data-aos-delay="1250"] [data-aos].aos-animate {
        -webkit-transition-delay: 1.25s;
        transition-delay: 1.25s
    }

[data-aos][data-aos][data-aos-duration="1300"], body[data-aos-duration="1300"] [data-aos] {
    -webkit-transition-duration: 1.3s;
    transition-duration: 1.3s
}

[data-aos][data-aos][data-aos-delay="1300"], body[data-aos-delay="1300"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="1300"].aos-animate, body[data-aos-delay="1300"] [data-aos].aos-animate {
        -webkit-transition-delay: 1.3s;
        transition-delay: 1.3s
    }

[data-aos][data-aos][data-aos-duration="1350"], body[data-aos-duration="1350"] [data-aos] {
    -webkit-transition-duration: 1.35s;
    transition-duration: 1.35s
}

[data-aos][data-aos][data-aos-delay="1350"], body[data-aos-delay="1350"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="1350"].aos-animate, body[data-aos-delay="1350"] [data-aos].aos-animate {
        -webkit-transition-delay: 1.35s;
        transition-delay: 1.35s
    }

[data-aos][data-aos][data-aos-duration="1400"], body[data-aos-duration="1400"] [data-aos] {
    -webkit-transition-duration: 1.4s;
    transition-duration: 1.4s
}

[data-aos][data-aos][data-aos-delay="1400"], body[data-aos-delay="1400"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="1400"].aos-animate, body[data-aos-delay="1400"] [data-aos].aos-animate {
        -webkit-transition-delay: 1.4s;
        transition-delay: 1.4s
    }

[data-aos][data-aos][data-aos-duration="1450"], body[data-aos-duration="1450"] [data-aos] {
    -webkit-transition-duration: 1.45s;
    transition-duration: 1.45s
}

[data-aos][data-aos][data-aos-delay="1450"], body[data-aos-delay="1450"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="1450"].aos-animate, body[data-aos-delay="1450"] [data-aos].aos-animate {
        -webkit-transition-delay: 1.45s;
        transition-delay: 1.45s
    }

[data-aos][data-aos][data-aos-duration="1500"], body[data-aos-duration="1500"] [data-aos] {
    -webkit-transition-duration: 1.5s;
    transition-duration: 1.5s
}

[data-aos][data-aos][data-aos-delay="1500"], body[data-aos-delay="1500"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="1500"].aos-animate, body[data-aos-delay="1500"] [data-aos].aos-animate {
        -webkit-transition-delay: 1.5s;
        transition-delay: 1.5s
    }

[data-aos][data-aos][data-aos-duration="1550"], body[data-aos-duration="1550"] [data-aos] {
    -webkit-transition-duration: 1.55s;
    transition-duration: 1.55s
}

[data-aos][data-aos][data-aos-delay="1550"], body[data-aos-delay="1550"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="1550"].aos-animate, body[data-aos-delay="1550"] [data-aos].aos-animate {
        -webkit-transition-delay: 1.55s;
        transition-delay: 1.55s
    }

[data-aos][data-aos][data-aos-duration="1600"], body[data-aos-duration="1600"] [data-aos] {
    -webkit-transition-duration: 1.6s;
    transition-duration: 1.6s
}

[data-aos][data-aos][data-aos-delay="1600"], body[data-aos-delay="1600"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="1600"].aos-animate, body[data-aos-delay="1600"] [data-aos].aos-animate {
        -webkit-transition-delay: 1.6s;
        transition-delay: 1.6s
    }

[data-aos][data-aos][data-aos-duration="1650"], body[data-aos-duration="1650"] [data-aos] {
    -webkit-transition-duration: 1.65s;
    transition-duration: 1.65s
}

[data-aos][data-aos][data-aos-delay="1650"], body[data-aos-delay="1650"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="1650"].aos-animate, body[data-aos-delay="1650"] [data-aos].aos-animate {
        -webkit-transition-delay: 1.65s;
        transition-delay: 1.65s
    }

[data-aos][data-aos][data-aos-duration="1700"], body[data-aos-duration="1700"] [data-aos] {
    -webkit-transition-duration: 1.7s;
    transition-duration: 1.7s
}

[data-aos][data-aos][data-aos-delay="1700"], body[data-aos-delay="1700"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="1700"].aos-animate, body[data-aos-delay="1700"] [data-aos].aos-animate {
        -webkit-transition-delay: 1.7s;
        transition-delay: 1.7s
    }

[data-aos][data-aos][data-aos-duration="1750"], body[data-aos-duration="1750"] [data-aos] {
    -webkit-transition-duration: 1.75s;
    transition-duration: 1.75s
}

[data-aos][data-aos][data-aos-delay="1750"], body[data-aos-delay="1750"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="1750"].aos-animate, body[data-aos-delay="1750"] [data-aos].aos-animate {
        -webkit-transition-delay: 1.75s;
        transition-delay: 1.75s
    }

[data-aos][data-aos][data-aos-duration="1800"], body[data-aos-duration="1800"] [data-aos] {
    -webkit-transition-duration: 1.8s;
    transition-duration: 1.8s
}

[data-aos][data-aos][data-aos-delay="1800"], body[data-aos-delay="1800"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="1800"].aos-animate, body[data-aos-delay="1800"] [data-aos].aos-animate {
        -webkit-transition-delay: 1.8s;
        transition-delay: 1.8s
    }

[data-aos][data-aos][data-aos-duration="1850"], body[data-aos-duration="1850"] [data-aos] {
    -webkit-transition-duration: 1.85s;
    transition-duration: 1.85s
}

[data-aos][data-aos][data-aos-delay="1850"], body[data-aos-delay="1850"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="1850"].aos-animate, body[data-aos-delay="1850"] [data-aos].aos-animate {
        -webkit-transition-delay: 1.85s;
        transition-delay: 1.85s
    }

[data-aos][data-aos][data-aos-duration="1900"], body[data-aos-duration="1900"] [data-aos] {
    -webkit-transition-duration: 1.9s;
    transition-duration: 1.9s
}

[data-aos][data-aos][data-aos-delay="1900"], body[data-aos-delay="1900"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="1900"].aos-animate, body[data-aos-delay="1900"] [data-aos].aos-animate {
        -webkit-transition-delay: 1.9s;
        transition-delay: 1.9s
    }

[data-aos][data-aos][data-aos-duration="1950"], body[data-aos-duration="1950"] [data-aos] {
    -webkit-transition-duration: 1.95s;
    transition-duration: 1.95s
}

[data-aos][data-aos][data-aos-delay="1950"], body[data-aos-delay="1950"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="1950"].aos-animate, body[data-aos-delay="1950"] [data-aos].aos-animate {
        -webkit-transition-delay: 1.95s;
        transition-delay: 1.95s
    }

[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
    -webkit-transition-duration: 2s;
    transition-duration: 2s
}

[data-aos][data-aos][data-aos-delay="2000"], body[data-aos-delay="2000"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="2000"].aos-animate, body[data-aos-delay="2000"] [data-aos].aos-animate {
        -webkit-transition-delay: 2s;
        transition-delay: 2s
    }

[data-aos][data-aos][data-aos-duration="2050"], body[data-aos-duration="2050"] [data-aos] {
    -webkit-transition-duration: 2.05s;
    transition-duration: 2.05s
}

[data-aos][data-aos][data-aos-delay="2050"], body[data-aos-delay="2050"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="2050"].aos-animate, body[data-aos-delay="2050"] [data-aos].aos-animate {
        -webkit-transition-delay: 2.05s;
        transition-delay: 2.05s
    }

[data-aos][data-aos][data-aos-duration="2100"], body[data-aos-duration="2100"] [data-aos] {
    -webkit-transition-duration: 2.1s;
    transition-duration: 2.1s
}

[data-aos][data-aos][data-aos-delay="2100"], body[data-aos-delay="2100"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="2100"].aos-animate, body[data-aos-delay="2100"] [data-aos].aos-animate {
        -webkit-transition-delay: 2.1s;
        transition-delay: 2.1s
    }

[data-aos][data-aos][data-aos-duration="2150"], body[data-aos-duration="2150"] [data-aos] {
    -webkit-transition-duration: 2.15s;
    transition-duration: 2.15s
}

[data-aos][data-aos][data-aos-delay="2150"], body[data-aos-delay="2150"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="2150"].aos-animate, body[data-aos-delay="2150"] [data-aos].aos-animate {
        -webkit-transition-delay: 2.15s;
        transition-delay: 2.15s
    }

[data-aos][data-aos][data-aos-duration="2200"], body[data-aos-duration="2200"] [data-aos] {
    -webkit-transition-duration: 2.2s;
    transition-duration: 2.2s
}

[data-aos][data-aos][data-aos-delay="2200"], body[data-aos-delay="2200"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="2200"].aos-animate, body[data-aos-delay="2200"] [data-aos].aos-animate {
        -webkit-transition-delay: 2.2s;
        transition-delay: 2.2s
    }

[data-aos][data-aos][data-aos-duration="2250"], body[data-aos-duration="2250"] [data-aos] {
    -webkit-transition-duration: 2.25s;
    transition-duration: 2.25s
}

[data-aos][data-aos][data-aos-delay="2250"], body[data-aos-delay="2250"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="2250"].aos-animate, body[data-aos-delay="2250"] [data-aos].aos-animate {
        -webkit-transition-delay: 2.25s;
        transition-delay: 2.25s
    }

[data-aos][data-aos][data-aos-duration="2300"], body[data-aos-duration="2300"] [data-aos] {
    -webkit-transition-duration: 2.3s;
    transition-duration: 2.3s
}

[data-aos][data-aos][data-aos-delay="2300"], body[data-aos-delay="2300"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="2300"].aos-animate, body[data-aos-delay="2300"] [data-aos].aos-animate {
        -webkit-transition-delay: 2.3s;
        transition-delay: 2.3s
    }

[data-aos][data-aos][data-aos-duration="2350"], body[data-aos-duration="2350"] [data-aos] {
    -webkit-transition-duration: 2.35s;
    transition-duration: 2.35s
}

[data-aos][data-aos][data-aos-delay="2350"], body[data-aos-delay="2350"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="2350"].aos-animate, body[data-aos-delay="2350"] [data-aos].aos-animate {
        -webkit-transition-delay: 2.35s;
        transition-delay: 2.35s
    }

[data-aos][data-aos][data-aos-duration="2400"], body[data-aos-duration="2400"] [data-aos] {
    -webkit-transition-duration: 2.4s;
    transition-duration: 2.4s
}

[data-aos][data-aos][data-aos-delay="2400"], body[data-aos-delay="2400"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="2400"].aos-animate, body[data-aos-delay="2400"] [data-aos].aos-animate {
        -webkit-transition-delay: 2.4s;
        transition-delay: 2.4s
    }

[data-aos][data-aos][data-aos-duration="2450"], body[data-aos-duration="2450"] [data-aos] {
    -webkit-transition-duration: 2.45s;
    transition-duration: 2.45s
}

[data-aos][data-aos][data-aos-delay="2450"], body[data-aos-delay="2450"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="2450"].aos-animate, body[data-aos-delay="2450"] [data-aos].aos-animate {
        -webkit-transition-delay: 2.45s;
        transition-delay: 2.45s
    }

[data-aos][data-aos][data-aos-duration="2500"], body[data-aos-duration="2500"] [data-aos] {
    -webkit-transition-duration: 2.5s;
    transition-duration: 2.5s
}

[data-aos][data-aos][data-aos-delay="2500"], body[data-aos-delay="2500"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="2500"].aos-animate, body[data-aos-delay="2500"] [data-aos].aos-animate {
        -webkit-transition-delay: 2.5s;
        transition-delay: 2.5s
    }

[data-aos][data-aos][data-aos-duration="2550"], body[data-aos-duration="2550"] [data-aos] {
    -webkit-transition-duration: 2.55s;
    transition-duration: 2.55s
}

[data-aos][data-aos][data-aos-delay="2550"], body[data-aos-delay="2550"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="2550"].aos-animate, body[data-aos-delay="2550"] [data-aos].aos-animate {
        -webkit-transition-delay: 2.55s;
        transition-delay: 2.55s
    }

[data-aos][data-aos][data-aos-duration="2600"], body[data-aos-duration="2600"] [data-aos] {
    -webkit-transition-duration: 2.6s;
    transition-duration: 2.6s
}

[data-aos][data-aos][data-aos-delay="2600"], body[data-aos-delay="2600"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="2600"].aos-animate, body[data-aos-delay="2600"] [data-aos].aos-animate {
        -webkit-transition-delay: 2.6s;
        transition-delay: 2.6s
    }

[data-aos][data-aos][data-aos-duration="2650"], body[data-aos-duration="2650"] [data-aos] {
    -webkit-transition-duration: 2.65s;
    transition-duration: 2.65s
}

[data-aos][data-aos][data-aos-delay="2650"], body[data-aos-delay="2650"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="2650"].aos-animate, body[data-aos-delay="2650"] [data-aos].aos-animate {
        -webkit-transition-delay: 2.65s;
        transition-delay: 2.65s
    }

[data-aos][data-aos][data-aos-duration="2700"], body[data-aos-duration="2700"] [data-aos] {
    -webkit-transition-duration: 2.7s;
    transition-duration: 2.7s
}

[data-aos][data-aos][data-aos-delay="2700"], body[data-aos-delay="2700"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="2700"].aos-animate, body[data-aos-delay="2700"] [data-aos].aos-animate {
        -webkit-transition-delay: 2.7s;
        transition-delay: 2.7s
    }

[data-aos][data-aos][data-aos-duration="2750"], body[data-aos-duration="2750"] [data-aos] {
    -webkit-transition-duration: 2.75s;
    transition-duration: 2.75s
}

[data-aos][data-aos][data-aos-delay="2750"], body[data-aos-delay="2750"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="2750"].aos-animate, body[data-aos-delay="2750"] [data-aos].aos-animate {
        -webkit-transition-delay: 2.75s;
        transition-delay: 2.75s
    }

[data-aos][data-aos][data-aos-duration="2800"], body[data-aos-duration="2800"] [data-aos] {
    -webkit-transition-duration: 2.8s;
    transition-duration: 2.8s
}

[data-aos][data-aos][data-aos-delay="2800"], body[data-aos-delay="2800"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="2800"].aos-animate, body[data-aos-delay="2800"] [data-aos].aos-animate {
        -webkit-transition-delay: 2.8s;
        transition-delay: 2.8s
    }

[data-aos][data-aos][data-aos-duration="2850"], body[data-aos-duration="2850"] [data-aos] {
    -webkit-transition-duration: 2.85s;
    transition-duration: 2.85s
}

[data-aos][data-aos][data-aos-delay="2850"], body[data-aos-delay="2850"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="2850"].aos-animate, body[data-aos-delay="2850"] [data-aos].aos-animate {
        -webkit-transition-delay: 2.85s;
        transition-delay: 2.85s
    }

[data-aos][data-aos][data-aos-duration="2900"], body[data-aos-duration="2900"] [data-aos] {
    -webkit-transition-duration: 2.9s;
    transition-duration: 2.9s
}

[data-aos][data-aos][data-aos-delay="2900"], body[data-aos-delay="2900"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="2900"].aos-animate, body[data-aos-delay="2900"] [data-aos].aos-animate {
        -webkit-transition-delay: 2.9s;
        transition-delay: 2.9s
    }

[data-aos][data-aos][data-aos-duration="2950"], body[data-aos-duration="2950"] [data-aos] {
    -webkit-transition-duration: 2.95s;
    transition-duration: 2.95s
}

[data-aos][data-aos][data-aos-delay="2950"], body[data-aos-delay="2950"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="2950"].aos-animate, body[data-aos-delay="2950"] [data-aos].aos-animate {
        -webkit-transition-delay: 2.95s;
        transition-delay: 2.95s
    }

[data-aos][data-aos][data-aos-duration="3000"], body[data-aos-duration="3000"] [data-aos] {
    -webkit-transition-duration: 3s;
    transition-duration: 3s
}

[data-aos][data-aos][data-aos-delay="3000"], body[data-aos-delay="3000"] [data-aos] {
    -webkit-transition-delay: 0;
    transition-delay: 0
}

    [data-aos][data-aos][data-aos-delay="3000"].aos-animate, body[data-aos-delay="3000"] [data-aos].aos-animate {
        -webkit-transition-delay: 3s;
        transition-delay: 3s
    }

[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
    -webkit-transition-timing-function: cubic-bezier(.25,.25,.75,.75);
    transition-timing-function: cubic-bezier(.25,.25,.75,.75)
}

[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease
}

[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in
}

[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out
}

[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
    -webkit-transition-timing-function: cubic-bezier(.6,-.28,.735,.045);
    transition-timing-function: cubic-bezier(.6,-.28,.735,.045)
}

[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
    -webkit-transition-timing-function: cubic-bezier(.175,.885,.32,1.275);
    transition-timing-function: cubic-bezier(.175,.885,.32,1.275)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
    -webkit-transition-timing-function: cubic-bezier(.68,-.55,.265,1.55);
    transition-timing-function: cubic-bezier(.68,-.55,.265,1.55)
}

[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
    -webkit-transition-timing-function: cubic-bezier(.47,0,.745,.715);
    transition-timing-function: cubic-bezier(.47,0,.745,.715)
}

[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
    -webkit-transition-timing-function: cubic-bezier(.39,.575,.565,1);
    transition-timing-function: cubic-bezier(.39,.575,.565,1)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
    -webkit-transition-timing-function: cubic-bezier(.445,.05,.55,.95);
    transition-timing-function: cubic-bezier(.445,.05,.55,.95)
}

[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
    -webkit-transition-timing-function: cubic-bezier(.55,.085,.68,.53);
    transition-timing-function: cubic-bezier(.55,.085,.68,.53)
}

[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
    -webkit-transition-timing-function: cubic-bezier(.25,.46,.45,.94);
    transition-timing-function: cubic-bezier(.25,.46,.45,.94)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
    -webkit-transition-timing-function: cubic-bezier(.455,.03,.515,.955);
    transition-timing-function: cubic-bezier(.455,.03,.515,.955)
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
    -webkit-transition-timing-function: cubic-bezier(.55,.085,.68,.53);
    transition-timing-function: cubic-bezier(.55,.085,.68,.53)
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
    -webkit-transition-timing-function: cubic-bezier(.25,.46,.45,.94);
    transition-timing-function: cubic-bezier(.25,.46,.45,.94)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
    -webkit-transition-timing-function: cubic-bezier(.455,.03,.515,.955);
    transition-timing-function: cubic-bezier(.455,.03,.515,.955)
}

[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
    -webkit-transition-timing-function: cubic-bezier(.55,.085,.68,.53);
    transition-timing-function: cubic-bezier(.55,.085,.68,.53)
}

[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
    -webkit-transition-timing-function: cubic-bezier(.25,.46,.45,.94);
    transition-timing-function: cubic-bezier(.25,.46,.45,.94)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
    -webkit-transition-timing-function: cubic-bezier(.455,.03,.515,.955);
    transition-timing-function: cubic-bezier(.455,.03,.515,.955)
}

[data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    -webkit-transition-property: opacity,-webkit-transform;
    transition-property: opacity,-webkit-transform;
    transition-property: opacity,transform;
    transition-property: opacity,transform,-webkit-transform
}

    [data-aos^=fade][data-aos^=fade].aos-animate {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

[data-aos=fade-up] {
    -webkit-transform: translate3d(0,100px,0);
    transform: translate3d(0,100px,0)
}

[data-aos=fade-down] {
    -webkit-transform: translate3d(0,-100px,0);
    transform: translate3d(0,-100px,0)
}

[data-aos=fade-right] {
    -webkit-transform: translate3d(-100px,0,0);
    transform: translate3d(-100px,0,0)
}

[data-aos=fade-left] {
    -webkit-transform: translate3d(100px,0,0);
    transform: translate3d(100px,0,0)
}

[data-aos=fade-up-right] {
    -webkit-transform: translate3d(-100px,100px,0);
    transform: translate3d(-100px,100px,0)
}

[data-aos=fade-up-left] {
    -webkit-transform: translate3d(100px,100px,0);
    transform: translate3d(100px,100px,0)
}

[data-aos=fade-down-right] {
    -webkit-transform: translate3d(-100px,-100px,0);
    transform: translate3d(-100px,-100px,0)
}

[data-aos=fade-down-left] {
    -webkit-transform: translate3d(100px,-100px,0);
    transform: translate3d(100px,-100px,0)
}

[data-aos^=zoom][data-aos^=zoom] {
    opacity: 0;
    -webkit-transition-property: opacity,-webkit-transform;
    transition-property: opacity,-webkit-transform;
    transition-property: opacity,transform;
    transition-property: opacity,transform,-webkit-transform
}

    [data-aos^=zoom][data-aos^=zoom].aos-animate {
        opacity: 1;
        -webkit-transform: translateZ(0) scale(1);
        transform: translateZ(0) scale(1)
    }

[data-aos=zoom-in] {
    -webkit-transform: scale(.6);
    transform: scale(.6)
}

[data-aos=zoom-in-up] {
    -webkit-transform: translate3d(0,100px,0) scale(.6);
    transform: translate3d(0,100px,0) scale(.6)
}

[data-aos=zoom-in-down] {
    -webkit-transform: translate3d(0,-100px,0) scale(.6);
    transform: translate3d(0,-100px,0) scale(.6)
}

[data-aos=zoom-in-right] {
    -webkit-transform: translate3d(-100px,0,0) scale(.6);
    transform: translate3d(-100px,0,0) scale(.6)
}

[data-aos=zoom-in-left] {
    -webkit-transform: translate3d(100px,0,0) scale(.6);
    transform: translate3d(100px,0,0) scale(.6)
}

[data-aos=zoom-out] {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

[data-aos=zoom-out-up] {
    -webkit-transform: translate3d(0,100px,0) scale(1.2);
    transform: translate3d(0,100px,0) scale(1.2)
}

[data-aos=zoom-out-down] {
    -webkit-transform: translate3d(0,-100px,0) scale(1.2);
    transform: translate3d(0,-100px,0) scale(1.2)
}

[data-aos=zoom-out-right] {
    -webkit-transform: translate3d(-100px,0,0) scale(1.2);
    transform: translate3d(-100px,0,0) scale(1.2)
}

[data-aos=zoom-out-left] {
    -webkit-transform: translate3d(100px,0,0) scale(1.2);
    transform: translate3d(100px,0,0) scale(1.2)
}

[data-aos^=slide][data-aos^=slide] {
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform
}

    [data-aos^=slide][data-aos^=slide].aos-animate {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

[data-aos=slide-up] {
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0)
}

[data-aos=slide-down] {
    -webkit-transform: translate3d(0,-100%,0);
    transform: translate3d(0,-100%,0)
}

[data-aos=slide-right] {
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0)
}

[data-aos=slide-left] {
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0)
}

[data-aos^=flip][data-aos^=flip] {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform
}

[data-aos=flip-left] {
    -webkit-transform: perspective(2500px) rotateY(-100deg);
    transform: perspective(2500px) rotateY(-100deg)
}

    [data-aos=flip-left].aos-animate {
        -webkit-transform: perspective(2500px) rotateY(0);
        transform: perspective(2500px) rotateY(0)
    }

[data-aos=flip-right] {
    -webkit-transform: perspective(2500px) rotateY(100deg);
    transform: perspective(2500px) rotateY(100deg)
}

    [data-aos=flip-right].aos-animate {
        -webkit-transform: perspective(2500px) rotateY(0);
        transform: perspective(2500px) rotateY(0)
    }

[data-aos=flip-up] {
    -webkit-transform: perspective(2500px) rotateX(-100deg);
    transform: perspective(2500px) rotateX(-100deg)
}

    [data-aos=flip-up].aos-animate {
        -webkit-transform: perspective(2500px) rotateX(0);
        transform: perspective(2500px) rotateX(0)
    }

[data-aos=flip-down] {
    -webkit-transform: perspective(2500px) rotateX(100deg);
    transform: perspective(2500px) rotateX(100deg)
}

    [data-aos=flip-down].aos-animate {
        -webkit-transform: perspective(2500px) rotateX(0);
        transform: perspective(2500px) rotateX(0)
    }

@-webkit-keyframes spinAround {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes spinAround {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.breadcrumb, .button, .delete, .file, .is-unselectable, .modal-close, .pagination-ellipsis, .pagination-link, .pagination-next, .pagination-previous, .tabs {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.navbar-link::after, .select:not(.is-multiple):not(.is-loading)::after {
    border: 3px solid transparent;
    border-radius: 2px;
    border-right: 0;
    border-top: 0;
    content: " ";
    display: block;
    height: .625em;
    margin-top: -.4375em;
    pointer-events: none;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: center;
    transform-origin: center;
    width: .625em
}

.block:not(:last-child), .box:not(:last-child), .breadcrumb:not(:last-child), .content:not(:last-child), .highlight:not(:last-child), .level:not(:last-child), .message:not(:last-child), .notification:not(:last-child), .progress:not(:last-child), .steps:not(:last-child), .subtitle:not(:last-child), .table-container:not(:last-child), .table:not(:last-child), .tabs:not(:last-child), .title:not(:last-child) {
    margin-bottom: 1.5rem
}

.delete, .modal-close {
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: rgba(10,10,10,.2);
    border: none;
    border-radius: 290486px;
    cursor: pointer;
    display: inline-block;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 0;
    height: 20px;
    max-height: 20px;
    max-width: 20px;
    min-height: 20px;
    min-width: 20px;
    outline: 0;
    position: relative;
    vertical-align: top;
    width: 20px
}

    .delete::after, .delete::before, .modal-close::after, .modal-close::before {
        background-color: #fff;
        content: "";
        display: block;
        left: 50%;
        position: absolute;
        top: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
        -webkit-transform-origin: center center;
        transform-origin: center center
    }

    .delete::before, .modal-close::before {
        height: 2px;
        width: 50%
    }

    .delete::after, .modal-close::after {
        height: 50%;
        width: 2px
    }

    .delete:focus, .delete:hover, .modal-close:focus, .modal-close:hover {
        background-color: rgba(10,10,10,.3)
    }

    .delete:active, .modal-close:active {
        background-color: rgba(10,10,10,.4)
    }

.is-small.delete, .is-small.modal-close {
    height: 16px;
    max-height: 16px;
    max-width: 16px;
    min-height: 16px;
    min-width: 16px;
    width: 16px
}

.is-medium.delete, .is-medium.modal-close {
    height: 24px;
    max-height: 24px;
    max-width: 24px;
    min-height: 24px;
    min-width: 24px;
    width: 24px
}

.is-large.delete, .is-large.modal-close {
    height: 32px;
    max-height: 32px;
    max-width: 32px;
    min-height: 32px;
    min-width: 32px;
    width: 32px
}

.button.is-loading::after, .control.is-loading::after, .loader, .select.is-loading::after {
    -webkit-animation: spinAround .5s infinite linear;
    animation: spinAround .5s infinite linear;
    border: 2px solid #dbdbdb;
    border-radius: 290486px;
    border-right-color: transparent;
    border-top-color: transparent;
    content: "";
    display: block;
    height: 1em;
    position: relative;
    width: 1em
}

.hero-video, .image.is-16by9 img, .image.is-1by1 img, .image.is-1by2 img, .image.is-1by3 img, .image.is-2by1 img, .image.is-2by3 img, .image.is-3by1 img, .image.is-3by2 img, .image.is-3by4 img, .image.is-3by5 img, .image.is-4by3 img, .image.is-4by5 img, .image.is-5by3 img, .image.is-5by4 img, .image.is-9by16 img, .image.is-square img, .is-overlay, .modal, .modal-background, .pageloader {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.button, .file-cta, .file-name, .input, .pagination-ellipsis, .pagination-link, .pagination-next, .pagination-previous, .select select, .textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 1rem;
    height: 2.25em;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    line-height: 1.5;
    padding-bottom: calc(.375em - 1px);
    padding-left: calc(.625em - 1px);
    padding-right: calc(.625em - 1px);
    padding-top: calc(.375em - 1px);
    position: relative;
    vertical-align: top
}

    .button:active, .button:focus, .file-cta:active, .file-cta:focus, .file-name:active, .file-name:focus, .input:active, .input:focus, .is-active.button, .is-active.file-cta, .is-active.file-name, .is-active.input, .is-active.pagination-ellipsis, .is-active.pagination-link, .is-active.pagination-next, .is-active.pagination-previous, .is-active.textarea, .is-focused.button, .is-focused.file-cta, .is-focused.file-name, .is-focused.input, .is-focused.pagination-ellipsis, .is-focused.pagination-link, .is-focused.pagination-next, .is-focused.pagination-previous, .is-focused.textarea, .pagination-ellipsis:active, .pagination-ellipsis:focus, .pagination-link:active, .pagination-link:focus, .pagination-next:active, .pagination-next:focus, .pagination-previous:active, .pagination-previous:focus, .select select.is-active, .select select.is-focused, .select select:active, .select select:focus, .textarea:active, .textarea:focus {
        outline: 0
    }

    .button[disabled], .file-cta[disabled], .file-name[disabled], .input[disabled], .pagination-ellipsis[disabled], .pagination-link[disabled], .pagination-next[disabled], .pagination-previous[disabled], .select select[disabled], .textarea[disabled] {
        cursor: not-allowed
    }

blockquote, body, dd, dl, dt, fieldset, figure, h1, h2, h3, h4, h5, h6, hr, html, iframe, legend, li, ol, p, pre, textarea, ul {
    margin: 0;
    padding: 0
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
 
}

ul {
    list-style: none
}

button, input, select, textarea {
    margin: 0
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

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

audio, img, video {
    height: auto;
    max-width: 100%
}

iframe {
    border: 0
}

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

td, th {
    padding: 0;
    text-align: left
}

html {
    background-color: #fff;
    font-size: 16px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    min-width: 300px;
    overflow-x: hidden;
    overflow-y: scroll;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%
}

article, aside, figure, footer, header, hgroup, section {
    display: block
}

body, button, input, select, textarea {
    font-family: Roboto,sans-serif
}

code, pre {
    -moz-osx-font-smoothing: auto;
    -webkit-font-smoothing: auto;
    font-family: monospace
}

body {
    color: #545659;
    font-size: 1rem;
    font-family: 'Gotham-Light';
    line-height: 1.5
}

a {
    color: #9fbf43;
    cursor: pointer;
    text-decoration: none
}

    a strong {
        color: currentColor
    }

    a:hover {
        color: #363636
    }

code {
    background-color: #f5f5f5;
    color: #ff3860;
    font-size: initial;
    
    padding: .25em .5em .25em
}

hr {
    background-color: #f5f5f5;
    border: none;
    display: block;
    height: 2px;
    margin: 1.5rem 0
}

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

input[type=checkbox], input[type=radio] {
    vertical-align: baseline
}

small {
    font-size: .875em
}

span {
    font-style: inherit;
    font-weight: inherit
}

strong {
    color: #363636;
    font-weight: 700
}

pre {
    -webkit-overflow-scrolling: touch;
    background-color: #f5f5f5;
    color: #4a4a4a;
    font-size: .875em;
    overflow-x: auto;
    padding: 1.25rem 1.5rem;
    white-space: pre;
    word-wrap: normal
}

    pre code {
        background-color: transparent;
        color: currentColor;
        font-size: 1em;
        padding: 0
    }

table td, table th {
    text-align: left;
    vertical-align: top
}

table th {
    color: #363636
}

.is-clearfix::after {
    clear: both;
    content: " ";
    display: table
}

.is-pulled-left {
    float: left !important
}

.is-pulled-right {
    float: right !important
}

.is-clipped {
    overflow: hidden !important
}

.is-size-1 {
    font-size: 3rem !important
}

.is-size-2 {
    font-size: 2.5rem !important
}

.is-size-3 {
    font-size: 2rem !important
}

.is-size-4 {
    font-size: 1.5rem !important
}

.is-size-5 {
    font-size: 1.25rem !important
}

.is-size-6 {
    font-size: 1rem !important
}

.is-size-7 {
    font-size: .75rem !important
}

@media screen and (max-width:768px) {
    .is-size-1-mobile {
        font-size: 3rem !important
    }

    .is-size-2-mobile {
        font-size: 2.5rem !important
    }

    .is-size-3-mobile {
        font-size: 2rem !important
    }

    .is-size-4-mobile {
        font-size: 1.5rem !important
    }

    .is-size-5-mobile {
        font-size: 1.25rem !important
    }

    .is-size-6-mobile {
        font-size: 1rem !important
    }

    .is-size-7-mobile {
        font-size: .75rem !important
    }
}

@media screen and (min-width:769px),print {
    .is-size-1-tablet {
        font-size: 3rem !important
    }

    .is-size-2-tablet {
        font-size: 2.5rem !important
    }

    .is-size-3-tablet {
        font-size: 2rem !important
    }

    .is-size-4-tablet {
        font-size: 1.5rem !important
    }

    .is-size-5-tablet {
        font-size: 1.25rem !important
    }

    .is-size-6-tablet {
        font-size: 1rem !important
    }

    .is-size-7-tablet {
        font-size: .75rem !important
    }
}

@media screen and (max-width:1087px) {
    .is-size-1-touch {
        font-size: 3rem !important
    }

    .is-size-2-touch {
        font-size: 2.5rem !important
    }

    .is-size-3-touch {
        font-size: 2rem !important
    }

    .is-size-4-touch {
        font-size: 1.5rem !important
    }

    .is-size-5-touch {
        font-size: 1.25rem !important
    }

    .is-size-6-touch {
        font-size: 1rem !important
    }

    .is-size-7-touch {
        font-size: .75rem !important
    }
}

@media screen and (min-width:1088px) {
    .is-size-1-desktop {
        font-size: 3rem !important
    }

    .is-size-2-desktop {
        font-size: 2.5rem !important
    }

    .is-size-3-desktop {
        font-size: 2rem !important
    }

    .is-size-4-desktop {
        font-size: 1.5rem !important
    }

    .is-size-5-desktop {
        font-size: 1.25rem !important
    }

    .is-size-6-desktop {
        font-size: 1rem !important
    }

    .is-size-7-desktop {
        font-size: .75rem !important
    }
}

@media screen and (min-width:1280px) {
    .is-size-1-widescreen {
        font-size: 3rem !important
    }

    .is-size-2-widescreen {
        font-size: 2.5rem !important
    }

    .is-size-3-widescreen {
        font-size: 2rem !important
    }

    .is-size-4-widescreen {
        font-size: 1.5rem !important
    }

    .is-size-5-widescreen {
        font-size: 1.25rem !important
    }

    .is-size-6-widescreen {
        font-size: 1rem !important
    }

    .is-size-7-widescreen {
        font-size: .75rem !important
    }
}

@media screen and (min-width:1472px) {
    .is-size-1-fullhd {
        font-size: 3rem !important
    }

    .is-size-2-fullhd {
        font-size: 2.5rem !important
    }

    .is-size-3-fullhd {
        font-size: 2rem !important
    }

    .is-size-4-fullhd {
        font-size: 1.5rem !important
    }

    .is-size-5-fullhd {
        font-size: 1.25rem !important
    }

    .is-size-6-fullhd {
        font-size: 1rem !important
    }

    .is-size-7-fullhd {
        font-size: .75rem !important
    }
}

.has-text-centered {
    text-align: center !important
}

.has-text-justified {
    text-align: justify !important
}

.has-text-left {
    text-align: left !important
}

.has-text-right {
    text-align: right !important
}

@media screen and (max-width:768px) {
    .has-text-centered-mobile {
        text-align: center !important
    }
}

@media screen and (min-width:769px),print {
    .has-text-centered-tablet {
        text-align: center !important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .has-text-centered-tablet-only {
        text-align: center !important
    }
}

@media screen and (max-width:1087px) {
    .has-text-centered-touch {
        text-align: center !important
    }
}

@media screen and (min-width:1088px) {
    .has-text-centered-desktop {
        text-align: center !important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .has-text-centered-desktop-only {
        text-align: center !important
    }
}

@media screen and (min-width:1280px) {
    .has-text-centered-widescreen {
        text-align: center !important
    }
}

@media screen and (min-width:1280px) and (max-width:1471px) {
    .has-text-centered-widescreen-only {
        text-align: center !important
    }
}

@media screen and (min-width:1472px) {
    .has-text-centered-fullhd {
        text-align: center !important
    }
}

@media screen and (max-width:768px) {
    .has-text-justified-mobile {
        text-align: justify !important
    }
}

@media screen and (min-width:769px),print {
    .has-text-justified-tablet {
        text-align: justify !important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .has-text-justified-tablet-only {
        text-align: justify !important
    }
}

@media screen and (max-width:1087px) {
    .has-text-justified-touch {
        text-align: justify !important
    }
}

@media screen and (min-width:1088px) {
    .has-text-justified-desktop {
        text-align: justify !important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .has-text-justified-desktop-only {
        text-align: justify !important
    }
}

@media screen and (min-width:1280px) {
    .has-text-justified-widescreen {
        text-align: justify !important
    }
}

@media screen and (min-width:1280px) and (max-width:1471px) {
    .has-text-justified-widescreen-only {
        text-align: justify !important
    }
}

@media screen and (min-width:1472px) {
    .has-text-justified-fullhd {
        text-align: justify !important
    }
}

@media screen and (max-width:768px) {
    .has-text-left-mobile {
        text-align: left !important
    }
}

@media screen and (min-width:769px),print {
    .has-text-left-tablet {
        text-align: left !important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .has-text-left-tablet-only {
        text-align: left !important
    }
}

@media screen and (max-width:1087px) {
    .has-text-left-touch {
        text-align: left !important
    }
}

@media screen and (min-width:1088px) {
    .has-text-left-desktop {
        text-align: left !important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .has-text-left-desktop-only {
        text-align: left !important
    }
}

@media screen and (min-width:1280px) {
    .has-text-left-widescreen {
        text-align: left !important
    }
}

@media screen and (min-width:1280px) and (max-width:1471px) {
    .has-text-left-widescreen-only {
        text-align: left !important
    }
}

@media screen and (min-width:1472px) {
    .has-text-left-fullhd {
        text-align: left !important
    }
}

@media screen and (max-width:768px) {
    .has-text-right-mobile {
        text-align: right !important
    }
}

@media screen and (min-width:769px),print {
    .has-text-right-tablet {
        text-align: right !important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .has-text-right-tablet-only {
        text-align: right !important
    }
}

@media screen and (max-width:1087px) {
    .has-text-right-touch {
        text-align: right !important
    }
}

@media screen and (min-width:1088px) {
    .has-text-right-desktop {
        text-align: right !important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .has-text-right-desktop-only {
        text-align: right !important
    }
}

@media screen and (min-width:1280px) {
    .has-text-right-widescreen {
        text-align: right !important
    }
}

@media screen and (min-width:1280px) and (max-width:1471px) {
    .has-text-right-widescreen-only {
        text-align: right !important
    }
}

@media screen and (min-width:1472px) {
    .has-text-right-fullhd {
        text-align: right !important
    }
}

.is-capitalized {
    text-transform: capitalize !important
}

.is-lowercase {
    text-transform: lowercase !important
}

.is-uppercase {
    text-transform: uppercase !important
}

.is-italic {
    font-style: italic !important
}

.has-text-white {
    color: #fff !important
}

a.has-text-white:focus, a.has-text-white:hover {
    color: #e6e6e6 !important
}

.has-background-white {
    background-color: #fff !important
}

.has-text-black {
    color: #0a0a0a !important
}

a.has-text-black:focus, a.has-text-black:hover {
    color: #000 !important
}

.has-background-black {
    background-color: #0a0a0a !important
}

.has-text-light {
    color: #f5f5f5 !important
}

a.has-text-light:focus, a.has-text-light:hover {
    color: #dbdbdb !important
}

.has-background-light {
    background-color: #f5f5f5 !important
}

.has-text-dark {
    color: #363636 !important
}

a.has-text-dark:focus, a.has-text-dark:hover {
    color: #1c1c1c !important
}

.has-background-dark {
    background-color: #363636 !important
}

.has-text-primary {
    color: #9fbf43 !important
}

a.has-text-primary:focus, a.has-text-primary:hover {
    color: #d7410f !important
}

.has-background-primary {
    background-color: #9fbf43 !important
}

.has-text-link {
    color: #9fbf43 !important
}

a.has-text-link:focus, a.has-text-link:hover {
    color: #d7410f !important
}

.has-background-link {
    background-color: #9fbf43 !important
}

.has-text-info {
    color: #209cee !important
}

a.has-text-info:focus, a.has-text-info:hover {
    color: #0f81cc !important
}

.has-background-info {
    background-color: #209cee !important
}

.has-text-success {
    color: #23d160 !important
}

a.has-text-success:focus, a.has-text-success:hover {
    color: #1ca64c !important
}

.has-background-success {
    background-color: #23d160 !important
}

.has-text-warning {
    color: #ffdd57 !important
}

a.has-text-warning:focus, a.has-text-warning:hover {
    color: #ffd324 !important
}

.has-background-warning {
    background-color: #ffdd57 !important
}

.has-text-danger {
    color: #ff3860 !important
}

a.has-text-danger:focus, a.has-text-danger:hover {
    color: #ff0537 !important
}

.has-background-danger {
    background-color: #ff3860 !important
}

.has-text-primary-2 {
    color: #fa622f !important
}

a.has-text-primary-2:focus, a.has-text-primary-2:hover {
    color: #f04106 !important
}

.has-background-primary-2 {
    background-color: #fa622f !important
}

.has-text-primary-3 {
    color: #e65322 !important
}

a.has-text-primary-3:focus, a.has-text-primary-3:hover {
    color: #bf4016 !important
}

.has-background-primary-3 {
    background-color: #e65322 !important
}

.has-text-primary-4 {
    color: #e85c2d !important
}

a.has-text-primary-4:focus, a.has-text-primary-4:hover {
    color: #cc4416 !important
}

.has-background-primary-4 {
    background-color: #e85c2d !important
}

.has-text-primary-5 {
    color: #e35728 !important
}

a.has-text-primary-5:focus, a.has-text-primary-5:hover {
    color: #bf4319 !important
}

.has-background-primary-5 {
    background-color: #e35728 !important
}

.has-text-primary-6 {
    color: #e95220 !important
}

a.has-text-primary-6:focus, a.has-text-primary-6:hover {
    color: #c33f13 !important
}

.has-background-primary-6 {
    background-color: #e95220 !important
}

.has-text-primary-7 {
    color: #fafafa !important
}

a.has-text-primary-7:focus, a.has-text-primary-7:hover {
    color: #e1e1e1 !important
}

.has-background-primary-7 {
    background-color: #fafafa !important
}

.has-text-primary-light {
    color: #f9f9f9 !important
}

a.has-text-primary-light:focus, a.has-text-primary-light:hover {
    color: #e0e0e0 !important
}

.has-background-primary-light {
    background-color: #f9f9f9 !important
}

.has-text-secondary {
    color: #22262a !important
}

a.has-text-secondary:focus, a.has-text-secondary:hover {
    color: #0b0d0e !important
}

.has-background-secondary {
    background-color: #22262a !important
}

.has-text-secondary-2 {
    color: #2d3238 !important
}

a.has-text-secondary-2:focus, a.has-text-secondary-2:hover {
    color: #16191c !important
}

.has-background-secondary-2 {
    background-color: #2d3238 !important
}

.has-text-secondary-3 {
    color: #363a3f !important
}

a.has-text-secondary-3:focus, a.has-text-secondary-3:hover {
    color: #1e2124 !important
}

.has-background-secondary-3 {
    background-color: #363a3f !important
}

.has-text-secondary-4 {
    color: #414549 !important
}

a.has-text-secondary-4:focus, a.has-text-secondary-4:hover {
    color: #292c2e !important
}

.has-background-secondary-4 {
    background-color: #414549 !important
}

.has-text-secondary-5 {
    color: #545659 !important
}

a.has-text-secondary-5:focus, a.has-text-secondary-5:hover {
    color: #3b3d3f !important
}

.has-background-secondary-5 {
    background-color: #545659 !important
}

.has-text-tertiary {
    color: #a6a6a6 !important
}

a.has-text-tertiary:focus, a.has-text-tertiary:hover {
    color: #8d8d8d !important
}

.has-background-tertiary {
    background-color: #a6a6a6 !important
}

.has-text-tertiary-2 {
    color: #d8d8d8 !important
}

a.has-text-tertiary-2:focus, a.has-text-tertiary-2:hover {
    color: #bfbfbf !important
}

.has-background-tertiary-2 {
    background-color: #d8d8d8 !important
}

.has-text-tertiary-3 {
    color: #d7d6d3 !important
}

a.has-text-tertiary-3:focus, a.has-text-tertiary-3:hover {
    color: #bfbdb8 !important
}

.has-background-tertiary-3 {
    background-color: #d7d6d3 !important
}

.has-text-tertiary-4 {
    color: #afafaf !important
}

a.has-text-tertiary-4:focus, a.has-text-tertiary-4:hover {
    color: #969696 !important
}

.has-background-tertiary-4 {
    background-color: #afafaf !important
}

.has-text-tertiary-5 {
    color: #eaeaea !important
}

a.has-text-tertiary-5:focus, a.has-text-tertiary-5:hover {
    color: #d1d1d1 !important
}

.has-background-tertiary-5 {
    background-color: #eaeaea !important
}

.has-text-tertiary-6 {
    color: #b0b0b0 !important
}

a.has-text-tertiary-6:focus, a.has-text-tertiary-6:hover {
    color: #979797 !important
}

.has-background-tertiary-6 {
    background-color: #b0b0b0 !important
}

.has-text-tertiary-7 {
    color: #969696 !important
}

a.has-text-tertiary-7:focus, a.has-text-tertiary-7:hover {
    color: #7d7d7d !important
}

.has-background-tertiary-7 {
    background-color: #969696 !important
}

.has-text-tertiary-8 {
    color: #999 !important
}

a.has-text-tertiary-8:focus, a.has-text-tertiary-8:hover {
    color: gray !important
}

.has-background-tertiary-8 {
    background-color: #999 !important
}

.has-text-tertiary-9 {
    color: #f5f5f5 !important
}

a.has-text-tertiary-9:focus, a.has-text-tertiary-9:hover {
    color: #dcdcdc !important
}

.has-background-tertiary-9 {
    background-color: #f5f5f5 !important
}

.has-text-black-bis {
    color: #121212 !important
}

.has-background-black-bis {
    background-color: #121212 !important
}

.has-text-black-ter {
    color: #242424 !important
}

.has-background-black-ter {
    background-color: #242424 !important
}

.has-text-grey-darker {
    color: #363636 !important
}

.has-background-grey-darker {
    background-color: #363636 !important
}

.has-text-grey-dark {
    color: #4a4a4a !important
}

.has-background-grey-dark {
    background-color: #4a4a4a !important
}

.has-text-grey {
    color: #7a7a7a !important
}

.has-background-grey {
    background-color: #7a7a7a !important
}

.has-text-grey-light {
    color: #b5b5b5 !important
}

.has-background-grey-light {
    background-color: #b5b5b5 !important
}

.has-text-grey-lighter {
    color: #dbdbdb !important
}

.has-background-grey-lighter {
    background-color: #dbdbdb !important
}

.has-text-white-ter {
    color: #f5f5f5 !important
}

.has-background-white-ter {
    background-color: #f5f5f5 !important
}

.has-text-white-bis {
    color: #fafafa !important
}

.has-background-white-bis {
    background-color: #fafafa !important
}

.has-text-weight-light {
    font-weight: 300 !important
}

.has-text-weight-normal {
    font-weight: 400 !important
}

.has-text-weight-semibold {
   
}

.has-text-weight-bold {
    font-weight: 700 !important
}

.is-block {
    display: block !important
}

@media screen and (max-width:768px) {
    .is-block-mobile {
        display: block !important
    }
}

@media screen and (min-width:769px),print {
    .is-block-tablet {
        display: block !important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .is-block-tablet-only {
        display: block !important
    }
}

@media screen and (max-width:1087px) {
    .is-block-touch {
        display: block !important
    }
}

@media screen and (min-width:1088px) {
    .is-block-desktop {
        display: block !important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .is-block-desktop-only {
        display: block !important
    }
}

@media screen and (min-width:1280px) {
    .is-block-widescreen {
        display: block !important
    }
}

@media screen and (min-width:1280px) and (max-width:1471px) {
    .is-block-widescreen-only {
        display: block !important
    }
}

@media screen and (min-width:1472px) {
    .is-block-fullhd {
        display: block !important
    }
}

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

@media screen and (max-width:768px) {
    .is-flex-mobile {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
}

@media screen and (min-width:769px),print {
    .is-flex-tablet {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .is-flex-tablet-only {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
}

@media screen and (max-width:1087px) {
    .is-flex-touch {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
}

@media screen and (min-width:1088px) {
    .is-flex-desktop {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .is-flex-desktop-only {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
}

@media screen and (min-width:1280px) {
    .is-flex-widescreen {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
}

@media screen and (min-width:1280px) and (max-width:1471px) {
    .is-flex-widescreen-only {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
}

@media screen and (min-width:1472px) {
    .is-flex-fullhd {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }
}

.is-inline {
    display: inline !important
}

@media screen and (max-width:768px) {
    .is-inline-mobile {
        display: inline !important
    }
}

@media screen and (min-width:769px),print {
    .is-inline-tablet {
        display: inline !important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .is-inline-tablet-only {
        display: inline !important
    }
}

@media screen and (max-width:1087px) {
    .is-inline-touch {
        display: inline !important
    }
}

@media screen and (min-width:1088px) {
    .is-inline-desktop {
        display: inline !important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .is-inline-desktop-only {
        display: inline !important
    }
}

@media screen and (min-width:1280px) {
    .is-inline-widescreen {
        display: inline !important
    }
}

@media screen and (min-width:1280px) and (max-width:1471px) {
    .is-inline-widescreen-only {
        display: inline !important
    }
}

@media screen and (min-width:1472px) {
    .is-inline-fullhd {
        display: inline !important
    }
}

.is-inline-block {
    display: inline-block !important
}

@media screen and (max-width:768px) {
    .is-inline-block-mobile {
        display: inline-block !important
    }
}

@media screen and (min-width:769px),print {
    .is-inline-block-tablet {
        display: inline-block !important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .is-inline-block-tablet-only {
        display: inline-block !important
    }
}

@media screen and (max-width:1087px) {
    .is-inline-block-touch {
        display: inline-block !important
    }
}

@media screen and (min-width:1088px) {
    .is-inline-block-desktop {
        display: inline-block !important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .is-inline-block-desktop-only {
        display: inline-block !important
    }
}

@media screen and (min-width:1280px) {
    .is-inline-block-widescreen {
        display: inline-block !important
    }
}

@media screen and (min-width:1280px) and (max-width:1471px) {
    .is-inline-block-widescreen-only {
        display: inline-block !important
    }
}

@media screen and (min-width:1472px) {
    .is-inline-block-fullhd {
        display: inline-block !important
    }
}

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

@media screen and (max-width:768px) {
    .is-inline-flex-mobile {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media screen and (min-width:769px),print {
    .is-inline-flex-tablet {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .is-inline-flex-tablet-only {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media screen and (max-width:1087px) {
    .is-inline-flex-touch {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media screen and (min-width:1088px) {
    .is-inline-flex-desktop {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .is-inline-flex-desktop-only {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media screen and (min-width:1280px) {
    .is-inline-flex-widescreen {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media screen and (min-width:1280px) and (max-width:1471px) {
    .is-inline-flex-widescreen-only {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media screen and (min-width:1472px) {
    .is-inline-flex-fullhd {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

.is-hidden {
    display: none !important
}

@media screen and (max-width:768px) {
    .is-hidden-mobile {
        display: none !important
    }
}

@media screen and (min-width:769px),print {
    .is-hidden-tablet {
        display: none !important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .is-hidden-tablet-only {
        display: none !important
    }
}

@media screen and (max-width:1087px) {
    .is-hidden-touch {
        display: none !important
    }
}

@media screen and (min-width:1088px) {
    .is-hidden-desktop {
        display: none !important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .is-hidden-desktop-only {
        display: none !important
    }
}

@media screen and (min-width:1280px) {
    .is-hidden-widescreen {
        display: none !important
    }
}

@media screen and (min-width:1280px) and (max-width:1471px) {
    .is-hidden-widescreen-only {
        display: none !important
    }
}

@media screen and (min-width:1472px) {
    .is-hidden-fullhd {
        display: none !important
    }
}

.is-invisible {
    visibility: hidden !important
}

@media screen and (max-width:768px) {
    .is-invisible-mobile {
        visibility: hidden !important
    }
}

@media screen and (min-width:769px),print {
    .is-invisible-tablet {
        visibility: hidden !important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .is-invisible-tablet-only {
        visibility: hidden !important
    }
}

@media screen and (max-width:1087px) {
    .is-invisible-touch {
        visibility: hidden !important
    }
}

@media screen and (min-width:1088px) {
    .is-invisible-desktop {
        visibility: hidden !important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .is-invisible-desktop-only {
        visibility: hidden !important
    }
}

@media screen and (min-width:1280px) {
    .is-invisible-widescreen {
        visibility: hidden !important
    }
}

@media screen and (min-width:1280px) and (max-width:1471px) {
    .is-invisible-widescreen-only {
        visibility: hidden !important
    }
}

@media screen and (min-width:1472px) {
    .is-invisible-fullhd {
        visibility: hidden !important
    }
}

.is-marginless {
    margin: 0 !important
}

.is-paddingless {
    padding: 0 !important
}

.is-radiusless {
    border-radius: 0 !important
}

.is-shadowless {
    -webkit-box-shadow: none !important;
    box-shadow: none !important
}

.box {
    background-color: #fff;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #4a4a4a;
    display: block;
    padding: 0
}

a.box:focus, a.box:hover {
    -webkit-box-shadow: 0 2px 3px rgba(10,10,10,.1),0 0 0 1px #9fbf43;
    box-shadow: 0 2px 3px rgba(10,10,10,.1),0 0 0 1px #9fbf43
}

a.box:active {
    -webkit-box-shadow: inset 0 1px 2px rgba(10,10,10,.2),0 0 0 1px #9fbf43;
    box-shadow: inset 0 1px 2px rgba(10,10,10,.2),0 0 0 1px #9fbf43
}

.button {
    background-color: #fff;
    border-color: #dbdbdb;
    border-width: 1px;
    color: #363636;
    cursor: pointer;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: calc(.375em - 1px);
    padding-left: .75em;
    padding-right: .75em;
    padding-top: calc(.375em - 1px);
    text-align: center;
    white-space: nowrap
}

    .button strong {
        color: inherit
    }

    .button .icon, .button .icon.is-large, .button .icon.is-medium, .button .icon.is-small {
        height: 1.5em;
        width: 1.5em
    }

        .button .icon:first-child:not(:last-child) {
            margin-left: calc(-.375em - 1px);
            margin-right: .1875em
        }

        .button .icon:last-child:not(:first-child) {
            margin-left: .1875em;
            margin-right: calc(-.375em - 1px)
        }

        .button .icon:first-child:last-child {
            margin-left: calc(-.375em - 1px);
            margin-right: calc(-.375em - 1px)
        }

    .button.is-hovered, .button:hover {
        border-color: #b5b5b5;
        color: #363636
    }

    .button.is-focused, .button:focus {
        border-color: transparent;
        color: #363636
    }

        .button.is-focused:not(:active), .button:focus:not(:active) {
            -webkit-box-shadow: 0 transparent;
            box-shadow: 0 transparent
        }

    .button.is-active, .button:active {
        border-color: #4a4a4a;
        color: #363636
    }

    .button.is-text {
        background-color: transparent;
        border-color: transparent;
        color: #4a4a4a;
        text-decoration: underline
    }

        .button.is-text.is-focused, .button.is-text.is-hovered, .button.is-text:focus, .button.is-text:hover {
            background-color: #f5f5f5;
            color: #363636
        }

        .button.is-text.is-active, .button.is-text:active {
            background-color: #e8e8e8;
            color: #363636
        }

        .button.is-text[disabled] {
            background-color: transparent;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

    .button.is-white {
        background-color: #fff;
        border-color: transparent;
        color: #0a0a0a
    }

        .button.is-white.is-hovered, .button.is-white:hover {
            background-color: #f9f9f9;
            border-color: transparent;
            color: #0a0a0a
        }

        .button.is-white.is-focused, .button.is-white:focus {
            border-color: transparent;
            color: #0a0a0a
        }

            .button.is-white.is-focused:not(:active), .button.is-white:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(255,255,255,.25);
                box-shadow: 0 rgba(255,255,255,.25)
            }

        .button.is-white.is-active, .button.is-white:active {
            background-color: #f2f2f2;
            border-color: transparent;
            color: #0a0a0a
        }

        .button.is-white[disabled] {
            background-color: #fff;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-white.is-inverted {
            background-color: #0a0a0a;
            color: #fff
        }

            .button.is-white.is-inverted:hover {
                background-color: #000
            }

            .button.is-white.is-inverted[disabled] {
                background-color: #0a0a0a;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

        .button.is-white.is-loading::after {
            border-color: transparent transparent #0a0a0a #0a0a0a !important
        }

        .button.is-white.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-white.is-outlined:focus, .button.is-white.is-outlined:hover {
                background-color: #fff;
                border-color: #fff;
                color: #0a0a0a
            }

            .button.is-white.is-outlined.is-loading::after {
                border-color: transparent transparent #fff #fff !important
            }

            .button.is-white.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

        .button.is-white.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #0a0a0a;
            color: #0a0a0a
        }

            .button.is-white.is-inverted.is-outlined:focus, .button.is-white.is-inverted.is-outlined:hover {
                background-color: #0a0a0a;
                color: #fff
            }

            .button.is-white.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #0a0a0a;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #0a0a0a
            }

    .button.is-black {
        background-color: #0a0a0a;
        border-color: transparent;
        color: #fff
    }

        .button.is-black.is-hovered, .button.is-black:hover {
            background-color: #040404;
            border-color: transparent;
            color: #fff
        }

        .button.is-black.is-focused, .button.is-black:focus {
            border-color: transparent;
            color: #fff
        }

            .button.is-black.is-focused:not(:active), .button.is-black:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(10,10,10,.25);
                box-shadow: 0 rgba(10,10,10,.25)
            }

        .button.is-black.is-active, .button.is-black:active {
            background-color: #000;
            border-color: transparent;
            color: #fff
        }

        .button.is-black[disabled] {
            background-color: #0a0a0a;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-black.is-inverted {
            background-color: #fff;
            color: #0a0a0a
        }

            .button.is-black.is-inverted:hover {
                background-color: #f2f2f2
            }

            .button.is-black.is-inverted[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #0a0a0a
            }

        .button.is-black.is-loading::after {
            border-color: transparent transparent #fff #fff !important
        }

        .button.is-black.is-outlined {
            background-color: transparent;
            border-color: #0a0a0a;
            color: #0a0a0a
        }

            .button.is-black.is-outlined:focus, .button.is-black.is-outlined:hover {
                background-color: #0a0a0a;
                border-color: #0a0a0a;
                color: #fff
            }

            .button.is-black.is-outlined.is-loading::after {
                border-color: transparent transparent #0a0a0a #0a0a0a !important
            }

            .button.is-black.is-outlined[disabled] {
                background-color: transparent;
                border-color: #0a0a0a;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #0a0a0a
            }

        .button.is-black.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-black.is-inverted.is-outlined:focus, .button.is-black.is-inverted.is-outlined:hover {
                background-color: #fff;
                color: #0a0a0a
            }

            .button.is-black.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

    .button.is-light {
        background-color: #f5f5f5;
        border-color: transparent;
        color: #363636
    }

        .button.is-light.is-hovered, .button.is-light:hover {
            background-color: #eee;
            border-color: transparent;
            color: #363636
        }

        .button.is-light.is-focused, .button.is-light:focus {
            border-color: transparent;
            color: #363636
        }

            .button.is-light.is-focused:not(:active), .button.is-light:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(245,245,245,.25);
                box-shadow: 0 rgba(245,245,245,.25)
            }

        .button.is-light.is-active, .button.is-light:active {
            background-color: #e8e8e8;
            border-color: transparent;
            color: #363636
        }

        .button.is-light[disabled] {
            background-color: #f5f5f5;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-light.is-inverted {
            background-color: #363636;
            color: #f5f5f5
        }

            .button.is-light.is-inverted:hover {
                background-color: #292929
            }

            .button.is-light.is-inverted[disabled] {
                background-color: #363636;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #f5f5f5
            }

        .button.is-light.is-loading::after {
            border-color: transparent transparent #363636 #363636 !important
        }

        .button.is-light.is-outlined {
            background-color: transparent;
            border-color: #f5f5f5;
            color: #f5f5f5
        }

            .button.is-light.is-outlined:focus, .button.is-light.is-outlined:hover {
                background-color: #f5f5f5;
                border-color: #f5f5f5;
                color: #363636
            }

            .button.is-light.is-outlined.is-loading::after {
                border-color: transparent transparent #f5f5f5 #f5f5f5 !important
            }

            .button.is-light.is-outlined[disabled] {
                background-color: transparent;
                border-color: #f5f5f5;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #f5f5f5
            }

        .button.is-light.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #363636;
            color: #363636
        }

            .button.is-light.is-inverted.is-outlined:focus, .button.is-light.is-inverted.is-outlined:hover {
                background-color: #363636;
                color: #f5f5f5
            }

            .button.is-light.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #363636;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #363636
            }

    .button.is-dark {
        background-color: #363636;
        border-color: transparent;
        color: #f5f5f5
    }

        .button.is-dark.is-hovered, .button.is-dark:hover {
            background-color: #2f2f2f;
            border-color: transparent;
            color: #f5f5f5
        }

        .button.is-dark.is-focused, .button.is-dark:focus {
            border-color: transparent;
            color: #f5f5f5
        }

            .button.is-dark.is-focused:not(:active), .button.is-dark:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(54,54,54,.25);
                box-shadow: 0 rgba(54,54,54,.25)
            }

        .button.is-dark.is-active, .button.is-dark:active {
            background-color: #292929;
            border-color: transparent;
            color: #f5f5f5
        }

        .button.is-dark[disabled] {
            background-color: #363636;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-dark.is-inverted {
            background-color: #f5f5f5;
            color: #363636
        }

            .button.is-dark.is-inverted:hover {
                background-color: #e8e8e8
            }

            .button.is-dark.is-inverted[disabled] {
                background-color: #f5f5f5;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #363636
            }

        .button.is-dark.is-loading::after {
            border-color: transparent transparent #f5f5f5 #f5f5f5 !important
        }

        .button.is-dark.is-outlined {
            background-color: transparent;
            border-color: #363636;
            color: #363636
        }

            .button.is-dark.is-outlined:focus, .button.is-dark.is-outlined:hover {
                background-color: #363636;
                border-color: #363636;
                color: #f5f5f5
            }

            .button.is-dark.is-outlined.is-loading::after {
                border-color: transparent transparent #363636 #363636 !important
            }

            .button.is-dark.is-outlined[disabled] {
                background-color: transparent;
                border-color: #363636;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #363636
            }

        .button.is-dark.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #f5f5f5;
            color: #f5f5f5
        }

            .button.is-dark.is-inverted.is-outlined:focus, .button.is-dark.is-inverted.is-outlined:hover {
                background-color: #f5f5f5;
                color: #363636
            }

            .button.is-dark.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #f5f5f5;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #f5f5f5
            }

    .button.is-primary {
        background-color: #9fbf43;
        border-color: transparent;
        color: #fff
    }

        .button.is-primary.is-hovered, .button.is-primary:hover {
            background-color: #ef521d;
            border-color: transparent;
            color: #fff
        }

        .button.is-primary.is-focused, .button.is-primary:focus {
            border-color: transparent;
            color: #fff
        }

            .button.is-primary.is-focused:not(:active), .button.is-primary:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(240,91,41,.25);
                box-shadow: 0 rgba(240,91,41,.25)
            }

        .button.is-primary.is-active, .button.is-primary:active {
            background-color: #ee4911;
            border-color: transparent;
            color: #fff
        }

        .button.is-primary[disabled] {
            background-color: #9fbf43;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-primary.is-inverted {
            background-color: #fff;
            color: #9fbf43
        }

            .button.is-primary.is-inverted:hover {
                background-color: #f2f2f2
            }

            .button.is-primary.is-inverted[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #9fbf43
            }

        .button.is-primary.is-loading::after {
            border-color: transparent transparent #fff #fff !important
        }

        .button.is-primary.is-outlined {
            background-color: transparent;
            border-color: #9fbf43;
            color: #9fbf43
        }

            .button.is-primary.is-outlined:focus, .button.is-primary.is-outlined:hover {
                background-color: #9fbf43;
                border-color: #9fbf43;
                color: #fff
            }

            .button.is-primary.is-outlined.is-loading::after {
                border-color: transparent transparent #9fbf43 #9fbf43 !important
            }

            .button.is-primary.is-outlined[disabled] {
                background-color: transparent;
                border-color: #9fbf43;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #9fbf43
            }

        .button.is-primary.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-primary.is-inverted.is-outlined:focus, .button.is-primary.is-inverted.is-outlined:hover {
                background-color: #fff;
                color: #9fbf43
            }

            .button.is-primary.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

    .button.is-link {
        background-color: #9fbf43;
        border-color: transparent;
        color: #fff
    }

        .button.is-link.is-hovered, .button.is-link:hover {
            background-color: #ef521d;
            border-color: transparent;
            color: #fff
        }

        .button.is-link.is-focused, .button.is-link:focus {
            border-color: transparent;
            color: #fff
        }

            .button.is-link.is-focused:not(:active), .button.is-link:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(240,91,41,.25);
                box-shadow: 0 rgba(240,91,41,.25)
            }

        .button.is-link.is-active, .button.is-link:active {
            background-color: #ee4911;
            border-color: transparent;
            color: #fff
        }

        .button.is-link[disabled] {
            background-color: #9fbf43;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-link.is-inverted {
            background-color: #fff;
            color: #9fbf43
        }

            .button.is-link.is-inverted:hover {
                background-color: #f2f2f2
            }

            .button.is-link.is-inverted[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #9fbf43
            }

        .button.is-link.is-loading::after {
            border-color: transparent transparent #fff #fff !important
        }

        .button.is-link.is-outlined {
            background-color: transparent;
            border-color: #9fbf43;
            color: #9fbf43
        }

            .button.is-link.is-outlined:focus, .button.is-link.is-outlined:hover {
                background-color: #9fbf43;
                border-color: #9fbf43;
                color: #fff
            }

            .button.is-link.is-outlined.is-loading::after {
                border-color: transparent transparent #9fbf43 #9fbf43 !important
            }

            .button.is-link.is-outlined[disabled] {
                background-color: transparent;
                border-color: #9fbf43;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #9fbf43
            }

        .button.is-link.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-link.is-inverted.is-outlined:focus, .button.is-link.is-inverted.is-outlined:hover {
                background-color: #fff;
                color: #9fbf43
            }

            .button.is-link.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

    .button.is-info {
        background-color: #209cee;
        border-color: transparent;
        color: #fff
    }

        .button.is-info.is-hovered, .button.is-info:hover {
            background-color: #1496ed;
            border-color: transparent;
            color: #fff
        }

        .button.is-info.is-focused, .button.is-info:focus {
            border-color: transparent;
            color: #fff
        }

            .button.is-info.is-focused:not(:active), .button.is-info:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(32,156,238,.25);
                box-shadow: 0 rgba(32,156,238,.25)
            }

        .button.is-info.is-active, .button.is-info:active {
            background-color: #118fe4;
            border-color: transparent;
            color: #fff
        }

        .button.is-info[disabled] {
            background-color: #209cee;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-info.is-inverted {
            background-color: #fff;
            color: #209cee
        }

            .button.is-info.is-inverted:hover {
                background-color: #f2f2f2
            }

            .button.is-info.is-inverted[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #209cee
            }

        .button.is-info.is-loading::after {
            border-color: transparent transparent #fff #fff !important
        }

        .button.is-info.is-outlined {
            background-color: transparent;
            border-color: #209cee;
            color: #209cee
        }

            .button.is-info.is-outlined:focus, .button.is-info.is-outlined:hover {
                background-color: #209cee;
                border-color: #209cee;
                color: #fff
            }

            .button.is-info.is-outlined.is-loading::after {
                border-color: transparent transparent #209cee #209cee !important
            }

            .button.is-info.is-outlined[disabled] {
                background-color: transparent;
                border-color: #209cee;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #209cee
            }

        .button.is-info.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-info.is-inverted.is-outlined:focus, .button.is-info.is-inverted.is-outlined:hover {
                background-color: #fff;
                color: #209cee
            }

            .button.is-info.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

    .button.is-success {
        background-color: #23d160;
        border-color: transparent;
        color: #fff
    }

        .button.is-success.is-hovered, .button.is-success:hover {
            background-color: #22c65b;
            border-color: transparent;
            color: #fff
        }

        .button.is-success.is-focused, .button.is-success:focus {
            border-color: transparent;
            color: #fff
        }

            .button.is-success.is-focused:not(:active), .button.is-success:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(35,209,96,.25);
                box-shadow: 0 rgba(35,209,96,.25)
            }

        .button.is-success.is-active, .button.is-success:active {
            background-color: #20bc56;
            border-color: transparent;
            color: #fff
        }

        .button.is-success[disabled] {
            background-color: #23d160;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-success.is-inverted {
            background-color: #fff;
            color: #23d160
        }

            .button.is-success.is-inverted:hover {
                background-color: #f2f2f2
            }

            .button.is-success.is-inverted[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #23d160
            }

        .button.is-success.is-loading::after {
            border-color: transparent transparent #fff #fff !important
        }

        .button.is-success.is-outlined {
            background-color: transparent;
            border-color: #23d160;
            color: #23d160
        }

            .button.is-success.is-outlined:focus, .button.is-success.is-outlined:hover {
                background-color: #23d160;
                border-color: #23d160;
                color: #fff
            }

            .button.is-success.is-outlined.is-loading::after {
                border-color: transparent transparent #23d160 #23d160 !important
            }

            .button.is-success.is-outlined[disabled] {
                background-color: transparent;
                border-color: #23d160;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #23d160
            }

        .button.is-success.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-success.is-inverted.is-outlined:focus, .button.is-success.is-inverted.is-outlined:hover {
                background-color: #fff;
                color: #23d160
            }

            .button.is-success.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

    .button.is-warning {
        background-color: #ffdd57;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

        .button.is-warning.is-hovered, .button.is-warning:hover {
            background-color: #ffdb4a;
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

        .button.is-warning.is-focused, .button.is-warning:focus {
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

            .button.is-warning.is-focused:not(:active), .button.is-warning:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(255,221,87,.25);
                box-shadow: 0 rgba(255,221,87,.25)
            }

        .button.is-warning.is-active, .button.is-warning:active {
            background-color: #ffd83d;
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

        .button.is-warning[disabled] {
            background-color: #ffdd57;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-warning.is-inverted {
            background-color: rgba(0,0,0,.7);
            color: #ffdd57
        }

            .button.is-warning.is-inverted:hover {
                background-color: rgba(0,0,0,.7)
            }

            .button.is-warning.is-inverted[disabled] {
                background-color: rgba(0,0,0,.7);
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #ffdd57
            }

        .button.is-warning.is-loading::after {
            border-color: transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7) !important
        }

        .button.is-warning.is-outlined {
            background-color: transparent;
            border-color: #ffdd57;
            color: #ffdd57
        }

            .button.is-warning.is-outlined:focus, .button.is-warning.is-outlined:hover {
                background-color: #ffdd57;
                border-color: #ffdd57;
                color: rgba(0,0,0,.7)
            }

            .button.is-warning.is-outlined.is-loading::after {
                border-color: transparent transparent #ffdd57 #ffdd57 !important
            }

            .button.is-warning.is-outlined[disabled] {
                background-color: transparent;
                border-color: #ffdd57;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #ffdd57
            }

        .button.is-warning.is-inverted.is-outlined {
            background-color: transparent;
            border-color: rgba(0,0,0,.7);
            color: rgba(0,0,0,.7)
        }

            .button.is-warning.is-inverted.is-outlined:focus, .button.is-warning.is-inverted.is-outlined:hover {
                background-color: rgba(0,0,0,.7);
                color: #ffdd57
            }

            .button.is-warning.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: rgba(0,0,0,.7);
                -webkit-box-shadow: none;
                box-shadow: none;
                color: rgba(0,0,0,.7)
            }

    .button.is-danger {
        background-color: #ff3860;
        border-color: transparent;
        color: #fff
    }

        .button.is-danger.is-hovered, .button.is-danger:hover {
            background-color: #ff2b56;
            border-color: transparent;
            color: #fff
        }

        .button.is-danger.is-focused, .button.is-danger:focus {
            border-color: transparent;
            color: #fff
        }

            .button.is-danger.is-focused:not(:active), .button.is-danger:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(255,56,96,.25);
                box-shadow: 0 rgba(255,56,96,.25)
            }

        .button.is-danger.is-active, .button.is-danger:active {
            background-color: #ff1f4b;
            border-color: transparent;
            color: #fff
        }

        .button.is-danger[disabled] {
            background-color: #ff3860;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-danger.is-inverted {
            background-color: #fff;
            color: #ff3860
        }

            .button.is-danger.is-inverted:hover {
                background-color: #f2f2f2
            }

            .button.is-danger.is-inverted[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #ff3860
            }

        .button.is-danger.is-loading::after {
            border-color: transparent transparent #fff #fff !important
        }

        .button.is-danger.is-outlined {
            background-color: transparent;
            border-color: #ff3860;
            color: #ff3860
        }

            .button.is-danger.is-outlined:focus, .button.is-danger.is-outlined:hover {
                background-color: #ff3860;
                border-color: #ff3860;
                color: #fff
            }

            .button.is-danger.is-outlined.is-loading::after {
                border-color: transparent transparent #ff3860 #ff3860 !important
            }

            .button.is-danger.is-outlined[disabled] {
                background-color: transparent;
                border-color: #ff3860;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #ff3860
            }

        .button.is-danger.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-danger.is-inverted.is-outlined:focus, .button.is-danger.is-inverted.is-outlined:hover {
                background-color: #fff;
                color: #ff3860
            }

            .button.is-danger.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

    .button.is-primary-2 {
        background-color: #fa622f;
        border-color: transparent;
        color: #fff
    }

        .button.is-primary-2.is-hovered, .button.is-primary-2:hover {
            background-color: #fa5923;
            border-color: transparent;
            color: #fff
        }

        .button.is-primary-2.is-focused, .button.is-primary-2:focus {
            border-color: transparent;
            color: #fff
        }

            .button.is-primary-2.is-focused:not(:active), .button.is-primary-2:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(250,98,47,.25);
                box-shadow: 0 rgba(250,98,47,.25)
            }

        .button.is-primary-2.is-active, .button.is-primary-2:active {
            background-color: #f94f16;
            border-color: transparent;
            color: #fff
        }

        .button.is-primary-2[disabled] {
            background-color: #fa622f;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-primary-2.is-inverted {
            background-color: #fff;
            color: #fa622f
        }

            .button.is-primary-2.is-inverted:hover {
                background-color: #f2f2f2
            }

            .button.is-primary-2.is-inverted[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fa622f
            }

        .button.is-primary-2.is-loading::after {
            border-color: transparent transparent #fff #fff !important
        }

        .button.is-primary-2.is-outlined {
            background-color: transparent;
            border-color: #fa622f;
            color: #fa622f
        }

            .button.is-primary-2.is-outlined:focus, .button.is-primary-2.is-outlined:hover {
                background-color: #fa622f;
                border-color: #fa622f;
                color: #fff
            }

            .button.is-primary-2.is-outlined.is-loading::after {
                border-color: transparent transparent #fa622f #fa622f !important
            }

            .button.is-primary-2.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fa622f;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fa622f
            }

        .button.is-primary-2.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-primary-2.is-inverted.is-outlined:focus, .button.is-primary-2.is-inverted.is-outlined:hover {
                background-color: #fff;
                color: #fa622f
            }

            .button.is-primary-2.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

    .button.is-primary-3 {
        background-color: #e65322;
        border-color: transparent;
        color: #fff
    }

        .button.is-primary-3.is-hovered, .button.is-primary-3:hover {
            background-color: #e24c1a;
            border-color: transparent;
            color: #fff
        }

        .button.is-primary-3.is-focused, .button.is-primary-3:focus {
            border-color: transparent;
            color: #fff
        }

            .button.is-primary-3.is-focused:not(:active), .button.is-primary-3:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(230,83,34,.25);
                box-shadow: 0 rgba(230,83,34,.25)
            }

        .button.is-primary-3.is-active, .button.is-primary-3:active {
            background-color: #d64818;
            border-color: transparent;
            color: #fff
        }

        .button.is-primary-3[disabled] {
            background-color: #e65322;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-primary-3.is-inverted {
            background-color: #fff;
            color: #e65322
        }

            .button.is-primary-3.is-inverted:hover {
                background-color: #f2f2f2
            }

            .button.is-primary-3.is-inverted[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #e65322
            }

        .button.is-primary-3.is-loading::after {
            border-color: transparent transparent #fff #fff !important
        }

        .button.is-primary-3.is-outlined {
            background-color: transparent;
            border-color: #e65322;
            color: #e65322
        }

            .button.is-primary-3.is-outlined:focus, .button.is-primary-3.is-outlined:hover {
                background-color: #e65322;
                border-color: #e65322;
                color: #fff
            }

            .button.is-primary-3.is-outlined.is-loading::after {
                border-color: transparent transparent #e65322 #e65322 !important
            }

            .button.is-primary-3.is-outlined[disabled] {
                background-color: transparent;
                border-color: #e65322;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #e65322
            }

        .button.is-primary-3.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-primary-3.is-inverted.is-outlined:focus, .button.is-primary-3.is-inverted.is-outlined:hover {
                background-color: #fff;
                color: #e65322
            }

            .button.is-primary-3.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

    .button.is-primary-4 {
        background-color: #e85c2d;
        border-color: transparent;
        color: #fff
    }

        .button.is-primary-4.is-hovered, .button.is-primary-4:hover {
            background-color: #e75322;
            border-color: transparent;
            color: #fff
        }

        .button.is-primary-4.is-focused, .button.is-primary-4:focus {
            border-color: transparent;
            color: #fff
        }

            .button.is-primary-4.is-focused:not(:active), .button.is-primary-4:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(232,92,45,.25);
                box-shadow: 0 rgba(232,92,45,.25)
            }

        .button.is-primary-4.is-active, .button.is-primary-4:active {
            background-color: #e34c19;
            border-color: transparent;
            color: #fff
        }

        .button.is-primary-4[disabled] {
            background-color: #e85c2d;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-primary-4.is-inverted {
            background-color: #fff;
            color: #e85c2d
        }

            .button.is-primary-4.is-inverted:hover {
                background-color: #f2f2f2
            }

            .button.is-primary-4.is-inverted[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #e85c2d
            }

        .button.is-primary-4.is-loading::after {
            border-color: transparent transparent #fff #fff !important
        }

        .button.is-primary-4.is-outlined {
            background-color: transparent;
            border-color: #e85c2d;
            color: #e85c2d
        }

            .button.is-primary-4.is-outlined:focus, .button.is-primary-4.is-outlined:hover {
                background-color: #e85c2d;
                border-color: #e85c2d;
                color: #fff
            }

            .button.is-primary-4.is-outlined.is-loading::after {
                border-color: transparent transparent #e85c2d #e85c2d !important
            }

            .button.is-primary-4.is-outlined[disabled] {
                background-color: transparent;
                border-color: #e85c2d;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #e85c2d
            }

        .button.is-primary-4.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-primary-4.is-inverted.is-outlined:focus, .button.is-primary-4.is-inverted.is-outlined:hover {
                background-color: #fff;
                color: #e85c2d
            }

            .button.is-primary-4.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

    .button.is-primary-5 {
        background-color: #e35728;
        border-color: transparent;
        color: #fff
    }

        .button.is-primary-5.is-hovered, .button.is-primary-5:hover {
            background-color: #e14e1d;
            border-color: transparent;
            color: #fff
        }

        .button.is-primary-5.is-focused, .button.is-primary-5:focus {
            border-color: transparent;
            color: #fff
        }

            .button.is-primary-5.is-focused:not(:active), .button.is-primary-5:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(227,87,40,.25);
                box-shadow: 0 rgba(227,87,40,.25)
            }

        .button.is-primary-5.is-active, .button.is-primary-5:active {
            background-color: #d64b1c;
            border-color: transparent;
            color: #fff
        }

        .button.is-primary-5[disabled] {
            background-color: #e35728;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-primary-5.is-inverted {
            background-color: #fff;
            color: #e35728
        }

            .button.is-primary-5.is-inverted:hover {
                background-color: #f2f2f2
            }

            .button.is-primary-5.is-inverted[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #e35728
            }

        .button.is-primary-5.is-loading::after {
            border-color: transparent transparent #fff #fff !important
        }

        .button.is-primary-5.is-outlined {
            background-color: transparent;
            border-color: #e35728;
            color: #e35728
        }

            .button.is-primary-5.is-outlined:focus, .button.is-primary-5.is-outlined:hover {
                background-color: #e35728;
                border-color: #e35728;
                color: #fff
            }

            .button.is-primary-5.is-outlined.is-loading::after {
                border-color: transparent transparent #e35728 #e35728 !important
            }

            .button.is-primary-5.is-outlined[disabled] {
                background-color: transparent;
                border-color: #e35728;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #e35728
            }

        .button.is-primary-5.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-primary-5.is-inverted.is-outlined:focus, .button.is-primary-5.is-inverted.is-outlined:hover {
                background-color: #fff;
                color: #e35728
            }

            .button.is-primary-5.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

    .button.is-primary-6 {
        background-color: #e95220;
        border-color: transparent;
        color: #fff
    }

        .button.is-primary-6.is-hovered, .button.is-primary-6:hover {
            background-color: #e64a17;
            border-color: transparent;
            color: #fff
        }

        .button.is-primary-6.is-focused, .button.is-primary-6:focus {
            border-color: transparent;
            color: #fff
        }

            .button.is-primary-6.is-focused:not(:active), .button.is-primary-6:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(233,82,32,.25);
                box-shadow: 0 rgba(233,82,32,.25)
            }

        .button.is-primary-6.is-active, .button.is-primary-6:active {
            background-color: #da4616;
            border-color: transparent;
            color: #fff
        }

        .button.is-primary-6[disabled] {
            background-color: #e95220;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-primary-6.is-inverted {
            background-color: #fff;
            color: #e95220
        }

            .button.is-primary-6.is-inverted:hover {
                background-color: #f2f2f2
            }

            .button.is-primary-6.is-inverted[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #e95220
            }

        .button.is-primary-6.is-loading::after {
            border-color: transparent transparent #fff #fff !important
        }

        .button.is-primary-6.is-outlined {
            background-color: transparent;
            border-color: #e95220;
            color: #e95220
        }

            .button.is-primary-6.is-outlined:focus, .button.is-primary-6.is-outlined:hover {
                background-color: #e95220;
                border-color: #e95220;
                color: #fff
            }

            .button.is-primary-6.is-outlined.is-loading::after {
                border-color: transparent transparent #e95220 #e95220 !important
            }

            .button.is-primary-6.is-outlined[disabled] {
                background-color: transparent;
                border-color: #e95220;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #e95220
            }

        .button.is-primary-6.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-primary-6.is-inverted.is-outlined:focus, .button.is-primary-6.is-inverted.is-outlined:hover {
                background-color: #fff;
                color: #e95220
            }

            .button.is-primary-6.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

    .button.is-primary-7 {
        background-color: #fafafa;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

        .button.is-primary-7.is-hovered, .button.is-primary-7:hover {
            background-color: #f4f4f4;
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

        .button.is-primary-7.is-focused, .button.is-primary-7:focus {
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

            .button.is-primary-7.is-focused:not(:active), .button.is-primary-7:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(250,250,250,.25);
                box-shadow: 0 rgba(250,250,250,.25)
            }

        .button.is-primary-7.is-active, .button.is-primary-7:active {
            background-color: #ededed;
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

        .button.is-primary-7[disabled] {
            background-color: #fafafa;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-primary-7.is-inverted {
            background-color: rgba(0,0,0,.7);
            color: #fafafa
        }

            .button.is-primary-7.is-inverted:hover {
                background-color: rgba(0,0,0,.7)
            }

            .button.is-primary-7.is-inverted[disabled] {
                background-color: rgba(0,0,0,.7);
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fafafa
            }

        .button.is-primary-7.is-loading::after {
            border-color: transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7) !important
        }

        .button.is-primary-7.is-outlined {
            background-color: transparent;
            border-color: #fafafa;
            color: #fafafa
        }

            .button.is-primary-7.is-outlined:focus, .button.is-primary-7.is-outlined:hover {
                background-color: #fafafa;
                border-color: #fafafa;
                color: rgba(0,0,0,.7)
            }

            .button.is-primary-7.is-outlined.is-loading::after {
                border-color: transparent transparent #fafafa #fafafa !important
            }

            .button.is-primary-7.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fafafa;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fafafa
            }

        .button.is-primary-7.is-inverted.is-outlined {
            background-color: transparent;
            border-color: rgba(0,0,0,.7);
            color: rgba(0,0,0,.7)
        }

            .button.is-primary-7.is-inverted.is-outlined:focus, .button.is-primary-7.is-inverted.is-outlined:hover {
                background-color: rgba(0,0,0,.7);
                color: #fafafa
            }

            .button.is-primary-7.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: rgba(0,0,0,.7);
                -webkit-box-shadow: none;
                box-shadow: none;
                color: rgba(0,0,0,.7)
            }

    .button.is-primary-light {
        background-color: #f9f9f9;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

        .button.is-primary-light.is-hovered, .button.is-primary-light:hover {
            background-color: #f3f3f3;
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

        .button.is-primary-light.is-focused, .button.is-primary-light:focus {
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

            .button.is-primary-light.is-focused:not(:active), .button.is-primary-light:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(249,249,249,.25);
                box-shadow: 0 rgba(249,249,249,.25)
            }

        .button.is-primary-light.is-active, .button.is-primary-light:active {
            background-color: #ececec;
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

        .button.is-primary-light[disabled] {
            background-color: #f9f9f9;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-primary-light.is-inverted {
            background-color: rgba(0,0,0,.7);
            color: #f9f9f9
        }

            .button.is-primary-light.is-inverted:hover {
                background-color: rgba(0,0,0,.7)
            }

            .button.is-primary-light.is-inverted[disabled] {
                background-color: rgba(0,0,0,.7);
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #f9f9f9
            }

        .button.is-primary-light.is-loading::after {
            border-color: transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7) !important
        }

        .button.is-primary-light.is-outlined {
            background-color: transparent;
            border-color: #f9f9f9;
            color: #f9f9f9
        }

            .button.is-primary-light.is-outlined:focus, .button.is-primary-light.is-outlined:hover {
                background-color: #f9f9f9;
                border-color: #f9f9f9;
                color: rgba(0,0,0,.7)
            }

            .button.is-primary-light.is-outlined.is-loading::after {
                border-color: transparent transparent #f9f9f9 #f9f9f9 !important
            }

            .button.is-primary-light.is-outlined[disabled] {
                background-color: transparent;
                border-color: #f9f9f9;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #f9f9f9
            }

        .button.is-primary-light.is-inverted.is-outlined {
            background-color: transparent;
            border-color: rgba(0,0,0,.7);
            color: rgba(0,0,0,.7)
        }

            .button.is-primary-light.is-inverted.is-outlined:focus, .button.is-primary-light.is-inverted.is-outlined:hover {
                background-color: rgba(0,0,0,.7);
                color: #f9f9f9
            }

            .button.is-primary-light.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: rgba(0,0,0,.7);
                -webkit-box-shadow: none;
                box-shadow: none;
                color: rgba(0,0,0,.7)
            }

    .button.is-secondary {
        background-color: #22262a;
        border-color: transparent;
        color: #fff
    }

        .button.is-secondary.is-hovered, .button.is-secondary:hover {
            background-color: #1c2023;
            border-color: transparent;
            color: #fff
        }

        .button.is-secondary.is-focused, .button.is-secondary:focus {
            border-color: transparent;
            color: #fff
        }

            .button.is-secondary.is-focused:not(:active), .button.is-secondary:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(34,38,42,.25);
                box-shadow: 0 rgba(34,38,42,.25)
            }

        .button.is-secondary.is-active, .button.is-secondary:active {
            background-color: #17191c;
            border-color: transparent;
            color: #fff
        }

        .button.is-secondary[disabled] {
            background-color: #22262a;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-secondary.is-inverted {
            background-color: #fff;
            color: #22262a
        }

            .button.is-secondary.is-inverted:hover {
                background-color: #f2f2f2
            }

            .button.is-secondary.is-inverted[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #22262a
            }

        .button.is-secondary.is-loading::after {
            border-color: transparent transparent #fff #fff !important
        }

        .button.is-secondary.is-outlined {
            background-color: transparent;
            border-color: #22262a;
            color: #22262a
        }

            .button.is-secondary.is-outlined:focus, .button.is-secondary.is-outlined:hover {
                background-color: #22262a;
                border-color: #22262a;
                color: #fff
            }

            .button.is-secondary.is-outlined.is-loading::after {
                border-color: transparent transparent #22262a #22262a !important
            }

            .button.is-secondary.is-outlined[disabled] {
                background-color: transparent;
                border-color: #22262a;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #22262a
            }

        .button.is-secondary.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-secondary.is-inverted.is-outlined:focus, .button.is-secondary.is-inverted.is-outlined:hover {
                background-color: #fff;
                color: #22262a
            }

            .button.is-secondary.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

    .button.is-secondary-2 {
        background-color: #2d3238;
        border-color: transparent;
        color: #fff
    }

        .button.is-secondary-2.is-hovered, .button.is-secondary-2:hover {
            background-color: #272c31;
            border-color: transparent;
            color: #fff
        }

        .button.is-secondary-2.is-focused, .button.is-secondary-2:focus {
            border-color: transparent;
            color: #fff
        }

            .button.is-secondary-2.is-focused:not(:active), .button.is-secondary-2:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(45,50,56,.25);
                box-shadow: 0 rgba(45,50,56,.25)
            }

        .button.is-secondary-2.is-active, .button.is-secondary-2:active {
            background-color: #22252a;
            border-color: transparent;
            color: #fff
        }

        .button.is-secondary-2[disabled] {
            background-color: #2d3238;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-secondary-2.is-inverted {
            background-color: #fff;
            color: #2d3238
        }

            .button.is-secondary-2.is-inverted:hover {
                background-color: #f2f2f2
            }

            .button.is-secondary-2.is-inverted[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #2d3238
            }

        .button.is-secondary-2.is-loading::after {
            border-color: transparent transparent #fff #fff !important
        }

        .button.is-secondary-2.is-outlined {
            background-color: transparent;
            border-color: #2d3238;
            color: #2d3238
        }

            .button.is-secondary-2.is-outlined:focus, .button.is-secondary-2.is-outlined:hover {
                background-color: #2d3238;
                border-color: #2d3238;
                color: #fff
            }

            .button.is-secondary-2.is-outlined.is-loading::after {
                border-color: transparent transparent #2d3238 #2d3238 !important
            }

            .button.is-secondary-2.is-outlined[disabled] {
                background-color: transparent;
                border-color: #2d3238;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #2d3238
            }

        .button.is-secondary-2.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-secondary-2.is-inverted.is-outlined:focus, .button.is-secondary-2.is-inverted.is-outlined:hover {
                background-color: #fff;
                color: #2d3238
            }

            .button.is-secondary-2.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

    .button.is-secondary-3 {
        background-color: #363a3f;
        border-color: transparent;
        color: #fff
    }

        .button.is-secondary-3.is-hovered, .button.is-secondary-3:hover {
            background-color: #303438;
            border-color: transparent;
            color: #fff
        }

        .button.is-secondary-3.is-focused, .button.is-secondary-3:focus {
            border-color: transparent;
            color: #fff
        }

            .button.is-secondary-3.is-focused:not(:active), .button.is-secondary-3:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(54,58,63,.25);
                box-shadow: 0 rgba(54,58,63,.25)
            }

        .button.is-secondary-3.is-active, .button.is-secondary-3:active {
            background-color: #2a2d31;
            border-color: transparent;
            color: #fff
        }

        .button.is-secondary-3[disabled] {
            background-color: #363a3f;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-secondary-3.is-inverted {
            background-color: #fff;
            color: #363a3f
        }

            .button.is-secondary-3.is-inverted:hover {
                background-color: #f2f2f2
            }

            .button.is-secondary-3.is-inverted[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #363a3f
            }

        .button.is-secondary-3.is-loading::after {
            border-color: transparent transparent #fff #fff !important
        }

        .button.is-secondary-3.is-outlined {
            background-color: transparent;
            border-color: #363a3f;
            color: #363a3f
        }

            .button.is-secondary-3.is-outlined:focus, .button.is-secondary-3.is-outlined:hover {
                background-color: #363a3f;
                border-color: #363a3f;
                color: #fff
            }

            .button.is-secondary-3.is-outlined.is-loading::after {
                border-color: transparent transparent #363a3f #363a3f !important
            }

            .button.is-secondary-3.is-outlined[disabled] {
                background-color: transparent;
                border-color: #363a3f;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #363a3f
            }

        .button.is-secondary-3.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-secondary-3.is-inverted.is-outlined:focus, .button.is-secondary-3.is-inverted.is-outlined:hover {
                background-color: #fff;
                color: #363a3f
            }

            .button.is-secondary-3.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

    .button.is-secondary-4 {
        background-color: #414549;
        border-color: transparent;
        color: #fff
    }

        .button.is-secondary-4.is-hovered, .button.is-secondary-4:hover {
            background-color: #3b3f42;
            border-color: transparent;
            color: #fff
        }

        .button.is-secondary-4.is-focused, .button.is-secondary-4:focus {
            border-color: transparent;
            color: #fff
        }

            .button.is-secondary-4.is-focused:not(:active), .button.is-secondary-4:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(65,69,73,.25);
                box-shadow: 0 rgba(65,69,73,.25)
            }

        .button.is-secondary-4.is-active, .button.is-secondary-4:active {
            background-color: #35383c;
            border-color: transparent;
            color: #fff
        }

        .button.is-secondary-4[disabled] {
            background-color: #414549;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-secondary-4.is-inverted {
            background-color: #fff;
            color: #414549
        }

            .button.is-secondary-4.is-inverted:hover {
                background-color: #f2f2f2
            }

            .button.is-secondary-4.is-inverted[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #414549
            }

        .button.is-secondary-4.is-loading::after {
            border-color: transparent transparent #fff #fff !important
        }

        .button.is-secondary-4.is-outlined {
            background-color: transparent;
            border-color: #414549;
            color: #414549
        }

            .button.is-secondary-4.is-outlined:focus, .button.is-secondary-4.is-outlined:hover {
                background-color: #414549;
                border-color: #414549;
                color: #fff
            }

            .button.is-secondary-4.is-outlined.is-loading::after {
                border-color: transparent transparent #414549 #414549 !important
            }

            .button.is-secondary-4.is-outlined[disabled] {
                background-color: transparent;
                border-color: #414549;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #414549
            }

        .button.is-secondary-4.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-secondary-4.is-inverted.is-outlined:focus, .button.is-secondary-4.is-inverted.is-outlined:hover {
                background-color: #fff;
                color: #414549
            }

            .button.is-secondary-4.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

    .button.is-secondary-5 {
        background-color: #545659;
        border-color: transparent;
        color: #fff
    }

        .button.is-secondary-5.is-hovered, .button.is-secondary-5:hover {
            background-color: #4e5052;
            border-color: transparent;
            color: #fff
        }

        .button.is-secondary-5.is-focused, .button.is-secondary-5:focus {
            border-color: transparent;
            color: #fff
        }

            .button.is-secondary-5.is-focused:not(:active), .button.is-secondary-5:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(84,86,89,.25);
                box-shadow: 0 rgba(84,86,89,.25)
            }

        .button.is-secondary-5.is-active, .button.is-secondary-5:active {
            background-color: #48494c;
            border-color: transparent;
            color: #fff
        }

        .button.is-secondary-5[disabled] {
            background-color: #545659;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-secondary-5.is-inverted {
            background-color: #fff;
            color: #545659
        }

            .button.is-secondary-5.is-inverted:hover {
                background-color: #f2f2f2
            }

            .button.is-secondary-5.is-inverted[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #545659
            }

        .button.is-secondary-5.is-loading::after {
            border-color: transparent transparent #fff #fff !important
        }

        .button.is-secondary-5.is-outlined {
            background-color: transparent;
            border-color: #545659;
            color: #545659
        }

            .button.is-secondary-5.is-outlined:focus, .button.is-secondary-5.is-outlined:hover {
                background-color: #545659;
                border-color: #545659;
                color: #fff
            }

            .button.is-secondary-5.is-outlined.is-loading::after {
                border-color: transparent transparent #545659 #545659 !important
            }

            .button.is-secondary-5.is-outlined[disabled] {
                background-color: transparent;
                border-color: #545659;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #545659
            }

        .button.is-secondary-5.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-secondary-5.is-inverted.is-outlined:focus, .button.is-secondary-5.is-inverted.is-outlined:hover {
                background-color: #fff;
                color: #545659
            }

            .button.is-secondary-5.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

    .button.is-tertiary {
        background-color: #a6a6a6;
        border-color: transparent;
        color: #fff
    }

        .button.is-tertiary.is-hovered, .button.is-tertiary:hover {
            background-color: #a0a0a0;
            border-color: transparent;
            color: #fff
        }

        .button.is-tertiary.is-focused, .button.is-tertiary:focus {
            border-color: transparent;
            color: #fff
        }

            .button.is-tertiary.is-focused:not(:active), .button.is-tertiary:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(166,166,166,.25);
                box-shadow: 0 rgba(166,166,166,.25)
            }

        .button.is-tertiary.is-active, .button.is-tertiary:active {
            background-color: #999;
            border-color: transparent;
            color: #fff
        }

        .button.is-tertiary[disabled] {
            background-color: #a6a6a6;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-tertiary.is-inverted {
            background-color: #fff;
            color: #a6a6a6
        }

            .button.is-tertiary.is-inverted:hover {
                background-color: #f2f2f2
            }

            .button.is-tertiary.is-inverted[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #a6a6a6
            }

        .button.is-tertiary.is-loading::after {
            border-color: transparent transparent #fff #fff !important
        }

        .button.is-tertiary.is-outlined {
            background-color: transparent;
            border-color: #a6a6a6;
            color: #a6a6a6
        }

            .button.is-tertiary.is-outlined:focus, .button.is-tertiary.is-outlined:hover {
                background-color: #a6a6a6;
                border-color: #a6a6a6;
                color: #fff
            }

            .button.is-tertiary.is-outlined.is-loading::after {
                border-color: transparent transparent #a6a6a6 #a6a6a6 !important
            }

            .button.is-tertiary.is-outlined[disabled] {
                background-color: transparent;
                border-color: #a6a6a6;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #a6a6a6
            }

        .button.is-tertiary.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-tertiary.is-inverted.is-outlined:focus, .button.is-tertiary.is-inverted.is-outlined:hover {
                background-color: #fff;
                color: #a6a6a6
            }

            .button.is-tertiary.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

    .button.is-tertiary-2 {
        background-color: #d8d8d8;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

        .button.is-tertiary-2.is-hovered, .button.is-tertiary-2:hover {
            background-color: #d2d2d2;
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

        .button.is-tertiary-2.is-focused, .button.is-tertiary-2:focus {
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

            .button.is-tertiary-2.is-focused:not(:active), .button.is-tertiary-2:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(216,216,216,.25);
                box-shadow: 0 rgba(216,216,216,.25)
            }

        .button.is-tertiary-2.is-active, .button.is-tertiary-2:active {
            background-color: #cbcbcb;
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

        .button.is-tertiary-2[disabled] {
            background-color: #d8d8d8;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-tertiary-2.is-inverted {
            background-color: rgba(0,0,0,.7);
            color: #d8d8d8
        }

            .button.is-tertiary-2.is-inverted:hover {
                background-color: rgba(0,0,0,.7)
            }

            .button.is-tertiary-2.is-inverted[disabled] {
                background-color: rgba(0,0,0,.7);
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #d8d8d8
            }

        .button.is-tertiary-2.is-loading::after {
            border-color: transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7) !important
        }

        .button.is-tertiary-2.is-outlined {
            background-color: transparent;
            border-color: #d8d8d8;
            color: #d8d8d8
        }

            .button.is-tertiary-2.is-outlined:focus, .button.is-tertiary-2.is-outlined:hover {
                background-color: #d8d8d8;
                border-color: #d8d8d8;
                color: rgba(0,0,0,.7)
            }

            .button.is-tertiary-2.is-outlined.is-loading::after {
                border-color: transparent transparent #d8d8d8 #d8d8d8 !important
            }

            .button.is-tertiary-2.is-outlined[disabled] {
                background-color: transparent;
                border-color: #d8d8d8;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #d8d8d8
            }

        .button.is-tertiary-2.is-inverted.is-outlined {
            background-color: transparent;
            border-color: rgba(0,0,0,.7);
            color: rgba(0,0,0,.7)
        }

            .button.is-tertiary-2.is-inverted.is-outlined:focus, .button.is-tertiary-2.is-inverted.is-outlined:hover {
                background-color: rgba(0,0,0,.7);
                color: #d8d8d8
            }

            .button.is-tertiary-2.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: rgba(0,0,0,.7);
                -webkit-box-shadow: none;
                box-shadow: none;
                color: rgba(0,0,0,.7)
            }

    .button.is-tertiary-3 {
        background-color: #d7d6d3;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

        .button.is-tertiary-3.is-hovered, .button.is-tertiary-3:hover {
            background-color: #d1d0cc;
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

        .button.is-tertiary-3.is-focused, .button.is-tertiary-3:focus {
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

            .button.is-tertiary-3.is-focused:not(:active), .button.is-tertiary-3:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(215,214,211,.25);
                box-shadow: 0 rgba(215,214,211,.25)
            }

        .button.is-tertiary-3.is-active, .button.is-tertiary-3:active {
            background-color: #cbcac6;
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

        .button.is-tertiary-3[disabled] {
            background-color: #d7d6d3;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-tertiary-3.is-inverted {
            background-color: rgba(0,0,0,.7);
            color: #d7d6d3
        }

            .button.is-tertiary-3.is-inverted:hover {
                background-color: rgba(0,0,0,.7)
            }

            .button.is-tertiary-3.is-inverted[disabled] {
                background-color: rgba(0,0,0,.7);
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #d7d6d3
            }

        .button.is-tertiary-3.is-loading::after {
            border-color: transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7) !important
        }

        .button.is-tertiary-3.is-outlined {
            background-color: transparent;
            border-color: #d7d6d3;
            color: #d7d6d3
        }

            .button.is-tertiary-3.is-outlined:focus, .button.is-tertiary-3.is-outlined:hover {
                background-color: #d7d6d3;
                border-color: #d7d6d3;
                color: rgba(0,0,0,.7)
            }

            .button.is-tertiary-3.is-outlined.is-loading::after {
                border-color: transparent transparent #d7d6d3 #d7d6d3 !important
            }

            .button.is-tertiary-3.is-outlined[disabled] {
                background-color: transparent;
                border-color: #d7d6d3;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #d7d6d3
            }

        .button.is-tertiary-3.is-inverted.is-outlined {
            background-color: transparent;
            border-color: rgba(0,0,0,.7);
            color: rgba(0,0,0,.7)
        }

            .button.is-tertiary-3.is-inverted.is-outlined:focus, .button.is-tertiary-3.is-inverted.is-outlined:hover {
                background-color: rgba(0,0,0,.7);
                color: #d7d6d3
            }

            .button.is-tertiary-3.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: rgba(0,0,0,.7);
                -webkit-box-shadow: none;
                box-shadow: none;
                color: rgba(0,0,0,.7)
            }

    .button.is-tertiary-4 {
        background-color: #afafaf;
        border-color: transparent;
        color: #fff
    }

        .button.is-tertiary-4.is-hovered, .button.is-tertiary-4:hover {
            background-color: #a9a9a9;
            border-color: transparent;
            color: #fff
        }

        .button.is-tertiary-4.is-focused, .button.is-tertiary-4:focus {
            border-color: transparent;
            color: #fff
        }

            .button.is-tertiary-4.is-focused:not(:active), .button.is-tertiary-4:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(175,175,175,.25);
                box-shadow: 0 rgba(175,175,175,.25)
            }

        .button.is-tertiary-4.is-active, .button.is-tertiary-4:active {
            background-color: #a2a2a2;
            border-color: transparent;
            color: #fff
        }

        .button.is-tertiary-4[disabled] {
            background-color: #afafaf;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-tertiary-4.is-inverted {
            background-color: #fff;
            color: #afafaf
        }

            .button.is-tertiary-4.is-inverted:hover {
                background-color: #f2f2f2
            }

            .button.is-tertiary-4.is-inverted[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #afafaf
            }

        .button.is-tertiary-4.is-loading::after {
            border-color: transparent transparent #fff #fff !important
        }

        .button.is-tertiary-4.is-outlined {
            background-color: transparent;
            border-color: #afafaf;
            color: #afafaf
        }

            .button.is-tertiary-4.is-outlined:focus, .button.is-tertiary-4.is-outlined:hover {
                background-color: #afafaf;
                border-color: #afafaf;
                color: #fff
            }

            .button.is-tertiary-4.is-outlined.is-loading::after {
                border-color: transparent transparent #afafaf #afafaf !important
            }

            .button.is-tertiary-4.is-outlined[disabled] {
                background-color: transparent;
                border-color: #afafaf;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #afafaf
            }

        .button.is-tertiary-4.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-tertiary-4.is-inverted.is-outlined:focus, .button.is-tertiary-4.is-inverted.is-outlined:hover {
                background-color: #fff;
                color: #afafaf
            }

            .button.is-tertiary-4.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

    .button.is-tertiary-5 {
        background-color: #eaeaea;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

        .button.is-tertiary-5.is-hovered, .button.is-tertiary-5:hover {
            background-color: #e4e4e4;
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

        .button.is-tertiary-5.is-focused, .button.is-tertiary-5:focus {
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

            .button.is-tertiary-5.is-focused:not(:active), .button.is-tertiary-5:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(234,234,234,.25);
                box-shadow: 0 rgba(234,234,234,.25)
            }

        .button.is-tertiary-5.is-active, .button.is-tertiary-5:active {
            background-color: #ddd;
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

        .button.is-tertiary-5[disabled] {
            background-color: #eaeaea;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-tertiary-5.is-inverted {
            background-color: rgba(0,0,0,.7);
            color: #eaeaea
        }

            .button.is-tertiary-5.is-inverted:hover {
                background-color: rgba(0,0,0,.7)
            }

            .button.is-tertiary-5.is-inverted[disabled] {
                background-color: rgba(0,0,0,.7);
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #eaeaea
            }

        .button.is-tertiary-5.is-loading::after {
            border-color: transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7) !important
        }

        .button.is-tertiary-5.is-outlined {
            background-color: transparent;
            border-color: #eaeaea;
            color: #eaeaea
        }

            .button.is-tertiary-5.is-outlined:focus, .button.is-tertiary-5.is-outlined:hover {
                background-color: #eaeaea;
                border-color: #eaeaea;
                color: rgba(0,0,0,.7)
            }

            .button.is-tertiary-5.is-outlined.is-loading::after {
                border-color: transparent transparent #eaeaea #eaeaea !important
            }

            .button.is-tertiary-5.is-outlined[disabled] {
                background-color: transparent;
                border-color: #eaeaea;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #eaeaea
            }

        .button.is-tertiary-5.is-inverted.is-outlined {
            background-color: transparent;
            border-color: rgba(0,0,0,.7);
            color: rgba(0,0,0,.7)
        }

            .button.is-tertiary-5.is-inverted.is-outlined:focus, .button.is-tertiary-5.is-inverted.is-outlined:hover {
                background-color: rgba(0,0,0,.7);
                color: #eaeaea
            }

            .button.is-tertiary-5.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: rgba(0,0,0,.7);
                -webkit-box-shadow: none;
                box-shadow: none;
                color: rgba(0,0,0,.7)
            }

    .button.is-tertiary-6 {
        background-color: #b0b0b0;
        border-color: transparent;
        color: #fff
    }

        .button.is-tertiary-6.is-hovered, .button.is-tertiary-6:hover {
            background-color: #aaa;
            border-color: transparent;
            color: #fff
        }

        .button.is-tertiary-6.is-focused, .button.is-tertiary-6:focus {
            border-color: transparent;
            color: #fff
        }

            .button.is-tertiary-6.is-focused:not(:active), .button.is-tertiary-6:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(176,176,176,.25);
                box-shadow: 0 rgba(176,176,176,.25)
            }

        .button.is-tertiary-6.is-active, .button.is-tertiary-6:active {
            background-color: #a3a3a3;
            border-color: transparent;
            color: #fff
        }

        .button.is-tertiary-6[disabled] {
            background-color: #b0b0b0;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-tertiary-6.is-inverted {
            background-color: #fff;
            color: #b0b0b0
        }

            .button.is-tertiary-6.is-inverted:hover {
                background-color: #f2f2f2
            }

            .button.is-tertiary-6.is-inverted[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #b0b0b0
            }

        .button.is-tertiary-6.is-loading::after {
            border-color: transparent transparent #fff #fff !important
        }

        .button.is-tertiary-6.is-outlined {
            background-color: transparent;
            border-color: #b0b0b0;
            color: #b0b0b0
        }

            .button.is-tertiary-6.is-outlined:focus, .button.is-tertiary-6.is-outlined:hover {
                background-color: #b0b0b0;
                border-color: #b0b0b0;
                color: #fff
            }

            .button.is-tertiary-6.is-outlined.is-loading::after {
                border-color: transparent transparent #b0b0b0 #b0b0b0 !important
            }

            .button.is-tertiary-6.is-outlined[disabled] {
                background-color: transparent;
                border-color: #b0b0b0;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #b0b0b0
            }

        .button.is-tertiary-6.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-tertiary-6.is-inverted.is-outlined:focus, .button.is-tertiary-6.is-inverted.is-outlined:hover {
                background-color: #fff;
                color: #b0b0b0
            }

            .button.is-tertiary-6.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

    .button.is-tertiary-7 {
        background-color: #969696;
        border-color: transparent;
        color: #fff
    }

        .button.is-tertiary-7.is-hovered, .button.is-tertiary-7:hover {
            background-color: #909090;
            border-color: transparent;
            color: #fff
        }

        .button.is-tertiary-7.is-focused, .button.is-tertiary-7:focus {
            border-color: transparent;
            color: #fff
        }

            .button.is-tertiary-7.is-focused:not(:active), .button.is-tertiary-7:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(150,150,150,.25);
                box-shadow: 0 rgba(150,150,150,.25)
            }

        .button.is-tertiary-7.is-active, .button.is-tertiary-7:active {
            background-color: #898989;
            border-color: transparent;
            color: #fff
        }

        .button.is-tertiary-7[disabled] {
            background-color: #969696;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-tertiary-7.is-inverted {
            background-color: #fff;
            color: #969696
        }

            .button.is-tertiary-7.is-inverted:hover {
                background-color: #f2f2f2
            }

            .button.is-tertiary-7.is-inverted[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #969696
            }

        .button.is-tertiary-7.is-loading::after {
            border-color: transparent transparent #fff #fff !important
        }

        .button.is-tertiary-7.is-outlined {
            background-color: transparent;
            border-color: #969696;
            color: #969696
        }

            .button.is-tertiary-7.is-outlined:focus, .button.is-tertiary-7.is-outlined:hover {
                background-color: #969696;
                border-color: #969696;
                color: #fff
            }

            .button.is-tertiary-7.is-outlined.is-loading::after {
                border-color: transparent transparent #969696 #969696 !important
            }

            .button.is-tertiary-7.is-outlined[disabled] {
                background-color: transparent;
                border-color: #969696;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #969696
            }

        .button.is-tertiary-7.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-tertiary-7.is-inverted.is-outlined:focus, .button.is-tertiary-7.is-inverted.is-outlined:hover {
                background-color: #fff;
                color: #969696
            }

            .button.is-tertiary-7.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

    .button.is-tertiary-8 {
        background-color: #999;
        border-color: transparent;
        color: #fff
    }

        .button.is-tertiary-8.is-hovered, .button.is-tertiary-8:hover {
            background-color: #939393;
            border-color: transparent;
            color: #fff
        }

        .button.is-tertiary-8.is-focused, .button.is-tertiary-8:focus {
            border-color: transparent;
            color: #fff
        }

            .button.is-tertiary-8.is-focused:not(:active), .button.is-tertiary-8:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(153,153,153,.25);
                box-shadow: 0 rgba(153,153,153,.25)
            }

        .button.is-tertiary-8.is-active, .button.is-tertiary-8:active {
            background-color: #8c8c8c;
            border-color: transparent;
            color: #fff
        }

        .button.is-tertiary-8[disabled] {
            background-color: #999;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-tertiary-8.is-inverted {
            background-color: #fff;
            color: #999
        }

            .button.is-tertiary-8.is-inverted:hover {
                background-color: #f2f2f2
            }

            .button.is-tertiary-8.is-inverted[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #999
            }

        .button.is-tertiary-8.is-loading::after {
            border-color: transparent transparent #fff #fff !important
        }

        .button.is-tertiary-8.is-outlined {
            background-color: transparent;
            border-color: #999;
            color: #999
        }

            .button.is-tertiary-8.is-outlined:focus, .button.is-tertiary-8.is-outlined:hover {
                background-color: #999;
                border-color: #999;
                color: #fff
            }

            .button.is-tertiary-8.is-outlined.is-loading::after {
                border-color: transparent transparent #999 #999 !important
            }

            .button.is-tertiary-8.is-outlined[disabled] {
                background-color: transparent;
                border-color: #999;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #999
            }

        .button.is-tertiary-8.is-inverted.is-outlined {
            background-color: transparent;
            border-color: #fff;
            color: #fff
        }

            .button.is-tertiary-8.is-inverted.is-outlined:focus, .button.is-tertiary-8.is-inverted.is-outlined:hover {
                background-color: #fff;
                color: #999
            }

            .button.is-tertiary-8.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: #fff;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #fff
            }

    .button.is-tertiary-9 {
        background-color: #f5f5f5;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

        .button.is-tertiary-9.is-hovered, .button.is-tertiary-9:hover {
            background-color: #efefef;
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

        .button.is-tertiary-9.is-focused, .button.is-tertiary-9:focus {
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

            .button.is-tertiary-9.is-focused:not(:active), .button.is-tertiary-9:focus:not(:active) {
                -webkit-box-shadow: 0 rgba(245,245,245,.25);
                box-shadow: 0 rgba(245,245,245,.25)
            }

        .button.is-tertiary-9.is-active, .button.is-tertiary-9:active {
            background-color: #e8e8e8;
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

        .button.is-tertiary-9[disabled] {
            background-color: #f5f5f5;
            border-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none
        }

        .button.is-tertiary-9.is-inverted {
            background-color: rgba(0,0,0,.7);
            color: #f5f5f5
        }

            .button.is-tertiary-9.is-inverted:hover {
                background-color: rgba(0,0,0,.7)
            }

            .button.is-tertiary-9.is-inverted[disabled] {
                background-color: rgba(0,0,0,.7);
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #f5f5f5
            }

        .button.is-tertiary-9.is-loading::after {
            border-color: transparent transparent rgba(0,0,0,.7) rgba(0,0,0,.7) !important
        }

        .button.is-tertiary-9.is-outlined {
            background-color: transparent;
            border-color: #f5f5f5;
            color: #f5f5f5
        }

            .button.is-tertiary-9.is-outlined:focus, .button.is-tertiary-9.is-outlined:hover {
                background-color: #f5f5f5;
                border-color: #f5f5f5;
                color: rgba(0,0,0,.7)
            }

            .button.is-tertiary-9.is-outlined.is-loading::after {
                border-color: transparent transparent #f5f5f5 #f5f5f5 !important
            }

            .button.is-tertiary-9.is-outlined[disabled] {
                background-color: transparent;
                border-color: #f5f5f5;
                -webkit-box-shadow: none;
                box-shadow: none;
                color: #f5f5f5
            }

        .button.is-tertiary-9.is-inverted.is-outlined {
            background-color: transparent;
            border-color: rgba(0,0,0,.7);
            color: rgba(0,0,0,.7)
        }

            .button.is-tertiary-9.is-inverted.is-outlined:focus, .button.is-tertiary-9.is-inverted.is-outlined:hover {
                background-color: rgba(0,0,0,.7);
                color: #f5f5f5
            }

            .button.is-tertiary-9.is-inverted.is-outlined[disabled] {
                background-color: transparent;
                border-color: rgba(0,0,0,.7);
                -webkit-box-shadow: none;
                box-shadow: none;
                color: rgba(0,0,0,.7)
            }

    .button.is-small {
        border-radius: 2px;
        font-size: .75rem
    }

    .button.is-medium {
        font-size: 1.25rem
    }

    .button.is-large {
        font-size: 1.5rem
    }

    .button[disabled] {
        background-color: #fff;
        border-color: #dbdbdb;
        -webkit-box-shadow: none;
        box-shadow: none;
        opacity: .5
    }

    .button.is-fullwidth {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%
    }

    .button.is-loading {
        color: transparent !important;
        pointer-events: none
    }

        .button.is-loading::after {
            position: absolute;
            left: calc(50% - (1em / 2));
            top: calc(50% - (1em / 2));
            position: absolute !important
        }

    .button.is-static {
        background-color: #f5f5f5;
        border-color: #dbdbdb;
        color: #7a7a7a;
        -webkit-box-shadow: none;
        box-shadow: none;
        pointer-events: none
    }

    .button.is-rounded {
        border-radius: 290486px;
        padding-left: 1em;
        padding-right: 1em
    }

.buttons {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    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
}

    .buttons .button {
        margin-bottom: .5rem
    }

        .buttons .button:not(:last-child) {
            margin-right: .5rem
        }

    .buttons:last-child {
        margin-bottom: -.5rem
    }

    .buttons:not(:last-child) {
        margin-bottom: 1rem
    }

    .buttons.has-addons .button:not(:first-child) {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0
    }

    .buttons.has-addons .button:not(:last-child) {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
        margin-right: -1px
    }

    .buttons.has-addons .button:last-child {
        margin-right: 0
    }

    .buttons.has-addons .button.is-hovered, .buttons.has-addons .button:hover {
        z-index: 2
    }

    .buttons.has-addons .button.is-active, .buttons.has-addons .button.is-focused, .buttons.has-addons .button.is-selected, .buttons.has-addons .button:active, .buttons.has-addons .button:focus {
        z-index: 3
    }

        .buttons.has-addons .button.is-active:hover, .buttons.has-addons .button.is-focused:hover, .buttons.has-addons .button.is-selected:hover, .buttons.has-addons .button:active:hover, .buttons.has-addons .button:focus:hover {
            z-index: 4
        }

    .buttons.has-addons .button.is-expanded {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

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

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

.container {
    margin: 0 auto;
    position: relative
}

@media screen and (min-width:1088px) {
    .container {
        max-width: 960px;
        width: 960px
    }

        .container.is-fluid {
            margin-left: 64px;
            margin-right: 64px;
            max-width: none;
            width: auto
        }
}

@media screen and (max-width:1279px) {
    .container.is-widescreen {
        max-width: 1152px;
        width: auto
    }
}

@media screen and (max-width:1471px) {
    .container.is-fullhd {
        max-width: 1344px;
        width: auto
    }
}

@media screen and (min-width:1280px) {
    .container {
        max-width: 1152px;
        width: 1152px
    }
}

@media screen and (min-width:1472px) {
    .container {
        max-width: 1344px;
        width: 1344px
    }
}

.content li + li {
    margin-top: .25em
}

.content blockquote:not(:last-child), .content dl:not(:last-child), .content ol:not(:last-child), .content p:not(:last-child), .content pre:not(:last-child), .content table:not(:last-child), .content ul:not(:last-child) {
    margin-bottom: 1em
}

.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
    color: #363a3f;
   
    line-height: 1.125
}

.content h1 {
    font-size: 2em;
    margin-bottom: .5em
}

    .content h1:not(:first-child) {
        margin-top: 1em
    }

.content h2 {
    font-size: 1.75em;
    margin-bottom: .5714em
}

    .content h2:not(:first-child) {
        margin-top: 1.1428em
    }

.content h3 {
    font-size: 1.5em;
    margin-bottom: .6666em
}

    .content h3:not(:first-child) {
        margin-top: 1.3333em
    }

.content h4 {
    font-size: 1.25em;
    margin-bottom: .8em
}

.content h5 {
    font-size: 1.125em;
    margin-bottom: .8888em
}

.content h6 {
    font-size: 1em;
    margin-bottom: 1em
}

.content blockquote {
    background-color: transparent;
    border-left: 4px solid #9fbf43;
    padding: 1.4em 1.8em
}

.content ol {
    list-style: decimal outside;
    margin-left: 2em;
    margin-top: 1em
}

.content ul {
    list-style: disc outside;
    margin-left: 2em;
    margin-top: 1em
}

    .content ul ul {
        list-style-type: circle;
        margin-top: .5em
    }

        .content ul ul ul {
            list-style-type: square
        }

.content dd {
    margin-left: 2em
}

.content figure {
    margin-left: 2em;
    margin-right: 2em;
    text-align: center
}

    .content figure:not(:first-child) {
        margin-top: 2em
    }

    .content figure:not(:last-child) {
        margin-bottom: 2em
    }

    .content figure img {
        display: inline-block
    }

    .content figure figcaption {
        font-style: italic
    }

.content pre {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    padding: 1.25em 1.5em;
    white-space: pre;
    word-wrap: normal
}

.content sub, .content sup {
    font-size: 75%
}

.content table {
    width: 100%
}

    .content table td, .content table th {
        border: 1px solid #dbdbdb;
        border-width: 0 0 1px;
        padding: .5em .75em;
        vertical-align: top
    }

    .content table th {
        color: #363636;
        text-align: left
    }

    .content table thead td, .content table thead th {
        border-width: 0 0 2px;
        color: #363636
    }

    .content table tfoot td, .content table tfoot th {
        border-width: 2px 0 0;
        color: #363636
    }

    .content table tbody tr:last-child td, .content table tbody tr:last-child th {
        border-bottom-width: 0
    }

.content.is-small {
    font-size: .75rem
}

.content.is-medium {
    font-size: 1.25rem
}

.content.is-large {
    font-size: 1.5rem
}

.input, .textarea {
    background-color: #fff;
    border-color: #eaeaea;
    color: #545659;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: 100%;
    width: 100%
}

    .input::-moz-placeholder, .textarea::-moz-placeholder {
        color: rgba(84,86,89,.3)
    }

    .input::-webkit-input-placeholder, .textarea::-webkit-input-placeholder {
        color: rgba(84,86,89,.3)
    }

    .input:-moz-placeholder, .textarea:-moz-placeholder {
        color: rgba(84,86,89,.3)
    }

    .input:-ms-input-placeholder, .textarea:-ms-input-placeholder {
        color: rgba(84,86,89,.3)
    }

    .input.is-hovered, .input:hover, .textarea.is-hovered, .textarea:hover {
        border-color: #eaeaea
    }

    .input.is-active, .input.is-focused, .input:active, .input:focus, .textarea.is-active, .textarea.is-focused, .textarea:active, .textarea:focus {
        border-color: #9fbf43;
        -webkit-box-shadow: 0 rgba(240,91,41,0);
        box-shadow: 0 rgba(240,91,41,0)
    }

    .input[disabled], .textarea[disabled] {
        background-color: #f5f5f5;
        border-color: #f5f5f5;
        -webkit-box-shadow: none;
        box-shadow: none;
        color: #7a7a7a
    }

        .input[disabled]::-moz-placeholder, .textarea[disabled]::-moz-placeholder {
            color: rgba(122,122,122,.3)
        }

        .input[disabled]::-webkit-input-placeholder, .textarea[disabled]::-webkit-input-placeholder {
            color: rgba(122,122,122,.3)
        }

        .input[disabled]:-moz-placeholder, .textarea[disabled]:-moz-placeholder {
            color: rgba(122,122,122,.3)
        }

        .input[disabled]:-ms-input-placeholder, .textarea[disabled]:-ms-input-placeholder {
            color: rgba(122,122,122,.3)
        }

    .input[readonly], .textarea[readonly] {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .input.is-white, .textarea.is-white {
        border-color: #fff
    }

        .input.is-white.is-active, .input.is-white.is-focused, .input.is-white:active, .input.is-white:focus, .textarea.is-white.is-active, .textarea.is-white.is-focused, .textarea.is-white:active, .textarea.is-white:focus {
            -webkit-box-shadow: 0 rgba(255,255,255,.25);
            box-shadow: 0 rgba(255,255,255,.25)
        }

    .input.is-black, .textarea.is-black {
        border-color: #0a0a0a
    }

        .input.is-black.is-active, .input.is-black.is-focused, .input.is-black:active, .input.is-black:focus, .textarea.is-black.is-active, .textarea.is-black.is-focused, .textarea.is-black:active, .textarea.is-black:focus {
            -webkit-box-shadow: 0 rgba(10,10,10,.25);
            box-shadow: 0 rgba(10,10,10,.25)
        }

    .input.is-light, .textarea.is-light {
        border-color: #f5f5f5
    }

        .input.is-light.is-active, .input.is-light.is-focused, .input.is-light:active, .input.is-light:focus, .textarea.is-light.is-active, .textarea.is-light.is-focused, .textarea.is-light:active, .textarea.is-light:focus {
            -webkit-box-shadow: 0 rgba(245,245,245,.25);
            box-shadow: 0 rgba(245,245,245,.25)
        }

    .input.is-dark, .textarea.is-dark {
        border-color: #363636
    }

        .input.is-dark.is-active, .input.is-dark.is-focused, .input.is-dark:active, .input.is-dark:focus, .textarea.is-dark.is-active, .textarea.is-dark.is-focused, .textarea.is-dark:active, .textarea.is-dark:focus {
            -webkit-box-shadow: 0 rgba(54,54,54,.25);
            box-shadow: 0 rgba(54,54,54,.25)
        }

    .input.is-primary, .textarea.is-primary {
        border-color: #9fbf43
    }

        .input.is-primary.is-active, .input.is-primary.is-focused, .input.is-primary:active, .input.is-primary:focus, .textarea.is-primary.is-active, .textarea.is-primary.is-focused, .textarea.is-primary:active, .textarea.is-primary:focus {
            -webkit-box-shadow: 0 rgba(240,91,41,.25);
            box-shadow: 0 rgba(240,91,41,.25)
        }

    .input.is-link, .textarea.is-link {
        border-color: #9fbf43
    }

        .input.is-link.is-active, .input.is-link.is-focused, .input.is-link:active, .input.is-link:focus, .textarea.is-link.is-active, .textarea.is-link.is-focused, .textarea.is-link:active, .textarea.is-link:focus {
            -webkit-box-shadow: 0 rgba(240,91,41,.25);
            box-shadow: 0 rgba(240,91,41,.25)
        }

    .input.is-info, .textarea.is-info {
        border-color: #209cee
    }

        .input.is-info.is-active, .input.is-info.is-focused, .input.is-info:active, .input.is-info:focus, .textarea.is-info.is-active, .textarea.is-info.is-focused, .textarea.is-info:active, .textarea.is-info:focus {
            -webkit-box-shadow: 0 rgba(32,156,238,.25);
            box-shadow: 0 rgba(32,156,238,.25)
        }

    .input.is-success, .textarea.is-success {
        border-color: #23d160
    }

        .input.is-success.is-active, .input.is-success.is-focused, .input.is-success:active, .input.is-success:focus, .textarea.is-success.is-active, .textarea.is-success.is-focused, .textarea.is-success:active, .textarea.is-success:focus {
            -webkit-box-shadow: 0 rgba(35,209,96,.25);
            box-shadow: 0 rgba(35,209,96,.25)
        }

    .input.is-warning, .textarea.is-warning {
        border-color: #ffdd57
    }

        .input.is-warning.is-active, .input.is-warning.is-focused, .input.is-warning:active, .input.is-warning:focus, .textarea.is-warning.is-active, .textarea.is-warning.is-focused, .textarea.is-warning:active, .textarea.is-warning:focus {
            -webkit-box-shadow: 0 rgba(255,221,87,.25);
            box-shadow: 0 rgba(255,221,87,.25)
        }

    .input.is-danger, .textarea.is-danger {
        border-color: #ff3860
    }

        .input.is-danger.is-active, .input.is-danger.is-focused, .input.is-danger:active, .input.is-danger:focus, .textarea.is-danger.is-active, .textarea.is-danger.is-focused, .textarea.is-danger:active, .textarea.is-danger:focus {
            -webkit-box-shadow: 0 rgba(255,56,96,.25);
            box-shadow: 0 rgba(255,56,96,.25)
        }

    .input.is-primary-2, .textarea.is-primary-2 {
        border-color: #fa622f
    }

        .input.is-primary-2.is-active, .input.is-primary-2.is-focused, .input.is-primary-2:active, .input.is-primary-2:focus, .textarea.is-primary-2.is-active, .textarea.is-primary-2.is-focused, .textarea.is-primary-2:active, .textarea.is-primary-2:focus {
            -webkit-box-shadow: 0 rgba(250,98,47,.25);
            box-shadow: 0 rgba(250,98,47,.25)
        }

    .input.is-primary-3, .textarea.is-primary-3 {
        border-color: #e65322
    }

        .input.is-primary-3.is-active, .input.is-primary-3.is-focused, .input.is-primary-3:active, .input.is-primary-3:focus, .textarea.is-primary-3.is-active, .textarea.is-primary-3.is-focused, .textarea.is-primary-3:active, .textarea.is-primary-3:focus {
            -webkit-box-shadow: 0 rgba(230,83,34,.25);
            box-shadow: 0 rgba(230,83,34,.25)
        }

    .input.is-primary-4, .textarea.is-primary-4 {
        border-color: #e85c2d
    }

        .input.is-primary-4.is-active, .input.is-primary-4.is-focused, .input.is-primary-4:active, .input.is-primary-4:focus, .textarea.is-primary-4.is-active, .textarea.is-primary-4.is-focused, .textarea.is-primary-4:active, .textarea.is-primary-4:focus {
            -webkit-box-shadow: 0 rgba(232,92,45,.25);
            box-shadow: 0 rgba(232,92,45,.25)
        }

    .input.is-primary-5, .textarea.is-primary-5 {
        border-color: #e35728
    }

        .input.is-primary-5.is-active, .input.is-primary-5.is-focused, .input.is-primary-5:active, .input.is-primary-5:focus, .textarea.is-primary-5.is-active, .textarea.is-primary-5.is-focused, .textarea.is-primary-5:active, .textarea.is-primary-5:focus {
            -webkit-box-shadow: 0 rgba(227,87,40,.25);
            box-shadow: 0 rgba(227,87,40,.25)
        }

    .input.is-primary-6, .textarea.is-primary-6 {
        border-color: #e95220
    }

        .input.is-primary-6.is-active, .input.is-primary-6.is-focused, .input.is-primary-6:active, .input.is-primary-6:focus, .textarea.is-primary-6.is-active, .textarea.is-primary-6.is-focused, .textarea.is-primary-6:active, .textarea.is-primary-6:focus {
            -webkit-box-shadow: 0 rgba(233,82,32,.25);
            box-shadow: 0 rgba(233,82,32,.25)
        }

    .input.is-primary-7, .textarea.is-primary-7 {
        border-color: #fafafa
    }

        .input.is-primary-7.is-active, .input.is-primary-7.is-focused, .input.is-primary-7:active, .input.is-primary-7:focus, .textarea.is-primary-7.is-active, .textarea.is-primary-7.is-focused, .textarea.is-primary-7:active, .textarea.is-primary-7:focus {
            -webkit-box-shadow: 0 rgba(250,250,250,.25);
            box-shadow: 0 rgba(250,250,250,.25)
        }

    .input.is-primary-light, .textarea.is-primary-light {
        border-color: #f9f9f9
    }

        .input.is-primary-light.is-active, .input.is-primary-light.is-focused, .input.is-primary-light:active, .input.is-primary-light:focus, .textarea.is-primary-light.is-active, .textarea.is-primary-light.is-focused, .textarea.is-primary-light:active, .textarea.is-primary-light:focus {
            -webkit-box-shadow: 0 rgba(249,249,249,.25);
            box-shadow: 0 rgba(249,249,249,.25)
        }

    .input.is-secondary, .textarea.is-secondary {
        border-color: #22262a
    }

        .input.is-secondary.is-active, .input.is-secondary.is-focused, .input.is-secondary:active, .input.is-secondary:focus, .textarea.is-secondary.is-active, .textarea.is-secondary.is-focused, .textarea.is-secondary:active, .textarea.is-secondary:focus {
            -webkit-box-shadow: 0 rgba(34,38,42,.25);
            box-shadow: 0 rgba(34,38,42,.25)
        }

    .input.is-secondary-2, .textarea.is-secondary-2 {
        border-color: #2d3238
    }

        .input.is-secondary-2.is-active, .input.is-secondary-2.is-focused, .input.is-secondary-2:active, .input.is-secondary-2:focus, .textarea.is-secondary-2.is-active, .textarea.is-secondary-2.is-focused, .textarea.is-secondary-2:active, .textarea.is-secondary-2:focus {
            -webkit-box-shadow: 0 rgba(45,50,56,.25);
            box-shadow: 0 rgba(45,50,56,.25)
        }

    .input.is-secondary-3, .textarea.is-secondary-3 {
        border-color: #363a3f
    }

        .input.is-secondary-3.is-active, .input.is-secondary-3.is-focused, .input.is-secondary-3:active, .input.is-secondary-3:focus, .textarea.is-secondary-3.is-active, .textarea.is-secondary-3.is-focused, .textarea.is-secondary-3:active, .textarea.is-secondary-3:focus {
            -webkit-box-shadow: 0 rgba(54,58,63,.25);
            box-shadow: 0 rgba(54,58,63,.25)
        }

    .input.is-secondary-4, .textarea.is-secondary-4 {
        border-color: #414549
    }

        .input.is-secondary-4.is-active, .input.is-secondary-4.is-focused, .input.is-secondary-4:active, .input.is-secondary-4:focus, .textarea.is-secondary-4.is-active, .textarea.is-secondary-4.is-focused, .textarea.is-secondary-4:active, .textarea.is-secondary-4:focus {
            -webkit-box-shadow: 0 rgba(65,69,73,.25);
            box-shadow: 0 rgba(65,69,73,.25)
        }

    .input.is-secondary-5, .textarea.is-secondary-5 {
        border-color: #545659
    }

        .input.is-secondary-5.is-active, .input.is-secondary-5.is-focused, .input.is-secondary-5:active, .input.is-secondary-5:focus, .textarea.is-secondary-5.is-active, .textarea.is-secondary-5.is-focused, .textarea.is-secondary-5:active, .textarea.is-secondary-5:focus {
            -webkit-box-shadow: 0 rgba(84,86,89,.25);
            box-shadow: 0 rgba(84,86,89,.25)
        }

    .input.is-tertiary, .textarea.is-tertiary {
        border-color: #a6a6a6
    }

        .input.is-tertiary.is-active, .input.is-tertiary.is-focused, .input.is-tertiary:active, .input.is-tertiary:focus, .textarea.is-tertiary.is-active, .textarea.is-tertiary.is-focused, .textarea.is-tertiary:active, .textarea.is-tertiary:focus {
            -webkit-box-shadow: 0 rgba(166,166,166,.25);
            box-shadow: 0 rgba(166,166,166,.25)
        }

    .input.is-tertiary-2, .textarea.is-tertiary-2 {
        border-color: #d8d8d8
    }

        .input.is-tertiary-2.is-active, .input.is-tertiary-2.is-focused, .input.is-tertiary-2:active, .input.is-tertiary-2:focus, .textarea.is-tertiary-2.is-active, .textarea.is-tertiary-2.is-focused, .textarea.is-tertiary-2:active, .textarea.is-tertiary-2:focus {
            -webkit-box-shadow: 0 rgba(216,216,216,.25);
            box-shadow: 0 rgba(216,216,216,.25)
        }

    .input.is-tertiary-3, .textarea.is-tertiary-3 {
        border-color: #d7d6d3
    }

        .input.is-tertiary-3.is-active, .input.is-tertiary-3.is-focused, .input.is-tertiary-3:active, .input.is-tertiary-3:focus, .textarea.is-tertiary-3.is-active, .textarea.is-tertiary-3.is-focused, .textarea.is-tertiary-3:active, .textarea.is-tertiary-3:focus {
            -webkit-box-shadow: 0 rgba(215,214,211,.25);
            box-shadow: 0 rgba(215,214,211,.25)
        }

    .input.is-tertiary-4, .textarea.is-tertiary-4 {
        border-color: #afafaf
    }

        .input.is-tertiary-4.is-active, .input.is-tertiary-4.is-focused, .input.is-tertiary-4:active, .input.is-tertiary-4:focus, .textarea.is-tertiary-4.is-active, .textarea.is-tertiary-4.is-focused, .textarea.is-tertiary-4:active, .textarea.is-tertiary-4:focus {
            -webkit-box-shadow: 0 rgba(175,175,175,.25);
            box-shadow: 0 rgba(175,175,175,.25)
        }

    .input.is-tertiary-5, .textarea.is-tertiary-5 {
        border-color: #eaeaea
    }

        .input.is-tertiary-5.is-active, .input.is-tertiary-5.is-focused, .input.is-tertiary-5:active, .input.is-tertiary-5:focus, .textarea.is-tertiary-5.is-active, .textarea.is-tertiary-5.is-focused, .textarea.is-tertiary-5:active, .textarea.is-tertiary-5:focus {
            -webkit-box-shadow: 0 rgba(234,234,234,.25);
            box-shadow: 0 rgba(234,234,234,.25)
        }

    .input.is-tertiary-6, .textarea.is-tertiary-6 {
        border-color: #b0b0b0
    }

        .input.is-tertiary-6.is-active, .input.is-tertiary-6.is-focused, .input.is-tertiary-6:active, .input.is-tertiary-6:focus, .textarea.is-tertiary-6.is-active, .textarea.is-tertiary-6.is-focused, .textarea.is-tertiary-6:active, .textarea.is-tertiary-6:focus {
            -webkit-box-shadow: 0 rgba(176,176,176,.25);
            box-shadow: 0 rgba(176,176,176,.25)
        }

    .input.is-tertiary-7, .textarea.is-tertiary-7 {
        border-color: #969696
    }

        .input.is-tertiary-7.is-active, .input.is-tertiary-7.is-focused, .input.is-tertiary-7:active, .input.is-tertiary-7:focus, .textarea.is-tertiary-7.is-active, .textarea.is-tertiary-7.is-focused, .textarea.is-tertiary-7:active, .textarea.is-tertiary-7:focus {
            -webkit-box-shadow: 0 rgba(150,150,150,.25);
            box-shadow: 0 rgba(150,150,150,.25)
        }

    .input.is-tertiary-8, .textarea.is-tertiary-8 {
        border-color: #999
    }

        .input.is-tertiary-8.is-active, .input.is-tertiary-8.is-focused, .input.is-tertiary-8:active, .input.is-tertiary-8:focus, .textarea.is-tertiary-8.is-active, .textarea.is-tertiary-8.is-focused, .textarea.is-tertiary-8:active, .textarea.is-tertiary-8:focus {
            -webkit-box-shadow: 0 rgba(153,153,153,.25);
            box-shadow: 0 rgba(153,153,153,.25)
        }

    .input.is-tertiary-9, .textarea.is-tertiary-9 {
        border-color: #f5f5f5
    }

        .input.is-tertiary-9.is-active, .input.is-tertiary-9.is-focused, .input.is-tertiary-9:active, .input.is-tertiary-9:focus, .textarea.is-tertiary-9.is-active, .textarea.is-tertiary-9.is-focused, .textarea.is-tertiary-9:active, .textarea.is-tertiary-9:focus {
            -webkit-box-shadow: 0 rgba(245,245,245,.25);
            box-shadow: 0 rgba(245,245,245,.25)
        }

    .input.is-small, .textarea.is-small {
        border-radius: 2px;
        font-size: .75rem
    }

    .input.is-medium, .textarea.is-medium {
        font-size: 1.25rem
    }

    .input.is-large, .textarea.is-large {
        font-size: 1.5rem
    }

    .input.is-fullwidth, .textarea.is-fullwidth {
        display: block;
        width: 100%
    }

    .input.is-inline, .textarea.is-inline {
        display: inline;
        width: auto
    }

    .input.is-rounded {
        border-radius: 290486px;
        padding-left: 1em;
        padding-right: 1em
    }

    .input.is-static {
        background-color: transparent;
        border-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding-left: 0;
        padding-right: 0
    }

.textarea {
    display: block;
    max-width: 100%;
    min-width: 100%;
    padding: .625em;
    resize: vertical
}

    .textarea:not([rows]) {
        max-height: 600px;
        min-height: 120px
    }

    .textarea[rows] {
        height: initial
    }

    .textarea.has-fixed-size {
        resize: none
    }

.checkbox, .radio {
    cursor: pointer;
    display: inline-block;
    line-height: 1.25;
    position: relative
}

    .checkbox input, .radio input {
        cursor: pointer
    }

    .checkbox:hover, .radio:hover {
        color: #eaeaea
    }

    .checkbox[disabled], .radio[disabled] {
        color: #7a7a7a;
        cursor: not-allowed
    }

    .radio + .radio {
        margin-left: .5em
    }

.select {
    display: inline-block;
    max-width: 100%;
    position: relative;
    vertical-align: top
}

    .select:not(.is-multiple) {
        height: 2.25em
    }

        .select:not(.is-multiple):not(.is-loading)::after {
            border-color: #9fbf43;
            right: 1.125em;
            z-index: 4
        }

    .select.is-rounded select {
        border-radius: 290486px;
        padding-left: 1em
    }

    .select select {
        background-color: #fff;
        border-color: #eaeaea;
        color: #545659;
        cursor: pointer;
        display: block;
        font-size: 1em;
        max-width: 100%;
        outline: 0
    }

        .select select::-moz-placeholder {
            color: rgba(84,86,89,.3)
        }

        .select select::-webkit-input-placeholder {
            color: rgba(84,86,89,.3)
        }

        .select select:-moz-placeholder {
            color: rgba(84,86,89,.3)
        }

        .select select:-ms-input-placeholder {
            color: rgba(84,86,89,.3)
        }

        .select select.is-hovered, .select select:hover {
            border-color: #eaeaea
        }

        .select select.is-active, .select select.is-focused, .select select:active, .select select:focus {
            border-color: #9fbf43;
            -webkit-box-shadow: 0 rgba(240,91,41,0);
            box-shadow: 0 rgba(240,91,41,0)
        }

        .select select[disabled] {
            background-color: #f5f5f5;
            border-color: #f5f5f5;
            -webkit-box-shadow: none;
            box-shadow: none;
            color: #7a7a7a
        }

            .select select[disabled]::-moz-placeholder {
                color: rgba(122,122,122,.3)
            }

            .select select[disabled]::-webkit-input-placeholder {
                color: rgba(122,122,122,.3)
            }

            .select select[disabled]:-moz-placeholder {
                color: rgba(122,122,122,.3)
            }

            .select select[disabled]:-ms-input-placeholder {
                color: rgba(122,122,122,.3)
            }

        .select select::-ms-expand {
            display: none
        }

        .select select[disabled]:hover {
            border-color: #f5f5f5
        }

        .select select:not([multiple]) {
            padding-right: 2.5em
        }

        .select select[multiple] {
            height: initial;
            padding: 0
        }

            .select select[multiple] option {
                padding: .5em 1em
            }

    .select:not(.is-multiple):not(.is-loading):hover::after {
        border-color: #eaeaea
    }

    .select.is-white:not(:hover)::after {
        border-color: #fff
    }

    .select.is-white select {
        border-color: #fff
    }

        .select.is-white select.is-hovered, .select.is-white select:hover {
            border-color: #f2f2f2
        }

        .select.is-white select.is-active, .select.is-white select.is-focused, .select.is-white select:active, .select.is-white select:focus {
            -webkit-box-shadow: 0 rgba(255,255,255,.25);
            box-shadow: 0 rgba(255,255,255,.25)
        }

    .select.is-black:not(:hover)::after {
        border-color: #0a0a0a
    }

    .select.is-black select {
        border-color: #0a0a0a
    }

        .select.is-black select.is-hovered, .select.is-black select:hover {
            border-color: #000
        }

        .select.is-black select.is-active, .select.is-black select.is-focused, .select.is-black select:active, .select.is-black select:focus {
            -webkit-box-shadow: 0 rgba(10,10,10,.25);
            box-shadow: 0 rgba(10,10,10,.25)
        }

    .select.is-light:not(:hover)::after {
        border-color: #f5f5f5
    }

    .select.is-light select {
        border-color: #f5f5f5
    }

        .select.is-light select.is-hovered, .select.is-light select:hover {
            border-color: #e8e8e8
        }

        .select.is-light select.is-active, .select.is-light select.is-focused, .select.is-light select:active, .select.is-light select:focus {
            -webkit-box-shadow: 0 rgba(245,245,245,.25);
            box-shadow: 0 rgba(245,245,245,.25)
        }

    .select.is-dark:not(:hover)::after {
        border-color: #363636
    }

    .select.is-dark select {
        border-color: #363636
    }

        .select.is-dark select.is-hovered, .select.is-dark select:hover {
            border-color: #292929
        }

        .select.is-dark select.is-active, .select.is-dark select.is-focused, .select.is-dark select:active, .select.is-dark select:focus {
            -webkit-box-shadow: 0 rgba(54,54,54,.25);
            box-shadow: 0 rgba(54,54,54,.25)
        }

    .select.is-primary:not(:hover)::after {
        border-color: #9fbf43
    }

    .select.is-primary select {
        border-color: #9fbf43
    }

        .select.is-primary select.is-hovered, .select.is-primary select:hover {
            border-color: #ee4911
        }

        .select.is-primary select.is-active, .select.is-primary select.is-focused, .select.is-primary select:active, .select.is-primary select:focus {
            -webkit-box-shadow: 0 rgba(240,91,41,.25);
            box-shadow: 0 rgba(240,91,41,.25)
        }

    .select.is-link:not(:hover)::after {
        border-color: #9fbf43
    }

    .select.is-link select {
        border-color: #9fbf43
    }

        .select.is-link select.is-hovered, .select.is-link select:hover {
            border-color: #ee4911
        }

        .select.is-link select.is-active, .select.is-link select.is-focused, .select.is-link select:active, .select.is-link select:focus {
            -webkit-box-shadow: 0 rgba(240,91,41,.25);
            box-shadow: 0 rgba(240,91,41,.25)
        }

    .select.is-info:not(:hover)::after {
        border-color: #209cee
    }

    .select.is-info select {
        border-color: #209cee
    }

        .select.is-info select.is-hovered, .select.is-info select:hover {
            border-color: #118fe4
        }

        .select.is-info select.is-active, .select.is-info select.is-focused, .select.is-info select:active, .select.is-info select:focus {
            -webkit-box-shadow: 0 rgba(32,156,238,.25);
            box-shadow: 0 rgba(32,156,238,.25)
        }

    .select.is-success:not(:hover)::after {
        border-color: #23d160
    }

    .select.is-success select {
        border-color: #23d160
    }

        .select.is-success select.is-hovered, .select.is-success select:hover {
            border-color: #20bc56
        }

        .select.is-success select.is-active, .select.is-success select.is-focused, .select.is-success select:active, .select.is-success select:focus {
            -webkit-box-shadow: 0 rgba(35,209,96,.25);
            box-shadow: 0 rgba(35,209,96,.25)
        }

    .select.is-warning:not(:hover)::after {
        border-color: #ffdd57
    }

    .select.is-warning select {
        border-color: #ffdd57
    }

        .select.is-warning select.is-hovered, .select.is-warning select:hover {
            border-color: #ffd83d
        }

        .select.is-warning select.is-active, .select.is-warning select.is-focused, .select.is-warning select:active, .select.is-warning select:focus {
            -webkit-box-shadow: 0 rgba(255,221,87,.25);
            box-shadow: 0 rgba(255,221,87,.25)
        }

    .select.is-danger:not(:hover)::after {
        border-color: #ff3860
    }

    .select.is-danger select {
        border-color: #ff3860
    }

        .select.is-danger select.is-hovered, .select.is-danger select:hover {
            border-color: #ff1f4b
        }

        .select.is-danger select.is-active, .select.is-danger select.is-focused, .select.is-danger select:active, .select.is-danger select:focus {
            -webkit-box-shadow: 0 rgba(255,56,96,.25);
            box-shadow: 0 rgba(255,56,96,.25)
        }

    .select.is-primary-2:not(:hover)::after {
        border-color: #fa622f
    }

    .select.is-primary-2 select {
        border-color: #fa622f
    }

        .select.is-primary-2 select.is-hovered, .select.is-primary-2 select:hover {
            border-color: #f94f16
        }

        .select.is-primary-2 select.is-active, .select.is-primary-2 select.is-focused, .select.is-primary-2 select:active, .select.is-primary-2 select:focus {
            -webkit-box-shadow: 0 rgba(250,98,47,.25);
            box-shadow: 0 rgba(250,98,47,.25)
        }

    .select.is-primary-3:not(:hover)::after {
        border-color: #e65322
    }

    .select.is-primary-3 select {
        border-color: #e65322
    }

        .select.is-primary-3 select.is-hovered, .select.is-primary-3 select:hover {
            border-color: #d64818
        }

        .select.is-primary-3 select.is-active, .select.is-primary-3 select.is-focused, .select.is-primary-3 select:active, .select.is-primary-3 select:focus {
            -webkit-box-shadow: 0 rgba(230,83,34,.25);
            box-shadow: 0 rgba(230,83,34,.25)
        }

    .select.is-primary-4:not(:hover)::after {
        border-color: #e85c2d
    }

    .select.is-primary-4 select {
        border-color: #e85c2d
    }

        .select.is-primary-4 select.is-hovered, .select.is-primary-4 select:hover {
            border-color: #e34c19
        }

        .select.is-primary-4 select.is-active, .select.is-primary-4 select.is-focused, .select.is-primary-4 select:active, .select.is-primary-4 select:focus {
            -webkit-box-shadow: 0 rgba(232,92,45,.25);
            box-shadow: 0 rgba(232,92,45,.25)
        }

    .select.is-primary-5:not(:hover)::after {
        border-color: #e35728
    }

    .select.is-primary-5 select {
        border-color: #e35728
    }

        .select.is-primary-5 select.is-hovered, .select.is-primary-5 select:hover {
            border-color: #d64b1c
        }

        .select.is-primary-5 select.is-active, .select.is-primary-5 select.is-focused, .select.is-primary-5 select:active, .select.is-primary-5 select:focus {
            -webkit-box-shadow: 0 rgba(227,87,40,.25);
            box-shadow: 0 rgba(227,87,40,.25)
        }

    .select.is-primary-6:not(:hover)::after {
        border-color: #e95220
    }

    .select.is-primary-6 select {
        border-color: #e95220
    }

        .select.is-primary-6 select.is-hovered, .select.is-primary-6 select:hover {
            border-color: #da4616
        }

        .select.is-primary-6 select.is-active, .select.is-primary-6 select.is-focused, .select.is-primary-6 select:active, .select.is-primary-6 select:focus {
            -webkit-box-shadow: 0 rgba(233,82,32,.25);
            box-shadow: 0 rgba(233,82,32,.25)
        }

    .select.is-primary-7:not(:hover)::after {
        border-color: #fafafa
    }

    .select.is-primary-7 select {
        border-color: #fafafa
    }

        .select.is-primary-7 select.is-hovered, .select.is-primary-7 select:hover {
            border-color: #ededed
        }

        .select.is-primary-7 select.is-active, .select.is-primary-7 select.is-focused, .select.is-primary-7 select:active, .select.is-primary-7 select:focus {
            -webkit-box-shadow: 0 rgba(250,250,250,.25);
            box-shadow: 0 rgba(250,250,250,.25)
        }

    .select.is-primary-light:not(:hover)::after {
        border-color: #f9f9f9
    }

    .select.is-primary-light select {
        border-color: #f9f9f9
    }

        .select.is-primary-light select.is-hovered, .select.is-primary-light select:hover {
            border-color: #ececec
        }

        .select.is-primary-light select.is-active, .select.is-primary-light select.is-focused, .select.is-primary-light select:active, .select.is-primary-light select:focus {
            -webkit-box-shadow: 0 rgba(249,249,249,.25);
            box-shadow: 0 rgba(249,249,249,.25)
        }

    .select.is-secondary:not(:hover)::after {
        border-color: #22262a
    }

    .select.is-secondary select {
        border-color: #22262a
    }

        .select.is-secondary select.is-hovered, .select.is-secondary select:hover {
            border-color: #17191c
        }

        .select.is-secondary select.is-active, .select.is-secondary select.is-focused, .select.is-secondary select:active, .select.is-secondary select:focus {
            -webkit-box-shadow: 0 rgba(34,38,42,.25);
            box-shadow: 0 rgba(34,38,42,.25)
        }

    .select.is-secondary-2:not(:hover)::after {
        border-color: #2d3238
    }

    .select.is-secondary-2 select {
        border-color: #2d3238
    }

        .select.is-secondary-2 select.is-hovered, .select.is-secondary-2 select:hover {
            border-color: #22252a
        }

        .select.is-secondary-2 select.is-active, .select.is-secondary-2 select.is-focused, .select.is-secondary-2 select:active, .select.is-secondary-2 select:focus {
            -webkit-box-shadow: 0 rgba(45,50,56,.25);
            box-shadow: 0 rgba(45,50,56,.25)
        }

    .select.is-secondary-3:not(:hover)::after {
        border-color: #363a3f
    }

    .select.is-secondary-3 select {
        border-color: #363a3f
    }

        .select.is-secondary-3 select.is-hovered, .select.is-secondary-3 select:hover {
            border-color: #2a2d31
        }

        .select.is-secondary-3 select.is-active, .select.is-secondary-3 select.is-focused, .select.is-secondary-3 select:active, .select.is-secondary-3 select:focus {
            -webkit-box-shadow: 0 rgba(54,58,63,.25);
            box-shadow: 0 rgba(54,58,63,.25)
        }

    .select.is-secondary-4:not(:hover)::after {
        border-color: #414549
    }

    .select.is-secondary-4 select {
        border-color: #414549
    }

        .select.is-secondary-4 select.is-hovered, .select.is-secondary-4 select:hover {
            border-color: #35383c
        }

        .select.is-secondary-4 select.is-active, .select.is-secondary-4 select.is-focused, .select.is-secondary-4 select:active, .select.is-secondary-4 select:focus {
            -webkit-box-shadow: 0 rgba(65,69,73,.25);
            box-shadow: 0 rgba(65,69,73,.25)
        }

    .select.is-secondary-5:not(:hover)::after {
        border-color: #545659
    }

    .select.is-secondary-5 select {
        border-color: #545659
    }

        .select.is-secondary-5 select.is-hovered, .select.is-secondary-5 select:hover {
            border-color: #48494c
        }

        .select.is-secondary-5 select.is-active, .select.is-secondary-5 select.is-focused, .select.is-secondary-5 select:active, .select.is-secondary-5 select:focus {
            -webkit-box-shadow: 0 rgba(84,86,89,.25);
            box-shadow: 0 rgba(84,86,89,.25)
        }

    .select.is-tertiary:not(:hover)::after {
        border-color: #a6a6a6
    }

    .select.is-tertiary select {
        border-color: #a6a6a6
    }

        .select.is-tertiary select.is-hovered, .select.is-tertiary select:hover {
            border-color: #999
        }

        .select.is-tertiary select.is-active, .select.is-tertiary select.is-focused, .select.is-tertiary select:active, .select.is-tertiary select:focus {
            -webkit-box-shadow: 0 rgba(166,166,166,.25);
            box-shadow: 0 rgba(166,166,166,.25)
        }

    .select.is-tertiary-2:not(:hover)::after {
        border-color: #d8d8d8
    }

    .select.is-tertiary-2 select {
        border-color: #d8d8d8
    }

        .select.is-tertiary-2 select.is-hovered, .select.is-tertiary-2 select:hover {
            border-color: #cbcbcb
        }

        .select.is-tertiary-2 select.is-active, .select.is-tertiary-2 select.is-focused, .select.is-tertiary-2 select:active, .select.is-tertiary-2 select:focus {
            -webkit-box-shadow: 0 rgba(216,216,216,.25);
            box-shadow: 0 rgba(216,216,216,.25)
        }

    .select.is-tertiary-3:not(:hover)::after {
        border-color: #d7d6d3
    }

    .select.is-tertiary-3 select {
        border-color: #d7d6d3
    }

        .select.is-tertiary-3 select.is-hovered, .select.is-tertiary-3 select:hover {
            border-color: #cbcac6
        }

        .select.is-tertiary-3 select.is-active, .select.is-tertiary-3 select.is-focused, .select.is-tertiary-3 select:active, .select.is-tertiary-3 select:focus {
            -webkit-box-shadow: 0 rgba(215,214,211,.25);
            box-shadow: 0 rgba(215,214,211,.25)
        }

    .select.is-tertiary-4:not(:hover)::after {
        border-color: #afafaf
    }

    .select.is-tertiary-4 select {
        border-color: #afafaf
    }

        .select.is-tertiary-4 select.is-hovered, .select.is-tertiary-4 select:hover {
            border-color: #a2a2a2
        }

        .select.is-tertiary-4 select.is-active, .select.is-tertiary-4 select.is-focused, .select.is-tertiary-4 select:active, .select.is-tertiary-4 select:focus {
            -webkit-box-shadow: 0 rgba(175,175,175,.25);
            box-shadow: 0 rgba(175,175,175,.25)
        }

    .select.is-tertiary-5:not(:hover)::after {
        border-color: #eaeaea
    }

    .select.is-tertiary-5 select {
        border-color: #eaeaea
    }

        .select.is-tertiary-5 select.is-hovered, .select.is-tertiary-5 select:hover {
            border-color: #ddd
        }

        .select.is-tertiary-5 select.is-active, .select.is-tertiary-5 select.is-focused, .select.is-tertiary-5 select:active, .select.is-tertiary-5 select:focus {
            -webkit-box-shadow: 0 rgba(234,234,234,.25);
            box-shadow: 0 rgba(234,234,234,.25)
        }

    .select.is-tertiary-6:not(:hover)::after {
        border-color: #b0b0b0
    }

    .select.is-tertiary-6 select {
        border-color: #b0b0b0
    }

        .select.is-tertiary-6 select.is-hovered, .select.is-tertiary-6 select:hover {
            border-color: #a3a3a3
        }

        .select.is-tertiary-6 select.is-active, .select.is-tertiary-6 select.is-focused, .select.is-tertiary-6 select:active, .select.is-tertiary-6 select:focus {
            -webkit-box-shadow: 0 rgba(176,176,176,.25);
            box-shadow: 0 rgba(176,176,176,.25)
        }

    .select.is-tertiary-7:not(:hover)::after {
        border-color: #969696
    }

    .select.is-tertiary-7 select {
        border-color: #969696
    }

        .select.is-tertiary-7 select.is-hovered, .select.is-tertiary-7 select:hover {
            border-color: #898989
        }

        .select.is-tertiary-7 select.is-active, .select.is-tertiary-7 select.is-focused, .select.is-tertiary-7 select:active, .select.is-tertiary-7 select:focus {
            -webkit-box-shadow: 0 rgba(150,150,150,.25);
            box-shadow: 0 rgba(150,150,150,.25)
        }

    .select.is-tertiary-8:not(:hover)::after {
        border-color: #999
    }

    .select.is-tertiary-8 select {
        border-color: #999
    }

        .select.is-tertiary-8 select.is-hovered, .select.is-tertiary-8 select:hover {
            border-color: #8c8c8c
        }

        .select.is-tertiary-8 select.is-active, .select.is-tertiary-8 select.is-focused, .select.is-tertiary-8 select:active, .select.is-tertiary-8 select:focus {
            -webkit-box-shadow: 0 rgba(153,153,153,.25);
            box-shadow: 0 rgba(153,153,153,.25)
        }

    .select.is-tertiary-9:not(:hover)::after {
        border-color: #f5f5f5
    }

    .select.is-tertiary-9 select {
        border-color: #f5f5f5
    }

        .select.is-tertiary-9 select.is-hovered, .select.is-tertiary-9 select:hover {
            border-color: #e8e8e8
        }

        .select.is-tertiary-9 select.is-active, .select.is-tertiary-9 select.is-focused, .select.is-tertiary-9 select:active, .select.is-tertiary-9 select:focus {
            -webkit-box-shadow: 0 rgba(245,245,245,.25);
            box-shadow: 0 rgba(245,245,245,.25)
        }

    .select.is-small {
        border-radius: 2px;
        font-size: .75rem
    }

    .select.is-medium {
        font-size: 1.25rem
    }

    .select.is-large {
        font-size: 1.5rem
    }

    .select.is-disabled::after {
        border-color: #7a7a7a
    }

    .select.is-fullwidth {
        width: 100%
    }

        .select.is-fullwidth select {
            width: 100%
        }

    .select.is-loading::after {
        margin-top: 0;
        position: absolute;
        right: .625em;
        top: .625em;
        -webkit-transform: none;
        transform: none
    }

    .select.is-loading.is-small:after {
        font-size: .75rem
    }

    .select.is-loading.is-medium:after {
        font-size: 1.25rem
    }

    .select.is-loading.is-large:after {
        font-size: 1.5rem
    }

.file {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative
}

    .file.is-white .file-cta {
        background-color: #fff;
        border-color: transparent;
        color: #0a0a0a
    }

    .file.is-white.is-hovered .file-cta, .file.is-white:hover .file-cta {
        background-color: #f9f9f9;
        border-color: transparent;
        color: #0a0a0a
    }

    .file.is-white.is-focused .file-cta, .file.is-white:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(255,255,255,.25);
        box-shadow: 0 0 .5em rgba(255,255,255,.25);
        color: #0a0a0a
    }

    .file.is-white.is-active .file-cta, .file.is-white:active .file-cta {
        background-color: #f2f2f2;
        border-color: transparent;
        color: #0a0a0a
    }

    .file.is-black .file-cta {
        background-color: #0a0a0a;
        border-color: transparent;
        color: #fff
    }

    .file.is-black.is-hovered .file-cta, .file.is-black:hover .file-cta {
        background-color: #040404;
        border-color: transparent;
        color: #fff
    }

    .file.is-black.is-focused .file-cta, .file.is-black:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(10,10,10,.25);
        box-shadow: 0 0 .5em rgba(10,10,10,.25);
        color: #fff
    }

    .file.is-black.is-active .file-cta, .file.is-black:active .file-cta {
        background-color: #000;
        border-color: transparent;
        color: #fff
    }

    .file.is-light .file-cta {
        background-color: #f5f5f5;
        border-color: transparent;
        color: #363636
    }

    .file.is-light.is-hovered .file-cta, .file.is-light:hover .file-cta {
        background-color: #eee;
        border-color: transparent;
        color: #363636
    }

    .file.is-light.is-focused .file-cta, .file.is-light:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(245,245,245,.25);
        box-shadow: 0 0 .5em rgba(245,245,245,.25);
        color: #363636
    }

    .file.is-light.is-active .file-cta, .file.is-light:active .file-cta {
        background-color: #e8e8e8;
        border-color: transparent;
        color: #363636
    }

    .file.is-dark .file-cta {
        background-color: #363636;
        border-color: transparent;
        color: #f5f5f5
    }

    .file.is-dark.is-hovered .file-cta, .file.is-dark:hover .file-cta {
        background-color: #2f2f2f;
        border-color: transparent;
        color: #f5f5f5
    }

    .file.is-dark.is-focused .file-cta, .file.is-dark:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(54,54,54,.25);
        box-shadow: 0 0 .5em rgba(54,54,54,.25);
        color: #f5f5f5
    }

    .file.is-dark.is-active .file-cta, .file.is-dark:active .file-cta {
        background-color: #292929;
        border-color: transparent;
        color: #f5f5f5
    }

    .file.is-primary .file-cta {
        background-color: #9fbf43;
        border-color: transparent;
        color: #fff
    }

    .file.is-primary.is-hovered .file-cta, .file.is-primary:hover .file-cta {
        background-color: #ef521d;
        border-color: transparent;
        color: #fff
    }

    .file.is-primary.is-focused .file-cta, .file.is-primary:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(240,91,41,.25);
        box-shadow: 0 0 .5em rgba(240,91,41,.25);
        color: #fff
    }

    .file.is-primary.is-active .file-cta, .file.is-primary:active .file-cta {
        background-color: #ee4911;
        border-color: transparent;
        color: #fff
    }

    .file.is-link .file-cta {
        background-color: #9fbf43;
        border-color: transparent;
        color: #fff
    }

    .file.is-link.is-hovered .file-cta, .file.is-link:hover .file-cta {
        background-color: #ef521d;
        border-color: transparent;
        color: #fff
    }

    .file.is-link.is-focused .file-cta, .file.is-link:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(240,91,41,.25);
        box-shadow: 0 0 .5em rgba(240,91,41,.25);
        color: #fff
    }

    .file.is-link.is-active .file-cta, .file.is-link:active .file-cta {
        background-color: #ee4911;
        border-color: transparent;
        color: #fff
    }

    .file.is-info .file-cta {
        background-color: #209cee;
        border-color: transparent;
        color: #fff
    }

    .file.is-info.is-hovered .file-cta, .file.is-info:hover .file-cta {
        background-color: #1496ed;
        border-color: transparent;
        color: #fff
    }

    .file.is-info.is-focused .file-cta, .file.is-info:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(32,156,238,.25);
        box-shadow: 0 0 .5em rgba(32,156,238,.25);
        color: #fff
    }

    .file.is-info.is-active .file-cta, .file.is-info:active .file-cta {
        background-color: #118fe4;
        border-color: transparent;
        color: #fff
    }

    .file.is-success .file-cta {
        background-color: #23d160;
        border-color: transparent;
        color: #fff
    }

    .file.is-success.is-hovered .file-cta, .file.is-success:hover .file-cta {
        background-color: #22c65b;
        border-color: transparent;
        color: #fff
    }

    .file.is-success.is-focused .file-cta, .file.is-success:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(35,209,96,.25);
        box-shadow: 0 0 .5em rgba(35,209,96,.25);
        color: #fff
    }

    .file.is-success.is-active .file-cta, .file.is-success:active .file-cta {
        background-color: #20bc56;
        border-color: transparent;
        color: #fff
    }

    .file.is-warning .file-cta {
        background-color: #ffdd57;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

    .file.is-warning.is-hovered .file-cta, .file.is-warning:hover .file-cta {
        background-color: #ffdb4a;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

    .file.is-warning.is-focused .file-cta, .file.is-warning:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(255,221,87,.25);
        box-shadow: 0 0 .5em rgba(255,221,87,.25);
        color: rgba(0,0,0,.7)
    }

    .file.is-warning.is-active .file-cta, .file.is-warning:active .file-cta {
        background-color: #ffd83d;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

    .file.is-danger .file-cta {
        background-color: #ff3860;
        border-color: transparent;
        color: #fff
    }

    .file.is-danger.is-hovered .file-cta, .file.is-danger:hover .file-cta {
        background-color: #ff2b56;
        border-color: transparent;
        color: #fff
    }

    .file.is-danger.is-focused .file-cta, .file.is-danger:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(255,56,96,.25);
        box-shadow: 0 0 .5em rgba(255,56,96,.25);
        color: #fff
    }

    .file.is-danger.is-active .file-cta, .file.is-danger:active .file-cta {
        background-color: #ff1f4b;
        border-color: transparent;
        color: #fff
    }

    .file.is-primary-2 .file-cta {
        background-color: #fa622f;
        border-color: transparent;
        color: #fff
    }

    .file.is-primary-2.is-hovered .file-cta, .file.is-primary-2:hover .file-cta {
        background-color: #fa5923;
        border-color: transparent;
        color: #fff
    }

    .file.is-primary-2.is-focused .file-cta, .file.is-primary-2:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(250,98,47,.25);
        box-shadow: 0 0 .5em rgba(250,98,47,.25);
        color: #fff
    }

    .file.is-primary-2.is-active .file-cta, .file.is-primary-2:active .file-cta {
        background-color: #f94f16;
        border-color: transparent;
        color: #fff
    }

    .file.is-primary-3 .file-cta {
        background-color: #e65322;
        border-color: transparent;
        color: #fff
    }

    .file.is-primary-3.is-hovered .file-cta, .file.is-primary-3:hover .file-cta {
        background-color: #e24c1a;
        border-color: transparent;
        color: #fff
    }

    .file.is-primary-3.is-focused .file-cta, .file.is-primary-3:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(230,83,34,.25);
        box-shadow: 0 0 .5em rgba(230,83,34,.25);
        color: #fff
    }

    .file.is-primary-3.is-active .file-cta, .file.is-primary-3:active .file-cta {
        background-color: #d64818;
        border-color: transparent;
        color: #fff
    }

    .file.is-primary-4 .file-cta {
        background-color: #e85c2d;
        border-color: transparent;
        color: #fff
    }

    .file.is-primary-4.is-hovered .file-cta, .file.is-primary-4:hover .file-cta {
        background-color: #e75322;
        border-color: transparent;
        color: #fff
    }

    .file.is-primary-4.is-focused .file-cta, .file.is-primary-4:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(232,92,45,.25);
        box-shadow: 0 0 .5em rgba(232,92,45,.25);
        color: #fff
    }

    .file.is-primary-4.is-active .file-cta, .file.is-primary-4:active .file-cta {
        background-color: #e34c19;
        border-color: transparent;
        color: #fff
    }

    .file.is-primary-5 .file-cta {
        background-color: #e35728;
        border-color: transparent;
        color: #fff
    }

    .file.is-primary-5.is-hovered .file-cta, .file.is-primary-5:hover .file-cta {
        background-color: #e14e1d;
        border-color: transparent;
        color: #fff
    }

    .file.is-primary-5.is-focused .file-cta, .file.is-primary-5:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(227,87,40,.25);
        box-shadow: 0 0 .5em rgba(227,87,40,.25);
        color: #fff
    }

    .file.is-primary-5.is-active .file-cta, .file.is-primary-5:active .file-cta {
        background-color: #d64b1c;
        border-color: transparent;
        color: #fff
    }

    .file.is-primary-6 .file-cta {
        background-color: #e95220;
        border-color: transparent;
        color: #fff
    }

    .file.is-primary-6.is-hovered .file-cta, .file.is-primary-6:hover .file-cta {
        background-color: #e64a17;
        border-color: transparent;
        color: #fff
    }

    .file.is-primary-6.is-focused .file-cta, .file.is-primary-6:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(233,82,32,.25);
        box-shadow: 0 0 .5em rgba(233,82,32,.25);
        color: #fff
    }

    .file.is-primary-6.is-active .file-cta, .file.is-primary-6:active .file-cta {
        background-color: #da4616;
        border-color: transparent;
        color: #fff
    }

    .file.is-primary-7 .file-cta {
        background-color: #fafafa;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

    .file.is-primary-7.is-hovered .file-cta, .file.is-primary-7:hover .file-cta {
        background-color: #f4f4f4;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

    .file.is-primary-7.is-focused .file-cta, .file.is-primary-7:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(250,250,250,.25);
        box-shadow: 0 0 .5em rgba(250,250,250,.25);
        color: rgba(0,0,0,.7)
    }

    .file.is-primary-7.is-active .file-cta, .file.is-primary-7:active .file-cta {
        background-color: #ededed;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

    .file.is-primary-light .file-cta {
        background-color: #f9f9f9;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

    .file.is-primary-light.is-hovered .file-cta, .file.is-primary-light:hover .file-cta {
        background-color: #f3f3f3;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

    .file.is-primary-light.is-focused .file-cta, .file.is-primary-light:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(249,249,249,.25);
        box-shadow: 0 0 .5em rgba(249,249,249,.25);
        color: rgba(0,0,0,.7)
    }

    .file.is-primary-light.is-active .file-cta, .file.is-primary-light:active .file-cta {
        background-color: #ececec;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

    .file.is-secondary .file-cta {
        background-color: #22262a;
        border-color: transparent;
        color: #fff
    }

    .file.is-secondary.is-hovered .file-cta, .file.is-secondary:hover .file-cta {
        background-color: #1c2023;
        border-color: transparent;
        color: #fff
    }

    .file.is-secondary.is-focused .file-cta, .file.is-secondary:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(34,38,42,.25);
        box-shadow: 0 0 .5em rgba(34,38,42,.25);
        color: #fff
    }

    .file.is-secondary.is-active .file-cta, .file.is-secondary:active .file-cta {
        background-color: #17191c;
        border-color: transparent;
        color: #fff
    }

    .file.is-secondary-2 .file-cta {
        background-color: #2d3238;
        border-color: transparent;
        color: #fff
    }

    .file.is-secondary-2.is-hovered .file-cta, .file.is-secondary-2:hover .file-cta {
        background-color: #272c31;
        border-color: transparent;
        color: #fff
    }

    .file.is-secondary-2.is-focused .file-cta, .file.is-secondary-2:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(45,50,56,.25);
        box-shadow: 0 0 .5em rgba(45,50,56,.25);
        color: #fff
    }

    .file.is-secondary-2.is-active .file-cta, .file.is-secondary-2:active .file-cta {
        background-color: #22252a;
        border-color: transparent;
        color: #fff
    }

    .file.is-secondary-3 .file-cta {
        background-color: #363a3f;
        border-color: transparent;
        color: #fff
    }

    .file.is-secondary-3.is-hovered .file-cta, .file.is-secondary-3:hover .file-cta {
        background-color: #303438;
        border-color: transparent;
        color: #fff
    }

    .file.is-secondary-3.is-focused .file-cta, .file.is-secondary-3:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(54,58,63,.25);
        box-shadow: 0 0 .5em rgba(54,58,63,.25);
        color: #fff
    }

    .file.is-secondary-3.is-active .file-cta, .file.is-secondary-3:active .file-cta {
        background-color: #2a2d31;
        border-color: transparent;
        color: #fff
    }

    .file.is-secondary-4 .file-cta {
        background-color: #414549;
        border-color: transparent;
        color: #fff
    }

    .file.is-secondary-4.is-hovered .file-cta, .file.is-secondary-4:hover .file-cta {
        background-color: #3b3f42;
        border-color: transparent;
        color: #fff
    }

    .file.is-secondary-4.is-focused .file-cta, .file.is-secondary-4:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(65,69,73,.25);
        box-shadow: 0 0 .5em rgba(65,69,73,.25);
        color: #fff
    }

    .file.is-secondary-4.is-active .file-cta, .file.is-secondary-4:active .file-cta {
        background-color: #35383c;
        border-color: transparent;
        color: #fff
    }

    .file.is-secondary-5 .file-cta {
        background-color: #545659;
        border-color: transparent;
        color: #fff
    }

    .file.is-secondary-5.is-hovered .file-cta, .file.is-secondary-5:hover .file-cta {
        background-color: #4e5052;
        border-color: transparent;
        color: #fff
    }

    .file.is-secondary-5.is-focused .file-cta, .file.is-secondary-5:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(84,86,89,.25);
        box-shadow: 0 0 .5em rgba(84,86,89,.25);
        color: #fff
    }

    .file.is-secondary-5.is-active .file-cta, .file.is-secondary-5:active .file-cta {
        background-color: #48494c;
        border-color: transparent;
        color: #fff
    }

    .file.is-tertiary .file-cta {
        background-color: #a6a6a6;
        border-color: transparent;
        color: #fff
    }

    .file.is-tertiary.is-hovered .file-cta, .file.is-tertiary:hover .file-cta {
        background-color: #a0a0a0;
        border-color: transparent;
        color: #fff
    }

    .file.is-tertiary.is-focused .file-cta, .file.is-tertiary:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(166,166,166,.25);
        box-shadow: 0 0 .5em rgba(166,166,166,.25);
        color: #fff
    }

    .file.is-tertiary.is-active .file-cta, .file.is-tertiary:active .file-cta {
        background-color: #999;
        border-color: transparent;
        color: #fff
    }

    .file.is-tertiary-2 .file-cta {
        background-color: #d8d8d8;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

    .file.is-tertiary-2.is-hovered .file-cta, .file.is-tertiary-2:hover .file-cta {
        background-color: #d2d2d2;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

    .file.is-tertiary-2.is-focused .file-cta, .file.is-tertiary-2:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(216,216,216,.25);
        box-shadow: 0 0 .5em rgba(216,216,216,.25);
        color: rgba(0,0,0,.7)
    }

    .file.is-tertiary-2.is-active .file-cta, .file.is-tertiary-2:active .file-cta {
        background-color: #cbcbcb;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

    .file.is-tertiary-3 .file-cta {
        background-color: #d7d6d3;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

    .file.is-tertiary-3.is-hovered .file-cta, .file.is-tertiary-3:hover .file-cta {
        background-color: #d1d0cc;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

    .file.is-tertiary-3.is-focused .file-cta, .file.is-tertiary-3:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(215,214,211,.25);
        box-shadow: 0 0 .5em rgba(215,214,211,.25);
        color: rgba(0,0,0,.7)
    }

    .file.is-tertiary-3.is-active .file-cta, .file.is-tertiary-3:active .file-cta {
        background-color: #cbcac6;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

    .file.is-tertiary-4 .file-cta {
        background-color: #afafaf;
        border-color: transparent;
        color: #fff
    }

    .file.is-tertiary-4.is-hovered .file-cta, .file.is-tertiary-4:hover .file-cta {
        background-color: #a9a9a9;
        border-color: transparent;
        color: #fff
    }

    .file.is-tertiary-4.is-focused .file-cta, .file.is-tertiary-4:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(175,175,175,.25);
        box-shadow: 0 0 .5em rgba(175,175,175,.25);
        color: #fff
    }

    .file.is-tertiary-4.is-active .file-cta, .file.is-tertiary-4:active .file-cta {
        background-color: #a2a2a2;
        border-color: transparent;
        color: #fff
    }

    .file.is-tertiary-5 .file-cta {
        background-color: #eaeaea;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

    .file.is-tertiary-5.is-hovered .file-cta, .file.is-tertiary-5:hover .file-cta {
        background-color: #e4e4e4;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

    .file.is-tertiary-5.is-focused .file-cta, .file.is-tertiary-5:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(234,234,234,.25);
        box-shadow: 0 0 .5em rgba(234,234,234,.25);
        color: rgba(0,0,0,.7)
    }

    .file.is-tertiary-5.is-active .file-cta, .file.is-tertiary-5:active .file-cta {
        background-color: #ddd;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

    .file.is-tertiary-6 .file-cta {
        background-color: #b0b0b0;
        border-color: transparent;
        color: #fff
    }

    .file.is-tertiary-6.is-hovered .file-cta, .file.is-tertiary-6:hover .file-cta {
        background-color: #aaa;
        border-color: transparent;
        color: #fff
    }

    .file.is-tertiary-6.is-focused .file-cta, .file.is-tertiary-6:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(176,176,176,.25);
        box-shadow: 0 0 .5em rgba(176,176,176,.25);
        color: #fff
    }

    .file.is-tertiary-6.is-active .file-cta, .file.is-tertiary-6:active .file-cta {
        background-color: #a3a3a3;
        border-color: transparent;
        color: #fff
    }

    .file.is-tertiary-7 .file-cta {
        background-color: #969696;
        border-color: transparent;
        color: #fff
    }

    .file.is-tertiary-7.is-hovered .file-cta, .file.is-tertiary-7:hover .file-cta {
        background-color: #909090;
        border-color: transparent;
        color: #fff
    }

    .file.is-tertiary-7.is-focused .file-cta, .file.is-tertiary-7:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(150,150,150,.25);
        box-shadow: 0 0 .5em rgba(150,150,150,.25);
        color: #fff
    }

    .file.is-tertiary-7.is-active .file-cta, .file.is-tertiary-7:active .file-cta {
        background-color: #898989;
        border-color: transparent;
        color: #fff
    }

    .file.is-tertiary-8 .file-cta {
        background-color: #999;
        border-color: transparent;
        color: #fff
    }

    .file.is-tertiary-8.is-hovered .file-cta, .file.is-tertiary-8:hover .file-cta {
        background-color: #939393;
        border-color: transparent;
        color: #fff
    }

    .file.is-tertiary-8.is-focused .file-cta, .file.is-tertiary-8:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(153,153,153,.25);
        box-shadow: 0 0 .5em rgba(153,153,153,.25);
        color: #fff
    }

    .file.is-tertiary-8.is-active .file-cta, .file.is-tertiary-8:active .file-cta {
        background-color: #8c8c8c;
        border-color: transparent;
        color: #fff
    }

    .file.is-tertiary-9 .file-cta {
        background-color: #f5f5f5;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

    .file.is-tertiary-9.is-hovered .file-cta, .file.is-tertiary-9:hover .file-cta {
        background-color: #efefef;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

    .file.is-tertiary-9.is-focused .file-cta, .file.is-tertiary-9:focus .file-cta {
        border-color: transparent;
        -webkit-box-shadow: 0 0 .5em rgba(245,245,245,.25);
        box-shadow: 0 0 .5em rgba(245,245,245,.25);
        color: rgba(0,0,0,.7)
    }

    .file.is-tertiary-9.is-active .file-cta, .file.is-tertiary-9:active .file-cta {
        background-color: #e8e8e8;
        border-color: transparent;
        color: rgba(0,0,0,.7)
    }

    .file.is-small {
        font-size: .75rem
    }

    .file.is-medium {
        font-size: 1.25rem
    }

        .file.is-medium .file-icon .fa {
            font-size: 21px
        }

    .file.is-large {
        font-size: 1.5rem
    }

        .file.is-large .file-icon .fa {
            font-size: 28px
        }

    .file.has-name .file-cta {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0
    }

    .file.has-name .file-name {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0
    }

    .file.has-name.is-empty .file-cta {
        border-radius: 0
    }

    .file.has-name.is-empty .file-name {
        display: none
    }

    .file.is-boxed .file-label {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .file.is-boxed .file-cta {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
        padding: 1em 3em
    }

    .file.is-boxed .file-name {
        border-width: 0 1px 1px
    }

    .file.is-boxed .file-icon {
        height: 1.5em;
        width: 1.5em
    }

        .file.is-boxed .file-icon .fa {
            font-size: 21px
        }

    .file.is-boxed.is-small .file-icon .fa {
        font-size: 14px
    }

    .file.is-boxed.is-medium .file-icon .fa {
        font-size: 28px
    }

    .file.is-boxed.is-large .file-icon .fa {
        font-size: 35px
    }

    .file.is-boxed.has-name .file-cta {
        border-radius: 0
    }

    .file.is-boxed.has-name .file-name {
        border-radius: 0;
        border-width: 0 1px 1px
    }

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

    .file.is-fullwidth .file-label {
        width: 100%
    }

    .file.is-fullwidth .file-name {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: none
    }

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

        .file.is-right .file-cta {
            border-radius: 0
        }

        .file.is-right .file-name {
            border-radius: 0;
            border-width: 1px 0 1px 1px;
            -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
            order: -1
        }

.file-label {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    overflow: hidden;
    position: relative
}

    .file-label:hover .file-cta {
        background-color: #eee;
        color: #363636
    }

    .file-label:hover .file-name {
        border-color: #d5d5d5
    }

    .file-label:active .file-cta {
        background-color: #e8e8e8;
        color: #363636
    }

    .file-label:active .file-name {
        border-color: #cfcfcf
    }

.file-input {
    height: .01em;
    left: 0;
    outline: 0;
    position: absolute;
    top: 0;
    width: .01em
}

.file-cta, .file-name {
    border-color: #dbdbdb;
    border-radius: 0;
    font-size: 1em;
    padding-left: 1em;
    padding-right: 1em;
    white-space: nowrap
}

.file-cta {
    background-color: #f5f5f5;
    color: #4a4a4a
}

.file-name {
    border-color: #dbdbdb;
    border-style: solid;
    border-width: 1px 1px 1px 0;
    display: block;
    max-width: 16em;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis
}

.file-icon {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 1em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: .5em;
    width: 1em
}

    .file-icon .fa {
        font-size: 14px
    }

.label {
    color: #363636;
    display: block;
    font-size: 1rem;
    font-weight: 700
}

    .label:not(:last-child) {
        margin-bottom: .5em
    }

    .label.is-small {
        font-size: .75rem
    }

    .label.is-medium {
        font-size: 1.25rem
    }

    .label.is-large {
        font-size: 1.5rem
    }

.help {
    display: block;
    font-size: .75rem;
    margin-top: .25rem
}

    .help.is-white {
        color: #fff
    }

    .help.is-black {
        color: #0a0a0a
    }

    .help.is-light {
        color: #f5f5f5
    }

    .help.is-dark {
        color: #363636
    }

    .help.is-primary {
        color: #9fbf43
    }

    .help.is-link {
        color: #9fbf43
    }

    .help.is-info {
        color: #209cee
    }

    .help.is-success {
        color: #23d160
    }

    .help.is-warning {
        color: #ffdd57
    }

    .help.is-danger {
        color: #ff3860
    }

    .help.is-primary-2 {
        color: #fa622f
    }

    .help.is-primary-3 {
        color: #e65322
    }

    .help.is-primary-4 {
        color: #e85c2d
    }

    .help.is-primary-5 {
        color: #e35728
    }

    .help.is-primary-6 {
        color: #e95220
    }

    .help.is-primary-7 {
        color: #fafafa
    }

    .help.is-primary-light {
        color: #f9f9f9
    }

    .help.is-secondary {
        color: #22262a
    }

    .help.is-secondary-2 {
        color: #2d3238
    }

    .help.is-secondary-3 {
        color: #363a3f
    }

    .help.is-secondary-4 {
        color: #414549
    }

    .help.is-secondary-5 {
        color: #545659
    }

    .help.is-tertiary {
        color: #a6a6a6
    }

    .help.is-tertiary-2 {
        color: #d8d8d8
    }

    .help.is-tertiary-3 {
        color: #d7d6d3
    }

    .help.is-tertiary-4 {
        color: #afafaf
    }

    .help.is-tertiary-5 {
        color: #eaeaea
    }

    .help.is-tertiary-6 {
        color: #b0b0b0
    }

    .help.is-tertiary-7 {
        color: #969696
    }

    .help.is-tertiary-8 {
        color: #999
    }

    .help.is-tertiary-9 {
        color: #f5f5f5
    }

.field:not(:last-child) {
    margin-bottom: .75rem
}

.field.has-addons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

    .field.has-addons .control:not(:last-child) {
        margin-right: -1px
    }

    .field.has-addons .control:not(:first-child):not(:last-child) .button, .field.has-addons .control:not(:first-child):not(:last-child) .input, .field.has-addons .control:not(:first-child):not(:last-child) .select select {
        border-radius: 0
    }

    .field.has-addons .control:first-child .button, .field.has-addons .control:first-child .input, .field.has-addons .control:first-child .select select {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0
    }

    .field.has-addons .control:last-child .button, .field.has-addons .control:last-child .input, .field.has-addons .control:last-child .select select {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0
    }

    .field.has-addons .control .button.is-hovered, .field.has-addons .control .button:hover, .field.has-addons .control .input.is-hovered, .field.has-addons .control .input:hover, .field.has-addons .control .select select.is-hovered, .field.has-addons .control .select select:hover {
        z-index: 2
    }

    .field.has-addons .control .button.is-active, .field.has-addons .control .button.is-focused, .field.has-addons .control .button:active, .field.has-addons .control .button:focus, .field.has-addons .control .input.is-active, .field.has-addons .control .input.is-focused, .field.has-addons .control .input:active, .field.has-addons .control .input:focus, .field.has-addons .control .select select.is-active, .field.has-addons .control .select select.is-focused, .field.has-addons .control .select select:active, .field.has-addons .control .select select:focus {
        z-index: 3
    }

        .field.has-addons .control .button.is-active:hover, .field.has-addons .control .button.is-focused:hover, .field.has-addons .control .button:active:hover, .field.has-addons .control .button:focus:hover, .field.has-addons .control .input.is-active:hover, .field.has-addons .control .input.is-focused:hover, .field.has-addons .control .input:active:hover, .field.has-addons .control .input:focus:hover, .field.has-addons .control .select select.is-active:hover, .field.has-addons .control .select select.is-focused:hover, .field.has-addons .control .select select:active:hover, .field.has-addons .control .select select:focus:hover {
            z-index: 4
        }

    .field.has-addons .control.is-expanded {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

    .field.has-addons.has-addons-centered {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .field.has-addons.has-addons-right {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .field.has-addons.has-addons-fullwidth .control {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }

.field.is-grouped {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

    .field.is-grouped > .control {
        -ms-flex-negative: 0;
        flex-shrink: 0
    }

        .field.is-grouped > .control:not(:last-child) {
            margin-bottom: 0;
            margin-right: .75rem
        }

        .field.is-grouped > .control.is-expanded {
            -webkit-box-flex: 1;
            -ms-flex-positive: 1;
            flex-grow: 1;
            -ms-flex-negative: 1;
            flex-shrink: 1
        }

    .field.is-grouped.is-grouped-centered {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .field.is-grouped.is-grouped-right {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .field.is-grouped.is-grouped-multiline {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

        .field.is-grouped.is-grouped-multiline > .control:last-child, .field.is-grouped.is-grouped-multiline > .control:not(:last-child) {
            margin-bottom: .75rem
        }

        .field.is-grouped.is-grouped-multiline:last-child {
            margin-bottom: -.75rem
        }

        .field.is-grouped.is-grouped-multiline:not(:last-child) {
            margin-bottom: 0
        }

@media screen and (min-width:769px),print {
    .field.is-horizontal {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.field-label .label {
    font-size: inherit
}

@media screen and (max-width:768px) {
    .field-label {
        margin-bottom: .5rem
    }
}

@media screen and (min-width:769px),print {
    .field-label {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-right: 1.5rem;
        text-align: right
    }

        .field-label.is-small {
            font-size: .75rem;
            padding-top: .375em
        }

        .field-label.is-normal {
            padding-top: .375em
        }

        .field-label.is-medium {
            font-size: 1.25rem;
            padding-top: .375em
        }

        .field-label.is-large {
            font-size: 1.5rem;
            padding-top: .375em
        }
}

.field-body .field .field {
    margin-bottom: 0
}

@media screen and (min-width:769px),print {
    .field-body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 5;
        -ms-flex-positive: 5;
        flex-grow: 5;
        -ms-flex-negative: 1;
        flex-shrink: 1
    }

        .field-body .field {
            margin-bottom: 0
        }

        .field-body > .field {
            -ms-flex-negative: 1;
            flex-shrink: 1
        }

            .field-body > .field:not(.is-narrow) {
                -webkit-box-flex: 1;
                -ms-flex-positive: 1;
                flex-grow: 1
            }

            .field-body > .field:not(:last-child) {
                margin-right: .75rem
            }
}

.control {
    font-size: 1rem;
    position: relative;
    text-align: left
}

    .control.has-icon .icon {
        color: #dbdbdb;
        height: 2.25em;
        pointer-events: none;
        position: absolute;
        top: 0;
        width: 2.25em;
        z-index: 4
    }

    .control.has-icon .input:focus + .icon {
        color: #7a7a7a
    }

    .control.has-icon .input.is-small + .icon {
        font-size: .75rem
    }

    .control.has-icon .input.is-medium + .icon {
        font-size: 1.25rem
    }

    .control.has-icon .input.is-large + .icon {
        font-size: 1.5rem
    }

    .control.has-icon:not(.has-icon-right) .icon {
        left: 0
    }

    .control.has-icon:not(.has-icon-right) .input {
        padding-left: 2.25em
    }

    .control.has-icon.has-icon-right .icon {
        right: 0
    }

    .control.has-icon.has-icon-right .input {
        padding-right: 2.25em
    }

    .control.has-icons-left .input:focus ~ .icon, .control.has-icons-left .select:focus ~ .icon, .control.has-icons-right .input:focus ~ .icon, .control.has-icons-right .select:focus ~ .icon {
        color: #7a7a7a
    }

    .control.has-icons-left .input.is-small ~ .icon, .control.has-icons-left .select.is-small ~ .icon, .control.has-icons-right .input.is-small ~ .icon, .control.has-icons-right .select.is-small ~ .icon {
        font-size: .75rem
    }

    .control.has-icons-left .input.is-medium ~ .icon, .control.has-icons-left .select.is-medium ~ .icon, .control.has-icons-right .input.is-medium ~ .icon, .control.has-icons-right .select.is-medium ~ .icon {
        font-size: 1.25rem
    }

    .control.has-icons-left .input.is-large ~ .icon, .control.has-icons-left .select.is-large ~ .icon, .control.has-icons-right .input.is-large ~ .icon, .control.has-icons-right .select.is-large ~ .icon {
        font-size: 1.5rem
    }

    .control.has-icons-left .icon, .control.has-icons-right .icon {
        color: #dbdbdb;
        height: 2.25em;
        pointer-events: none;
        position: absolute;
        top: 0;
        width: 2.25em;
        z-index: 4
    }

    .control.has-icons-left .input, .control.has-icons-left .select select {
        padding-left: 2.25em
    }

    .control.has-icons-left .icon.is-left {
        left: 0
    }

    .control.has-icons-right .input, .control.has-icons-right .select select {
        padding-right: 2.25em
    }

    .control.has-icons-right .icon.is-right {
        right: 0
    }

    .control.is-loading::after {
        position: absolute !important;
        right: .625em;
        top: .625em;
        z-index: 4
    }

    .control.is-loading.is-small:after {
        font-size: .75rem
    }

    .control.is-loading.is-medium:after {
        font-size: 1.25rem
    }

    .control.is-loading.is-large:after {
        font-size: 1.5rem
    }

.icon {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 1.5rem;
    width: 1.5rem
}

    .icon.is-small {
        height: 1rem;
        width: 1rem
    }

    .icon.is-medium {
        height: 2rem;
        width: 2rem
    }

    .icon.is-large {
        height: 3rem;
        width: 3rem
    }

.image {
    display: block;
    position: relative
}

    .image img {
        display: block;
        height: auto;
        width: 100%
    }

        .image img.is-rounded {
            border-radius: 290486px
        }

    .image.is-16by9 img, .image.is-1by1 img, .image.is-1by2 img, .image.is-1by3 img, .image.is-2by1 img, .image.is-2by3 img, .image.is-3by1 img, .image.is-3by2 img, .image.is-3by4 img, .image.is-3by5 img, .image.is-4by3 img, .image.is-4by5 img, .image.is-5by3 img, .image.is-5by4 img, .image.is-9by16 img, .image.is-square img {
        height: 100%;
        width: 100%
    }

    .image.is-1by1, .image.is-square {
        padding-top: 100%
    }

    .image.is-5by4 {
        padding-top: 80%
    }

    .image.is-4by3 {
        padding-top: 75%
    }

    .image.is-3by2 {
        padding-top: 66.6666%
    }

    .image.is-5by3 {
        padding-top: 60%
    }

    .image.is-16by9 {
        padding-top: 56.25%
    }

    .image.is-2by1 {
        padding-top: 50%
    }

    .image.is-3by1 {
        padding-top: 33.3333%
    }

    .image.is-4by5 {
        padding-top: 125%
    }

    .image.is-3by4 {
        padding-top: 133.3333%
    }

    .image.is-2by3 {
        padding-top: 150%
    }

    .image.is-3by5 {
        padding-top: 166.6666%
    }

    .image.is-9by16 {
        padding-top: 177.7777%
    }

    .image.is-1by2 {
        padding-top: 200%
    }

    .image.is-1by3 {
        padding-top: 300%
    }

    .image.is-16x16 {
        height: 16px;
        width: 16px
    }

    .image.is-24x24 {
        height: 24px;
        width: 24px
    }

    .image.is-32x32 {
        height: 32px;
        width: 32px
    }

    .image.is-48x48 {
        height: 48px;
        width: 48px
    }

    .image.is-64x64 {
        height: 64px;
        width: 64px
    }

    .image.is-96x96 {
        height: 96px;
        width: 96px
    }

    .image.is-128x128 {
        height: 128px;
        width: 128px
    }

.notification {
    background-color: rgba(240,240,240,.5);
    border-radius: 0;
    padding: 1.25rem 2.5rem 1.25rem 1.5rem;
    position: relative
}

    .notification a:not(.button) {
        color: currentColor;
        text-decoration: underline
    }

    .notification strong {
        color: currentColor
    }

    .notification code, .notification pre {
        background: #fff
    }

        .notification pre code {
            background: 0 0
        }

    .notification > .delete {
        position: absolute;
        right: .5rem;
        top: .5rem
    }

    .notification .content, .notification .subtitle, .notification .title {
        color: currentColor
    }

    .notification.is-white {
        background-color: #fff;
        color: #0a0a0a
    }

    .notification.is-black {
        background-color: #0a0a0a;
        color: #fff
    }

    .notification.is-light {
        background-color: #f5f5f5;
        color: #363636
    }

    .notification.is-dark {
        background-color: #363636;
        color: #f5f5f5
    }

    .notification.is-primary {
        background-color: #9fbf43;
        color: #fff
    }

    .notification.is-link {
        background-color: #9fbf43;
        color: #fff
    }

    .notification.is-info {
        background-color: #209cee;
        color: #fff
    }

    .notification.is-success {
        background-color: #23d160;
        color: #fff
    }

    .notification.is-warning {
        background-color: #ffdd57;
        color: rgba(0,0,0,.7)
    }

    .notification.is-danger {
        background-color: #ff3860;
        color: #fff
    }

    .notification.is-primary-2 {
        background-color: #fa622f;
        color: #fff
    }

    .notification.is-primary-3 {
        background-color: #e65322;
        color: #fff
    }

    .notification.is-primary-4 {
        background-color: #e85c2d;
        color: #fff
    }

    .notification.is-primary-5 {
        background-color: #e35728;
        color: #fff
    }

    .notification.is-primary-6 {
        background-color: #e95220;
        color: #fff
    }

    .notification.is-primary-7 {
        background-color: #fafafa;
        color: rgba(0,0,0,.7)
    }

    .notification.is-primary-light {
        background-color: #f9f9f9;
        color: rgba(0,0,0,.7)
    }

    .notification.is-secondary {
        background-color: #22262a;
        color: #fff
    }

    .notification.is-secondary-2 {
        background-color: #2d3238;
        color: #fff
    }

    .notification.is-secondary-3 {
        background-color: #363a3f;
        color: #fff
    }

    .notification.is-secondary-4 {
        background-color: #414549;
        color: #fff
    }

    .notification.is-secondary-5 {
        background-color: #545659;
        color: #fff
    }

    .notification.is-tertiary {
        background-color: #a6a6a6;
        color: #fff
    }

    .notification.is-tertiary-2 {
        background-color: #d8d8d8;
        color: rgba(0,0,0,.7)
    }

    .notification.is-tertiary-3 {
        background-color: #d7d6d3;
        color: rgba(0,0,0,.7)
    }

    .notification.is-tertiary-4 {
        background-color: #afafaf;
        color: #fff
    }

    .notification.is-tertiary-5 {
        background-color: #eaeaea;
        color: rgba(0,0,0,.7)
    }

    .notification.is-tertiary-6 {
        background-color: #b0b0b0;
        color: #fff
    }

    .notification.is-tertiary-7 {
        background-color: #969696;
        color: #fff
    }

    .notification.is-tertiary-8 {
        background-color: #999;
        color: #fff
    }

    .notification.is-tertiary-9 {
        background-color: #f5f5f5;
        color: rgba(0,0,0,.7)
    }

.progress {
    -moz-appearance: none;
    -webkit-appearance: none;
    border: none;
    border-radius: 290486px;
    display: block;
    height: 1rem;
    overflow: hidden;
    padding: 0;
    width: 100%
}

    .progress::-webkit-progress-bar {
        background-color: #dbdbdb
    }

    .progress::-webkit-progress-value {
        background-color: #4a4a4a
    }

    .progress::-moz-progress-bar {
        background-color: #4a4a4a
    }

    .progress::-ms-fill {
        background-color: #4a4a4a;
        border: none
    }

    .progress.is-white::-webkit-progress-value {
        background-color: #fff
    }

    .progress.is-white::-moz-progress-bar {
        background-color: #fff
    }

    .progress.is-white::-ms-fill {
        background-color: #fff
    }

    .progress.is-black::-webkit-progress-value {
        background-color: #0a0a0a
    }

    .progress.is-black::-moz-progress-bar {
        background-color: #0a0a0a
    }

    .progress.is-black::-ms-fill {
        background-color: #0a0a0a
    }

    .progress.is-light::-webkit-progress-value {
        background-color: #f5f5f5
    }

    .progress.is-light::-moz-progress-bar {
        background-color: #f5f5f5
    }

    .progress.is-light::-ms-fill {
        background-color: #f5f5f5
    }

    .progress.is-dark::-webkit-progress-value {
        background-color: #363636
    }

    .progress.is-dark::-moz-progress-bar {
        background-color: #363636
    }

    .progress.is-dark::-ms-fill {
        background-color: #363636
    }

    .progress.is-primary::-webkit-progress-value {
        background-color: #9fbf43
    }

    .progress.is-primary::-moz-progress-bar {
        background-color: #9fbf43
    }

    .progress.is-primary::-ms-fill {
        background-color: #9fbf43
    }

    .progress.is-link::-webkit-progress-value {
        background-color: #9fbf43
    }

    .progress.is-link::-moz-progress-bar {
        background-color: #9fbf43
    }

    .progress.is-link::-ms-fill {
        background-color: #9fbf43
    }

    .progress.is-info::-webkit-progress-value {
        background-color: #209cee
    }

    .progress.is-info::-moz-progress-bar {
        background-color: #209cee
    }

    .progress.is-info::-ms-fill {
        background-color: #209cee
    }

    .progress.is-success::-webkit-progress-value {
        background-color: #23d160
    }

    .progress.is-success::-moz-progress-bar {
        background-color: #23d160
    }

    .progress.is-success::-ms-fill {
        background-color: #23d160
    }

    .progress.is-warning::-webkit-progress-value {
        background-color: #ffdd57
    }

    .progress.is-warning::-moz-progress-bar {
        background-color: #ffdd57
    }

    .progress.is-warning::-ms-fill {
        background-color: #ffdd57
    }

    .progress.is-danger::-webkit-progress-value {
        background-color: #ff3860
    }

    .progress.is-danger::-moz-progress-bar {
        background-color: #ff3860
    }

    .progress.is-danger::-ms-fill {
        background-color: #ff3860
    }

    .progress.is-primary-2::-webkit-progress-value {
        background-color: #fa622f
    }

    .progress.is-primary-2::-moz-progress-bar {
        background-color: #fa622f
    }

    .progress.is-primary-2::-ms-fill {
        background-color: #fa622f
    }

    .progress.is-primary-3::-webkit-progress-value {
        background-color: #e65322
    }

    .progress.is-primary-3::-moz-progress-bar {
        background-color: #e65322
    }

    .progress.is-primary-3::-ms-fill {
        background-color: #e65322
    }

    .progress.is-primary-4::-webkit-progress-value {
        background-color: #e85c2d
    }

    .progress.is-primary-4::-moz-progress-bar {
        background-color: #e85c2d
    }

    .progress.is-primary-4::-ms-fill {
        background-color: #e85c2d
    }

    .progress.is-primary-5::-webkit-progress-value {
        background-color: #e35728
    }

    .progress.is-primary-5::-moz-progress-bar {
        background-color: #e35728
    }

    .progress.is-primary-5::-ms-fill {
        background-color: #e35728
    }

    .progress.is-primary-6::-webkit-progress-value {
        background-color: #e95220
    }

    .progress.is-primary-6::-moz-progress-bar {
        background-color: #e95220
    }

    .progress.is-primary-6::-ms-fill {
        background-color: #e95220
    }

    .progress.is-primary-7::-webkit-progress-value {
        background-color: #fafafa
    }

    .progress.is-primary-7::-moz-progress-bar {
        background-color: #fafafa
    }

    .progress.is-primary-7::-ms-fill {
        background-color: #fafafa
    }

    .progress.is-primary-light::-webkit-progress-value {
        background-color: #f9f9f9
    }

    .progress.is-primary-light::-moz-progress-bar {
        background-color: #f9f9f9
    }

    .progress.is-primary-light::-ms-fill {
        background-color: #f9f9f9
    }

    .progress.is-secondary::-webkit-progress-value {
        background-color: #22262a
    }

    .progress.is-secondary::-moz-progress-bar {
        background-color: #22262a
    }

    .progress.is-secondary::-ms-fill {
        background-color: #22262a
    }

    .progress.is-secondary-2::-webkit-progress-value {
        background-color: #2d3238
    }

    .progress.is-secondary-2::-moz-progress-bar {
        background-color: #2d3238
    }

    .progress.is-secondary-2::-ms-fill {
        background-color: #2d3238
    }

    .progress.is-secondary-3::-webkit-progress-value {
        background-color: #363a3f
    }

    .progress.is-secondary-3::-moz-progress-bar {
        background-color: #363a3f
    }

    .progress.is-secondary-3::-ms-fill {
        background-color: #363a3f
    }

    .progress.is-secondary-4::-webkit-progress-value {
        background-color: #414549
    }

    .progress.is-secondary-4::-moz-progress-bar {
        background-color: #414549
    }

    .progress.is-secondary-4::-ms-fill {
        background-color: #414549
    }

    .progress.is-secondary-5::-webkit-progress-value {
        background-color: #545659
    }

    .progress.is-secondary-5::-moz-progress-bar {
        background-color: #545659
    }

    .progress.is-secondary-5::-ms-fill {
        background-color: #545659
    }

    .progress.is-tertiary::-webkit-progress-value {
        background-color: #a6a6a6
    }

    .progress.is-tertiary::-moz-progress-bar {
        background-color: #a6a6a6
    }

    .progress.is-tertiary::-ms-fill {
        background-color: #a6a6a6
    }

    .progress.is-tertiary-2::-webkit-progress-value {
        background-color: #d8d8d8
    }

    .progress.is-tertiary-2::-moz-progress-bar {
        background-color: #d8d8d8
    }

    .progress.is-tertiary-2::-ms-fill {
        background-color: #d8d8d8
    }

    .progress.is-tertiary-3::-webkit-progress-value {
        background-color: #d7d6d3
    }

    .progress.is-tertiary-3::-moz-progress-bar {
        background-color: #d7d6d3
    }

    .progress.is-tertiary-3::-ms-fill {
        background-color: #d7d6d3
    }

    .progress.is-tertiary-4::-webkit-progress-value {
        background-color: #afafaf
    }

    .progress.is-tertiary-4::-moz-progress-bar {
        background-color: #afafaf
    }

    .progress.is-tertiary-4::-ms-fill {
        background-color: #afafaf
    }

    .progress.is-tertiary-5::-webkit-progress-value {
        background-color: #eaeaea
    }

    .progress.is-tertiary-5::-moz-progress-bar {
        background-color: #eaeaea
    }

    .progress.is-tertiary-5::-ms-fill {
        background-color: #eaeaea
    }

    .progress.is-tertiary-6::-webkit-progress-value {
        background-color: #b0b0b0
    }

    .progress.is-tertiary-6::-moz-progress-bar {
        background-color: #b0b0b0
    }

    .progress.is-tertiary-6::-ms-fill {
        background-color: #b0b0b0
    }

    .progress.is-tertiary-7::-webkit-progress-value {
        background-color: #969696
    }

    .progress.is-tertiary-7::-moz-progress-bar {
        background-color: #969696
    }

    .progress.is-tertiary-7::-ms-fill {
        background-color: #969696
    }

    .progress.is-tertiary-8::-webkit-progress-value {
        background-color: #999
    }

    .progress.is-tertiary-8::-moz-progress-bar {
        background-color: #999
    }

    .progress.is-tertiary-8::-ms-fill {
        background-color: #999
    }

    .progress.is-tertiary-9::-webkit-progress-value {
        background-color: #f5f5f5
    }

    .progress.is-tertiary-9::-moz-progress-bar {
        background-color: #f5f5f5
    }

    .progress.is-tertiary-9::-ms-fill {
        background-color: #f5f5f5
    }

    .progress.is-small {
        height: .75rem
    }

    .progress.is-medium {
        height: 1.25rem
    }

    .progress.is-large {
        height: 1.5rem
    }

.table {
    background-color: #fff;
    color: #363636
}

    .table td, .table th {
        border: 1px solid #f0f0f0;
        border-width: 0 0 1px;
        padding: .75em .75em;
        vertical-align: top
    }

        .table td.is-white, .table th.is-white {
            background-color: #fff;
            border-color: #fff;
            color: #0a0a0a
        }

        .table td.is-black, .table th.is-black {
            background-color: #0a0a0a;
            border-color: #0a0a0a;
            color: #fff
        }

        .table td.is-light, .table th.is-light {
            background-color: #f5f5f5;
            border-color: #f5f5f5;
            color: #363636
        }

        .table td.is-dark, .table th.is-dark {
            background-color: #363636;
            border-color: #363636;
            color: #f5f5f5
        }

        .table td.is-primary, .table th.is-primary {
            background-color: #9fbf43;
            border-color: #9fbf43;
            color: #fff
        }

        .table td.is-link, .table th.is-link {
            background-color: #9fbf43;
            border-color: #9fbf43;
            color: #fff
        }

        .table td.is-info, .table th.is-info {
            background-color: #209cee;
            border-color: #209cee;
            color: #fff
        }

        .table td.is-success, .table th.is-success {
            background-color: #23d160;
            border-color: #23d160;
            color: #fff
        }

        .table td.is-warning, .table th.is-warning {
            background-color: #ffdd57;
            border-color: #ffdd57;
            color: rgba(0,0,0,.7)
        }

        .table td.is-danger, .table th.is-danger {
            background-color: #ff3860;
            border-color: #ff3860;
            color: #fff
        }

        .table td.is-primary-2, .table th.is-primary-2 {
            background-color: #fa622f;
            border-color: #fa622f;
            color: #fff
        }

        .table td.is-primary-3, .table th.is-primary-3 {
            background-color: #e65322;
            border-color: #e65322;
            color: #fff
        }

        .table td.is-primary-4, .table th.is-primary-4 {
            background-color: #e85c2d;
            border-color: #e85c2d;
            color: #fff
        }

        .table td.is-primary-5, .table th.is-primary-5 {
            background-color: #e35728;
            border-color: #e35728;
            color: #fff
        }

        .table td.is-primary-6, .table th.is-primary-6 {
            background-color: #e95220;
            border-color: #e95220;
            color: #fff
        }

        .table td.is-primary-7, .table th.is-primary-7 {
            background-color: #fafafa;
            border-color: #fafafa;
            color: rgba(0,0,0,.7)
        }

        .table td.is-primary-light, .table th.is-primary-light {
            background-color: #f9f9f9;
            border-color: #f9f9f9;
            color: rgba(0,0,0,.7)
        }

        .table td.is-secondary, .table th.is-secondary {
            background-color: #22262a;
            border-color: #22262a;
            color: #fff
        }

        .table td.is-secondary-2, .table th.is-secondary-2 {
            background-color: #2d3238;
            border-color: #2d3238;
            color: #fff
        }

        .table td.is-secondary-3, .table th.is-secondary-3 {
            background-color: #363a3f;
            border-color: #363a3f;
            color: #fff
        }

        .table td.is-secondary-4, .table th.is-secondary-4 {
            background-color: #414549;
            border-color: #414549;
            color: #fff
        }

        .table td.is-secondary-5, .table th.is-secondary-5 {
            background-color: #545659;
            border-color: #545659;
            color: #fff
        }

        .table td.is-tertiary, .table th.is-tertiary {
            background-color: #a6a6a6;
            border-color: #a6a6a6;
            color: #fff
        }

        .table td.is-tertiary-2, .table th.is-tertiary-2 {
            background-color: #d8d8d8;
            border-color: #d8d8d8;
            color: rgba(0,0,0,.7)
        }

        .table td.is-tertiary-3, .table th.is-tertiary-3 {
            background-color: #d7d6d3;
            border-color: #d7d6d3;
            color: rgba(0,0,0,.7)
        }

        .table td.is-tertiary-4, .table th.is-tertiary-4 {
            background-color: #afafaf;
            border-color: #afafaf;
            color: #fff
        }

        .table td.is-tertiary-5, .table th.is-tertiary-5 {
            background-color: #eaeaea;
            border-color: #eaeaea;
            color: rgba(0,0,0,.7)
        }

        .table td.is-tertiary-6, .table th.is-tertiary-6 {
            background-color: #b0b0b0;
            border-color: #b0b0b0;
            color: #fff
        }

        .table td.is-tertiary-7, .table th.is-tertiary-7 {
            background-color: #969696;
            border-color: #969696;
            color: #fff
        }

        .table td.is-tertiary-8, .table th.is-tertiary-8 {
            background-color: #999;
            border-color: #999;
            color: #fff
        }

        .table td.is-tertiary-9, .table th.is-tertiary-9 {
            background-color: #f5f5f5;
            border-color: #f5f5f5;
            color: rgba(0,0,0,.7)
        }

        .table td.is-narrow, .table th.is-narrow {
            white-space: nowrap;
            width: 1%
        }

        .table td.is-selected, .table th.is-selected {
            background-color: #9fbf43;
            color: #fff
        }

            .table td.is-selected a, .table td.is-selected strong, .table th.is-selected a, .table th.is-selected strong {
                color: currentColor
            }

    .table th {
        color: #363636;
        text-align: left
    }

    .table tr.is-selected {
        background-color: #9fbf43;
        color: #fff
    }

        .table tr.is-selected a, .table tr.is-selected strong {
            color: currentColor
        }

        .table tr.is-selected td, .table tr.is-selected th {
            border-color: #fff;
            color: currentColor
        }

    .table thead td, .table thead th {
        border-width: 0 0 2px;
        color: #363636
    }

    .table tfoot td, .table tfoot th {
        border-width: 2px 0 0;
        color: #363636
    }

    .table tbody tr:last-child td, .table tbody tr:last-child th {
        border-bottom-width: 0
    }

    .table.is-bordered td, .table.is-bordered th {
        border-width: 1px
    }

    .table.is-bordered tr:last-child td, .table.is-bordered tr:last-child th {
        border-bottom-width: 1px
    }

    .table.is-fullwidth {
        width: 100%
    }

    .table.is-hoverable tbody tr:not(.is-selected):hover {
        background-color: #fafafa
    }

    .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover {
        background-color: #f5f5f5
    }

    .table.is-narrow td, .table.is-narrow th {
        padding: .25em .5em
    }

    .table.is-striped tbody tr:not(.is-selected):nth-child(even) {
        background-color: #fafafa
    }

.table-container {
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    overflow-y: hidden;
    max-width: 100%
}

.tags {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    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
}

    .tags .tag {
        margin-bottom: .5rem
    }

        .tags .tag:not(:last-child) {
            margin-right: .5rem
        }

    .tags:last-child {
        margin-bottom: -.5rem
    }

    .tags:not(:last-child) {
        margin-bottom: 1rem
    }

    .tags.has-addons .tag {
        margin-right: 0
    }

        .tags.has-addons .tag:not(:first-child) {
            border-bottom-left-radius: 0;
            border-top-left-radius: 0
        }

        .tags.has-addons .tag:not(:last-child) {
            border-bottom-right-radius: 0;
            border-top-right-radius: 0
        }

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

        .tags.is-centered .tag {
            margin-right: .25rem;
            margin-left: .25rem
        }

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

        .tags.is-right .tag:not(:first-child) {
            margin-left: .5rem
        }

        .tags.is-right .tag:not(:last-child) {
            margin-right: 0
        }

.tag:not(body) {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 0;
    color: #414549;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: .75rem;
    height: 2em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1.5;
    padding-left: .75em;
    padding-right: .75em;
    white-space: nowrap
}

    .tag:not(body) .delete {
        margin-left: .25rem;
        margin-right: -.375rem
    }

    .tag:not(body).is-white {
        background-color: #fff;
        color: #0a0a0a
    }

    .tag:not(body).is-black {
        background-color: #0a0a0a;
        color: #fff
    }

    .tag:not(body).is-light {
        background-color: #f5f5f5;
        color: #363636
    }

    .tag:not(body).is-dark {
        background-color: #363636;
        color: #f5f5f5
    }

    .tag:not(body).is-primary {
        background-color: #9fbf43;
        color: #fff
    }

    .tag:not(body).is-link {
        background-color: #9fbf43;
        color: #fff
    }

    .tag:not(body).is-info {
        background-color: #209cee;
        color: #fff
    }

    .tag:not(body).is-success {
        background-color: #23d160;
        color: #fff
    }

    .tag:not(body).is-warning {
        background-color: #ffdd57;
        color: rgba(0,0,0,.7)
    }

    .tag:not(body).is-danger {
        background-color: #ff3860;
        color: #fff
    }

    .tag:not(body).is-primary-2 {
        background-color: #fa622f;
        color: #fff
    }

    .tag:not(body).is-primary-3 {
        background-color: #e65322;
        color: #fff
    }

    .tag:not(body).is-primary-4 {
        background-color: #e85c2d;
        color: #fff
    }

    .tag:not(body).is-primary-5 {
        background-color: #e35728;
        color: #fff
    }

    .tag:not(body).is-primary-6 {
        background-color: #e95220;
        color: #fff
    }

    .tag:not(body).is-primary-7 {
        background-color: #fafafa;
        color: rgba(0,0,0,.7)
    }

    .tag:not(body).is-primary-light {
        background-color: #f9f9f9;
        color: rgba(0,0,0,.7)
    }

    .tag:not(body).is-secondary {
        background-color: #22262a;
        color: #fff
    }

    .tag:not(body).is-secondary-2 {
        background-color: #2d3238;
        color: #fff
    }

    .tag:not(body).is-secondary-3 {
        background-color: #363a3f;
        color: #fff
    }

    .tag:not(body).is-secondary-4 {
        background-color: #414549;
        color: #fff
    }

    .tag:not(body).is-secondary-5 {
        background-color: #545659;
        color: #fff
    }

    .tag:not(body).is-tertiary {
        background-color: #a6a6a6;
        color: #fff
    }

    .tag:not(body).is-tertiary-2 {
        background-color: #d8d8d8;
        color: rgba(0,0,0,.7)
    }

    .tag:not(body).is-tertiary-3 {
        background-color: #d7d6d3;
        color: rgba(0,0,0,.7)
    }

    .tag:not(body).is-tertiary-4 {
        background-color: #afafaf;
        color: #fff
    }

    .tag:not(body).is-tertiary-5 {
        background-color: #eaeaea;
        color: rgba(0,0,0,.7)
    }

    .tag:not(body).is-tertiary-6 {
        background-color: #b0b0b0;
        color: #fff
    }

    .tag:not(body).is-tertiary-7 {
        background-color: #969696;
        color: #fff
    }

    .tag:not(body).is-tertiary-8 {
        background-color: #999;
        color: #fff
    }

    .tag:not(body).is-tertiary-9 {
        background-color: #f5f5f5;
        color: rgba(0,0,0,.7)
    }

    .tag:not(body).is-medium {
        font-size: 1rem
    }

    .tag:not(body).is-large {
        font-size: 1.25rem
    }

    .tag:not(body) .icon:first-child:not(:last-child) {
        margin-left: -.375em;
        margin-right: .1875em
    }

    .tag:not(body) .icon:last-child:not(:first-child) {
        margin-left: .1875em;
        margin-right: -.375em
    }

    .tag:not(body) .icon:first-child:last-child {
        margin-left: -.375em;
        margin-right: -.375em
    }

    .tag:not(body).is-delete {
        margin-left: 1px;
        padding: 0;
        position: relative;
        width: 2em
    }

        .tag:not(body).is-delete::after, .tag:not(body).is-delete::before {
            background-color: currentColor;
            content: "";
            display: block;
            left: 50%;
            position: absolute;
            top: 50%;
            -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
            transform: translateX(-50%) translateY(-50%) rotate(45deg);
            -webkit-transform-origin: center center;
            transform-origin: center center
        }

        .tag:not(body).is-delete::before {
            height: 1px;
            width: 50%
        }

        .tag:not(body).is-delete::after {
            height: 50%;
            width: 1px
        }

        .tag:not(body).is-delete:focus, .tag:not(body).is-delete:hover {
            background-color: #e8e8e8
        }

        .tag:not(body).is-delete:active {
            background-color: #dbdbdb
        }

    .tag:not(body).is-rounded {
        border-radius: 290486px
    }

a.tag:hover {
    text-decoration: underline
}

.subtitle, .title {
    word-break: break-word
}

    .subtitle em, .subtitle span, .title em, .title span {
        font-weight: inherit
    }

    .subtitle sub, .title sub {
        font-size: .75em
    }

    .subtitle sup, .title sup {
        font-size: .75em
    }

    .subtitle .tag, .title .tag {
        vertical-align: middle
    }

.title {
    color: #363636;
    font-size: 2rem;
   
    line-height: 1.125
}

    .title strong {
        color: inherit;
        font-weight: inherit
    }

    .title + .highlight {
        margin-top: -.75rem
    }

    .title:not(.is-spaced) + .subtitle {
        margin-top: -1.25rem
    }

    .title.is-1 {
        font-size: 3rem
    }

    .title.is-2 {
        font-size: 2.5rem
    }

    .title.is-3 {
        font-size: 2rem
    }

    .title.is-4 {
        font-size: 1.5rem
    }

    .title.is-5 {
        font-size: 1.25rem
    }

    .title.is-6 {
        font-size: 1rem
    }

    .title.is-7 {
        font-size: .75rem
    }

.subtitle {
    color: #4a4a4a;
    font-size: 1.25rem;
    
    line-height: 1.25
}

    .subtitle strong {
        color: #363636;
        font-weight: 600
    }

    .subtitle:not(.is-spaced) + .title {
        margin-top: -1.25rem
    }

    .subtitle.is-1 {
        font-size: 3rem
    }

    .subtitle.is-2 {
        font-size: 2.5rem
    }

    .subtitle.is-3 {
        font-size: 2rem
    }

    .subtitle.is-4 {
        font-size: 1.5rem
    }

    .subtitle.is-5 {
        font-size: 1.25rem
    }

    .subtitle.is-6 {
        font-size: 1rem
    }

    .subtitle.is-7 {
        font-size: .75rem
    }

.heading {
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase
}

.highlight {
    
    max-width: 100%;
    overflow: hidden;
    padding: 0
}

    .highlight pre {
        overflow: auto;
        max-width: 100%
    }

.number {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 290486px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 1.25rem;
    height: 2em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 1.5rem;
    min-width: 2.5em;
    padding: .25rem .5rem;
    text-align: center;
    vertical-align: top
}

.breadcrumb {
    font-size: 1rem;
    white-space: nowrap
}

    .breadcrumb a {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: #e65322;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0 .75em
    }

        .breadcrumb a:hover {
            color: #363a3f
        }

    .breadcrumb li {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

        .breadcrumb li:first-child a {
            padding-left: 0
        }

        .breadcrumb li.is-active a {
            color: #545659;
            cursor: default;
            pointer-events: none
        }

        .breadcrumb li + li::before {
            color: #a6a6a6;
            content: "\0002f"
        }

    .breadcrumb ol, .breadcrumb ul {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        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
    }

    .breadcrumb .icon:first-child {
        margin-right: .5em
    }

    .breadcrumb .icon:last-child {
        margin-left: .5em
    }

    .breadcrumb.is-centered ol, .breadcrumb.is-centered ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .breadcrumb.is-right ol, .breadcrumb.is-right ul {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .breadcrumb.is-small {
        font-size: .75rem
    }

    .breadcrumb.is-medium {
        font-size: 1.25rem
    }

    .breadcrumb.is-large {
        font-size: 1.5rem
    }

    .breadcrumb.has-arrow-separator li + li::before {
        content: "\02192"
    }

    .breadcrumb.has-bullet-separator li + li::before {
        content: "\02022"
    }

    .breadcrumb.has-dot-separator li + li::before {
        content: "\000b7"
    }

    .breadcrumb.has-succeeds-separator li + li::before {
        content: "\0227B"
    }

.card {
    background-color: #fff;
    -webkit-box-shadow: 0 2px 3px rgba(166,166,166,.1),0 0 0 1px rgba(166,166,166,.1);
    box-shadow: 0 2px 3px rgba(166,166,166,.1),0 0 0 1px rgba(166,166,166,.1);
    color: #a6a6a6;
    max-width: 100%;
    position: relative
}

.card-header {
    background-color: none;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-shadow: 0 1px 2px rgba(10,10,10,.1);
    box-shadow: 0 1px 2px rgba(10,10,10,.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.card-header-title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #363636;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    
    padding: .75rem
}

    .card-header-title.is-centered {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

.card-header-icon {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: .75rem
}

.card-image {
    display: block;
    position: relative
}

.card-content {
    background-color: none;
    padding: 1.5rem
}

.card-footer {
    background-color: none;
    border-top: 1px solid #f0f0f0;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.card-footer-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: .75rem
}

    .card-footer-item:not(:last-child) {
        border-right: 1px solid #f0f0f0
    }

.card .media:not(:last-child) {
    margin-bottom: .75rem
}

.dropdown {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    vertical-align: top
}

    .dropdown.is-active .dropdown-menu, .dropdown.is-hoverable:hover .dropdown-menu {
        display: block
    }

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

    .dropdown.is-up .dropdown-menu {
        bottom: 100%;
        padding-bottom: 4px;
        padding-top: initial;
        top: auto
    }

.dropdown-menu {
    display: none;
    left: 0;
    min-width: 12rem;
    padding-top: 4px;
    position: absolute;
    top: 100%;
    z-index: 20
}

.dropdown-content {
    background-color: #fff;
    border-radius: 4px;
    -webkit-box-shadow: 0 2px 3px rgba(166,166,166,.1),0 0 0 1px rgba(166,166,166,.1);
    box-shadow: 0 2px 3px rgba(166,166,166,.1),0 0 0 1px rgba(166,166,166,.1);
    padding-bottom: .5rem;
    padding-top: .5rem
}

.dropdown-item {
    color: #545659;
    display: block;
    font-size: .875rem;
    line-height: 1.5;
    padding: .375rem 1rem;
    position: relative
}

a.dropdown-item {
    padding-right: 3rem;
    white-space: nowrap
}

    a.dropdown-item:hover {
        background-color: #f0f0f0;
        color: #22262a
    }

    a.dropdown-item.is-active {
        background-color: #9fbf43;
        color: #fff
    }

.dropdown-divider {
    background-color: #f0f0f0;
    border: none;
    display: block;
    height: 1px;
    margin: .5rem 0
}

.level {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

    .level code {
        border-radius: 4px
    }

    .level img {
        display: inline-block;
        vertical-align: top
    }

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

        .level.is-mobile .level-left, .level.is-mobile .level-right {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex
        }

            .level.is-mobile .level-left + .level-right {
                margin-top: 0
            }

        .level.is-mobile .level-item {
            margin-right: .75rem
        }

            .level.is-mobile .level-item:not(:last-child) {
                margin-bottom: 0
            }

            .level.is-mobile .level-item:not(.is-narrow) {
                -webkit-box-flex: 1;
                -ms-flex-positive: 1;
                flex-grow: 1
            }

@media screen and (min-width:769px),print {
    .level {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

        .level > .level-item:not(.is-narrow) {
            -webkit-box-flex: 1;
            -ms-flex-positive: 1;
            flex-grow: 1
        }
}

.level-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

    .level-item .subtitle, .level-item .title {
        margin-bottom: 0
    }

@media screen and (max-width:768px) {
    .level-item:not(:last-child) {
        margin-bottom: .75rem
    }
}

.level-left, .level-right {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

    .level-left .level-item.is-flexible, .level-right .level-item.is-flexible {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

@media screen and (min-width:769px),print {
    .level-left .level-item:not(:last-child), .level-right .level-item:not(:last-child) {
        margin-right: .75rem
    }
}

.level-left {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

@media screen and (max-width:768px) {
    .level-left + .level-right {
        margin-top: 1.5rem
    }
}

@media screen and (min-width:769px),print {
    .level-left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.level-right {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

@media screen and (min-width:769px),print {
    .level-right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.media {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left
}

    .media .content:not(:last-child) {
        margin-bottom: .75rem
    }

    .media .media {
        border-top: 1px solid rgba(219,219,219,.5);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-top: .75rem
    }

        .media .media .content:not(:last-child), .media .media .control:not(:last-child) {
            margin-bottom: .5rem
        }

        .media .media .media {
            padding-top: .5rem
        }

            .media .media .media + .media {
                margin-top: .5rem
            }

    .media + .media {
        border-top: 1px solid rgba(219,219,219,.5);
        margin-top: 1rem;
        padding-top: 1rem
    }

    .media.is-large + .media {
        margin-top: 1.5rem;
        padding-top: 1.5rem
    }

.media-left, .media-right {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.media-left {
    margin-right: 1rem
}

.media-right {
    margin-left: 1rem
}

.media-content {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    text-align: left
}

.menu {
    font-size: 1rem
}

    .menu.is-small {
        font-size: .75rem
    }

    .menu.is-medium {
        font-size: 1.25rem
    }

    .menu.is-large {
        font-size: 1.5rem
    }

.menu-list {
    line-height: 1.25
}

    .menu-list a {
        border-radius: 0;
        color: #414549;
        display: block;
        padding: .5em .75em
    }

        .menu-list a:hover {
            background-color: #f0f0f0;
            color: #22262a
        }

        .menu-list a.is-active {
            background-color: #9fbf43;
            color: #fff
        }

    .menu-list li ul {
        border-left: 1px solid #f0f0f0;
        margin: .75em;
        padding-left: .75em
    }

.menu-label {
    color: #545659;
    font-size: .75em;
    letter-spacing: .1em;
    text-transform: uppercase
}

    .menu-label:not(:first-child) {
        margin-top: 1em
    }

    .menu-label:not(:last-child) {
        margin-bottom: 1em
    }

.message {
    background-color: rgba(240,240,240,.5);
    border-radius: 0;
    font-size: 1rem
}

    .message strong {
        color: currentColor
    }

    .message a:not(.button):not(.tag) {
        color: currentColor;
        text-decoration: underline
    }

    .message.is-small {
        font-size: .75rem
    }

    .message.is-medium {
        font-size: 1.25rem
    }

    .message.is-large {
        font-size: 1.5rem
    }

    .message.is-white {
        background-color: #fff
    }

        .message.is-white .message-header {
            background-color: #fff;
            color: #0a0a0a
        }

        .message.is-white .message-body {
            border-color: #fff;
            color: #4d4d4d
        }

    .message.is-black {
        background-color: #fafafa
    }

        .message.is-black .message-header {
            background-color: #0a0a0a;
            color: #fff
        }

        .message.is-black .message-body {
            border-color: #0a0a0a;
            color: #090909
        }

    .message.is-light {
        background-color: #fafafa
    }

        .message.is-light .message-header {
            background-color: #f5f5f5;
            color: #363636
        }

        .message.is-light .message-body {
            border-color: #f5f5f5;
            color: #505050
        }

    .message.is-dark {
        background-color: #fafafa
    }

        .message.is-dark .message-header {
            background-color: #363636;
            color: #f5f5f5
        }

        .message.is-dark .message-body {
            border-color: #363636;
            color: #2a2a2a
        }

    .message.is-primary {
        background-color: #fef8f5
    }

        .message.is-primary .message-header {
            background-color: #9fbf43;
            color: #fff
        }

        .message.is-primary .message-body {
            border-color: #9fbf43;
            color: #9a3513
        }

    .message.is-link {
        background-color: #fef8f5
    }

        .message.is-link .message-header {
            background-color: #9fbf43;
            color: #fff
        }

        .message.is-link .message-body {
            border-color: #9fbf43;
            color: #9a3513
        }

    .message.is-info {
        background-color: #f6fbfe
    }

        .message.is-info .message-header {
            background-color: #209cee;
            color: #fff
        }

        .message.is-info .message-body {
            border-color: #209cee;
            color: #12537e
        }

    .message.is-success {
        background-color: #f6fef9
    }

        .message.is-success .message-header {
            background-color: #23d160;
            color: #fff
        }

        .message.is-success .message-body {
            border-color: #23d160;
            color: #0e301a
        }

    .message.is-warning {
        background-color: #fffdf5
    }

        .message.is-warning .message-header {
            background-color: #ffdd57;
            color: rgba(0,0,0,.7)
        }

        .message.is-warning .message-body {
            border-color: #ffdd57;
            color: #3b3108
        }

    .message.is-danger {
        background-color: #fff5f7
    }

        .message.is-danger .message-header {
            background-color: #ff3860;
            color: #fff
        }

        .message.is-danger .message-body {
            border-color: #ff3860;
            color: #cd0930
        }

    .message.is-primary-2 {
        background-color: #fff7f5
    }

        .message.is-primary-2 .message-header {
            background-color: #fa622f;
            color: #fff
        }

        .message.is-primary-2 .message-body {
            border-color: #fa622f;
            color: #a5330d
        }

    .message.is-primary-3 {
        background-color: #fef8f6
    }

        .message.is-primary-3 .message-header {
            background-color: #e65322;
            color: #fff
        }

        .message.is-primary-3 .message-body {
            border-color: #e65322;
            color: #903618
        }

    .message.is-primary-4 {
        background-color: #fef8f6
    }

        .message.is-primary-4 .message-header {
            background-color: #e85c2d;
            color: #fff
        }

        .message.is-primary-4 .message-body {
            border-color: #e85c2d;
            color: #943819
        }

    .message.is-primary-5 {
        background-color: #fef8f6
    }

        .message.is-primary-5 .message-header {
            background-color: #e35728;
            color: #fff
        }

        .message.is-primary-5 .message-body {
            border-color: #e35728;
            color: #8f381a
        }

    .message.is-primary-6 {
        background-color: #fef8f6
    }

        .message.is-primary-6 .message-header {
            background-color: #e95220;
            color: #fff
        }

        .message.is-primary-6 .message-body {
            border-color: #e95220;
            color: #923516
        }

    .message.is-primary-7 {
        background-color: #fafafa
    }

        .message.is-primary-7 .message-header {
            background-color: #fafafa;
            color: rgba(0,0,0,.7)
        }

        .message.is-primary-7 .message-body {
            border-color: #fafafa;
            color: #4e4e4e
        }

    .message.is-primary-light {
        background-color: #fafafa
    }

        .message.is-primary-light .message-header {
            background-color: #f9f9f9;
            color: rgba(0,0,0,.7)
        }

        .message.is-primary-light .message-body {
            border-color: #f9f9f9;
            color: #4e4e4e
        }

    .message.is-secondary {
        background-color: #f9fafa
    }

        .message.is-secondary .message-header {
            background-color: #22262a;
            color: #fff
        }

        .message.is-secondary .message-body {
            border-color: #22262a;
            color: #1c1f22
        }

    .message.is-secondary-2 {
        background-color: #f9fafa
    }

        .message.is-secondary-2 .message-header {
            background-color: #2d3238;
            color: #fff
        }

        .message.is-secondary-2 .message-body {
            border-color: #2d3238;
            color: #25282c
        }

    .message.is-secondary-3 {
        background-color: #fafafa
    }

        .message.is-secondary-3 .message-header {
            background-color: #363a3f;
            color: #fff
        }

        .message.is-secondary-3 .message-body {
            border-color: #363a3f;
            color: #2b2e30
        }

    .message.is-secondary-4 {
        background-color: #fafafa
    }

        .message.is-secondary-4 .message-header {
            background-color: #414549;
            color: #fff
        }

        .message.is-secondary-4 .message-body {
            border-color: #414549;
            color: #333436
        }

    .message.is-secondary-5 {
        background-color: #fafafa
    }

        .message.is-secondary-5 .message-header {
            background-color: #545659;
            color: #fff
        }

        .message.is-secondary-5 .message-body {
            border-color: #545659;
            color: #3e3e3e
        }

    .message.is-tertiary {
        background-color: #fafafa
    }

        .message.is-tertiary .message-header {
            background-color: #a6a6a6;
            color: #fff
        }

        .message.is-tertiary .message-body {
            border-color: #a6a6a6;
            color: #565656
        }

    .message.is-tertiary-2 {
        background-color: #fafafa
    }

        .message.is-tertiary-2 .message-header {
            background-color: #d8d8d8;
            color: rgba(0,0,0,.7)
        }

        .message.is-tertiary-2 .message-body {
            border-color: #d8d8d8;
            color: #565656
        }

    .message.is-tertiary-3 {
        background-color: #fafafa
    }

        .message.is-tertiary-3 .message-header {
            background-color: #d7d6d3;
            color: rgba(0,0,0,.7)
        }

        .message.is-tertiary-3 .message-body {
            border-color: #d7d6d3;
            color: #555
        }

    .message.is-tertiary-4 {
        background-color: #fafafa
    }

        .message.is-tertiary-4 .message-header {
            background-color: #afafaf;
            color: #fff
        }

        .message.is-tertiary-4 .message-body {
            border-color: #afafaf;
            color: #575757
        }

    .message.is-tertiary-5 {
        background-color: #fafafa
    }

        .message.is-tertiary-5 .message-header {
            background-color: #eaeaea;
            color: rgba(0,0,0,.7)
        }

        .message.is-tertiary-5 .message-body {
            border-color: #eaeaea;
            color: #525252
        }

    .message.is-tertiary-6 {
        background-color: #fafafa
    }

        .message.is-tertiary-6 .message-header {
            background-color: #b0b0b0;
            color: #fff
        }

        .message.is-tertiary-6 .message-body {
            border-color: #b0b0b0;
            color: #575757
        }

    .message.is-tertiary-7 {
        background-color: #fafafa
    }

        .message.is-tertiary-7 .message-header {
            background-color: #969696;
            color: #fff
        }

        .message.is-tertiary-7 .message-body {
            border-color: #969696;
            color: #545454
        }

    .message.is-tertiary-8 {
        background-color: #fafafa
    }

        .message.is-tertiary-8 .message-header {
            background-color: #999;
            color: #fff
        }

        .message.is-tertiary-8 .message-body {
            border-color: #999;
            color: #545454
        }

    .message.is-tertiary-9 {
        background-color: #fafafa
    }

        .message.is-tertiary-9 .message-header {
            background-color: #f5f5f5;
            color: rgba(0,0,0,.7)
        }

        .message.is-tertiary-9 .message-body {
            border-color: #f5f5f5;
            color: #505050
        }

.message-header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #4a4a4a;
    border-radius: 0;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    line-height: 1.25;
    padding: .75em 1em;
    position: relative
}

    .message-header .delete {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-left: .75em
    }

    .message-header + .message-body {
        border-width: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0
    }

.message-body {
    border-color: #dbdbdb;
    border-radius: 0;
    border-style: solid;
    border-width: 0 0 0 4px;
    color: #4a4a4a;
    padding: 1.25em 1.5em
}

    .message-body code, .message-body pre {
        background-color: #fff
    }

        .message-body pre code {
            background-color: transparent
        }

.modal {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    position: fixed;
    z-index: 9999
}

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

.modal-background {
    background-color: rgba(10,10,10,.86)
}

.modal-card, .modal-content {
    margin: 0 20px;
    max-height: calc(100vh - 160px);
    overflow: auto;
    position: relative;
    width: 100%
}

@media screen and (min-width:769px),print {
    .modal-card, .modal-content {
        margin: 0 auto;
        max-height: calc(100vh - 40px);
        width: 800px
    }
}

.modal-close {
    background: 0 0;
    height: 40px;
    position: fixed;
    right: 30px;
    top: 30px;
    width: 40px
}

.modal-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: calc(100vh - 40px);
    overflow: hidden
}

.modal-card-foot, .modal-card-head {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f0f0f0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 20px;
    position: relative
}

.modal-card-head {
    border-bottom: 1px solid #f5f5f5;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.modal-card-title {
    color: #363636;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 1.5rem;
    line-height: 1
}

.modal-card-foot {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top: 1px solid #f5f5f5
}

    .modal-card-foot .button:not(:last-child) {
        margin-right: 10px
    }

.modal-card-body {
    -webkit-overflow-scrolling: touch;
    background-color: #fff;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    overflow: auto;
    padding: 20px
}

.navbar {
    background-color: #fff;
    min-height: 3.25rem;
    position: relative;
    z-index: 30
}

    .navbar.is-white {
        background-color: #fff;
        color: #0a0a0a
    }

        .navbar.is-white .navbar-brand .navbar-link, .navbar.is-white .navbar-brand > .navbar-item {
            color: #0a0a0a
        }

            .navbar.is-white .navbar-brand .navbar-link.is-active, .navbar.is-white .navbar-brand .navbar-link:hover, .navbar.is-white .navbar-brand > a.navbar-item.is-active, .navbar.is-white .navbar-brand > a.navbar-item:hover {
                background-color: #f2f2f2;
                color: #0a0a0a
            }

            .navbar.is-white .navbar-brand .navbar-link::after {
                border-color: #0a0a0a
            }

@media screen and (min-width:1088px) {
    .navbar.is-white .navbar-end .navbar-link, .navbar.is-white .navbar-end > .navbar-item, .navbar.is-white .navbar-start .navbar-link, .navbar.is-white .navbar-start > .navbar-item {
        color: #0a0a0a
    }

        .navbar.is-white .navbar-end .navbar-link.is-active, .navbar.is-white .navbar-end .navbar-link:hover, .navbar.is-white .navbar-end > a.navbar-item.is-active, .navbar.is-white .navbar-end > a.navbar-item:hover, .navbar.is-white .navbar-start .navbar-link.is-active, .navbar.is-white .navbar-start .navbar-link:hover, .navbar.is-white .navbar-start > a.navbar-item.is-active, .navbar.is-white .navbar-start > a.navbar-item:hover {
            background-color: #f2f2f2;
            color: #0a0a0a
        }

        .navbar.is-white .navbar-end .navbar-link::after, .navbar.is-white .navbar-start .navbar-link::after {
            border-color: #0a0a0a
        }

    .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #f2f2f2;
        color: #0a0a0a
    }

    .navbar.is-white .navbar-dropdown a.navbar-item.is-active {
        background-color: #fff;
        color: #0a0a0a
    }
}

.navbar.is-black {
    background-color: #0a0a0a;
    color: #fff
}

    .navbar.is-black .navbar-brand .navbar-link, .navbar.is-black .navbar-brand > .navbar-item {
        color: #fff
    }

        .navbar.is-black .navbar-brand .navbar-link.is-active, .navbar.is-black .navbar-brand .navbar-link:hover, .navbar.is-black .navbar-brand > a.navbar-item.is-active, .navbar.is-black .navbar-brand > a.navbar-item:hover {
            background-color: #000;
            color: #fff
        }

        .navbar.is-black .navbar-brand .navbar-link::after {
            border-color: #fff
        }

@media screen and (min-width:1088px) {
    .navbar.is-black .navbar-end .navbar-link, .navbar.is-black .navbar-end > .navbar-item, .navbar.is-black .navbar-start .navbar-link, .navbar.is-black .navbar-start > .navbar-item {
        color: #fff
    }

        .navbar.is-black .navbar-end .navbar-link.is-active, .navbar.is-black .navbar-end .navbar-link:hover, .navbar.is-black .navbar-end > a.navbar-item.is-active, .navbar.is-black .navbar-end > a.navbar-item:hover, .navbar.is-black .navbar-start .navbar-link.is-active, .navbar.is-black .navbar-start .navbar-link:hover, .navbar.is-black .navbar-start > a.navbar-item.is-active, .navbar.is-black .navbar-start > a.navbar-item:hover {
            background-color: #000;
            color: #fff
        }

        .navbar.is-black .navbar-end .navbar-link::after, .navbar.is-black .navbar-start .navbar-link::after {
            border-color: #fff
        }

    .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #000;
        color: #fff
    }

    .navbar.is-black .navbar-dropdown a.navbar-item.is-active {
        background-color: #0a0a0a;
        color: #fff
    }
}

.navbar.is-light {
    background-color: #f5f5f5;
    color: #363636
}

    .navbar.is-light .navbar-brand .navbar-link, .navbar.is-light .navbar-brand > .navbar-item {
        color: #363636
    }

        .navbar.is-light .navbar-brand .navbar-link.is-active, .navbar.is-light .navbar-brand .navbar-link:hover, .navbar.is-light .navbar-brand > a.navbar-item.is-active, .navbar.is-light .navbar-brand > a.navbar-item:hover {
            background-color: #e8e8e8;
            color: #363636
        }

        .navbar.is-light .navbar-brand .navbar-link::after {
            border-color: #363636
        }

@media screen and (min-width:1088px) {
    .navbar.is-light .navbar-end .navbar-link, .navbar.is-light .navbar-end > .navbar-item, .navbar.is-light .navbar-start .navbar-link, .navbar.is-light .navbar-start > .navbar-item {
        color: #363636
    }

        .navbar.is-light .navbar-end .navbar-link.is-active, .navbar.is-light .navbar-end .navbar-link:hover, .navbar.is-light .navbar-end > a.navbar-item.is-active, .navbar.is-light .navbar-end > a.navbar-item:hover, .navbar.is-light .navbar-start .navbar-link.is-active, .navbar.is-light .navbar-start .navbar-link:hover, .navbar.is-light .navbar-start > a.navbar-item.is-active, .navbar.is-light .navbar-start > a.navbar-item:hover {
            background-color: #e8e8e8;
            color: #363636
        }

        .navbar.is-light .navbar-end .navbar-link::after, .navbar.is-light .navbar-start .navbar-link::after {
            border-color: #363636
        }

    .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #e8e8e8;
        color: #363636
    }

    .navbar.is-light .navbar-dropdown a.navbar-item.is-active {
        background-color: #f5f5f5;
        color: #363636
    }
}

.navbar.is-dark {
    background-color: #363636;
    color: #f5f5f5
}

    .navbar.is-dark .navbar-brand .navbar-link, .navbar.is-dark .navbar-brand > .navbar-item {
        color: #f5f5f5
    }

        .navbar.is-dark .navbar-brand .navbar-link.is-active, .navbar.is-dark .navbar-brand .navbar-link:hover, .navbar.is-dark .navbar-brand > a.navbar-item.is-active, .navbar.is-dark .navbar-brand > a.navbar-item:hover {
            background-color: #292929;
            color: #f5f5f5
        }

        .navbar.is-dark .navbar-brand .navbar-link::after {
            border-color: #f5f5f5
        }

@media screen and (min-width:1088px) {
    .navbar.is-dark .navbar-end .navbar-link, .navbar.is-dark .navbar-end > .navbar-item, .navbar.is-dark .navbar-start .navbar-link, .navbar.is-dark .navbar-start > .navbar-item {
        color: #f5f5f5
    }

        .navbar.is-dark .navbar-end .navbar-link.is-active, .navbar.is-dark .navbar-end .navbar-link:hover, .navbar.is-dark .navbar-end > a.navbar-item.is-active, .navbar.is-dark .navbar-end > a.navbar-item:hover, .navbar.is-dark .navbar-start .navbar-link.is-active, .navbar.is-dark .navbar-start .navbar-link:hover, .navbar.is-dark .navbar-start > a.navbar-item.is-active, .navbar.is-dark .navbar-start > a.navbar-item:hover {
            background-color: #292929;
            color: #f5f5f5
        }

        .navbar.is-dark .navbar-end .navbar-link::after, .navbar.is-dark .navbar-start .navbar-link::after {
            border-color: #f5f5f5
        }

    .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #292929;
        color: #f5f5f5
    }

    .navbar.is-dark .navbar-dropdown a.navbar-item.is-active {
        background-color: #363636;
        color: #f5f5f5
    }
}

.navbar.is-primary {
    background-color: #9fbf43;
    color: #fff
}

    .navbar.is-primary .navbar-brand .navbar-link, .navbar.is-primary .navbar-brand > .navbar-item {
        color: #fff
    }

        .navbar.is-primary .navbar-brand .navbar-link.is-active, .navbar.is-primary .navbar-brand .navbar-link:hover, .navbar.is-primary .navbar-brand > a.navbar-item.is-active, .navbar.is-primary .navbar-brand > a.navbar-item:hover {
            background-color: #ee4911;
            color: #fff
        }

        .navbar.is-primary .navbar-brand .navbar-link::after {
            border-color: #fff
        }

@media screen and (min-width:1088px) {
    .navbar.is-primary .navbar-end .navbar-link, .navbar.is-primary .navbar-end > .navbar-item, .navbar.is-primary .navbar-start .navbar-link, .navbar.is-primary .navbar-start > .navbar-item {
        color: #fff
    }

        .navbar.is-primary .navbar-end .navbar-link.is-active, .navbar.is-primary .navbar-end .navbar-link:hover, .navbar.is-primary .navbar-end > a.navbar-item.is-active, .navbar.is-primary .navbar-end > a.navbar-item:hover, .navbar.is-primary .navbar-start .navbar-link.is-active, .navbar.is-primary .navbar-start .navbar-link:hover, .navbar.is-primary .navbar-start > a.navbar-item.is-active, .navbar.is-primary .navbar-start > a.navbar-item:hover {
            background-color: #ee4911;
            color: #fff
        }

        .navbar.is-primary .navbar-end .navbar-link::after, .navbar.is-primary .navbar-start .navbar-link::after {
            border-color: #fff
        }

    .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #ee4911;
        color: #fff
    }

    .navbar.is-primary .navbar-dropdown a.navbar-item.is-active {
        background-color: #9fbf43;
        color: #fff
    }
}

.navbar.is-link {
    background-color: #9fbf43;
    color: #fff
}

    .navbar.is-link .navbar-brand .navbar-link, .navbar.is-link .navbar-brand > .navbar-item {
        color: #fff
    }

        .navbar.is-link .navbar-brand .navbar-link.is-active, .navbar.is-link .navbar-brand .navbar-link:hover, .navbar.is-link .navbar-brand > a.navbar-item.is-active, .navbar.is-link .navbar-brand > a.navbar-item:hover {
            background-color: #ee4911;
            color: #fff
        }

        .navbar.is-link .navbar-brand .navbar-link::after {
            border-color: #fff
        }

@media screen and (min-width:1088px) {
    .navbar.is-link .navbar-end .navbar-link, .navbar.is-link .navbar-end > .navbar-item, .navbar.is-link .navbar-start .navbar-link, .navbar.is-link .navbar-start > .navbar-item {
        color: #fff
    }

        .navbar.is-link .navbar-end .navbar-link.is-active, .navbar.is-link .navbar-end .navbar-link:hover, .navbar.is-link .navbar-end > a.navbar-item.is-active, .navbar.is-link .navbar-end > a.navbar-item:hover, .navbar.is-link .navbar-start .navbar-link.is-active, .navbar.is-link .navbar-start .navbar-link:hover, .navbar.is-link .navbar-start > a.navbar-item.is-active, .navbar.is-link .navbar-start > a.navbar-item:hover {
            background-color: #ee4911;
            color: #fff
        }

        .navbar.is-link .navbar-end .navbar-link::after, .navbar.is-link .navbar-start .navbar-link::after {
            border-color: #fff
        }

    .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #ee4911;
        color: #fff
    }

    .navbar.is-link .navbar-dropdown a.navbar-item.is-active {
        background-color: #9fbf43;
        color: #fff
    }
}

.navbar.is-info {
    background-color: #209cee;
    color: #fff
}

    .navbar.is-info .navbar-brand .navbar-link, .navbar.is-info .navbar-brand > .navbar-item {
        color: #fff
    }

        .navbar.is-info .navbar-brand .navbar-link.is-active, .navbar.is-info .navbar-brand .navbar-link:hover, .navbar.is-info .navbar-brand > a.navbar-item.is-active, .navbar.is-info .navbar-brand > a.navbar-item:hover {
            background-color: #118fe4;
            color: #fff
        }

        .navbar.is-info .navbar-brand .navbar-link::after {
            border-color: #fff
        }

@media screen and (min-width:1088px) {
    .navbar.is-info .navbar-end .navbar-link, .navbar.is-info .navbar-end > .navbar-item, .navbar.is-info .navbar-start .navbar-link, .navbar.is-info .navbar-start > .navbar-item {
        color: #fff
    }

        .navbar.is-info .navbar-end .navbar-link.is-active, .navbar.is-info .navbar-end .navbar-link:hover, .navbar.is-info .navbar-end > a.navbar-item.is-active, .navbar.is-info .navbar-end > a.navbar-item:hover, .navbar.is-info .navbar-start .navbar-link.is-active, .navbar.is-info .navbar-start .navbar-link:hover, .navbar.is-info .navbar-start > a.navbar-item.is-active, .navbar.is-info .navbar-start > a.navbar-item:hover {
            background-color: #118fe4;
            color: #fff
        }

        .navbar.is-info .navbar-end .navbar-link::after, .navbar.is-info .navbar-start .navbar-link::after {
            border-color: #fff
        }

    .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #118fe4;
        color: #fff
    }

    .navbar.is-info .navbar-dropdown a.navbar-item.is-active {
        background-color: #209cee;
        color: #fff
    }
}

.navbar.is-success {
    background-color: #23d160;
    color: #fff
}

    .navbar.is-success .navbar-brand .navbar-link, .navbar.is-success .navbar-brand > .navbar-item {
        color: #fff
    }

        .navbar.is-success .navbar-brand .navbar-link.is-active, .navbar.is-success .navbar-brand .navbar-link:hover, .navbar.is-success .navbar-brand > a.navbar-item.is-active, .navbar.is-success .navbar-brand > a.navbar-item:hover {
            background-color: #20bc56;
            color: #fff
        }

        .navbar.is-success .navbar-brand .navbar-link::after {
            border-color: #fff
        }

@media screen and (min-width:1088px) {
    .navbar.is-success .navbar-end .navbar-link, .navbar.is-success .navbar-end > .navbar-item, .navbar.is-success .navbar-start .navbar-link, .navbar.is-success .navbar-start > .navbar-item {
        color: #fff
    }

        .navbar.is-success .navbar-end .navbar-link.is-active, .navbar.is-success .navbar-end .navbar-link:hover, .navbar.is-success .navbar-end > a.navbar-item.is-active, .navbar.is-success .navbar-end > a.navbar-item:hover, .navbar.is-success .navbar-start .navbar-link.is-active, .navbar.is-success .navbar-start .navbar-link:hover, .navbar.is-success .navbar-start > a.navbar-item.is-active, .navbar.is-success .navbar-start > a.navbar-item:hover {
            background-color: #20bc56;
            color: #fff
        }

        .navbar.is-success .navbar-end .navbar-link::after, .navbar.is-success .navbar-start .navbar-link::after {
            border-color: #fff
        }

    .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #20bc56;
        color: #fff
    }

    .navbar.is-success .navbar-dropdown a.navbar-item.is-active {
        background-color: #23d160;
        color: #fff
    }
}

.navbar.is-warning {
    background-color: #ffdd57;
    color: rgba(0,0,0,.7)
}

    .navbar.is-warning .navbar-brand .navbar-link, .navbar.is-warning .navbar-brand > .navbar-item {
        color: rgba(0,0,0,.7)
    }

        .navbar.is-warning .navbar-brand .navbar-link.is-active, .navbar.is-warning .navbar-brand .navbar-link:hover, .navbar.is-warning .navbar-brand > a.navbar-item.is-active, .navbar.is-warning .navbar-brand > a.navbar-item:hover {
            background-color: #ffd83d;
            color: rgba(0,0,0,.7)
        }

        .navbar.is-warning .navbar-brand .navbar-link::after {
            border-color: rgba(0,0,0,.7)
        }

@media screen and (min-width:1088px) {
    .navbar.is-warning .navbar-end .navbar-link, .navbar.is-warning .navbar-end > .navbar-item, .navbar.is-warning .navbar-start .navbar-link, .navbar.is-warning .navbar-start > .navbar-item {
        color: rgba(0,0,0,.7)
    }

        .navbar.is-warning .navbar-end .navbar-link.is-active, .navbar.is-warning .navbar-end .navbar-link:hover, .navbar.is-warning .navbar-end > a.navbar-item.is-active, .navbar.is-warning .navbar-end > a.navbar-item:hover, .navbar.is-warning .navbar-start .navbar-link.is-active, .navbar.is-warning .navbar-start .navbar-link:hover, .navbar.is-warning .navbar-start > a.navbar-item.is-active, .navbar.is-warning .navbar-start > a.navbar-item:hover {
            background-color: #ffd83d;
            color: rgba(0,0,0,.7)
        }

        .navbar.is-warning .navbar-end .navbar-link::after, .navbar.is-warning .navbar-start .navbar-link::after {
            border-color: rgba(0,0,0,.7)
        }

    .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #ffd83d;
        color: rgba(0,0,0,.7)
    }

    .navbar.is-warning .navbar-dropdown a.navbar-item.is-active {
        background-color: #ffdd57;
        color: rgba(0,0,0,.7)
    }
}

.navbar.is-danger {
    background-color: #ff3860;
    color: #fff
}

    .navbar.is-danger .navbar-brand .navbar-link, .navbar.is-danger .navbar-brand > .navbar-item {
        color: #fff
    }

        .navbar.is-danger .navbar-brand .navbar-link.is-active, .navbar.is-danger .navbar-brand .navbar-link:hover, .navbar.is-danger .navbar-brand > a.navbar-item.is-active, .navbar.is-danger .navbar-brand > a.navbar-item:hover {
            background-color: #ff1f4b;
            color: #fff
        }

        .navbar.is-danger .navbar-brand .navbar-link::after {
            border-color: #fff
        }

@media screen and (min-width:1088px) {
    .navbar.is-danger .navbar-end .navbar-link, .navbar.is-danger .navbar-end > .navbar-item, .navbar.is-danger .navbar-start .navbar-link, .navbar.is-danger .navbar-start > .navbar-item {
        color: #fff
    }

        .navbar.is-danger .navbar-end .navbar-link.is-active, .navbar.is-danger .navbar-end .navbar-link:hover, .navbar.is-danger .navbar-end > a.navbar-item.is-active, .navbar.is-danger .navbar-end > a.navbar-item:hover, .navbar.is-danger .navbar-start .navbar-link.is-active, .navbar.is-danger .navbar-start .navbar-link:hover, .navbar.is-danger .navbar-start > a.navbar-item.is-active, .navbar.is-danger .navbar-start > a.navbar-item:hover {
            background-color: #ff1f4b;
            color: #fff
        }

        .navbar.is-danger .navbar-end .navbar-link::after, .navbar.is-danger .navbar-start .navbar-link::after {
            border-color: #fff
        }

    .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #ff1f4b;
        color: #fff
    }

    .navbar.is-danger .navbar-dropdown a.navbar-item.is-active {
        background-color: #ff3860;
        color: #fff
    }
}

.navbar.is-primary-2 {
    background-color: #fa622f;
    color: #fff
}

    .navbar.is-primary-2 .navbar-brand .navbar-link, .navbar.is-primary-2 .navbar-brand > .navbar-item {
        color: #fff
    }

        .navbar.is-primary-2 .navbar-brand .navbar-link.is-active, .navbar.is-primary-2 .navbar-brand .navbar-link:hover, .navbar.is-primary-2 .navbar-brand > a.navbar-item.is-active, .navbar.is-primary-2 .navbar-brand > a.navbar-item:hover {
            background-color: #f94f16;
            color: #fff
        }

        .navbar.is-primary-2 .navbar-brand .navbar-link::after {
            border-color: #fff
        }

@media screen and (min-width:1088px) {
    .navbar.is-primary-2 .navbar-end .navbar-link, .navbar.is-primary-2 .navbar-end > .navbar-item, .navbar.is-primary-2 .navbar-start .navbar-link, .navbar.is-primary-2 .navbar-start > .navbar-item {
        color: #fff
    }

        .navbar.is-primary-2 .navbar-end .navbar-link.is-active, .navbar.is-primary-2 .navbar-end .navbar-link:hover, .navbar.is-primary-2 .navbar-end > a.navbar-item.is-active, .navbar.is-primary-2 .navbar-end > a.navbar-item:hover, .navbar.is-primary-2 .navbar-start .navbar-link.is-active, .navbar.is-primary-2 .navbar-start .navbar-link:hover, .navbar.is-primary-2 .navbar-start > a.navbar-item.is-active, .navbar.is-primary-2 .navbar-start > a.navbar-item:hover {
            background-color: #f94f16;
            color: #fff
        }

        .navbar.is-primary-2 .navbar-end .navbar-link::after, .navbar.is-primary-2 .navbar-start .navbar-link::after {
            border-color: #fff
        }

    .navbar.is-primary-2 .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-primary-2 .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #f94f16;
        color: #fff
    }

    .navbar.is-primary-2 .navbar-dropdown a.navbar-item.is-active {
        background-color: #fa622f;
        color: #fff
    }
}

.navbar.is-primary-3 {
    background-color: #e65322;
    color: #fff
}

    .navbar.is-primary-3 .navbar-brand .navbar-link, .navbar.is-primary-3 .navbar-brand > .navbar-item {
        color: #fff
    }

        .navbar.is-primary-3 .navbar-brand .navbar-link.is-active, .navbar.is-primary-3 .navbar-brand .navbar-link:hover, .navbar.is-primary-3 .navbar-brand > a.navbar-item.is-active, .navbar.is-primary-3 .navbar-brand > a.navbar-item:hover {
            background-color: #d64818;
            color: #fff
        }

        .navbar.is-primary-3 .navbar-brand .navbar-link::after {
            border-color: #fff
        }

@media screen and (min-width:1088px) {
    .navbar.is-primary-3 .navbar-end .navbar-link, .navbar.is-primary-3 .navbar-end > .navbar-item, .navbar.is-primary-3 .navbar-start .navbar-link, .navbar.is-primary-3 .navbar-start > .navbar-item {
        color: #fff
    }

        .navbar.is-primary-3 .navbar-end .navbar-link.is-active, .navbar.is-primary-3 .navbar-end .navbar-link:hover, .navbar.is-primary-3 .navbar-end > a.navbar-item.is-active, .navbar.is-primary-3 .navbar-end > a.navbar-item:hover, .navbar.is-primary-3 .navbar-start .navbar-link.is-active, .navbar.is-primary-3 .navbar-start .navbar-link:hover, .navbar.is-primary-3 .navbar-start > a.navbar-item.is-active, .navbar.is-primary-3 .navbar-start > a.navbar-item:hover {
            background-color: #d64818;
            color: #fff
        }

        .navbar.is-primary-3 .navbar-end .navbar-link::after, .navbar.is-primary-3 .navbar-start .navbar-link::after {
            border-color: #fff
        }

    .navbar.is-primary-3 .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-primary-3 .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #d64818;
        color: #fff
    }

    .navbar.is-primary-3 .navbar-dropdown a.navbar-item.is-active {
        background-color: #e65322;
        color: #fff
    }
}

.navbar.is-primary-4 {
    background-color: #e85c2d;
    color: #fff
}

    .navbar.is-primary-4 .navbar-brand .navbar-link, .navbar.is-primary-4 .navbar-brand > .navbar-item {
        color: #fff
    }

        .navbar.is-primary-4 .navbar-brand .navbar-link.is-active, .navbar.is-primary-4 .navbar-brand .navbar-link:hover, .navbar.is-primary-4 .navbar-brand > a.navbar-item.is-active, .navbar.is-primary-4 .navbar-brand > a.navbar-item:hover {
            background-color: #e34c19;
            color: #fff
        }

        .navbar.is-primary-4 .navbar-brand .navbar-link::after {
            border-color: #fff
        }

@media screen and (min-width:1088px) {
    .navbar.is-primary-4 .navbar-end .navbar-link, .navbar.is-primary-4 .navbar-end > .navbar-item, .navbar.is-primary-4 .navbar-start .navbar-link, .navbar.is-primary-4 .navbar-start > .navbar-item {
        color: #fff
    }

        .navbar.is-primary-4 .navbar-end .navbar-link.is-active, .navbar.is-primary-4 .navbar-end .navbar-link:hover, .navbar.is-primary-4 .navbar-end > a.navbar-item.is-active, .navbar.is-primary-4 .navbar-end > a.navbar-item:hover, .navbar.is-primary-4 .navbar-start .navbar-link.is-active, .navbar.is-primary-4 .navbar-start .navbar-link:hover, .navbar.is-primary-4 .navbar-start > a.navbar-item.is-active, .navbar.is-primary-4 .navbar-start > a.navbar-item:hover {
            background-color: #e34c19;
            color: #fff
        }

        .navbar.is-primary-4 .navbar-end .navbar-link::after, .navbar.is-primary-4 .navbar-start .navbar-link::after {
            border-color: #fff
        }

    .navbar.is-primary-4 .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-primary-4 .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #e34c19;
        color: #fff
    }

    .navbar.is-primary-4 .navbar-dropdown a.navbar-item.is-active {
        background-color: #e85c2d;
        color: #fff
    }
}

.navbar.is-primary-5 {
    background-color: #e35728;
    color: #fff
}

    .navbar.is-primary-5 .navbar-brand .navbar-link, .navbar.is-primary-5 .navbar-brand > .navbar-item {
        color: #fff
    }

        .navbar.is-primary-5 .navbar-brand .navbar-link.is-active, .navbar.is-primary-5 .navbar-brand .navbar-link:hover, .navbar.is-primary-5 .navbar-brand > a.navbar-item.is-active, .navbar.is-primary-5 .navbar-brand > a.navbar-item:hover {
            background-color: #d64b1c;
            color: #fff
        }

        .navbar.is-primary-5 .navbar-brand .navbar-link::after {
            border-color: #fff
        }

@media screen and (min-width:1088px) {
    .navbar.is-primary-5 .navbar-end .navbar-link, .navbar.is-primary-5 .navbar-end > .navbar-item, .navbar.is-primary-5 .navbar-start .navbar-link, .navbar.is-primary-5 .navbar-start > .navbar-item {
        color: #fff
    }

        .navbar.is-primary-5 .navbar-end .navbar-link.is-active, .navbar.is-primary-5 .navbar-end .navbar-link:hover, .navbar.is-primary-5 .navbar-end > a.navbar-item.is-active, .navbar.is-primary-5 .navbar-end > a.navbar-item:hover, .navbar.is-primary-5 .navbar-start .navbar-link.is-active, .navbar.is-primary-5 .navbar-start .navbar-link:hover, .navbar.is-primary-5 .navbar-start > a.navbar-item.is-active, .navbar.is-primary-5 .navbar-start > a.navbar-item:hover {
            background-color: #d64b1c;
            color: #fff
        }

        .navbar.is-primary-5 .navbar-end .navbar-link::after, .navbar.is-primary-5 .navbar-start .navbar-link::after {
            border-color: #fff
        }

    .navbar.is-primary-5 .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-primary-5 .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #d64b1c;
        color: #fff
    }

    .navbar.is-primary-5 .navbar-dropdown a.navbar-item.is-active {
        background-color: #e35728;
        color: #fff
    }
}

.navbar.is-primary-6 {
    background-color: #e95220;
    color: #fff
}

    .navbar.is-primary-6 .navbar-brand .navbar-link, .navbar.is-primary-6 .navbar-brand > .navbar-item {
        color: #fff
    }

        .navbar.is-primary-6 .navbar-brand .navbar-link.is-active, .navbar.is-primary-6 .navbar-brand .navbar-link:hover, .navbar.is-primary-6 .navbar-brand > a.navbar-item.is-active, .navbar.is-primary-6 .navbar-brand > a.navbar-item:hover {
            background-color: #da4616;
            color: #fff
        }

        .navbar.is-primary-6 .navbar-brand .navbar-link::after {
            border-color: #fff
        }

@media screen and (min-width:1088px) {
    .navbar.is-primary-6 .navbar-end .navbar-link, .navbar.is-primary-6 .navbar-end > .navbar-item, .navbar.is-primary-6 .navbar-start .navbar-link, .navbar.is-primary-6 .navbar-start > .navbar-item {
        color: #fff
    }

        .navbar.is-primary-6 .navbar-end .navbar-link.is-active, .navbar.is-primary-6 .navbar-end .navbar-link:hover, .navbar.is-primary-6 .navbar-end > a.navbar-item.is-active, .navbar.is-primary-6 .navbar-end > a.navbar-item:hover, .navbar.is-primary-6 .navbar-start .navbar-link.is-active, .navbar.is-primary-6 .navbar-start .navbar-link:hover, .navbar.is-primary-6 .navbar-start > a.navbar-item.is-active, .navbar.is-primary-6 .navbar-start > a.navbar-item:hover {
            background-color: #da4616;
            color: #fff
        }

        .navbar.is-primary-6 .navbar-end .navbar-link::after, .navbar.is-primary-6 .navbar-start .navbar-link::after {
            border-color: #fff
        }

    .navbar.is-primary-6 .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-primary-6 .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #da4616;
        color: #fff
    }

    .navbar.is-primary-6 .navbar-dropdown a.navbar-item.is-active {
        background-color: #e95220;
        color: #fff
    }
}

.navbar.is-primary-7 {
    background-color: #fafafa;
    color: rgba(0,0,0,.7)
}

    .navbar.is-primary-7 .navbar-brand .navbar-link, .navbar.is-primary-7 .navbar-brand > .navbar-item {
        color: rgba(0,0,0,.7)
    }

        .navbar.is-primary-7 .navbar-brand .navbar-link.is-active, .navbar.is-primary-7 .navbar-brand .navbar-link:hover, .navbar.is-primary-7 .navbar-brand > a.navbar-item.is-active, .navbar.is-primary-7 .navbar-brand > a.navbar-item:hover {
            background-color: #ededed;
            color: rgba(0,0,0,.7)
        }

        .navbar.is-primary-7 .navbar-brand .navbar-link::after {
            border-color: rgba(0,0,0,.7)
        }

@media screen and (min-width:1088px) {
    .navbar.is-primary-7 .navbar-end .navbar-link, .navbar.is-primary-7 .navbar-end > .navbar-item, .navbar.is-primary-7 .navbar-start .navbar-link, .navbar.is-primary-7 .navbar-start > .navbar-item {
        color: rgba(0,0,0,.7)
    }

        .navbar.is-primary-7 .navbar-end .navbar-link.is-active, .navbar.is-primary-7 .navbar-end .navbar-link:hover, .navbar.is-primary-7 .navbar-end > a.navbar-item.is-active, .navbar.is-primary-7 .navbar-end > a.navbar-item:hover, .navbar.is-primary-7 .navbar-start .navbar-link.is-active, .navbar.is-primary-7 .navbar-start .navbar-link:hover, .navbar.is-primary-7 .navbar-start > a.navbar-item.is-active, .navbar.is-primary-7 .navbar-start > a.navbar-item:hover {
            background-color: #ededed;
            color: rgba(0,0,0,.7)
        }

        .navbar.is-primary-7 .navbar-end .navbar-link::after, .navbar.is-primary-7 .navbar-start .navbar-link::after {
            border-color: rgba(0,0,0,.7)
        }

    .navbar.is-primary-7 .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-primary-7 .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #ededed;
        color: rgba(0,0,0,.7)
    }

    .navbar.is-primary-7 .navbar-dropdown a.navbar-item.is-active {
        background-color: #fafafa;
        color: rgba(0,0,0,.7)
    }
}

.navbar.is-primary-light {
    background-color: #f9f9f9;
    color: rgba(0,0,0,.7)
}

    .navbar.is-primary-light .navbar-brand .navbar-link, .navbar.is-primary-light .navbar-brand > .navbar-item {
        color: rgba(0,0,0,.7)
    }

        .navbar.is-primary-light .navbar-brand .navbar-link.is-active, .navbar.is-primary-light .navbar-brand .navbar-link:hover, .navbar.is-primary-light .navbar-brand > a.navbar-item.is-active, .navbar.is-primary-light .navbar-brand > a.navbar-item:hover {
            background-color: #ececec;
            color: rgba(0,0,0,.7)
        }

        .navbar.is-primary-light .navbar-brand .navbar-link::after {
            border-color: rgba(0,0,0,.7)
        }

@media screen and (min-width:1088px) {
    .navbar.is-primary-light .navbar-end .navbar-link, .navbar.is-primary-light .navbar-end > .navbar-item, .navbar.is-primary-light .navbar-start .navbar-link, .navbar.is-primary-light .navbar-start > .navbar-item {
        color: rgba(0,0,0,.7)
    }

        .navbar.is-primary-light .navbar-end .navbar-link.is-active, .navbar.is-primary-light .navbar-end .navbar-link:hover, .navbar.is-primary-light .navbar-end > a.navbar-item.is-active, .navbar.is-primary-light .navbar-end > a.navbar-item:hover, .navbar.is-primary-light .navbar-start .navbar-link.is-active, .navbar.is-primary-light .navbar-start .navbar-link:hover, .navbar.is-primary-light .navbar-start > a.navbar-item.is-active, .navbar.is-primary-light .navbar-start > a.navbar-item:hover {
            background-color: #ececec;
            color: rgba(0,0,0,.7)
        }

        .navbar.is-primary-light .navbar-end .navbar-link::after, .navbar.is-primary-light .navbar-start .navbar-link::after {
            border-color: rgba(0,0,0,.7)
        }

    .navbar.is-primary-light .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-primary-light .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #ececec;
        color: rgba(0,0,0,.7)
    }

    .navbar.is-primary-light .navbar-dropdown a.navbar-item.is-active {
        background-color: #f9f9f9;
        color: rgba(0,0,0,.7)
    }
}

.navbar.is-secondary {
    background-color: #22262a;
    color: #fff
}

    .navbar.is-secondary .navbar-brand .navbar-link, .navbar.is-secondary .navbar-brand > .navbar-item {
        color: #fff
    }

        .navbar.is-secondary .navbar-brand .navbar-link.is-active, .navbar.is-secondary .navbar-brand .navbar-link:hover, .navbar.is-secondary .navbar-brand > a.navbar-item.is-active, .navbar.is-secondary .navbar-brand > a.navbar-item:hover {
            background-color: #17191c;
            color: #fff
        }

        .navbar.is-secondary .navbar-brand .navbar-link::after {
            border-color: #fff
        }

@media screen and (min-width:1088px) {
    .navbar.is-secondary .navbar-end .navbar-link, .navbar.is-secondary .navbar-end > .navbar-item, .navbar.is-secondary .navbar-start .navbar-link, .navbar.is-secondary .navbar-start > .navbar-item {
        color: #fff
    }

        .navbar.is-secondary .navbar-end .navbar-link.is-active, .navbar.is-secondary .navbar-end .navbar-link:hover, .navbar.is-secondary .navbar-end > a.navbar-item.is-active, .navbar.is-secondary .navbar-end > a.navbar-item:hover, .navbar.is-secondary .navbar-start .navbar-link.is-active, .navbar.is-secondary .navbar-start .navbar-link:hover, .navbar.is-secondary .navbar-start > a.navbar-item.is-active, .navbar.is-secondary .navbar-start > a.navbar-item:hover {
            background-color: #17191c;
            color: #fff
        }

        .navbar.is-secondary .navbar-end .navbar-link::after, .navbar.is-secondary .navbar-start .navbar-link::after {
            border-color: #fff
        }

    .navbar.is-secondary .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-secondary .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #17191c;
        color: #fff
    }

    .navbar.is-secondary .navbar-dropdown a.navbar-item.is-active {
        background-color: #22262a;
        color: #fff
    }
}

.navbar.is-secondary-2 {
    background-color: #2d3238;
    color: #fff
}

    .navbar.is-secondary-2 .navbar-brand .navbar-link, .navbar.is-secondary-2 .navbar-brand > .navbar-item {
        color: #fff
    }

        .navbar.is-secondary-2 .navbar-brand .navbar-link.is-active, .navbar.is-secondary-2 .navbar-brand .navbar-link:hover, .navbar.is-secondary-2 .navbar-brand > a.navbar-item.is-active, .navbar.is-secondary-2 .navbar-brand > a.navbar-item:hover {
            background-color: #22252a;
            color: #fff
        }

        .navbar.is-secondary-2 .navbar-brand .navbar-link::after {
            border-color: #fff
        }

@media screen and (min-width:1088px) {
    .navbar.is-secondary-2 .navbar-end .navbar-link, .navbar.is-secondary-2 .navbar-end > .navbar-item, .navbar.is-secondary-2 .navbar-start .navbar-link, .navbar.is-secondary-2 .navbar-start > .navbar-item {
        color: #fff
    }

        .navbar.is-secondary-2 .navbar-end .navbar-link.is-active, .navbar.is-secondary-2 .navbar-end .navbar-link:hover, .navbar.is-secondary-2 .navbar-end > a.navbar-item.is-active, .navbar.is-secondary-2 .navbar-end > a.navbar-item:hover, .navbar.is-secondary-2 .navbar-start .navbar-link.is-active, .navbar.is-secondary-2 .navbar-start .navbar-link:hover, .navbar.is-secondary-2 .navbar-start > a.navbar-item.is-active, .navbar.is-secondary-2 .navbar-start > a.navbar-item:hover {
            background-color: #22252a;
            color: #fff
        }

        .navbar.is-secondary-2 .navbar-end .navbar-link::after, .navbar.is-secondary-2 .navbar-start .navbar-link::after {
            border-color: #fff
        }

    .navbar.is-secondary-2 .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-secondary-2 .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #22252a;
        color: #fff
    }

    .navbar.is-secondary-2 .navbar-dropdown a.navbar-item.is-active {
        background-color: #2d3238;
        color: #fff
    }
}

.navbar.is-secondary-3 {
    background-color: #363a3f;
    color: #fff
}

    .navbar.is-secondary-3 .navbar-brand .navbar-link, .navbar.is-secondary-3 .navbar-brand > .navbar-item {
        color: #fff
    }

        .navbar.is-secondary-3 .navbar-brand .navbar-link.is-active, .navbar.is-secondary-3 .navbar-brand .navbar-link:hover, .navbar.is-secondary-3 .navbar-brand > a.navbar-item.is-active, .navbar.is-secondary-3 .navbar-brand > a.navbar-item:hover {
            background-color: #2a2d31;
            color: #fff
        }

        .navbar.is-secondary-3 .navbar-brand .navbar-link::after {
            border-color: #fff
        }

@media screen and (min-width:1088px) {
    .navbar.is-secondary-3 .navbar-end .navbar-link, .navbar.is-secondary-3 .navbar-end > .navbar-item, .navbar.is-secondary-3 .navbar-start .navbar-link, .navbar.is-secondary-3 .navbar-start > .navbar-item {
        color: #fff
    }

        .navbar.is-secondary-3 .navbar-end .navbar-link.is-active, .navbar.is-secondary-3 .navbar-end .navbar-link:hover, .navbar.is-secondary-3 .navbar-end > a.navbar-item.is-active, .navbar.is-secondary-3 .navbar-end > a.navbar-item:hover, .navbar.is-secondary-3 .navbar-start .navbar-link.is-active, .navbar.is-secondary-3 .navbar-start .navbar-link:hover, .navbar.is-secondary-3 .navbar-start > a.navbar-item.is-active, .navbar.is-secondary-3 .navbar-start > a.navbar-item:hover {
            background-color: #2a2d31;
            color: #fff
        }

        .navbar.is-secondary-3 .navbar-end .navbar-link::after, .navbar.is-secondary-3 .navbar-start .navbar-link::after {
            border-color: #fff
        }

    .navbar.is-secondary-3 .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-secondary-3 .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #2a2d31;
        color: #fff
    }

    .navbar.is-secondary-3 .navbar-dropdown a.navbar-item.is-active {
        background-color: #363a3f;
        color: #fff
    }
}

.navbar.is-secondary-4 {
    background-color: #414549;
    color: #fff
}

    .navbar.is-secondary-4 .navbar-brand .navbar-link, .navbar.is-secondary-4 .navbar-brand > .navbar-item {
        color: #fff
    }

        .navbar.is-secondary-4 .navbar-brand .navbar-link.is-active, .navbar.is-secondary-4 .navbar-brand .navbar-link:hover, .navbar.is-secondary-4 .navbar-brand > a.navbar-item.is-active, .navbar.is-secondary-4 .navbar-brand > a.navbar-item:hover {
            background-color: #35383c;
            color: #fff
        }

        .navbar.is-secondary-4 .navbar-brand .navbar-link::after {
            border-color: #fff
        }

@media screen and (min-width:1088px) {
    .navbar.is-secondary-4 .navbar-end .navbar-link, .navbar.is-secondary-4 .navbar-end > .navbar-item, .navbar.is-secondary-4 .navbar-start .navbar-link, .navbar.is-secondary-4 .navbar-start > .navbar-item {
        color: #fff
    }

        .navbar.is-secondary-4 .navbar-end .navbar-link.is-active, .navbar.is-secondary-4 .navbar-end .navbar-link:hover, .navbar.is-secondary-4 .navbar-end > a.navbar-item.is-active, .navbar.is-secondary-4 .navbar-end > a.navbar-item:hover, .navbar.is-secondary-4 .navbar-start .navbar-link.is-active, .navbar.is-secondary-4 .navbar-start .navbar-link:hover, .navbar.is-secondary-4 .navbar-start > a.navbar-item.is-active, .navbar.is-secondary-4 .navbar-start > a.navbar-item:hover {
            background-color: #35383c;
            color: #fff
        }

        .navbar.is-secondary-4 .navbar-end .navbar-link::after, .navbar.is-secondary-4 .navbar-start .navbar-link::after {
            border-color: #fff
        }

    .navbar.is-secondary-4 .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-secondary-4 .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #35383c;
        color: #fff
    }

    .navbar.is-secondary-4 .navbar-dropdown a.navbar-item.is-active {
        background-color: #414549;
        color: #fff
    }
}

.navbar.is-secondary-5 {
    background-color: #545659;
    color: #fff
}

    .navbar.is-secondary-5 .navbar-brand .navbar-link, .navbar.is-secondary-5 .navbar-brand > .navbar-item {
        color: #fff
    }

        .navbar.is-secondary-5 .navbar-brand .navbar-link.is-active, .navbar.is-secondary-5 .navbar-brand .navbar-link:hover, .navbar.is-secondary-5 .navbar-brand > a.navbar-item.is-active, .navbar.is-secondary-5 .navbar-brand > a.navbar-item:hover {
            background-color: #48494c;
            color: #fff
        }

        .navbar.is-secondary-5 .navbar-brand .navbar-link::after {
            border-color: #fff
        }

@media screen and (min-width:1088px) {
    .navbar.is-secondary-5 .navbar-end .navbar-link, .navbar.is-secondary-5 .navbar-end > .navbar-item, .navbar.is-secondary-5 .navbar-start .navbar-link, .navbar.is-secondary-5 .navbar-start > .navbar-item {
        color: #fff
    }

        .navbar.is-secondary-5 .navbar-end .navbar-link.is-active, .navbar.is-secondary-5 .navbar-end .navbar-link:hover, .navbar.is-secondary-5 .navbar-end > a.navbar-item.is-active, .navbar.is-secondary-5 .navbar-end > a.navbar-item:hover, .navbar.is-secondary-5 .navbar-start .navbar-link.is-active, .navbar.is-secondary-5 .navbar-start .navbar-link:hover, .navbar.is-secondary-5 .navbar-start > a.navbar-item.is-active, .navbar.is-secondary-5 .navbar-start > a.navbar-item:hover {
            background-color: #48494c;
            color: #fff
        }

        .navbar.is-secondary-5 .navbar-end .navbar-link::after, .navbar.is-secondary-5 .navbar-start .navbar-link::after {
            border-color: #fff
        }

    .navbar.is-secondary-5 .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-secondary-5 .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #48494c;
        color: #fff
    }

    .navbar.is-secondary-5 .navbar-dropdown a.navbar-item.is-active {
        background-color: #545659;
        color: #fff
    }
}

.navbar.is-tertiary {
    background-color: #a6a6a6;
    color: #fff
}

    .navbar.is-tertiary .navbar-brand .navbar-link, .navbar.is-tertiary .navbar-brand > .navbar-item {
        color: #fff
    }

        .navbar.is-tertiary .navbar-brand .navbar-link.is-active, .navbar.is-tertiary .navbar-brand .navbar-link:hover, .navbar.is-tertiary .navbar-brand > a.navbar-item.is-active, .navbar.is-tertiary .navbar-brand > a.navbar-item:hover {
            background-color: #999;
            color: #fff
        }

        .navbar.is-tertiary .navbar-brand .navbar-link::after {
            border-color: #fff
        }

@media screen and (min-width:1088px) {
    .navbar.is-tertiary .navbar-end .navbar-link, .navbar.is-tertiary .navbar-end > .navbar-item, .navbar.is-tertiary .navbar-start .navbar-link, .navbar.is-tertiary .navbar-start > .navbar-item {
        color: #fff
    }

        .navbar.is-tertiary .navbar-end .navbar-link.is-active, .navbar.is-tertiary .navbar-end .navbar-link:hover, .navbar.is-tertiary .navbar-end > a.navbar-item.is-active, .navbar.is-tertiary .navbar-end > a.navbar-item:hover, .navbar.is-tertiary .navbar-start .navbar-link.is-active, .navbar.is-tertiary .navbar-start .navbar-link:hover, .navbar.is-tertiary .navbar-start > a.navbar-item.is-active, .navbar.is-tertiary .navbar-start > a.navbar-item:hover {
            background-color: #999;
            color: #fff
        }

        .navbar.is-tertiary .navbar-end .navbar-link::after, .navbar.is-tertiary .navbar-start .navbar-link::after {
            border-color: #fff
        }

    .navbar.is-tertiary .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-tertiary .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #999;
        color: #fff
    }

    .navbar.is-tertiary .navbar-dropdown a.navbar-item.is-active {
        background-color: #a6a6a6;
        color: #fff
    }
}

.navbar.is-tertiary-2 {
    background-color: #d8d8d8;
    color: rgba(0,0,0,.7)
}

    .navbar.is-tertiary-2 .navbar-brand .navbar-link, .navbar.is-tertiary-2 .navbar-brand > .navbar-item {
        color: rgba(0,0,0,.7)
    }

        .navbar.is-tertiary-2 .navbar-brand .navbar-link.is-active, .navbar.is-tertiary-2 .navbar-brand .navbar-link:hover, .navbar.is-tertiary-2 .navbar-brand > a.navbar-item.is-active, .navbar.is-tertiary-2 .navbar-brand > a.navbar-item:hover {
            background-color: #cbcbcb;
            color: rgba(0,0,0,.7)
        }

        .navbar.is-tertiary-2 .navbar-brand .navbar-link::after {
            border-color: rgba(0,0,0,.7)
        }

@media screen and (min-width:1088px) {
    .navbar.is-tertiary-2 .navbar-end .navbar-link, .navbar.is-tertiary-2 .navbar-end > .navbar-item, .navbar.is-tertiary-2 .navbar-start .navbar-link, .navbar.is-tertiary-2 .navbar-start > .navbar-item {
        color: rgba(0,0,0,.7)
    }

        .navbar.is-tertiary-2 .navbar-end .navbar-link.is-active, .navbar.is-tertiary-2 .navbar-end .navbar-link:hover, .navbar.is-tertiary-2 .navbar-end > a.navbar-item.is-active, .navbar.is-tertiary-2 .navbar-end > a.navbar-item:hover, .navbar.is-tertiary-2 .navbar-start .navbar-link.is-active, .navbar.is-tertiary-2 .navbar-start .navbar-link:hover, .navbar.is-tertiary-2 .navbar-start > a.navbar-item.is-active, .navbar.is-tertiary-2 .navbar-start > a.navbar-item:hover {
            background-color: #cbcbcb;
            color: rgba(0,0,0,.7)
        }

        .navbar.is-tertiary-2 .navbar-end .navbar-link::after, .navbar.is-tertiary-2 .navbar-start .navbar-link::after {
            border-color: rgba(0,0,0,.7)
        }

    .navbar.is-tertiary-2 .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-tertiary-2 .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #cbcbcb;
        color: rgba(0,0,0,.7)
    }

    .navbar.is-tertiary-2 .navbar-dropdown a.navbar-item.is-active {
        background-color: #d8d8d8;
        color: rgba(0,0,0,.7)
    }
}

.navbar.is-tertiary-3 {
    background-color: #d7d6d3;
    color: rgba(0,0,0,.7)
}

    .navbar.is-tertiary-3 .navbar-brand .navbar-link, .navbar.is-tertiary-3 .navbar-brand > .navbar-item {
        color: rgba(0,0,0,.7)
    }

        .navbar.is-tertiary-3 .navbar-brand .navbar-link.is-active, .navbar.is-tertiary-3 .navbar-brand .navbar-link:hover, .navbar.is-tertiary-3 .navbar-brand > a.navbar-item.is-active, .navbar.is-tertiary-3 .navbar-brand > a.navbar-item:hover {
            background-color: #cbcac6;
            color: rgba(0,0,0,.7)
        }

        .navbar.is-tertiary-3 .navbar-brand .navbar-link::after {
            border-color: rgba(0,0,0,.7)
        }

@media screen and (min-width:1088px) {
    .navbar.is-tertiary-3 .navbar-end .navbar-link, .navbar.is-tertiary-3 .navbar-end > .navbar-item, .navbar.is-tertiary-3 .navbar-start .navbar-link, .navbar.is-tertiary-3 .navbar-start > .navbar-item {
        color: rgba(0,0,0,.7)
    }

        .navbar.is-tertiary-3 .navbar-end .navbar-link.is-active, .navbar.is-tertiary-3 .navbar-end .navbar-link:hover, .navbar.is-tertiary-3 .navbar-end > a.navbar-item.is-active, .navbar.is-tertiary-3 .navbar-end > a.navbar-item:hover, .navbar.is-tertiary-3 .navbar-start .navbar-link.is-active, .navbar.is-tertiary-3 .navbar-start .navbar-link:hover, .navbar.is-tertiary-3 .navbar-start > a.navbar-item.is-active, .navbar.is-tertiary-3 .navbar-start > a.navbar-item:hover {
            background-color: #cbcac6;
            color: rgba(0,0,0,.7)
        }

        .navbar.is-tertiary-3 .navbar-end .navbar-link::after, .navbar.is-tertiary-3 .navbar-start .navbar-link::after {
            border-color: rgba(0,0,0,.7)
        }

    .navbar.is-tertiary-3 .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-tertiary-3 .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #cbcac6;
        color: rgba(0,0,0,.7)
    }

    .navbar.is-tertiary-3 .navbar-dropdown a.navbar-item.is-active {
        background-color: #d7d6d3;
        color: rgba(0,0,0,.7)
    }
}

.navbar.is-tertiary-4 {
    background-color: #afafaf;
    color: #fff
}

    .navbar.is-tertiary-4 .navbar-brand .navbar-link, .navbar.is-tertiary-4 .navbar-brand > .navbar-item {
        color: #fff
    }

        .navbar.is-tertiary-4 .navbar-brand .navbar-link.is-active, .navbar.is-tertiary-4 .navbar-brand .navbar-link:hover, .navbar.is-tertiary-4 .navbar-brand > a.navbar-item.is-active, .navbar.is-tertiary-4 .navbar-brand > a.navbar-item:hover {
            background-color: #a2a2a2;
            color: #fff
        }

        .navbar.is-tertiary-4 .navbar-brand .navbar-link::after {
            border-color: #fff
        }

@media screen and (min-width:1088px) {
    .navbar.is-tertiary-4 .navbar-end .navbar-link, .navbar.is-tertiary-4 .navbar-end > .navbar-item, .navbar.is-tertiary-4 .navbar-start .navbar-link, .navbar.is-tertiary-4 .navbar-start > .navbar-item {
        color: #fff
    }

        .navbar.is-tertiary-4 .navbar-end .navbar-link.is-active, .navbar.is-tertiary-4 .navbar-end .navbar-link:hover, .navbar.is-tertiary-4 .navbar-end > a.navbar-item.is-active, .navbar.is-tertiary-4 .navbar-end > a.navbar-item:hover, .navbar.is-tertiary-4 .navbar-start .navbar-link.is-active, .navbar.is-tertiary-4 .navbar-start .navbar-link:hover, .navbar.is-tertiary-4 .navbar-start > a.navbar-item.is-active, .navbar.is-tertiary-4 .navbar-start > a.navbar-item:hover {
            background-color: #a2a2a2;
            color: #fff
        }

        .navbar.is-tertiary-4 .navbar-end .navbar-link::after, .navbar.is-tertiary-4 .navbar-start .navbar-link::after {
            border-color: #fff
        }

    .navbar.is-tertiary-4 .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-tertiary-4 .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #a2a2a2;
        color: #fff
    }

    .navbar.is-tertiary-4 .navbar-dropdown a.navbar-item.is-active {
        background-color: #afafaf;
        color: #fff
    }
}

.navbar.is-tertiary-5 {
    background-color: #eaeaea;
    color: rgba(0,0,0,.7)
}

    .navbar.is-tertiary-5 .navbar-brand .navbar-link, .navbar.is-tertiary-5 .navbar-brand > .navbar-item {
        color: rgba(0,0,0,.7)
    }

        .navbar.is-tertiary-5 .navbar-brand .navbar-link.is-active, .navbar.is-tertiary-5 .navbar-brand .navbar-link:hover, .navbar.is-tertiary-5 .navbar-brand > a.navbar-item.is-active, .navbar.is-tertiary-5 .navbar-brand > a.navbar-item:hover {
            background-color: #ddd;
            color: rgba(0,0,0,.7)
        }

        .navbar.is-tertiary-5 .navbar-brand .navbar-link::after {
            border-color: rgba(0,0,0,.7)
        }

@media screen and (min-width:1088px) {
    .navbar.is-tertiary-5 .navbar-end .navbar-link, .navbar.is-tertiary-5 .navbar-end > .navbar-item, .navbar.is-tertiary-5 .navbar-start .navbar-link, .navbar.is-tertiary-5 .navbar-start > .navbar-item {
        color: rgba(0,0,0,.7)
    }

        .navbar.is-tertiary-5 .navbar-end .navbar-link.is-active, .navbar.is-tertiary-5 .navbar-end .navbar-link:hover, .navbar.is-tertiary-5 .navbar-end > a.navbar-item.is-active, .navbar.is-tertiary-5 .navbar-end > a.navbar-item:hover, .navbar.is-tertiary-5 .navbar-start .navbar-link.is-active, .navbar.is-tertiary-5 .navbar-start .navbar-link:hover, .navbar.is-tertiary-5 .navbar-start > a.navbar-item.is-active, .navbar.is-tertiary-5 .navbar-start > a.navbar-item:hover {
            background-color: #ddd;
            color: rgba(0,0,0,.7)
        }

        .navbar.is-tertiary-5 .navbar-end .navbar-link::after, .navbar.is-tertiary-5 .navbar-start .navbar-link::after {
            border-color: rgba(0,0,0,.7)
        }

    .navbar.is-tertiary-5 .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-tertiary-5 .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #ddd;
        color: rgba(0,0,0,.7)
    }

    .navbar.is-tertiary-5 .navbar-dropdown a.navbar-item.is-active {
        background-color: #eaeaea;
        color: rgba(0,0,0,.7)
    }
}

.navbar.is-tertiary-6 {
    background-color: #b0b0b0;
    color: #fff
}

    .navbar.is-tertiary-6 .navbar-brand .navbar-link, .navbar.is-tertiary-6 .navbar-brand > .navbar-item {
        color: #fff
    }

        .navbar.is-tertiary-6 .navbar-brand .navbar-link.is-active, .navbar.is-tertiary-6 .navbar-brand .navbar-link:hover, .navbar.is-tertiary-6 .navbar-brand > a.navbar-item.is-active, .navbar.is-tertiary-6 .navbar-brand > a.navbar-item:hover {
            background-color: #a3a3a3;
            color: #fff
        }

        .navbar.is-tertiary-6 .navbar-brand .navbar-link::after {
            border-color: #fff
        }

@media screen and (min-width:1088px) {
    .navbar.is-tertiary-6 .navbar-end .navbar-link, .navbar.is-tertiary-6 .navbar-end > .navbar-item, .navbar.is-tertiary-6 .navbar-start .navbar-link, .navbar.is-tertiary-6 .navbar-start > .navbar-item {
        color: #fff
    }

        .navbar.is-tertiary-6 .navbar-end .navbar-link.is-active, .navbar.is-tertiary-6 .navbar-end .navbar-link:hover, .navbar.is-tertiary-6 .navbar-end > a.navbar-item.is-active, .navbar.is-tertiary-6 .navbar-end > a.navbar-item:hover, .navbar.is-tertiary-6 .navbar-start .navbar-link.is-active, .navbar.is-tertiary-6 .navbar-start .navbar-link:hover, .navbar.is-tertiary-6 .navbar-start > a.navbar-item.is-active, .navbar.is-tertiary-6 .navbar-start > a.navbar-item:hover {
            background-color: #a3a3a3;
            color: #fff
        }

        .navbar.is-tertiary-6 .navbar-end .navbar-link::after, .navbar.is-tertiary-6 .navbar-start .navbar-link::after {
            border-color: #fff
        }

    .navbar.is-tertiary-6 .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-tertiary-6 .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #a3a3a3;
        color: #fff
    }

    .navbar.is-tertiary-6 .navbar-dropdown a.navbar-item.is-active {
        background-color: #b0b0b0;
        color: #fff
    }
}

.navbar.is-tertiary-7 {
    background-color: #969696;
    color: #fff
}

    .navbar.is-tertiary-7 .navbar-brand .navbar-link, .navbar.is-tertiary-7 .navbar-brand > .navbar-item {
        color: #fff
    }

        .navbar.is-tertiary-7 .navbar-brand .navbar-link.is-active, .navbar.is-tertiary-7 .navbar-brand .navbar-link:hover, .navbar.is-tertiary-7 .navbar-brand > a.navbar-item.is-active, .navbar.is-tertiary-7 .navbar-brand > a.navbar-item:hover {
            background-color: #898989;
            color: #fff
        }

        .navbar.is-tertiary-7 .navbar-brand .navbar-link::after {
            border-color: #fff
        }

@media screen and (min-width:1088px) {
    .navbar.is-tertiary-7 .navbar-end .navbar-link, .navbar.is-tertiary-7 .navbar-end > .navbar-item, .navbar.is-tertiary-7 .navbar-start .navbar-link, .navbar.is-tertiary-7 .navbar-start > .navbar-item {
        color: #fff
    }

        .navbar.is-tertiary-7 .navbar-end .navbar-link.is-active, .navbar.is-tertiary-7 .navbar-end .navbar-link:hover, .navbar.is-tertiary-7 .navbar-end > a.navbar-item.is-active, .navbar.is-tertiary-7 .navbar-end > a.navbar-item:hover, .navbar.is-tertiary-7 .navbar-start .navbar-link.is-active, .navbar.is-tertiary-7 .navbar-start .navbar-link:hover, .navbar.is-tertiary-7 .navbar-start > a.navbar-item.is-active, .navbar.is-tertiary-7 .navbar-start > a.navbar-item:hover {
            background-color: #898989;
            color: #fff
        }

        .navbar.is-tertiary-7 .navbar-end .navbar-link::after, .navbar.is-tertiary-7 .navbar-start .navbar-link::after {
            border-color: #fff
        }

    .navbar.is-tertiary-7 .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-tertiary-7 .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #898989;
        color: #fff
    }

    .navbar.is-tertiary-7 .navbar-dropdown a.navbar-item.is-active {
        background-color: #969696;
        color: #fff
    }
}

.navbar.is-tertiary-8 {
    background-color: #999;
    color: #fff
}

    .navbar.is-tertiary-8 .navbar-brand .navbar-link, .navbar.is-tertiary-8 .navbar-brand > .navbar-item {
        color: #fff
    }

        .navbar.is-tertiary-8 .navbar-brand .navbar-link.is-active, .navbar.is-tertiary-8 .navbar-brand .navbar-link:hover, .navbar.is-tertiary-8 .navbar-brand > a.navbar-item.is-active, .navbar.is-tertiary-8 .navbar-brand > a.navbar-item:hover {
            background-color: #8c8c8c;
            color: #fff
        }

        .navbar.is-tertiary-8 .navbar-brand .navbar-link::after {
            border-color: #fff
        }

@media screen and (min-width:1088px) {
    .navbar.is-tertiary-8 .navbar-end .navbar-link, .navbar.is-tertiary-8 .navbar-end > .navbar-item, .navbar.is-tertiary-8 .navbar-start .navbar-link, .navbar.is-tertiary-8 .navbar-start > .navbar-item {
        color: #fff
    }

        .navbar.is-tertiary-8 .navbar-end .navbar-link.is-active, .navbar.is-tertiary-8 .navbar-end .navbar-link:hover, .navbar.is-tertiary-8 .navbar-end > a.navbar-item.is-active, .navbar.is-tertiary-8 .navbar-end > a.navbar-item:hover, .navbar.is-tertiary-8 .navbar-start .navbar-link.is-active, .navbar.is-tertiary-8 .navbar-start .navbar-link:hover, .navbar.is-tertiary-8 .navbar-start > a.navbar-item.is-active, .navbar.is-tertiary-8 .navbar-start > a.navbar-item:hover {
            background-color: #8c8c8c;
            color: #fff
        }

        .navbar.is-tertiary-8 .navbar-end .navbar-link::after, .navbar.is-tertiary-8 .navbar-start .navbar-link::after {
            border-color: #fff
        }

    .navbar.is-tertiary-8 .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-tertiary-8 .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #8c8c8c;
        color: #fff
    }

    .navbar.is-tertiary-8 .navbar-dropdown a.navbar-item.is-active {
        background-color: #999;
        color: #fff
    }
}

.navbar.is-tertiary-9 {
    background-color: #f5f5f5;
    color: rgba(0,0,0,.7)
}

    .navbar.is-tertiary-9 .navbar-brand .navbar-link, .navbar.is-tertiary-9 .navbar-brand > .navbar-item {
        color: rgba(0,0,0,.7)
    }

        .navbar.is-tertiary-9 .navbar-brand .navbar-link.is-active, .navbar.is-tertiary-9 .navbar-brand .navbar-link:hover, .navbar.is-tertiary-9 .navbar-brand > a.navbar-item.is-active, .navbar.is-tertiary-9 .navbar-brand > a.navbar-item:hover {
            background-color: #e8e8e8;
            color: rgba(0,0,0,.7)
        }

        .navbar.is-tertiary-9 .navbar-brand .navbar-link::after {
            border-color: rgba(0,0,0,.7)
        }

@media screen and (min-width:1088px) {
    .navbar.is-tertiary-9 .navbar-end .navbar-link, .navbar.is-tertiary-9 .navbar-end > .navbar-item, .navbar.is-tertiary-9 .navbar-start .navbar-link, .navbar.is-tertiary-9 .navbar-start > .navbar-item {
        color: rgba(0,0,0,.7)
    }

        .navbar.is-tertiary-9 .navbar-end .navbar-link.is-active, .navbar.is-tertiary-9 .navbar-end .navbar-link:hover, .navbar.is-tertiary-9 .navbar-end > a.navbar-item.is-active, .navbar.is-tertiary-9 .navbar-end > a.navbar-item:hover, .navbar.is-tertiary-9 .navbar-start .navbar-link.is-active, .navbar.is-tertiary-9 .navbar-start .navbar-link:hover, .navbar.is-tertiary-9 .navbar-start > a.navbar-item.is-active, .navbar.is-tertiary-9 .navbar-start > a.navbar-item:hover {
            background-color: #e8e8e8;
            color: rgba(0,0,0,.7)
        }

        .navbar.is-tertiary-9 .navbar-end .navbar-link::after, .navbar.is-tertiary-9 .navbar-start .navbar-link::after {
            border-color: rgba(0,0,0,.7)
        }

    .navbar.is-tertiary-9 .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-tertiary-9 .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #e8e8e8;
        color: rgba(0,0,0,.7)
    }

    .navbar.is-tertiary-9 .navbar-dropdown a.navbar-item.is-active {
        background-color: #f5f5f5;
        color: rgba(0,0,0,.7)
    }
}

.navbar > .container {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 3.25rem;
    width: 100%
}

.navbar.has-shadow {
    -webkit-box-shadow: 0 2px 0 0 #f5f5f5;
    box-shadow: 0 2px 0 0 #f5f5f5
}

.navbar.is-fixed-bottom, .navbar.is-fixed-top {
    left: 0;
    position: fixed;
    right: 0;
    z-index: 30
}

.navbar.is-fixed-bottom {
    bottom: 0
}

    .navbar.is-fixed-bottom.has-shadow {
        -webkit-box-shadow: 0 -2px 0 0 #f5f5f5;
        box-shadow: 0 -2px 0 0 #f5f5f5
    }

.navbar.is-fixed-top {
    top: 0
}

body.has-navbar-fixed-top, html.has-navbar-fixed-top {
    padding-top: 3.25rem
}

body.has-navbar-fixed-bottom, html.has-navbar-fixed-bottom {
    padding-bottom: 3.25rem
}

.navbar-brand, .navbar-tabs {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-height: 3.25rem
}

    .navbar-brand a.navbar-item:hover {
        background-color: transparent
    }

.navbar-tabs {
    -webkit-overflow-scrolling: touch;
    max-width: 100vw;
    overflow-x: auto;
    overflow-y: hidden
}

.navbar-burger {
    cursor: pointer;
    display: block;
    height: 3.25rem;
    position: relative;
    width: 3.25rem;
    margin-left: auto
}

    .navbar-burger span {
        background-color: currentColor;
        display: block;
        height: 1px;
        left: calc(50% - 8px);
        position: absolute;
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transition-duration: 86ms;
        transition-duration: 86ms;
        -webkit-transition-property: background-color,opacity,-webkit-transform;
        transition-property: background-color,opacity,-webkit-transform;
        transition-property: background-color,opacity,transform;
        transition-property: background-color,opacity,transform,-webkit-transform;
        -webkit-transition-timing-function: ease;
        transition-timing-function: ease;
        width: 16px
    }

        .navbar-burger span:nth-child(1) {
            top: calc(50% - 6px)
        }

        .navbar-burger span:nth-child(2) {
            top: calc(50% - 1px)
        }

        .navbar-burger span:nth-child(3) {
            top: calc(50% + 4px)
        }

    .navbar-burger:hover {
        background-color: rgba(0,0,0,.05)
    }

    .navbar-burger.is-active span:nth-child(1) {
        -webkit-transform: translateY(5px) rotate(45deg);
        transform: translateY(5px) rotate(45deg)
    }

    .navbar-burger.is-active span:nth-child(2) {
        opacity: 0
    }

    .navbar-burger.is-active span:nth-child(3) {
        -webkit-transform: translateY(-5px) rotate(-45deg);
        transform: translateY(-5px) rotate(-45deg)
    }

.navbar-menu {
    display: none
}

.navbar-item, .navbar-link {
    color: #4a4a4a;
    display: block;
    line-height: 1.5;
    padding: .5rem .75rem;
    position: relative
}

    .navbar-item .icon:only-child, .navbar-link .icon:only-child {
        margin-left: -.25rem;
        margin-right: -.25rem
    }

.navbar-link, a.navbar-item {
    cursor: pointer
}

    .navbar-link.is-active, .navbar-link:hover, a.navbar-item.is-active, a.navbar-item:hover {
        background-color: #fafafa;
        color: #9fbf43
    }

.navbar-item {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

    .navbar-item img {
        max-height: 1.75rem
    }

    .navbar-item.has-dropdown {
        padding: 0
    }

    .navbar-item.is-expanded {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-negative: 1;
        flex-shrink: 1
    }

    .navbar-item.is-tab {
        border-bottom: 1px solid transparent;
        min-height: 3.25rem;
        padding-bottom: calc(.5rem - 1px)
    }

        .navbar-item.is-tab:hover {
            background-color: transparent;
            border-bottom-color: #9fbf43
        }

        .navbar-item.is-tab.is-active {
            background-color: transparent;
            border-bottom-color: #9fbf43;
            border-bottom-style: solid;
            border-bottom-width: 3px;
            color: #9fbf43;
            padding-bottom: calc(.5rem - 3px)
        }

.navbar-content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1
}

.navbar-link {
    padding-right: 2.5em
}

    .navbar-link::after {
        border-color: #9fbf43;
        margin-top: -.375em;
        right: 1.125em
    }

.navbar-dropdown {
    font-size: .875rem;
    padding-bottom: .5rem;
    padding-top: .5rem
}

    .navbar-dropdown .navbar-item {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }

.navbar-divider {
    background-color: #f5f5f5;
    border: none;
    display: none;
    height: 2px;
    margin: .5rem 0
}

@media screen and (max-width:1087px) {
    .navbar > .container {
        display: block
    }

    .navbar-brand .navbar-item, .navbar-tabs .navbar-item {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .navbar-link::after {
        display: none
    }

    .navbar-menu {
        background-color: #fff;
        -webkit-box-shadow: 0 8px 16px rgba(10,10,10,.1);
        box-shadow: 0 8px 16px rgba(10,10,10,.1);
        padding: .5rem 0
    }

        .navbar-menu.is-active {
            display: block
        }

    .navbar.is-fixed-bottom-touch, .navbar.is-fixed-top-touch {
        left: 0;
        position: fixed;
        right: 0;
        z-index: 30
    }

    .navbar.is-fixed-bottom-touch {
        bottom: 0
    }

        .navbar.is-fixed-bottom-touch.has-shadow {
            -webkit-box-shadow: 0 -2px 3px rgba(10,10,10,.1);
            box-shadow: 0 -2px 3px rgba(10,10,10,.1)
        }

    .navbar.is-fixed-top-touch {
        top: 0
    }

        .navbar.is-fixed-top .navbar-menu, .navbar.is-fixed-top-touch .navbar-menu {
            -webkit-overflow-scrolling: touch;
            max-height: calc(100vh - 3.25rem);
            overflow: auto
        }

    body.has-navbar-fixed-top-touch, html.has-navbar-fixed-top-touch {
        padding-top: 3.25rem
    }

    body.has-navbar-fixed-bottom-touch, html.has-navbar-fixed-bottom-touch {
        padding-bottom: 3.25rem
    }
}

@media screen and (min-width:1088px) {
    .navbar, .navbar-end, .navbar-menu, .navbar-start {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .navbar {
        min-height: 3.25rem
    }

        .navbar.is-spaced {
            padding: 1rem 2rem
        }

            .navbar.is-spaced .navbar-end, .navbar.is-spaced .navbar-start {
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center
            }

            .navbar.is-spaced .navbar-link, .navbar.is-spaced a.navbar-item {
                border-radius: 4px
            }

        .navbar.is-transparent .navbar-link.is-active, .navbar.is-transparent .navbar-link:hover, .navbar.is-transparent a.navbar-item.is-active, .navbar.is-transparent a.navbar-item:hover {
            background-color: transparent !important
        }

        .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link {
            background-color: transparent !important
        }

        .navbar.is-transparent .navbar-dropdown a.navbar-item:hover {
            background-color: #f5f5f5;
            color: #0a0a0a
        }

        .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active {
            background-color: #f5f5f5;
            color: #9fbf43
        }

    .navbar-burger {
        display: none
    }

    .navbar-item, .navbar-link {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

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

        .navbar-item.has-dropdown {
            -webkit-box-align: stretch;
            -ms-flex-align: stretch;
            align-items: stretch
        }

        .navbar-item.has-dropdown-up .navbar-link::after {
            -webkit-transform: rotate(135deg) translate(.25em,-.25em);
            transform: rotate(135deg) translate(.25em,-.25em)
        }

        .navbar-item.has-dropdown-up .navbar-dropdown {
            border-bottom: 2px solid #dbdbdb;
            border-radius: 6px 6px 0 0;
            border-top: none;
            bottom: 100%;
            -webkit-box-shadow: 0 -8px 8px rgba(10,10,10,.1);
            box-shadow: 0 -8px 8px rgba(10,10,10,.1);
            top: auto
        }

        .navbar-item.is-active .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown {
            display: block
        }

            .navbar-item.is-active .navbar-dropdown.is-boxed, .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-active .navbar-dropdown, .navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown {
                opacity: 1;
                pointer-events: auto;
                -webkit-transform: translateY(0);
                transform: translateY(0)
            }

    .navbar-menu {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }

    .navbar-start {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-right: auto
    }

    .navbar-end {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-left: auto
    }

    .navbar-dropdown {
        background-color: #fff;
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
        border-top: 2px solid #dbdbdb;
        -webkit-box-shadow: 0 8px 8px rgba(10,10,10,.1);
        box-shadow: 0 8px 8px rgba(10,10,10,.1);
        display: none;
        font-size: .875rem;
        left: 0;
        min-width: 100%;
        position: absolute;
        top: 100%;
        z-index: 20
    }

        .navbar-dropdown .navbar-item {
            padding: .375rem 1rem;
            white-space: nowrap
        }

        .navbar-dropdown a.navbar-item {
            padding-right: 3rem
        }

            .navbar-dropdown a.navbar-item:hover {
                background-color: #f5f5f5;
                color: #0a0a0a
            }

            .navbar-dropdown a.navbar-item.is-active {
                background-color: #f5f5f5;
                color: #9fbf43
            }

        .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-dropdown {
            border-radius: 6px;
            border-top: none;
            -webkit-box-shadow: 0 8px 8px rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.1);
            box-shadow: 0 8px 8px rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.1);
            display: block;
            opacity: 0;
            pointer-events: none;
            top: calc(100% + (-4px));
            -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
            -webkit-transition-duration: 86ms;
            transition-duration: 86ms;
            -webkit-transition-property: opacity,-webkit-transform;
            transition-property: opacity,-webkit-transform;
            transition-property: opacity,transform;
            transition-property: opacity,transform,-webkit-transform
        }

        .navbar-dropdown.is-right {
            left: auto;
            right: 0
        }

    .navbar-divider {
        display: block
    }

    .container > .navbar .navbar-brand, .navbar > .container .navbar-brand {
        margin-left: -1rem
    }

    .container > .navbar .navbar-menu, .navbar > .container .navbar-menu {
        margin-right: -1rem
    }

    .navbar.is-fixed-bottom-desktop, .navbar.is-fixed-top-desktop {
        left: 0;
        position: fixed;
        right: 0;
        z-index: 30
    }

    .navbar.is-fixed-bottom-desktop {
        bottom: 0
    }

        .navbar.is-fixed-bottom-desktop.has-shadow {
            -webkit-box-shadow: 0 -2px 3px rgba(10,10,10,.1);
            box-shadow: 0 -2px 3px rgba(10,10,10,.1)
        }

    .navbar.is-fixed-top-desktop {
        top: 0
    }

    body.has-navbar-fixed-top-desktop, html.has-navbar-fixed-top-desktop {
        padding-top: 3.25rem
    }

    body.has-navbar-fixed-bottom-desktop, html.has-navbar-fixed-bottom-desktop {
        padding-bottom: 3.25rem
    }

    body.has-spaced-navbar-fixed-top, html.has-spaced-navbar-fixed-top {
        padding-top: 5.25rem
    }

    body.has-spaced-navbar-fixed-bottom, html.has-spaced-navbar-fixed-bottom {
        padding-bottom: 5.25rem
    }

    .navbar-link.is-active, a.navbar-item.is-active {
        color: #0a0a0a
    }

        .navbar-link.is-active:not(:hover), a.navbar-item.is-active:not(:hover) {
            background-color: transparent
        }

    .navbar-item.has-dropdown.is-active .navbar-link, .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #fafafa
    }
}

.pagination {
    font-size: 1rem;
    margin: 4.5rem 0 0
}

    .pagination.is-small {
        font-size: .75rem
    }

    .pagination.is-medium {
        font-size: 1.25rem
    }

    .pagination.is-large {
        font-size: 1.5rem
    }

    .pagination.is-rounded .pagination-next, .pagination.is-rounded .pagination-previous {
        padding-left: 1em;
        padding-right: 1em;
        border-radius: 290486px
    }

    .pagination.is-rounded .pagination-link {
        border-radius: 290486px
    }

.pagination, .pagination-list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
}

.pagination-ellipsis, .pagination-link, .pagination-next, .pagination-previous {
    font-size: 1em;
    padding-left: .5em;
    padding-right: .5em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: .25rem;
    text-align: center
}

.pagination-link, .pagination-next, .pagination-previous {
    border-color: #eaeaea;
    color: #a6a6a6;
    min-width: 2.25em
}

    .pagination-link:hover, .pagination-next:hover, .pagination-previous:hover {
        border-color: transparent;
        color: #fff
    }

    .pagination-link:focus, .pagination-next:focus, .pagination-previous:focus {
        border-color: #eaeaea
    }

    .pagination-link:active, .pagination-next:active, .pagination-previous:active {
        -webkit-box-shadow: inset 0 1px 2px rgba(10,10,10,.2);
        box-shadow: inset 0 1px 2px rgba(10,10,10,.2)
    }

    .pagination-link[disabled], .pagination-next[disabled], .pagination-previous[disabled] {
        background-color: #eaeaea;
        border-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        color: #a6a6a6;
        opacity: .5
    }

.pagination-next, .pagination-previous {
    padding-left: .75em;
    padding-right: .75em;
    white-space: nowrap
}

.pagination-link.is-current {
    background-color: #9fbf43;
    border-color: transparent;
    color: #fff
}

.pagination-ellipsis {
    color: #a6a6a6;
    pointer-events: none
}

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

@media screen and (max-width:768px) {
    .pagination {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .pagination-next, .pagination-previous {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-negative: 1;
        flex-shrink: 1
    }

    .pagination-list li {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-negative: 1;
        flex-shrink: 1
    }
}

@media screen and (min-width:769px),print {
    .pagination-list {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-negative: 1;
        flex-shrink: 1;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .pagination-previous {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .pagination-next {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

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

        .pagination.is-centered .pagination-previous {
            -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
            order: 1
        }

        .pagination.is-centered .pagination-list {
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
            order: 2
        }

        .pagination.is-centered .pagination-next {
            -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
            order: 3
        }

        .pagination.is-right .pagination-previous {
            -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
            order: 1
        }

        .pagination.is-right .pagination-next {
            -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
            order: 2
        }

        .pagination.is-right .pagination-list {
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
            -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
            order: 3
        }
}

.panel {
    font-size: 1rem
}

    .panel:not(:last-child) {
        margin-bottom: 1.5rem
    }

.panel-block, .panel-heading, .panel-tabs {
    border-bottom: 1px solid #dbdbdb;
    border-left: 1px solid #dbdbdb;
    border-right: 1px solid #dbdbdb
}

    .panel-block:first-child, .panel-heading:first-child, .panel-tabs:first-child {
        border-top: 1px solid #dbdbdb
    }

.panel-heading {
    background-color: #f5f5f5;
    border-radius: 4px 4px 0 0;
    color: #363636;
    font-size: 1.25em;
    font-weight: 300;
    line-height: 1.25;
    padding: .5em .75em
}

.panel-tabs {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: .875em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

    .panel-tabs a {
        border-bottom: 1px solid #dbdbdb;
        margin-bottom: -1px;
        padding: .5em
    }

        .panel-tabs a.is-active {
            border-bottom-color: #4a4a4a;
            color: #363636
        }

.panel-list a {
    color: #4a4a4a
}

    .panel-list a:hover {
        color: #9fbf43
    }

.panel-block {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #363636;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: .5em .75em
}

    .panel-block input[type=checkbox] {
        margin-right: .75em
    }

    .panel-block > .control {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-negative: 1;
        flex-shrink: 1;
        width: 100%
    }

    .panel-block.is-wrapped {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .panel-block.is-active {
        border-left-color: #9fbf43;
        color: #363636
    }

        .panel-block.is-active .panel-icon {
            color: #9fbf43
        }

a.panel-block, label.panel-block {
    cursor: pointer
}

    a.panel-block:hover, label.panel-block:hover {
        background-color: #f5f5f5
    }

.panel-icon {
    display: inline-block;
    font-size: 14px;
    height: 1em;
    line-height: 1em;
    text-align: center;
    vertical-align: top;
    width: 1em;
    color: #7a7a7a;
    margin-right: .75em
}

    .panel-icon .fa {
        font-size: inherit;
        line-height: inherit
    }

.tabs {
    -webkit-overflow-scrolling: touch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap
}

    .tabs a {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-bottom-color: #f0f0f0 !important;
        border-bottom-style: solid !important;
        border-bottom-width: 1px !important;
        color: #363a3f !important;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: -1px !important;
        padding: .8em 1.2em;
        vertical-align: top
    }

        .tabs a:hover {
            border-bottom-color: #afafaf !important;
            color: #545659 !important
        }

    .tabs li {
        display: block
    }

        .tabs li.is-active a {
            border-bottom-color: #9fbf43 !important;
            color: #9fbf43 !important
        }

    .tabs ul {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-bottom-color: #f0f0f0 !important;
        border-bottom-style: solid !important;
        border-bottom-width: 1px !important;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

        .tabs ul.is-left {
            padding-right: .75em
        }

        .tabs ul.is-center {
            -webkit-box-flex: 0;
            -ms-flex: none;
            flex: none;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            padding-left: .75em;
            padding-right: .75em
        }

        .tabs ul.is-right {
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
            padding-left: .75em
        }

    .tabs .icon:first-child {
        margin-right: .5em
    }

    .tabs .icon:last-child {
        margin-left: .5em
    }

    .tabs.is-centered ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .tabs.is-right ul {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .tabs.is-boxed a {
        border: 1px solid transparent;
        border-radius: 0
    }

        .tabs.is-boxed a:hover {
            background-color: rgba(240,240,240,.5);
            border-bottom-color: #f0f0f0 !important
        }

    .tabs.is-boxed li.is-active a {
        background-color: #fff;
        border-color: #f0f0f0;
        border-bottom-color: transparent !important
    }

    .tabs.is-fullwidth li {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }

    .tabs.is-toggle a {
        border-color: #f0f0f0 !important;
        border-style: solid !important;
        border-width: 1px !important;
        margin-bottom: 0;
        position: relative
    }

        .tabs.is-toggle a:hover {
            background-color: #f5f5f5;
            border-color: #f0f0f0 !important;
            z-index: 2
        }

    .tabs.is-toggle li + li {
        margin-left: -1px !important
    }

    .tabs.is-toggle li:first-child a {
        border-radius: 0
    }

    .tabs.is-toggle li:last-child a {
        border-radius: 0
    }

    .tabs.is-toggle li.is-active a {
        background-color: #9fbf43;
        border-color: #9fbf43 !important;
        color: #fff !important;
        z-index: 1
    }

    .tabs.is-toggle ul {
        border-bottom: none
    }

    .tabs.is-toggle.is-toggle-rounded li:first-child a {
        border-bottom-left-radius: 290486px;
        border-top-left-radius: 290486px;
        padding-left: 1.25em
    }

    .tabs.is-toggle.is-toggle-rounded li:last-child a {
        border-bottom-right-radius: 290486px;
        border-top-right-radius: 290486px;
        padding-right: 1.25em
    }

    .tabs.is-small {
        font-size: .75rem
    }

    .tabs.is-medium {
        font-size: 1.25rem
    }

    .tabs.is-large {
        font-size: 1.5rem
    }

.column {
    display: block;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    padding: .75rem
}

.columns.is-mobile > .column.is-narrow {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
}

.columns.is-mobile > .column.is-full {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%
}

.columns.is-mobile > .column.is-three-quarters {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 75%
}

.columns.is-mobile > .column.is-two-thirds {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 66.6666%
}

.columns.is-mobile > .column.is-half {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 50%
}

.columns.is-mobile > .column.is-one-third {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 33.3333%
}

.columns.is-mobile > .column.is-one-quarter {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 25%
}

.columns.is-mobile > .column.is-one-fifth {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 20%
}

.columns.is-mobile > .column.is-two-fifths {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 40%
}

.columns.is-mobile > .column.is-three-fifths {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 60%
}

.columns.is-mobile > .column.is-four-fifths {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 80%
}

.columns.is-mobile > .column.is-offset-three-quarters {
    margin-left: 75%
}

.columns.is-mobile > .column.is-offset-two-thirds {
    margin-left: 66.6666%
}

.columns.is-mobile > .column.is-offset-half {
    margin-left: 50%
}

.columns.is-mobile > .column.is-offset-one-third {
    margin-left: 33.3333%
}

.columns.is-mobile > .column.is-offset-one-quarter {
    margin-left: 25%
}

.columns.is-mobile > .column.is-offset-one-fifth {
    margin-left: 20%
}

.columns.is-mobile > .column.is-offset-two-fifths {
    margin-left: 40%
}

.columns.is-mobile > .column.is-offset-three-fifths {
    margin-left: 60%
}

.columns.is-mobile > .column.is-offset-four-fifths {
    margin-left: 80%
}

.columns.is-mobile > .column.is-1 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 8.33333%
}

.columns.is-mobile > .column.is-offset-1 {
    margin-left: 8.33333%
}

.columns.is-mobile > .column.is-2 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 16.66667%
}

.columns.is-mobile > .column.is-offset-2 {
    margin-left: 16.66667%
}

.columns.is-mobile > .column.is-3 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 25%
}

.columns.is-mobile > .column.is-offset-3 {
    margin-left: 25%
}

.columns.is-mobile > .column.is-4 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 33.33333%
}

.columns.is-mobile > .column.is-offset-4 {
    margin-left: 33.33333%
}

.columns.is-mobile > .column.is-5 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 41.66667%
}

.columns.is-mobile > .column.is-offset-5 {
    margin-left: 41.66667%
}

.columns.is-mobile > .column.is-6 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 50%
}

.columns.is-mobile > .column.is-offset-6 {
    margin-left: 50%
}

.columns.is-mobile > .column.is-7 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 58.33333%
}

.columns.is-mobile > .column.is-offset-7 {
    margin-left: 58.33333%
}

.columns.is-mobile > .column.is-8 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 66.66667%
}

.columns.is-mobile > .column.is-offset-8 {
    margin-left: 66.66667%
}

.columns.is-mobile > .column.is-9 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 75%
}

.columns.is-mobile > .column.is-offset-9 {
    margin-left: 75%
}

.columns.is-mobile > .column.is-10 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 83.33333%
}

.columns.is-mobile > .column.is-offset-10 {
    margin-left: 83.33333%
}

.columns.is-mobile > .column.is-11 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 91.66667%
}

.columns.is-mobile > .column.is-offset-11 {
    margin-left: 91.66667%
}

.columns.is-mobile > .column.is-12 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%
}

.columns.is-mobile > .column.is-offset-12 {
    margin-left: 100%
}

@media screen and (max-width:768px) {
    .column.is-narrow-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }

    .column.is-full-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%
    }

    .column.is-three-quarters-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 75%
    }

    .column.is-two-thirds-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 66.6666%
    }

    .column.is-half-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 50%
    }

    .column.is-one-third-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 33.3333%
    }

    .column.is-one-quarter-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 25%
    }

    .column.is-one-fifth-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 20%
    }

    .column.is-two-fifths-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 40%
    }

    .column.is-three-fifths-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 60%
    }

    .column.is-four-fifths-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 80%
    }

    .column.is-offset-three-quarters-mobile {
        margin-left: 75%
    }

    .column.is-offset-two-thirds-mobile {
        margin-left: 66.6666%
    }

    .column.is-offset-half-mobile {
        margin-left: 50%
    }

    .column.is-offset-one-third-mobile {
        margin-left: 33.3333%
    }

    .column.is-offset-one-quarter-mobile {
        margin-left: 25%
    }

    .column.is-offset-one-fifth-mobile {
        margin-left: 20%
    }

    .column.is-offset-two-fifths-mobile {
        margin-left: 40%
    }

    .column.is-offset-three-fifths-mobile {
        margin-left: 60%
    }

    .column.is-offset-four-fifths-mobile {
        margin-left: 80%
    }

    .column.is-1-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 8.33333%
    }

    .column.is-offset-1-mobile {
        margin-left: 8.33333%
    }

    .column.is-2-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 16.66667%
    }

    .column.is-offset-2-mobile {
        margin-left: 16.66667%
    }

    .column.is-3-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 25%
    }

    .column.is-offset-3-mobile {
        margin-left: 25%
    }

    .column.is-4-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 33.33333%
    }

    .column.is-offset-4-mobile {
        margin-left: 33.33333%
    }

    .column.is-5-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 41.66667%
    }

    .column.is-offset-5-mobile {
        margin-left: 41.66667%
    }

    .column.is-6-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 50%
    }

    .column.is-offset-6-mobile {
        margin-left: 50%
    }

    .column.is-7-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 58.33333%
    }

    .column.is-offset-7-mobile {
        margin-left: 58.33333%
    }

    .column.is-8-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 66.66667%
    }

    .column.is-offset-8-mobile {
        margin-left: 66.66667%
    }

    .column.is-9-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 75%
    }

    .column.is-offset-9-mobile {
        margin-left: 75%
    }

    .column.is-10-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 83.33333%
    }

    .column.is-offset-10-mobile {
        margin-left: 83.33333%
    }

    .column.is-11-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 91.66667%
    }

    .column.is-offset-11-mobile {
        margin-left: 91.66667%
    }

    .column.is-12-mobile {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%
    }

    .column.is-offset-12-mobile {
        margin-left: 100%
    }
}

@media screen and (min-width:769px),print {
    .column.is-narrow, .column.is-narrow-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }

    .column.is-full, .column.is-full-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%
    }

    .column.is-three-quarters, .column.is-three-quarters-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 75%
    }

    .column.is-two-thirds, .column.is-two-thirds-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 66.6666%
    }

    .column.is-half, .column.is-half-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 50%
    }

    .column.is-one-third, .column.is-one-third-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 33.3333%
    }

    .column.is-one-quarter, .column.is-one-quarter-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 25%
    }

    .column.is-one-fifth, .column.is-one-fifth-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 20%
    }

    .column.is-two-fifths, .column.is-two-fifths-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 40%
    }

    .column.is-three-fifths, .column.is-three-fifths-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 60%
    }

    .column.is-four-fifths, .column.is-four-fifths-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 80%
    }

    .column.is-offset-three-quarters, .column.is-offset-three-quarters-tablet {
        margin-left: 75%
    }

    .column.is-offset-two-thirds, .column.is-offset-two-thirds-tablet {
        margin-left: 66.6666%
    }

    .column.is-offset-half, .column.is-offset-half-tablet {
        margin-left: 50%
    }

    .column.is-offset-one-third, .column.is-offset-one-third-tablet {
        margin-left: 33.3333%
    }

    .column.is-offset-one-quarter, .column.is-offset-one-quarter-tablet {
        margin-left: 25%
    }

    .column.is-offset-one-fifth, .column.is-offset-one-fifth-tablet {
        margin-left: 20%
    }

    .column.is-offset-two-fifths, .column.is-offset-two-fifths-tablet {
        margin-left: 40%
    }

    .column.is-offset-three-fifths, .column.is-offset-three-fifths-tablet {
        margin-left: 60%
    }

    .column.is-offset-four-fifths, .column.is-offset-four-fifths-tablet {
        margin-left: 80%
    }

    .column.is-1, .column.is-1-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 8.33333%
    }

    .column.is-offset-1, .column.is-offset-1-tablet {
        margin-left: 8.33333%
    }

    .column.is-2, .column.is-2-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 16.66667%
    }

    .column.is-offset-2, .column.is-offset-2-tablet {
        margin-left: 16.66667%
    }

    .column.is-3, .column.is-3-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 25%
    }

    .column.is-offset-3, .column.is-offset-3-tablet {
        margin-left: 25%
    }

    .column.is-4, .column.is-4-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 33.33333%
    }

    .column.is-offset-4, .column.is-offset-4-tablet {
        margin-left: 33.33333%
    }

    .column.is-5, .column.is-5-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 41.66667%
    }

    .column.is-offset-5, .column.is-offset-5-tablet {
        margin-left: 41.66667%
    }

    .column.is-6, .column.is-6-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 50%
    }

    .column.is-offset-6, .column.is-offset-6-tablet {
        margin-left: 50%
    }

    .column.is-7, .column.is-7-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 58.33333%
    }

    .column.is-offset-7, .column.is-offset-7-tablet {
        margin-left: 58.33333%
    }

    .column.is-8, .column.is-8-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 66.66667%
    }

    .column.is-offset-8, .column.is-offset-8-tablet {
        margin-left: 66.66667%
    }

    .column.is-9, .column.is-9-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 75%
    }

    .column.is-offset-9, .column.is-offset-9-tablet {
        margin-left: 75%
    }

    .column.is-10, .column.is-10-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 83.33333%
    }

    .column.is-offset-10, .column.is-offset-10-tablet {
        margin-left: 83.33333%
    }

    .column.is-11, .column.is-11-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 91.66667%
    }

    .column.is-offset-11, .column.is-offset-11-tablet {
        margin-left: 91.66667%
    }

    .column.is-12, .column.is-12-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%
    }

    .column.is-offset-12, .column.is-offset-12-tablet {
        margin-left: 100%
    }
}

@media screen and (max-width:1087px) {
    .column.is-narrow-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }

    .column.is-full-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%
    }

    .column.is-three-quarters-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 75%
    }

    .column.is-two-thirds-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 66.6666%
    }

    .column.is-half-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 50%
    }

    .column.is-one-third-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 33.3333%
    }

    .column.is-one-quarter-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 25%
    }

    .column.is-one-fifth-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 20%
    }

    .column.is-two-fifths-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 40%
    }

    .column.is-three-fifths-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 60%
    }

    .column.is-four-fifths-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 80%
    }

    .column.is-offset-three-quarters-touch {
        margin-left: 75%
    }

    .column.is-offset-two-thirds-touch {
        margin-left: 66.6666%
    }

    .column.is-offset-half-touch {
        margin-left: 50%
    }

    .column.is-offset-one-third-touch {
        margin-left: 33.3333%
    }

    .column.is-offset-one-quarter-touch {
        margin-left: 25%
    }

    .column.is-offset-one-fifth-touch {
        margin-left: 20%
    }

    .column.is-offset-two-fifths-touch {
        margin-left: 40%
    }

    .column.is-offset-three-fifths-touch {
        margin-left: 60%
    }

    .column.is-offset-four-fifths-touch {
        margin-left: 80%
    }

    .column.is-1-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 8.33333%
    }

    .column.is-offset-1-touch {
        margin-left: 8.33333%
    }

    .column.is-2-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 16.66667%
    }

    .column.is-offset-2-touch {
        margin-left: 16.66667%
    }

    .column.is-3-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 25%
    }

    .column.is-offset-3-touch {
        margin-left: 25%
    }

    .column.is-4-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 33.33333%
    }

    .column.is-offset-4-touch {
        margin-left: 33.33333%
    }

    .column.is-5-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 41.66667%
    }

    .column.is-offset-5-touch {
        margin-left: 41.66667%
    }

    .column.is-6-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 50%
    }

    .column.is-offset-6-touch {
        margin-left: 50%
    }

    .column.is-7-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 58.33333%
    }

    .column.is-offset-7-touch {
        margin-left: 58.33333%
    }

    .column.is-8-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 66.66667%
    }

    .column.is-offset-8-touch {
        margin-left: 66.66667%
    }

    .column.is-9-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 75%
    }

    .column.is-offset-9-touch {
        margin-left: 75%
    }

    .column.is-10-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 83.33333%
    }

    .column.is-offset-10-touch {
        margin-left: 83.33333%
    }

    .column.is-11-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 91.66667%
    }

    .column.is-offset-11-touch {
        margin-left: 91.66667%
    }

    .column.is-12-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%
    }

    .column.is-offset-12-touch {
        margin-left: 100%
    }
}

@media screen and (min-width:1088px) {
    .column.is-narrow-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }

    .column.is-full-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%
    }

    .column.is-three-quarters-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 75%
    }

    .column.is-two-thirds-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 66.6666%
    }

    .column.is-half-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 50%
    }

    .column.is-one-third-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 33.3333%
    }

    .column.is-one-quarter-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 25%
    }

    .column.is-one-fifth-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 20%
    }

    .column.is-two-fifths-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 40%
    }

    .column.is-three-fifths-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 60%
    }

    .column.is-four-fifths-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 80%
    }

    .column.is-offset-three-quarters-desktop {
        margin-left: 75%
    }

    .column.is-offset-two-thirds-desktop {
        margin-left: 66.6666%
    }

    .column.is-offset-half-desktop {
        margin-left: 50%
    }

    .column.is-offset-one-third-desktop {
        margin-left: 33.3333%
    }

    .column.is-offset-one-quarter-desktop {
        margin-left: 25%
    }

    .column.is-offset-one-fifth-desktop {
        margin-left: 20%
    }

    .column.is-offset-two-fifths-desktop {
        margin-left: 40%
    }

    .column.is-offset-three-fifths-desktop {
        margin-left: 60%
    }

    .column.is-offset-four-fifths-desktop {
        margin-left: 80%
    }

    .column.is-1-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 8.33333%
    }

    .column.is-offset-1-desktop {
        margin-left: 8.33333%
    }

    .column.is-2-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 16.66667%
    }

    .column.is-offset-2-desktop {
        margin-left: 16.66667%
    }

    .column.is-3-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 25%
    }

    .column.is-offset-3-desktop {
        margin-left: 25%
    }

    .column.is-4-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 33.33333%
    }

    .column.is-offset-4-desktop {
        margin-left: 33.33333%
    }

    .column.is-5-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 41.66667%
    }

    .column.is-offset-5-desktop {
        margin-left: 41.66667%
    }

    .column.is-6-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 50%
    }

    .column.is-offset-6-desktop {
        margin-left: 50%
    }

    .column.is-7-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 58.33333%
    }

    .column.is-offset-7-desktop {
        margin-left: 58.33333%
    }

    .column.is-8-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 66.66667%
    }

    .column.is-offset-8-desktop {
        margin-left: 66.66667%
    }

    .column.is-9-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 75%
    }

    .column.is-offset-9-desktop {
        margin-left: 75%
    }

    .column.is-10-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 83.33333%
    }

    .column.is-offset-10-desktop {
        margin-left: 83.33333%
    }

    .column.is-11-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 91.66667%
    }

    .column.is-offset-11-desktop {
        margin-left: 91.66667%
    }

    .column.is-12-desktop {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%
    }

    .column.is-offset-12-desktop {
        margin-left: 100%
    }
}

@media screen and (min-width:1280px) {
    .column.is-narrow-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }

    .column.is-full-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%
    }

    .column.is-three-quarters-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 75%
    }

    .column.is-two-thirds-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 66.6666%
    }

    .column.is-half-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 50%
    }

    .column.is-one-third-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 33.3333%
    }

    .column.is-one-quarter-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 25%
    }

    .column.is-one-fifth-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 20%
    }

    .column.is-two-fifths-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 40%
    }

    .column.is-three-fifths-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 60%
    }

    .column.is-four-fifths-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 80%
    }

    .column.is-offset-three-quarters-widescreen {
        margin-left: 75%
    }

    .column.is-offset-two-thirds-widescreen {
        margin-left: 66.6666%
    }

    .column.is-offset-half-widescreen {
        margin-left: 50%
    }

    .column.is-offset-one-third-widescreen {
        margin-left: 33.3333%
    }

    .column.is-offset-one-quarter-widescreen {
        margin-left: 25%
    }

    .column.is-offset-one-fifth-widescreen {
        margin-left: 20%
    }

    .column.is-offset-two-fifths-widescreen {
        margin-left: 40%
    }

    .column.is-offset-three-fifths-widescreen {
        margin-left: 60%
    }

    .column.is-offset-four-fifths-widescreen {
        margin-left: 80%
    }

    .column.is-1-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 8.33333%
    }

    .column.is-offset-1-widescreen {
        margin-left: 8.33333%
    }

    .column.is-2-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 16.66667%
    }

    .column.is-offset-2-widescreen {
        margin-left: 16.66667%
    }

    .column.is-3-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 25%
    }

    .column.is-offset-3-widescreen {
        margin-left: 25%
    }

    .column.is-4-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 33.33333%
    }

    .column.is-offset-4-widescreen {
        margin-left: 33.33333%
    }

    .column.is-5-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 41.66667%
    }

    .column.is-offset-5-widescreen {
        margin-left: 41.66667%
    }

    .column.is-6-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 50%
    }

    .column.is-offset-6-widescreen {
        margin-left: 50%
    }

    .column.is-7-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 58.33333%
    }

    .column.is-offset-7-widescreen {
        margin-left: 58.33333%
    }

    .column.is-8-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 66.66667%
    }

    .column.is-offset-8-widescreen {
        margin-left: 66.66667%
    }

    .column.is-9-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 75%
    }

    .column.is-offset-9-widescreen {
        margin-left: 75%
    }

    .column.is-10-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 83.33333%
    }

    .column.is-offset-10-widescreen {
        margin-left: 83.33333%
    }

    .column.is-11-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 91.66667%
    }

    .column.is-offset-11-widescreen {
        margin-left: 91.66667%
    }

    .column.is-12-widescreen {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%
    }

    .column.is-offset-12-widescreen {
        margin-left: 100%
    }
}

@media screen and (min-width:1472px) {
    .column.is-narrow-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }

    .column.is-full-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%
    }

    .column.is-three-quarters-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 75%
    }

    .column.is-two-thirds-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 66.6666%
    }

    .column.is-half-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 50%
    }

    .column.is-one-third-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 33.3333%
    }

    .column.is-one-quarter-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 25%
    }

    .column.is-one-fifth-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 20%
    }

    .column.is-two-fifths-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 40%
    }

    .column.is-three-fifths-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 60%
    }

    .column.is-four-fifths-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 80%
    }

    .column.is-offset-three-quarters-fullhd {
        margin-left: 75%
    }

    .column.is-offset-two-thirds-fullhd {
        margin-left: 66.6666%
    }

    .column.is-offset-half-fullhd {
        margin-left: 50%
    }

    .column.is-offset-one-third-fullhd {
        margin-left: 33.3333%
    }

    .column.is-offset-one-quarter-fullhd {
        margin-left: 25%
    }

    .column.is-offset-one-fifth-fullhd {
        margin-left: 20%
    }

    .column.is-offset-two-fifths-fullhd {
        margin-left: 40%
    }

    .column.is-offset-three-fifths-fullhd {
        margin-left: 60%
    }

    .column.is-offset-four-fifths-fullhd {
        margin-left: 80%
    }

    .column.is-1-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 8.33333%
    }

    .column.is-offset-1-fullhd {
        margin-left: 8.33333%
    }

    .column.is-2-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 16.66667%
    }

    .column.is-offset-2-fullhd {
        margin-left: 16.66667%
    }

    .column.is-3-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 25%
    }

    .column.is-offset-3-fullhd {
        margin-left: 25%
    }

    .column.is-4-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 33.33333%
    }

    .column.is-offset-4-fullhd {
        margin-left: 33.33333%
    }

    .column.is-5-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 41.66667%
    }

    .column.is-offset-5-fullhd {
        margin-left: 41.66667%
    }

    .column.is-6-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 50%
    }

    .column.is-offset-6-fullhd {
        margin-left: 50%
    }

    .column.is-7-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 58.33333%
    }

    .column.is-offset-7-fullhd {
        margin-left: 58.33333%
    }

    .column.is-8-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 66.66667%
    }

    .column.is-offset-8-fullhd {
        margin-left: 66.66667%
    }

    .column.is-9-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 75%
    }

    .column.is-offset-9-fullhd {
        margin-left: 75%
    }

    .column.is-10-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 83.33333%
    }

    .column.is-offset-10-fullhd {
        margin-left: 83.33333%
    }

    .column.is-11-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 91.66667%
    }

    .column.is-offset-11-fullhd {
        margin-left: 91.66667%
    }

    .column.is-12-fullhd {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%
    }

    .column.is-offset-12-fullhd {
        margin-left: 100%
    }
}

.columns {
    margin-left: -.75rem;
    margin-right: -.75rem;
    margin-top: -.75rem
}

    .columns:last-child {
        margin-bottom: -.75rem
    }

    .columns:not(:last-child) {
        margin-bottom: calc(1.5rem - .75rem)
    }

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

    .columns.is-gapless {
        margin-left: 0;
        margin-right: 0;
        margin-top: 0
    }

        .columns.is-gapless > .column {
            margin: 0;
            padding: 0 !important
        }

        .columns.is-gapless:not(:last-child) {
            margin-bottom: 1.5rem
        }

        .columns.is-gapless:last-child {
            margin-bottom: 0
        }

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

    .columns.is-multiline {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

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

@media screen and (min-width:769px),print {
    .columns:not(.is-desktop) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

@media screen and (min-width:1088px) {
    .columns.is-desktop {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.columns.is-variable {
    --columnGap: 0.75rem;
    margin-left: calc(-1 * var(--columnGap));
    margin-right: calc(-1 * var(--columnGap))
}

    .columns.is-variable .column {
        padding-left: var(--columnGap);
        padding-right: var(--columnGap)
    }

    .columns.is-variable.is-0 {
        --columnGap: 0rem
    }

    .columns.is-variable.is-1 {
        --columnGap: 0.25rem
    }

    .columns.is-variable.is-2 {
        --columnGap: 0.5rem
    }

    .columns.is-variable.is-3 {
        --columnGap: 0.75rem
    }

    .columns.is-variable.is-4 {
        --columnGap: 1rem
    }

    .columns.is-variable.is-5 {
        --columnGap: 1.25rem
    }

    .columns.is-variable.is-6 {
        --columnGap: 1.5rem
    }

    .columns.is-variable.is-7 {
        --columnGap: 1.75rem
    }

    .columns.is-variable.is-8 {
        --columnGap: 2rem
    }

.tile {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: block;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    min-height: -webkit-min-content;
    min-height: -moz-min-content;
    min-height: min-content
}

    .tile.is-ancestor {
        margin-left: -.75rem;
        margin-right: -.75rem;
        margin-top: -.75rem
    }

        .tile.is-ancestor:last-child {
            margin-bottom: -.75rem
        }

        .tile.is-ancestor:not(:last-child) {
            margin-bottom: .75rem
        }

    .tile.is-child {
        margin: 0 !important
    }

    .tile.is-parent {
        padding: .75rem
    }

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

        .tile.is-vertical > .tile.is-child:not(:last-child) {
            margin-bottom: 1.5rem !important
        }

@media screen and (min-width:769px),print {
    .tile:not(.is-child) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .tile.is-1 {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 8.33333%
    }

    .tile.is-2 {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 16.66667%
    }

    .tile.is-3 {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 25%
    }

    .tile.is-4 {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 33.33333%
    }

    .tile.is-5 {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 41.66667%
    }

    .tile.is-6 {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 50%
    }

    .tile.is-7 {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 58.33333%
    }

    .tile.is-8 {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 66.66667%
    }

    .tile.is-9 {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 75%
    }

    .tile.is-10 {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 83.33333%
    }

    .tile.is-11 {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 91.66667%
    }

    .tile.is-12 {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 100%
    }
}

.hero {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

    .hero .navbar {
        background: 0 0
    }

    .hero .tabs ul {
        border-bottom: none
    }

    .hero.is-white {
        background-color: #fff;
        color: #0a0a0a
    }

        .hero.is-white a:not(.button):not(.dropdown-item):not(.tag), .hero.is-white strong {
            color: inherit
        }

        .hero.is-white .title {
            color: #0a0a0a
        }

        .hero.is-white .subtitle {
            color: rgba(10,10,10,.9)
        }

            .hero.is-white .subtitle a:not(.button), .hero.is-white .subtitle strong {
                color: #0a0a0a
            }

@media screen and (max-width:1087px) {
    .hero.is-white .navbar-menu {
        background-color: #fff
    }
}

.hero.is-white .navbar-item, .hero.is-white .navbar-link {
    color: rgba(10,10,10,.7)
}

    .hero.is-white .navbar-link.is-active, .hero.is-white .navbar-link:hover, .hero.is-white a.navbar-item.is-active, .hero.is-white a.navbar-item:hover {
        background-color: #f2f2f2;
        color: #0a0a0a
    }

.hero.is-white .tabs a {
    color: #0a0a0a;
    opacity: .9
}

    .hero.is-white .tabs a:hover {
        opacity: 1
    }

.hero.is-white .tabs li.is-active a {
    opacity: 1
}

.hero.is-white .tabs.is-boxed a, .hero.is-white .tabs.is-toggle a {
    color: #0a0a0a
}

    .hero.is-white .tabs.is-boxed a:hover, .hero.is-white .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-white .tabs.is-boxed li.is-active a, .hero.is-white .tabs.is-boxed li.is-active a:hover, .hero.is-white .tabs.is-toggle li.is-active a, .hero.is-white .tabs.is-toggle li.is-active a:hover {
    background-color: #0a0a0a;
    border-color: #0a0a0a;
    color: #fff
}

.hero.is-white.is-bold {
    background-image: linear-gradient(141deg,#e6e6e6 0,#fff 71%,#fff 100%)
}

@media screen and (max-width:768px) {
    .hero.is-white.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#e6e6e6 0,#fff 71%,#fff 100%)
    }
}

.hero.is-black {
    background-color: #0a0a0a;
    color: #fff
}

    .hero.is-black a:not(.button):not(.dropdown-item):not(.tag), .hero.is-black strong {
        color: inherit
    }

    .hero.is-black .title {
        color: #fff
    }

    .hero.is-black .subtitle {
        color: rgba(255,255,255,.9)
    }

        .hero.is-black .subtitle a:not(.button), .hero.is-black .subtitle strong {
            color: #fff
        }

@media screen and (max-width:1087px) {
    .hero.is-black .navbar-menu {
        background-color: #0a0a0a
    }
}

.hero.is-black .navbar-item, .hero.is-black .navbar-link {
    color: rgba(255,255,255,.7)
}

    .hero.is-black .navbar-link.is-active, .hero.is-black .navbar-link:hover, .hero.is-black a.navbar-item.is-active, .hero.is-black a.navbar-item:hover {
        background-color: #000;
        color: #fff
    }

.hero.is-black .tabs a {
    color: #fff;
    opacity: .9
}

    .hero.is-black .tabs a:hover {
        opacity: 1
    }

.hero.is-black .tabs li.is-active a {
    opacity: 1
}

.hero.is-black .tabs.is-boxed a, .hero.is-black .tabs.is-toggle a {
    color: #fff
}

    .hero.is-black .tabs.is-boxed a:hover, .hero.is-black .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-black .tabs.is-boxed li.is-active a, .hero.is-black .tabs.is-boxed li.is-active a:hover, .hero.is-black .tabs.is-toggle li.is-active a, .hero.is-black .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #0a0a0a
}

.hero.is-black.is-bold {
    background-image: linear-gradient(141deg,#000 0,#0a0a0a 71%,#181616 100%)
}

@media screen and (max-width:768px) {
    .hero.is-black.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#000 0,#0a0a0a 71%,#181616 100%)
    }
}

.hero.is-light {
    background-color: #f5f5f5;
    color: #363636
}

    .hero.is-light a:not(.button):not(.dropdown-item):not(.tag), .hero.is-light strong {
        color: inherit
    }

    .hero.is-light .title {
        color: #363636
    }

    .hero.is-light .subtitle {
        color: rgba(54,54,54,.9)
    }

        .hero.is-light .subtitle a:not(.button), .hero.is-light .subtitle strong {
            color: #363636
        }

@media screen and (max-width:1087px) {
    .hero.is-light .navbar-menu {
        background-color: #f5f5f5
    }
}

.hero.is-light .navbar-item, .hero.is-light .navbar-link {
    color: rgba(54,54,54,.7)
}

    .hero.is-light .navbar-link.is-active, .hero.is-light .navbar-link:hover, .hero.is-light a.navbar-item.is-active, .hero.is-light a.navbar-item:hover {
        background-color: #e8e8e8;
        color: #363636
    }

.hero.is-light .tabs a {
    color: #363636;
    opacity: .9
}

    .hero.is-light .tabs a:hover {
        opacity: 1
    }

.hero.is-light .tabs li.is-active a {
    opacity: 1
}

.hero.is-light .tabs.is-boxed a, .hero.is-light .tabs.is-toggle a {
    color: #363636
}

    .hero.is-light .tabs.is-boxed a:hover, .hero.is-light .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-light .tabs.is-boxed li.is-active a, .hero.is-light .tabs.is-boxed li.is-active a:hover, .hero.is-light .tabs.is-toggle li.is-active a, .hero.is-light .tabs.is-toggle li.is-active a:hover {
    background-color: #363636;
    border-color: #363636;
    color: #f5f5f5
}

.hero.is-light.is-bold {
    background-image: linear-gradient(141deg,#dfd8d9 0,#f5f5f5 71%,#fff 100%)
}

@media screen and (max-width:768px) {
    .hero.is-light.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#dfd8d9 0,#f5f5f5 71%,#fff 100%)
    }
}

.hero.is-dark {
    background-color: #363636;
    color: #f5f5f5
}

    .hero.is-dark a:not(.button):not(.dropdown-item):not(.tag), .hero.is-dark strong {
        color: inherit
    }

    .hero.is-dark .title {
        color: #f5f5f5
    }

    .hero.is-dark .subtitle {
        color: rgba(245,245,245,.9)
    }

        .hero.is-dark .subtitle a:not(.button), .hero.is-dark .subtitle strong {
            color: #f5f5f5
        }

@media screen and (max-width:1087px) {
    .hero.is-dark .navbar-menu {
        background-color: #363636
    }
}

.hero.is-dark .navbar-item, .hero.is-dark .navbar-link {
    color: rgba(245,245,245,.7)
}

    .hero.is-dark .navbar-link.is-active, .hero.is-dark .navbar-link:hover, .hero.is-dark a.navbar-item.is-active, .hero.is-dark a.navbar-item:hover {
        background-color: #292929;
        color: #f5f5f5
    }

.hero.is-dark .tabs a {
    color: #f5f5f5;
    opacity: .9
}

    .hero.is-dark .tabs a:hover {
        opacity: 1
    }

.hero.is-dark .tabs li.is-active a {
    opacity: 1
}

.hero.is-dark .tabs.is-boxed a, .hero.is-dark .tabs.is-toggle a {
    color: #f5f5f5
}

    .hero.is-dark .tabs.is-boxed a:hover, .hero.is-dark .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-dark .tabs.is-boxed li.is-active a, .hero.is-dark .tabs.is-boxed li.is-active a:hover, .hero.is-dark .tabs.is-toggle li.is-active a, .hero.is-dark .tabs.is-toggle li.is-active a:hover {
    background-color: #f5f5f5;
    border-color: #f5f5f5;
    color: #363636
}

.hero.is-dark.is-bold {
    background-image: linear-gradient(141deg,#1f191a 0,#363636 71%,#46403f 100%)
}

@media screen and (max-width:768px) {
    .hero.is-dark.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#1f191a 0,#363636 71%,#46403f 100%)
    }
}

.hero.is-primary {
    background-color: #9fbf43;
    color: #fff
}

    .hero.is-primary a:not(.button):not(.dropdown-item):not(.tag), .hero.is-primary strong {
        color: inherit
    }

    .hero.is-primary .title {
        color: #fff
    }

    .hero.is-primary .subtitle {
        color: rgba(255,255,255,.9)
    }

        .hero.is-primary .subtitle a:not(.button), .hero.is-primary .subtitle strong {
            color: #fff
        }

@media screen and (max-width:1087px) {
    .hero.is-primary .navbar-menu {
        background-color: #9fbf43
    }
}

.hero.is-primary .navbar-item, .hero.is-primary .navbar-link {
    color: rgba(255,255,255,.7)
}

    .hero.is-primary .navbar-link.is-active, .hero.is-primary .navbar-link:hover, .hero.is-primary a.navbar-item.is-active, .hero.is-primary a.navbar-item:hover {
        background-color: #ee4911;
        color: #fff
    }

.hero.is-primary .tabs a {
    color: #fff;
    opacity: .9
}

    .hero.is-primary .tabs a:hover {
        opacity: 1
    }

.hero.is-primary .tabs li.is-active a {
    opacity: 1
}

.hero.is-primary .tabs.is-boxed a, .hero.is-primary .tabs.is-toggle a {
    color: #fff
}

    .hero.is-primary .tabs.is-boxed a:hover, .hero.is-primary .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-primary .tabs.is-boxed li.is-active a, .hero.is-primary .tabs.is-boxed li.is-active a:hover, .hero.is-primary .tabs.is-toggle li.is-active a, .hero.is-primary .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #9fbf43
}

.hero.is-primary.is-bold {
    background-image: linear-gradient(141deg,#e21604 0,#9fbf43 71%,#f78a3c 100%)
}

@media screen and (max-width:768px) {
    .hero.is-primary.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#e21604 0,#9fbf43 71%,#f78a3c 100%)
    }
}

.hero.is-link {
    background-color: #9fbf43;
    color: #fff
}

    .hero.is-link a:not(.button):not(.dropdown-item):not(.tag), .hero.is-link strong {
        color: inherit
    }

    .hero.is-link .title {
        color: #fff
    }

    .hero.is-link .subtitle {
        color: rgba(255,255,255,.9)
    }

        .hero.is-link .subtitle a:not(.button), .hero.is-link .subtitle strong {
            color: #fff
        }

@media screen and (max-width:1087px) {
    .hero.is-link .navbar-menu {
        background-color: #9fbf43
    }
}

.hero.is-link .navbar-item, .hero.is-link .navbar-link {
    color: rgba(255,255,255,.7)
}

    .hero.is-link .navbar-link.is-active, .hero.is-link .navbar-link:hover, .hero.is-link a.navbar-item.is-active, .hero.is-link a.navbar-item:hover {
        background-color: #ee4911;
        color: #fff
    }

.hero.is-link .tabs a {
    color: #fff;
    opacity: .9
}

    .hero.is-link .tabs a:hover {
        opacity: 1
    }

.hero.is-link .tabs li.is-active a {
    opacity: 1
}

.hero.is-link .tabs.is-boxed a, .hero.is-link .tabs.is-toggle a {
    color: #fff
}

    .hero.is-link .tabs.is-boxed a:hover, .hero.is-link .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-link .tabs.is-boxed li.is-active a, .hero.is-link .tabs.is-boxed li.is-active a:hover, .hero.is-link .tabs.is-toggle li.is-active a, .hero.is-link .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #9fbf43
}

.hero.is-link.is-bold {
    background-image: linear-gradient(141deg,#e21604 0,#9fbf43 71%,#f78a3c 100%)
}

@media screen and (max-width:768px) {
    .hero.is-link.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#e21604 0,#9fbf43 71%,#f78a3c 100%)
    }
}

.hero.is-info {
    background-color: #209cee;
    color: #fff
}

    .hero.is-info a:not(.button):not(.dropdown-item):not(.tag), .hero.is-info strong {
        color: inherit
    }

    .hero.is-info .title {
        color: #fff
    }

    .hero.is-info .subtitle {
        color: rgba(255,255,255,.9)
    }

        .hero.is-info .subtitle a:not(.button), .hero.is-info .subtitle strong {
            color: #fff
        }

@media screen and (max-width:1087px) {
    .hero.is-info .navbar-menu {
        background-color: #209cee
    }
}

.hero.is-info .navbar-item, .hero.is-info .navbar-link {
    color: rgba(255,255,255,.7)
}

    .hero.is-info .navbar-link.is-active, .hero.is-info .navbar-link:hover, .hero.is-info a.navbar-item.is-active, .hero.is-info a.navbar-item:hover {
        background-color: #118fe4;
        color: #fff
    }

.hero.is-info .tabs a {
    color: #fff;
    opacity: .9
}

    .hero.is-info .tabs a:hover {
        opacity: 1
    }

.hero.is-info .tabs li.is-active a {
    opacity: 1
}

.hero.is-info .tabs.is-boxed a, .hero.is-info .tabs.is-toggle a {
    color: #fff
}

    .hero.is-info .tabs.is-boxed a:hover, .hero.is-info .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-info .tabs.is-boxed li.is-active a, .hero.is-info .tabs.is-boxed li.is-active a:hover, .hero.is-info .tabs.is-toggle li.is-active a, .hero.is-info .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #209cee
}

.hero.is-info.is-bold {
    background-image: linear-gradient(141deg,#04a6d7 0,#209cee 71%,#3287f5 100%)
}

@media screen and (max-width:768px) {
    .hero.is-info.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#04a6d7 0,#209cee 71%,#3287f5 100%)
    }
}

.hero.is-success {
    background-color: #23d160;
    color: #fff
}

    .hero.is-success a:not(.button):not(.dropdown-item):not(.tag), .hero.is-success strong {
        color: inherit
    }

    .hero.is-success .title {
        color: #fff
    }

    .hero.is-success .subtitle {
        color: rgba(255,255,255,.9)
    }

        .hero.is-success .subtitle a:not(.button), .hero.is-success .subtitle strong {
            color: #fff
        }

@media screen and (max-width:1087px) {
    .hero.is-success .navbar-menu {
        background-color: #23d160
    }
}

.hero.is-success .navbar-item, .hero.is-success .navbar-link {
    color: rgba(255,255,255,.7)
}

    .hero.is-success .navbar-link.is-active, .hero.is-success .navbar-link:hover, .hero.is-success a.navbar-item.is-active, .hero.is-success a.navbar-item:hover {
        background-color: #20bc56;
        color: #fff
    }

.hero.is-success .tabs a {
    color: #fff;
    opacity: .9
}

    .hero.is-success .tabs a:hover {
        opacity: 1
    }

.hero.is-success .tabs li.is-active a {
    opacity: 1
}

.hero.is-success .tabs.is-boxed a, .hero.is-success .tabs.is-toggle a {
    color: #fff
}

    .hero.is-success .tabs.is-boxed a:hover, .hero.is-success .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-success .tabs.is-boxed li.is-active a, .hero.is-success .tabs.is-boxed li.is-active a:hover, .hero.is-success .tabs.is-toggle li.is-active a, .hero.is-success .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #23d160
}

.hero.is-success.is-bold {
    background-image: linear-gradient(141deg,#12af2f 0,#23d160 71%,#2ce28a 100%)
}

@media screen and (max-width:768px) {
    .hero.is-success.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#12af2f 0,#23d160 71%,#2ce28a 100%)
    }
}

.hero.is-warning {
    background-color: #ffdd57;
    color: rgba(0,0,0,.7)
}

    .hero.is-warning a:not(.button):not(.dropdown-item):not(.tag), .hero.is-warning strong {
        color: inherit
    }

    .hero.is-warning .title {
        color: rgba(0,0,0,.7)
    }

    .hero.is-warning .subtitle {
        color: rgba(0,0,0,.9)
    }

        .hero.is-warning .subtitle a:not(.button), .hero.is-warning .subtitle strong {
            color: rgba(0,0,0,.7)
        }

@media screen and (max-width:1087px) {
    .hero.is-warning .navbar-menu {
        background-color: #ffdd57
    }
}

.hero.is-warning .navbar-item, .hero.is-warning .navbar-link {
    color: rgba(0,0,0,.7)
}

    .hero.is-warning .navbar-link.is-active, .hero.is-warning .navbar-link:hover, .hero.is-warning a.navbar-item.is-active, .hero.is-warning a.navbar-item:hover {
        background-color: #ffd83d;
        color: rgba(0,0,0,.7)
    }

.hero.is-warning .tabs a {
    color: rgba(0,0,0,.7);
    opacity: .9
}

    .hero.is-warning .tabs a:hover {
        opacity: 1
    }

.hero.is-warning .tabs li.is-active a {
    opacity: 1
}

.hero.is-warning .tabs.is-boxed a, .hero.is-warning .tabs.is-toggle a {
    color: rgba(0,0,0,.7)
}

    .hero.is-warning .tabs.is-boxed a:hover, .hero.is-warning .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-warning .tabs.is-boxed li.is-active a, .hero.is-warning .tabs.is-boxed li.is-active a:hover, .hero.is-warning .tabs.is-toggle li.is-active a, .hero.is-warning .tabs.is-toggle li.is-active a:hover {
    background-color: rgba(0,0,0,.7);
    border-color: rgba(0,0,0,.7);
    color: #ffdd57
}

.hero.is-warning.is-bold {
    background-image: linear-gradient(141deg,#ffaf24 0,#ffdd57 71%,#fffa70 100%)
}

@media screen and (max-width:768px) {
    .hero.is-warning.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#ffaf24 0,#ffdd57 71%,#fffa70 100%)
    }
}

.hero.is-danger {
    background-color: #ff3860;
    color: #fff
}

    .hero.is-danger a:not(.button):not(.dropdown-item):not(.tag), .hero.is-danger strong {
        color: inherit
    }

    .hero.is-danger .title {
        color: #fff
    }

    .hero.is-danger .subtitle {
        color: rgba(255,255,255,.9)
    }

        .hero.is-danger .subtitle a:not(.button), .hero.is-danger .subtitle strong {
            color: #fff
        }

@media screen and (max-width:1087px) {
    .hero.is-danger .navbar-menu {
        background-color: #ff3860
    }
}

.hero.is-danger .navbar-item, .hero.is-danger .navbar-link {
    color: rgba(255,255,255,.7)
}

    .hero.is-danger .navbar-link.is-active, .hero.is-danger .navbar-link:hover, .hero.is-danger a.navbar-item.is-active, .hero.is-danger a.navbar-item:hover {
        background-color: #ff1f4b;
        color: #fff
    }

.hero.is-danger .tabs a {
    color: #fff;
    opacity: .9
}

    .hero.is-danger .tabs a:hover {
        opacity: 1
    }

.hero.is-danger .tabs li.is-active a {
    opacity: 1
}

.hero.is-danger .tabs.is-boxed a, .hero.is-danger .tabs.is-toggle a {
    color: #fff
}

    .hero.is-danger .tabs.is-boxed a:hover, .hero.is-danger .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-danger .tabs.is-boxed li.is-active a, .hero.is-danger .tabs.is-boxed li.is-active a:hover, .hero.is-danger .tabs.is-toggle li.is-active a, .hero.is-danger .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #ff3860
}

.hero.is-danger.is-bold {
    background-image: linear-gradient(141deg,#ff0561 0,#ff3860 71%,#ff5257 100%)
}

@media screen and (max-width:768px) {
    .hero.is-danger.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#ff0561 0,#ff3860 71%,#ff5257 100%)
    }
}

.hero.is-primary-2 {
    background-color: #fa622f;
    color: #fff
}

    .hero.is-primary-2 a:not(.button):not(.dropdown-item):not(.tag), .hero.is-primary-2 strong {
        color: inherit
    }

    .hero.is-primary-2 .title {
        color: #fff
    }

    .hero.is-primary-2 .subtitle {
        color: rgba(255,255,255,.9)
    }

        .hero.is-primary-2 .subtitle a:not(.button), .hero.is-primary-2 .subtitle strong {
            color: #fff
        }

@media screen and (max-width:1087px) {
    .hero.is-primary-2 .navbar-menu {
        background-color: #fa622f
    }
}

.hero.is-primary-2 .navbar-item, .hero.is-primary-2 .navbar-link {
    color: rgba(255,255,255,.7)
}

    .hero.is-primary-2 .navbar-link.is-active, .hero.is-primary-2 .navbar-link:hover, .hero.is-primary-2 a.navbar-item.is-active, .hero.is-primary-2 a.navbar-item:hover {
        background-color: #f94f16;
        color: #fff
    }

.hero.is-primary-2 .tabs a {
    color: #fff;
    opacity: .9
}

    .hero.is-primary-2 .tabs a:hover {
        opacity: 1
    }

.hero.is-primary-2 .tabs li.is-active a {
    opacity: 1
}

.hero.is-primary-2 .tabs.is-boxed a, .hero.is-primary-2 .tabs.is-toggle a {
    color: #fff
}

    .hero.is-primary-2 .tabs.is-boxed a:hover, .hero.is-primary-2 .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-primary-2 .tabs.is-boxed li.is-active a, .hero.is-primary-2 .tabs.is-boxed li.is-active a:hover, .hero.is-primary-2 .tabs.is-toggle li.is-active a, .hero.is-primary-2 .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #fa622f
}

.hero.is-primary-2.is-bold {
    background-image: linear-gradient(141deg,#f61500 0,#fa622f 71%,#ff9244 100%)
}

@media screen and (max-width:768px) {
    .hero.is-primary-2.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#f61500 0,#fa622f 71%,#ff9244 100%)
    }
}

.hero.is-primary-3 {
    background-color: #e65322;
    color: #fff
}

    .hero.is-primary-3 a:not(.button):not(.dropdown-item):not(.tag), .hero.is-primary-3 strong {
        color: inherit
    }

    .hero.is-primary-3 .title {
        color: #fff
    }

    .hero.is-primary-3 .subtitle {
        color: rgba(255,255,255,.9)
    }

        .hero.is-primary-3 .subtitle a:not(.button), .hero.is-primary-3 .subtitle strong {
            color: #fff
        }

@media screen and (max-width:1087px) {
    .hero.is-primary-3 .navbar-menu {
        background-color: #e65322
    }
}

.hero.is-primary-3 .navbar-item, .hero.is-primary-3 .navbar-link {
    color: rgba(255,255,255,.7)
}

    .hero.is-primary-3 .navbar-link.is-active, .hero.is-primary-3 .navbar-link:hover, .hero.is-primary-3 a.navbar-item.is-active, .hero.is-primary-3 a.navbar-item:hover {
        background-color: #d64818;
        color: #fff
    }

.hero.is-primary-3 .tabs a {
    color: #fff;
    opacity: .9
}

    .hero.is-primary-3 .tabs a:hover {
        opacity: 1
    }

.hero.is-primary-3 .tabs li.is-active a {
    opacity: 1
}

.hero.is-primary-3 .tabs.is-boxed a, .hero.is-primary-3 .tabs.is-toggle a {
    color: #fff
}

    .hero.is-primary-3 .tabs.is-boxed a:hover, .hero.is-primary-3 .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-primary-3 .tabs.is-boxed li.is-active a, .hero.is-primary-3 .tabs.is-boxed li.is-active a:hover, .hero.is-primary-3 .tabs.is-toggle li.is-active a, .hero.is-primary-3 .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #e65322
}

.hero.is-primary-3.is-bold {
    background-image: linear-gradient(141deg,#ca1b0b 0,#e65322 71%,#ee8133 100%)
}

@media screen and (max-width:768px) {
    .hero.is-primary-3.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#ca1b0b 0,#e65322 71%,#ee8133 100%)
    }
}

.hero.is-primary-4 {
    background-color: #e85c2d;
    color: #fff
}

    .hero.is-primary-4 a:not(.button):not(.dropdown-item):not(.tag), .hero.is-primary-4 strong {
        color: inherit
    }

    .hero.is-primary-4 .title {
        color: #fff
    }

    .hero.is-primary-4 .subtitle {
        color: rgba(255,255,255,.9)
    }

        .hero.is-primary-4 .subtitle a:not(.button), .hero.is-primary-4 .subtitle strong {
            color: #fff
        }

@media screen and (max-width:1087px) {
    .hero.is-primary-4 .navbar-menu {
        background-color: #e85c2d
    }
}

.hero.is-primary-4 .navbar-item, .hero.is-primary-4 .navbar-link {
    color: rgba(255,255,255,.7)
}

    .hero.is-primary-4 .navbar-link.is-active, .hero.is-primary-4 .navbar-link:hover, .hero.is-primary-4 a.navbar-item.is-active, .hero.is-primary-4 a.navbar-item:hover {
        background-color: #e34c19;
        color: #fff
    }

.hero.is-primary-4 .tabs a {
    color: #fff;
    opacity: .9
}

    .hero.is-primary-4 .tabs a:hover {
        opacity: 1
    }

.hero.is-primary-4 .tabs li.is-active a {
    opacity: 1
}

.hero.is-primary-4 .tabs.is-boxed a, .hero.is-primary-4 .tabs.is-toggle a {
    color: #fff
}

    .hero.is-primary-4 .tabs.is-boxed a:hover, .hero.is-primary-4 .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-primary-4 .tabs.is-boxed li.is-active a, .hero.is-primary-4 .tabs.is-boxed li.is-active a:hover, .hero.is-primary-4 .tabs.is-toggle li.is-active a, .hero.is-primary-4 .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #e85c2d
}

.hero.is-primary-4.is-bold {
    background-image: linear-gradient(141deg,#d71c0b 0,#e85c2d 71%,#f0893f 100%)
}

@media screen and (max-width:768px) {
    .hero.is-primary-4.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#d71c0b 0,#e85c2d 71%,#f0893f 100%)
    }
}

.hero.is-primary-5 {
    background-color: #e35728;
    color: #fff
}

    .hero.is-primary-5 a:not(.button):not(.dropdown-item):not(.tag), .hero.is-primary-5 strong {
        color: inherit
    }

    .hero.is-primary-5 .title {
        color: #fff
    }

    .hero.is-primary-5 .subtitle {
        color: rgba(255,255,255,.9)
    }

        .hero.is-primary-5 .subtitle a:not(.button), .hero.is-primary-5 .subtitle strong {
            color: #fff
        }

@media screen and (max-width:1087px) {
    .hero.is-primary-5 .navbar-menu {
        background-color: #e35728
    }
}

.hero.is-primary-5 .navbar-item, .hero.is-primary-5 .navbar-link {
    color: rgba(255,255,255,.7)
}

    .hero.is-primary-5 .navbar-link.is-active, .hero.is-primary-5 .navbar-link:hover, .hero.is-primary-5 a.navbar-item.is-active, .hero.is-primary-5 a.navbar-item:hover {
        background-color: #d64b1c;
        color: #fff
    }

.hero.is-primary-5 .tabs a {
    color: #fff;
    opacity: .9
}

    .hero.is-primary-5 .tabs a:hover {
        opacity: 1
    }

.hero.is-primary-5 .tabs li.is-active a {
    opacity: 1
}

.hero.is-primary-5 .tabs.is-boxed a, .hero.is-primary-5 .tabs.is-toggle a {
    color: #fff
}

    .hero.is-primary-5 .tabs.is-boxed a:hover, .hero.is-primary-5 .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-primary-5 .tabs.is-boxed li.is-active a, .hero.is-primary-5 .tabs.is-boxed li.is-active a:hover, .hero.is-primary-5 .tabs.is-toggle li.is-active a, .hero.is-primary-5 .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #e35728
}

.hero.is-primary-5.is-bold {
    background-image: linear-gradient(141deg,#ca1e0e 0,#e35728 71%,#eb8439 100%)
}

@media screen and (max-width:768px) {
    .hero.is-primary-5.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#ca1e0e 0,#e35728 71%,#eb8439 100%)
    }
}

.hero.is-primary-6 {
    background-color: #e95220;
    color: #fff
}

    .hero.is-primary-6 a:not(.button):not(.dropdown-item):not(.tag), .hero.is-primary-6 strong {
        color: inherit
    }

    .hero.is-primary-6 .title {
        color: #fff
    }

    .hero.is-primary-6 .subtitle {
        color: rgba(255,255,255,.9)
    }

        .hero.is-primary-6 .subtitle a:not(.button), .hero.is-primary-6 .subtitle strong {
            color: #fff
        }

@media screen and (max-width:1087px) {
    .hero.is-primary-6 .navbar-menu {
        background-color: #e95220
    }
}

.hero.is-primary-6 .navbar-item, .hero.is-primary-6 .navbar-link {
    color: rgba(255,255,255,.7)
}

    .hero.is-primary-6 .navbar-link.is-active, .hero.is-primary-6 .navbar-link:hover, .hero.is-primary-6 a.navbar-item.is-active, .hero.is-primary-6 a.navbar-item:hover {
        background-color: #da4616;
        color: #fff
    }

.hero.is-primary-6 .tabs a {
    color: #fff;
    opacity: .9
}

    .hero.is-primary-6 .tabs a:hover {
        opacity: 1
    }

.hero.is-primary-6 .tabs li.is-active a {
    opacity: 1
}

.hero.is-primary-6 .tabs.is-boxed a, .hero.is-primary-6 .tabs.is-toggle a {
    color: #fff
}

    .hero.is-primary-6 .tabs.is-boxed a:hover, .hero.is-primary-6 .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-primary-6 .tabs.is-boxed li.is-active a, .hero.is-primary-6 .tabs.is-boxed li.is-active a:hover, .hero.is-primary-6 .tabs.is-toggle li.is-active a, .hero.is-primary-6 .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #e95220
}

.hero.is-primary-6.is-bold {
    background-image: linear-gradient(141deg,#cd1909 0,#e95220 71%,#f18132 100%)
}

@media screen and (max-width:768px) {
    .hero.is-primary-6.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#cd1909 0,#e95220 71%,#f18132 100%)
    }
}

.hero.is-primary-7 {
    background-color: #fafafa;
    color: rgba(0,0,0,.7)
}

    .hero.is-primary-7 a:not(.button):not(.dropdown-item):not(.tag), .hero.is-primary-7 strong {
        color: inherit
    }

    .hero.is-primary-7 .title {
        color: rgba(0,0,0,.7)
    }

    .hero.is-primary-7 .subtitle {
        color: rgba(0,0,0,.9)
    }

        .hero.is-primary-7 .subtitle a:not(.button), .hero.is-primary-7 .subtitle strong {
            color: rgba(0,0,0,.7)
        }

@media screen and (max-width:1087px) {
    .hero.is-primary-7 .navbar-menu {
        background-color: #fafafa
    }
}

.hero.is-primary-7 .navbar-item, .hero.is-primary-7 .navbar-link {
    color: rgba(0,0,0,.7)
}

    .hero.is-primary-7 .navbar-link.is-active, .hero.is-primary-7 .navbar-link:hover, .hero.is-primary-7 a.navbar-item.is-active, .hero.is-primary-7 a.navbar-item:hover {
        background-color: #ededed;
        color: rgba(0,0,0,.7)
    }

.hero.is-primary-7 .tabs a {
    color: rgba(0,0,0,.7);
    opacity: .9
}

    .hero.is-primary-7 .tabs a:hover {
        opacity: 1
    }

.hero.is-primary-7 .tabs li.is-active a {
    opacity: 1
}

.hero.is-primary-7 .tabs.is-boxed a, .hero.is-primary-7 .tabs.is-toggle a {
    color: rgba(0,0,0,.7)
}

    .hero.is-primary-7 .tabs.is-boxed a:hover, .hero.is-primary-7 .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-primary-7 .tabs.is-boxed li.is-active a, .hero.is-primary-7 .tabs.is-boxed li.is-active a:hover, .hero.is-primary-7 .tabs.is-toggle li.is-active a, .hero.is-primary-7 .tabs.is-toggle li.is-active a:hover {
    background-color: rgba(0,0,0,.7);
    border-color: rgba(0,0,0,.7);
    color: #fafafa
}

.hero.is-primary-7.is-bold {
    background-image: linear-gradient(141deg,#e4ddde 0,#fafafa 71%,#fff 100%)
}

@media screen and (max-width:768px) {
    .hero.is-primary-7.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#e4ddde 0,#fafafa 71%,#fff 100%)
    }
}

.hero.is-primary-light {
    background-color: #f9f9f9;
    color: rgba(0,0,0,.7)
}

    .hero.is-primary-light a:not(.button):not(.dropdown-item):not(.tag), .hero.is-primary-light strong {
        color: inherit
    }

    .hero.is-primary-light .title {
        color: rgba(0,0,0,.7)
    }

    .hero.is-primary-light .subtitle {
        color: rgba(0,0,0,.9)
    }

        .hero.is-primary-light .subtitle a:not(.button), .hero.is-primary-light .subtitle strong {
            color: rgba(0,0,0,.7)
        }

@media screen and (max-width:1087px) {
    .hero.is-primary-light .navbar-menu {
        background-color: #f9f9f9
    }
}

.hero.is-primary-light .navbar-item, .hero.is-primary-light .navbar-link {
    color: rgba(0,0,0,.7)
}

    .hero.is-primary-light .navbar-link.is-active, .hero.is-primary-light .navbar-link:hover, .hero.is-primary-light a.navbar-item.is-active, .hero.is-primary-light a.navbar-item:hover {
        background-color: #ececec;
        color: rgba(0,0,0,.7)
    }

.hero.is-primary-light .tabs a {
    color: rgba(0,0,0,.7);
    opacity: .9
}

    .hero.is-primary-light .tabs a:hover {
        opacity: 1
    }

.hero.is-primary-light .tabs li.is-active a {
    opacity: 1
}

.hero.is-primary-light .tabs.is-boxed a, .hero.is-primary-light .tabs.is-toggle a {
    color: rgba(0,0,0,.7)
}

    .hero.is-primary-light .tabs.is-boxed a:hover, .hero.is-primary-light .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-primary-light .tabs.is-boxed li.is-active a, .hero.is-primary-light .tabs.is-boxed li.is-active a:hover, .hero.is-primary-light .tabs.is-toggle li.is-active a, .hero.is-primary-light .tabs.is-toggle li.is-active a:hover {
    background-color: rgba(0,0,0,.7);
    border-color: rgba(0,0,0,.7);
    color: #f9f9f9
}

.hero.is-primary-light.is-bold {
    background-image: linear-gradient(141deg,#e3dcdd 0,#f9f9f9 71%,#fff 100%)
}

@media screen and (max-width:768px) {
    .hero.is-primary-light.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#e3dcdd 0,#f9f9f9 71%,#fff 100%)
    }
}

.hero.is-secondary {
    background-color: #22262a;
    color: #fff
}

    .hero.is-secondary a:not(.button):not(.dropdown-item):not(.tag), .hero.is-secondary strong {
        color: inherit
    }

    .hero.is-secondary .title {
        color: #fff
    }

    .hero.is-secondary .subtitle {
        color: rgba(255,255,255,.9)
    }

        .hero.is-secondary .subtitle a:not(.button), .hero.is-secondary .subtitle strong {
            color: #fff
        }

@media screen and (max-width:1087px) {
    .hero.is-secondary .navbar-menu {
        background-color: #22262a
    }
}

.hero.is-secondary .navbar-item, .hero.is-secondary .navbar-link {
    color: rgba(255,255,255,.7)
}

    .hero.is-secondary .navbar-link.is-active, .hero.is-secondary .navbar-link:hover, .hero.is-secondary a.navbar-item.is-active, .hero.is-secondary a.navbar-item:hover {
        background-color: #17191c;
        color: #fff
    }

.hero.is-secondary .tabs a {
    color: #fff;
    opacity: .9
}

    .hero.is-secondary .tabs a:hover {
        opacity: 1
    }

.hero.is-secondary .tabs li.is-active a {
    opacity: 1
}

.hero.is-secondary .tabs.is-boxed a, .hero.is-secondary .tabs.is-toggle a {
    color: #fff
}

    .hero.is-secondary .tabs.is-boxed a:hover, .hero.is-secondary .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-secondary .tabs.is-boxed li.is-active a, .hero.is-secondary .tabs.is-boxed li.is-active a:hover, .hero.is-secondary .tabs.is-toggle li.is-active a, .hero.is-secondary .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #22262a
}

.hero.is-secondary.is-bold {
    background-image: linear-gradient(141deg,#0a0d0f 0,#22262a 71%,#2b303b 100%)
}

@media screen and (max-width:768px) {
    .hero.is-secondary.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#0a0d0f 0,#22262a 71%,#2b303b 100%)
    }
}

.hero.is-secondary-2 {
    background-color: #2d3238;
    color: #fff
}

    .hero.is-secondary-2 a:not(.button):not(.dropdown-item):not(.tag), .hero.is-secondary-2 strong {
        color: inherit
    }

    .hero.is-secondary-2 .title {
        color: #fff
    }

    .hero.is-secondary-2 .subtitle {
        color: rgba(255,255,255,.9)
    }

        .hero.is-secondary-2 .subtitle a:not(.button), .hero.is-secondary-2 .subtitle strong {
            color: #fff
        }

@media screen and (max-width:1087px) {
    .hero.is-secondary-2 .navbar-menu {
        background-color: #2d3238
    }
}

.hero.is-secondary-2 .navbar-item, .hero.is-secondary-2 .navbar-link {
    color: rgba(255,255,255,.7)
}

    .hero.is-secondary-2 .navbar-link.is-active, .hero.is-secondary-2 .navbar-link:hover, .hero.is-secondary-2 a.navbar-item.is-active, .hero.is-secondary-2 a.navbar-item:hover {
        background-color: #22252a;
        color: #fff
    }

.hero.is-secondary-2 .tabs a {
    color: #fff;
    opacity: .9
}

    .hero.is-secondary-2 .tabs a:hover {
        opacity: 1
    }

.hero.is-secondary-2 .tabs li.is-active a {
    opacity: 1
}

.hero.is-secondary-2 .tabs.is-boxed a, .hero.is-secondary-2 .tabs.is-toggle a {
    color: #fff
}

    .hero.is-secondary-2 .tabs.is-boxed a:hover, .hero.is-secondary-2 .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-secondary-2 .tabs.is-boxed li.is-active a, .hero.is-secondary-2 .tabs.is-boxed li.is-active a:hover, .hero.is-secondary-2 .tabs.is-toggle li.is-active a, .hero.is-secondary-2 .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #2d3238
}

.hero.is-secondary-2.is-bold {
    background-image: linear-gradient(141deg,#141a1e 0,#2d3238 71%,#353b49 100%)
}

@media screen and (max-width:768px) {
    .hero.is-secondary-2.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#141a1e 0,#2d3238 71%,#353b49 100%)
    }
}

.hero.is-secondary-3 {
    background-color: #363a3f;
    color: #fff
}

    .hero.is-secondary-3 a:not(.button):not(.dropdown-item):not(.tag), .hero.is-secondary-3 strong {
        color: inherit
    }

    .hero.is-secondary-3 .title {
        color: #fff
    }

    .hero.is-secondary-3 .subtitle {
        color: rgba(255,255,255,.9)
    }

        .hero.is-secondary-3 .subtitle a:not(.button), .hero.is-secondary-3 .subtitle strong {
            color: #fff
        }

@media screen and (max-width:1087px) {
    .hero.is-secondary-3 .navbar-menu {
        background-color: #363a3f
    }
}

.hero.is-secondary-3 .navbar-item, .hero.is-secondary-3 .navbar-link {
    color: rgba(255,255,255,.7)
}

    .hero.is-secondary-3 .navbar-link.is-active, .hero.is-secondary-3 .navbar-link:hover, .hero.is-secondary-3 a.navbar-item.is-active, .hero.is-secondary-3 a.navbar-item:hover {
        background-color: #2a2d31;
        color: #fff
    }

.hero.is-secondary-3 .tabs a {
    color: #fff;
    opacity: .9
}

    .hero.is-secondary-3 .tabs a:hover {
        opacity: 1
    }

.hero.is-secondary-3 .tabs li.is-active a {
    opacity: 1
}

.hero.is-secondary-3 .tabs.is-boxed a, .hero.is-secondary-3 .tabs.is-toggle a {
    color: #fff
}

    .hero.is-secondary-3 .tabs.is-boxed a:hover, .hero.is-secondary-3 .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-secondary-3 .tabs.is-boxed li.is-active a, .hero.is-secondary-3 .tabs.is-boxed li.is-active a:hover, .hero.is-secondary-3 .tabs.is-toggle li.is-active a, .hero.is-secondary-3 .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #363a3f
}

.hero.is-secondary-3.is-bold {
    background-image: linear-gradient(141deg,#1b2227 0,#363a3f 71%,#3e4350 100%)
}

@media screen and (max-width:768px) {
    .hero.is-secondary-3.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#1b2227 0,#363a3f 71%,#3e4350 100%)
    }
}

.hero.is-secondary-4 {
    background-color: #414549;
    color: #fff
}

    .hero.is-secondary-4 a:not(.button):not(.dropdown-item):not(.tag), .hero.is-secondary-4 strong {
        color: inherit
    }

    .hero.is-secondary-4 .title {
        color: #fff
    }

    .hero.is-secondary-4 .subtitle {
        color: rgba(255,255,255,.9)
    }

        .hero.is-secondary-4 .subtitle a:not(.button), .hero.is-secondary-4 .subtitle strong {
            color: #fff
        }

@media screen and (max-width:1087px) {
    .hero.is-secondary-4 .navbar-menu {
        background-color: #414549
    }
}

.hero.is-secondary-4 .navbar-item, .hero.is-secondary-4 .navbar-link {
    color: rgba(255,255,255,.7)
}

    .hero.is-secondary-4 .navbar-link.is-active, .hero.is-secondary-4 .navbar-link:hover, .hero.is-secondary-4 a.navbar-item.is-active, .hero.is-secondary-4 a.navbar-item:hover {
        background-color: #35383c;
        color: #fff
    }

.hero.is-secondary-4 .tabs a {
    color: #fff;
    opacity: .9
}

    .hero.is-secondary-4 .tabs a:hover {
        opacity: 1
    }

.hero.is-secondary-4 .tabs li.is-active a {
    opacity: 1
}

.hero.is-secondary-4 .tabs.is-boxed a, .hero.is-secondary-4 .tabs.is-toggle a {
    color: #fff
}

    .hero.is-secondary-4 .tabs.is-boxed a:hover, .hero.is-secondary-4 .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-secondary-4 .tabs.is-boxed li.is-active a, .hero.is-secondary-4 .tabs.is-boxed li.is-active a:hover, .hero.is-secondary-4 .tabs.is-toggle li.is-active a, .hero.is-secondary-4 .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #414549
}

.hero.is-secondary-4.is-bold {
    background-image: linear-gradient(141deg,#252e32 0,#414549 71%,#494f5b 100%)
}

@media screen and (max-width:768px) {
    .hero.is-secondary-4.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#252e32 0,#414549 71%,#494f5b 100%)
    }
}

.hero.is-secondary-5 {
    background-color: #545659;
    color: #fff
}

    .hero.is-secondary-5 a:not(.button):not(.dropdown-item):not(.tag), .hero.is-secondary-5 strong {
        color: inherit
    }

    .hero.is-secondary-5 .title {
        color: #fff
    }

    .hero.is-secondary-5 .subtitle {
        color: rgba(255,255,255,.9)
    }

        .hero.is-secondary-5 .subtitle a:not(.button), .hero.is-secondary-5 .subtitle strong {
            color: #fff
        }

@media screen and (max-width:1087px) {
    .hero.is-secondary-5 .navbar-menu {
        background-color: #545659
    }
}

.hero.is-secondary-5 .navbar-item, .hero.is-secondary-5 .navbar-link {
    color: rgba(255,255,255,.7)
}

    .hero.is-secondary-5 .navbar-link.is-active, .hero.is-secondary-5 .navbar-link:hover, .hero.is-secondary-5 a.navbar-item.is-active, .hero.is-secondary-5 a.navbar-item:hover {
        background-color: #48494c;
        color: #fff
    }

.hero.is-secondary-5 .tabs a {
    color: #fff;
    opacity: .9
}

    .hero.is-secondary-5 .tabs a:hover {
        opacity: 1
    }

.hero.is-secondary-5 .tabs li.is-active a {
    opacity: 1
}

.hero.is-secondary-5 .tabs.is-boxed a, .hero.is-secondary-5 .tabs.is-toggle a {
    color: #fff
}

    .hero.is-secondary-5 .tabs.is-boxed a:hover, .hero.is-secondary-5 .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-secondary-5 .tabs.is-boxed li.is-active a, .hero.is-secondary-5 .tabs.is-boxed li.is-active a:hover, .hero.is-secondary-5 .tabs.is-toggle li.is-active a, .hero.is-secondary-5 .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #545659
}

.hero.is-secondary-5.is-bold {
    background-image: linear-gradient(141deg,#353e45 0,#545659 71%,#5b5f6b 100%)
}

@media screen and (max-width:768px) {
    .hero.is-secondary-5.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#353e45 0,#545659 71%,#5b5f6b 100%)
    }
}

.hero.is-tertiary {
    background-color: #a6a6a6;
    color: #fff
}

    .hero.is-tertiary a:not(.button):not(.dropdown-item):not(.tag), .hero.is-tertiary strong {
        color: inherit
    }

    .hero.is-tertiary .title {
        color: #fff
    }

    .hero.is-tertiary .subtitle {
        color: rgba(255,255,255,.9)
    }

        .hero.is-tertiary .subtitle a:not(.button), .hero.is-tertiary .subtitle strong {
            color: #fff
        }

@media screen and (max-width:1087px) {
    .hero.is-tertiary .navbar-menu {
        background-color: #a6a6a6
    }
}

.hero.is-tertiary .navbar-item, .hero.is-tertiary .navbar-link {
    color: rgba(255,255,255,.7)
}

    .hero.is-tertiary .navbar-link.is-active, .hero.is-tertiary .navbar-link:hover, .hero.is-tertiary a.navbar-item.is-active, .hero.is-tertiary a.navbar-item:hover {
        background-color: #999;
        color: #fff
    }

.hero.is-tertiary .tabs a {
    color: #fff;
    opacity: .9
}

    .hero.is-tertiary .tabs a:hover {
        opacity: 1
    }

.hero.is-tertiary .tabs li.is-active a {
    opacity: 1
}

.hero.is-tertiary .tabs.is-boxed a, .hero.is-tertiary .tabs.is-toggle a {
    color: #fff
}

    .hero.is-tertiary .tabs.is-boxed a:hover, .hero.is-tertiary .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-tertiary .tabs.is-boxed li.is-active a, .hero.is-tertiary .tabs.is-boxed li.is-active a:hover, .hero.is-tertiary .tabs.is-toggle li.is-active a, .hero.is-tertiary .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #a6a6a6
}

.hero.is-tertiary.is-bold {
    background-image: linear-gradient(141deg,#988185 0,#a6a6a6 71%,#b7b0af 100%)
}

@media screen and (max-width:768px) {
    .hero.is-tertiary.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#988185 0,#a6a6a6 71%,#b7b0af 100%)
    }
}

.hero.is-tertiary-2 {
    background-color: #d8d8d8;
    color: rgba(0,0,0,.7)
}

    .hero.is-tertiary-2 a:not(.button):not(.dropdown-item):not(.tag), .hero.is-tertiary-2 strong {
        color: inherit
    }

    .hero.is-tertiary-2 .title {
        color: rgba(0,0,0,.7)
    }

    .hero.is-tertiary-2 .subtitle {
        color: rgba(0,0,0,.9)
    }

        .hero.is-tertiary-2 .subtitle a:not(.button), .hero.is-tertiary-2 .subtitle strong {
            color: rgba(0,0,0,.7)
        }

@media screen and (max-width:1087px) {
    .hero.is-tertiary-2 .navbar-menu {
        background-color: #d8d8d8
    }
}

.hero.is-tertiary-2 .navbar-item, .hero.is-tertiary-2 .navbar-link {
    color: rgba(0,0,0,.7)
}

    .hero.is-tertiary-2 .navbar-link.is-active, .hero.is-tertiary-2 .navbar-link:hover, .hero.is-tertiary-2 a.navbar-item.is-active, .hero.is-tertiary-2 a.navbar-item:hover {
        background-color: #cbcbcb;
        color: rgba(0,0,0,.7)
    }

.hero.is-tertiary-2 .tabs a {
    color: rgba(0,0,0,.7);
    opacity: .9
}

    .hero.is-tertiary-2 .tabs a:hover {
        opacity: 1
    }

.hero.is-tertiary-2 .tabs li.is-active a {
    opacity: 1
}

.hero.is-tertiary-2 .tabs.is-boxed a, .hero.is-tertiary-2 .tabs.is-toggle a {
    color: rgba(0,0,0,.7)
}

    .hero.is-tertiary-2 .tabs.is-boxed a:hover, .hero.is-tertiary-2 .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-tertiary-2 .tabs.is-boxed li.is-active a, .hero.is-tertiary-2 .tabs.is-boxed li.is-active a:hover, .hero.is-tertiary-2 .tabs.is-toggle li.is-active a, .hero.is-tertiary-2 .tabs.is-toggle li.is-active a:hover {
    background-color: rgba(0,0,0,.7);
    border-color: rgba(0,0,0,.7);
    color: #d8d8d8
}

.hero.is-tertiary-2.is-bold {
    background-image: linear-gradient(141deg,#c5b8ba 0,#d8d8d8 71%,#e6e4e3 100%)
}

@media screen and (max-width:768px) {
    .hero.is-tertiary-2.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#c5b8ba 0,#d8d8d8 71%,#e6e4e3 100%)
    }
}

.hero.is-tertiary-3 {
    background-color: #d7d6d3;
    color: rgba(0,0,0,.7)
}

    .hero.is-tertiary-3 a:not(.button):not(.dropdown-item):not(.tag), .hero.is-tertiary-3 strong {
        color: inherit
    }

    .hero.is-tertiary-3 .title {
        color: rgba(0,0,0,.7)
    }

    .hero.is-tertiary-3 .subtitle {
        color: rgba(0,0,0,.9)
    }

        .hero.is-tertiary-3 .subtitle a:not(.button), .hero.is-tertiary-3 .subtitle strong {
            color: rgba(0,0,0,.7)
        }

@media screen and (max-width:1087px) {
    .hero.is-tertiary-3 .navbar-menu {
        background-color: #d7d6d3
    }
}

.hero.is-tertiary-3 .navbar-item, .hero.is-tertiary-3 .navbar-link {
    color: rgba(0,0,0,.7)
}

    .hero.is-tertiary-3 .navbar-link.is-active, .hero.is-tertiary-3 .navbar-link:hover, .hero.is-tertiary-3 a.navbar-item.is-active, .hero.is-tertiary-3 a.navbar-item:hover {
        background-color: #cbcac6;
        color: rgba(0,0,0,.7)
    }

.hero.is-tertiary-3 .tabs a {
    color: rgba(0,0,0,.7);
    opacity: .9
}

    .hero.is-tertiary-3 .tabs a:hover {
        opacity: 1
    }

.hero.is-tertiary-3 .tabs li.is-active a {
    opacity: 1
}

.hero.is-tertiary-3 .tabs.is-boxed a, .hero.is-tertiary-3 .tabs.is-toggle a {
    color: rgba(0,0,0,.7)
}

    .hero.is-tertiary-3 .tabs.is-boxed a:hover, .hero.is-tertiary-3 .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-tertiary-3 .tabs.is-boxed li.is-active a, .hero.is-tertiary-3 .tabs.is-boxed li.is-active a:hover, .hero.is-tertiary-3 .tabs.is-toggle li.is-active a, .hero.is-tertiary-3 .tabs.is-toggle li.is-active a:hover {
    background-color: rgba(0,0,0,.7);
    border-color: rgba(0,0,0,.7);
    color: #d7d6d3
}

.hero.is-tertiary-3.is-bold {
    background-image: linear-gradient(141deg,#c5bdb2 0,#d7d6d3 71%,#e5e4df 100%)
}

@media screen and (max-width:768px) {
    .hero.is-tertiary-3.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#c5bdb2 0,#d7d6d3 71%,#e5e4df 100%)
    }
}

.hero.is-tertiary-4 {
    background-color: #afafaf;
    color: #fff
}

    .hero.is-tertiary-4 a:not(.button):not(.dropdown-item):not(.tag), .hero.is-tertiary-4 strong {
        color: inherit
    }

    .hero.is-tertiary-4 .title {
        color: #fff
    }

    .hero.is-tertiary-4 .subtitle {
        color: rgba(255,255,255,.9)
    }

        .hero.is-tertiary-4 .subtitle a:not(.button), .hero.is-tertiary-4 .subtitle strong {
            color: #fff
        }

@media screen and (max-width:1087px) {
    .hero.is-tertiary-4 .navbar-menu {
        background-color: #afafaf
    }
}

.hero.is-tertiary-4 .navbar-item, .hero.is-tertiary-4 .navbar-link {
    color: rgba(255,255,255,.7)
}

    .hero.is-tertiary-4 .navbar-link.is-active, .hero.is-tertiary-4 .navbar-link:hover, .hero.is-tertiary-4 a.navbar-item.is-active, .hero.is-tertiary-4 a.navbar-item:hover {
        background-color: #a2a2a2;
        color: #fff
    }

.hero.is-tertiary-4 .tabs a {
    color: #fff;
    opacity: .9
}

    .hero.is-tertiary-4 .tabs a:hover {
        opacity: 1
    }

.hero.is-tertiary-4 .tabs li.is-active a {
    opacity: 1
}

.hero.is-tertiary-4 .tabs.is-boxed a, .hero.is-tertiary-4 .tabs.is-toggle a {
    color: #fff
}

    .hero.is-tertiary-4 .tabs.is-boxed a:hover, .hero.is-tertiary-4 .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-tertiary-4 .tabs.is-boxed li.is-active a, .hero.is-tertiary-4 .tabs.is-boxed li.is-active a:hover, .hero.is-tertiary-4 .tabs.is-toggle li.is-active a, .hero.is-tertiary-4 .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #afafaf
}

.hero.is-tertiary-4.is-bold {
    background-image: linear-gradient(141deg,#a08b8e 0,#afafaf 71%,#bfbab8 100%)
}

@media screen and (max-width:768px) {
    .hero.is-tertiary-4.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#a08b8e 0,#afafaf 71%,#bfbab8 100%)
    }
}

.hero.is-tertiary-5 {
    background-color: #eaeaea;
    color: rgba(0,0,0,.7)
}

    .hero.is-tertiary-5 a:not(.button):not(.dropdown-item):not(.tag), .hero.is-tertiary-5 strong {
        color: inherit
    }

    .hero.is-tertiary-5 .title {
        color: rgba(0,0,0,.7)
    }

    .hero.is-tertiary-5 .subtitle {
        color: rgba(0,0,0,.9)
    }

        .hero.is-tertiary-5 .subtitle a:not(.button), .hero.is-tertiary-5 .subtitle strong {
            color: rgba(0,0,0,.7)
        }

@media screen and (max-width:1087px) {
    .hero.is-tertiary-5 .navbar-menu {
        background-color: #eaeaea
    }
}

.hero.is-tertiary-5 .navbar-item, .hero.is-tertiary-5 .navbar-link {
    color: rgba(0,0,0,.7)
}

    .hero.is-tertiary-5 .navbar-link.is-active, .hero.is-tertiary-5 .navbar-link:hover, .hero.is-tertiary-5 a.navbar-item.is-active, .hero.is-tertiary-5 a.navbar-item:hover {
        background-color: #ddd;
        color: rgba(0,0,0,.7)
    }

.hero.is-tertiary-5 .tabs a {
    color: rgba(0,0,0,.7);
    opacity: .9
}

    .hero.is-tertiary-5 .tabs a:hover {
        opacity: 1
    }

.hero.is-tertiary-5 .tabs li.is-active a {
    opacity: 1
}

.hero.is-tertiary-5 .tabs.is-boxed a, .hero.is-tertiary-5 .tabs.is-toggle a {
    color: rgba(0,0,0,.7)
}

    .hero.is-tertiary-5 .tabs.is-boxed a:hover, .hero.is-tertiary-5 .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-tertiary-5 .tabs.is-boxed li.is-active a, .hero.is-tertiary-5 .tabs.is-boxed li.is-active a:hover, .hero.is-tertiary-5 .tabs.is-toggle li.is-active a, .hero.is-tertiary-5 .tabs.is-toggle li.is-active a:hover {
    background-color: rgba(0,0,0,.7);
    border-color: rgba(0,0,0,.7);
    color: #eaeaea
}

.hero.is-tertiary-5.is-bold {
    background-image: linear-gradient(141deg,#d5cccd 0,#eaeaea 71%,#f7f6f6 100%)
}

@media screen and (max-width:768px) {
    .hero.is-tertiary-5.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#d5cccd 0,#eaeaea 71%,#f7f6f6 100%)
    }
}

.hero.is-tertiary-6 {
    background-color: #b0b0b0;
    color: #fff
}

    .hero.is-tertiary-6 a:not(.button):not(.dropdown-item):not(.tag), .hero.is-tertiary-6 strong {
        color: inherit
    }

    .hero.is-tertiary-6 .title {
        color: #fff
    }

    .hero.is-tertiary-6 .subtitle {
        color: rgba(255,255,255,.9)
    }

        .hero.is-tertiary-6 .subtitle a:not(.button), .hero.is-tertiary-6 .subtitle strong {
            color: #fff
        }

@media screen and (max-width:1087px) {
    .hero.is-tertiary-6 .navbar-menu {
        background-color: #b0b0b0
    }
}

.hero.is-tertiary-6 .navbar-item, .hero.is-tertiary-6 .navbar-link {
    color: rgba(255,255,255,.7)
}

    .hero.is-tertiary-6 .navbar-link.is-active, .hero.is-tertiary-6 .navbar-link:hover, .hero.is-tertiary-6 a.navbar-item.is-active, .hero.is-tertiary-6 a.navbar-item:hover {
        background-color: #a3a3a3;
        color: #fff
    }

.hero.is-tertiary-6 .tabs a {
    color: #fff;
    opacity: .9
}

    .hero.is-tertiary-6 .tabs a:hover {
        opacity: 1
    }

.hero.is-tertiary-6 .tabs li.is-active a {
    opacity: 1
}

.hero.is-tertiary-6 .tabs.is-boxed a, .hero.is-tertiary-6 .tabs.is-toggle a {
    color: #fff
}

    .hero.is-tertiary-6 .tabs.is-boxed a:hover, .hero.is-tertiary-6 .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-tertiary-6 .tabs.is-boxed li.is-active a, .hero.is-tertiary-6 .tabs.is-boxed li.is-active a:hover, .hero.is-tertiary-6 .tabs.is-toggle li.is-active a, .hero.is-tertiary-6 .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #b0b0b0
}

.hero.is-tertiary-6.is-bold {
    background-image: linear-gradient(141deg,#a18c90 0,#b0b0b0 71%,#c0bbb9 100%)
}

@media screen and (max-width:768px) {
    .hero.is-tertiary-6.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#a18c90 0,#b0b0b0 71%,#c0bbb9 100%)
    }
}

.hero.is-tertiary-7 {
    background-color: #969696;
    color: #fff
}

    .hero.is-tertiary-7 a:not(.button):not(.dropdown-item):not(.tag), .hero.is-tertiary-7 strong {
        color: inherit
    }

    .hero.is-tertiary-7 .title {
        color: #fff
    }

    .hero.is-tertiary-7 .subtitle {
        color: rgba(255,255,255,.9)
    }

        .hero.is-tertiary-7 .subtitle a:not(.button), .hero.is-tertiary-7 .subtitle strong {
            color: #fff
        }

@media screen and (max-width:1087px) {
    .hero.is-tertiary-7 .navbar-menu {
        background-color: #969696
    }
}

.hero.is-tertiary-7 .navbar-item, .hero.is-tertiary-7 .navbar-link {
    color: rgba(255,255,255,.7)
}

    .hero.is-tertiary-7 .navbar-link.is-active, .hero.is-tertiary-7 .navbar-link:hover, .hero.is-tertiary-7 a.navbar-item.is-active, .hero.is-tertiary-7 a.navbar-item:hover {
        background-color: #898989;
        color: #fff
    }

.hero.is-tertiary-7 .tabs a {
    color: #fff;
    opacity: .9
}

    .hero.is-tertiary-7 .tabs a:hover {
        opacity: 1
    }

.hero.is-tertiary-7 .tabs li.is-active a {
    opacity: 1
}

.hero.is-tertiary-7 .tabs.is-boxed a, .hero.is-tertiary-7 .tabs.is-toggle a {
    color: #fff
}

    .hero.is-tertiary-7 .tabs.is-boxed a:hover, .hero.is-tertiary-7 .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-tertiary-7 .tabs.is-boxed li.is-active a, .hero.is-tertiary-7 .tabs.is-boxed li.is-active a:hover, .hero.is-tertiary-7 .tabs.is-toggle li.is-active a, .hero.is-tertiary-7 .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #969696
}

.hero.is-tertiary-7.is-bold {
    background-image: linear-gradient(141deg,#897074 0,#969696 71%,#a7a09e 100%)
}

@media screen and (max-width:768px) {
    .hero.is-tertiary-7.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#897074 0,#969696 71%,#a7a09e 100%)
    }
}

.hero.is-tertiary-8 {
    background-color: #999;
    color: #fff
}

    .hero.is-tertiary-8 a:not(.button):not(.dropdown-item):not(.tag), .hero.is-tertiary-8 strong {
        color: inherit
    }

    .hero.is-tertiary-8 .title {
        color: #fff
    }

    .hero.is-tertiary-8 .subtitle {
        color: rgba(255,255,255,.9)
    }

        .hero.is-tertiary-8 .subtitle a:not(.button), .hero.is-tertiary-8 .subtitle strong {
            color: #fff
        }

@media screen and (max-width:1087px) {
    .hero.is-tertiary-8 .navbar-menu {
        background-color: #999
    }
}

.hero.is-tertiary-8 .navbar-item, .hero.is-tertiary-8 .navbar-link {
    color: rgba(255,255,255,.7)
}

    .hero.is-tertiary-8 .navbar-link.is-active, .hero.is-tertiary-8 .navbar-link:hover, .hero.is-tertiary-8 a.navbar-item.is-active, .hero.is-tertiary-8 a.navbar-item:hover {
        background-color: #8c8c8c;
        color: #fff
    }

.hero.is-tertiary-8 .tabs a {
    color: #fff;
    opacity: .9
}

    .hero.is-tertiary-8 .tabs a:hover {
        opacity: 1
    }

.hero.is-tertiary-8 .tabs li.is-active a {
    opacity: 1
}

.hero.is-tertiary-8 .tabs.is-boxed a, .hero.is-tertiary-8 .tabs.is-toggle a {
    color: #fff
}

    .hero.is-tertiary-8 .tabs.is-boxed a:hover, .hero.is-tertiary-8 .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-tertiary-8 .tabs.is-boxed li.is-active a, .hero.is-tertiary-8 .tabs.is-boxed li.is-active a:hover, .hero.is-tertiary-8 .tabs.is-toggle li.is-active a, .hero.is-tertiary-8 .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #999
}

.hero.is-tertiary-8.is-bold {
    background-image: linear-gradient(141deg,#8c7377 0,#999 71%,#aaa3a1 100%)
}

@media screen and (max-width:768px) {
    .hero.is-tertiary-8.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#8c7377 0,#999 71%,#aaa3a1 100%)
    }
}

.hero.is-tertiary-9 {
    background-color: #f5f5f5;
    color: rgba(0,0,0,.7)
}

    .hero.is-tertiary-9 a:not(.button):not(.dropdown-item):not(.tag), .hero.is-tertiary-9 strong {
        color: inherit
    }

    .hero.is-tertiary-9 .title {
        color: rgba(0,0,0,.7)
    }

    .hero.is-tertiary-9 .subtitle {
        color: rgba(0,0,0,.9)
    }

        .hero.is-tertiary-9 .subtitle a:not(.button), .hero.is-tertiary-9 .subtitle strong {
            color: rgba(0,0,0,.7)
        }

@media screen and (max-width:1087px) {
    .hero.is-tertiary-9 .navbar-menu {
        background-color: #f5f5f5
    }
}

.hero.is-tertiary-9 .navbar-item, .hero.is-tertiary-9 .navbar-link {
    color: rgba(0,0,0,.7)
}

    .hero.is-tertiary-9 .navbar-link.is-active, .hero.is-tertiary-9 .navbar-link:hover, .hero.is-tertiary-9 a.navbar-item.is-active, .hero.is-tertiary-9 a.navbar-item:hover {
        background-color: #e8e8e8;
        color: rgba(0,0,0,.7)
    }

.hero.is-tertiary-9 .tabs a {
    color: rgba(0,0,0,.7);
    opacity: .9
}

    .hero.is-tertiary-9 .tabs a:hover {
        opacity: 1
    }

.hero.is-tertiary-9 .tabs li.is-active a {
    opacity: 1
}

.hero.is-tertiary-9 .tabs.is-boxed a, .hero.is-tertiary-9 .tabs.is-toggle a {
    color: rgba(0,0,0,.7)
}

    .hero.is-tertiary-9 .tabs.is-boxed a:hover, .hero.is-tertiary-9 .tabs.is-toggle a:hover {
        background-color: rgba(10,10,10,.1)
    }

.hero.is-tertiary-9 .tabs.is-boxed li.is-active a, .hero.is-tertiary-9 .tabs.is-boxed li.is-active a:hover, .hero.is-tertiary-9 .tabs.is-toggle li.is-active a, .hero.is-tertiary-9 .tabs.is-toggle li.is-active a:hover {
    background-color: rgba(0,0,0,.7);
    border-color: rgba(0,0,0,.7);
    color: #f5f5f5
}

.hero.is-tertiary-9.is-bold {
    background-image: linear-gradient(141deg,#dfd8d9 0,#f5f5f5 71%,#fff 100%)
}

@media screen and (max-width:768px) {
    .hero.is-tertiary-9.is-bold .navbar-menu {
        background-image: linear-gradient(141deg,#dfd8d9 0,#f5f5f5 71%,#fff 100%)
    }
}

.hero.is-small .hero-body {
    padding-bottom: 1.5rem;
    padding-top: 1.5rem
}

@media screen and (min-width:769px),print {
    .hero.is-medium .hero-body {
        padding-bottom: 9rem;
        padding-top: 9rem
    }
}

@media screen and (min-width:769px),print {
    .hero.is-large .hero-body {
        padding-bottom: 18rem;
        padding-top: 18rem
    }
}

.hero.is-fullheight .hero-body, .hero.is-halfheight .hero-body {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

    .hero.is-fullheight .hero-body > .container, .hero.is-halfheight .hero-body > .container {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-negative: 1;
        flex-shrink: 1
    }

.hero.is-halfheight {
    min-height: 50vh
}

.hero.is-fullheight {
    min-height: 100vh
}

.hero-video {
    overflow: hidden
}

    .hero-video video {
        left: 50%;
        min-height: 100%;
        min-width: 100%;
        position: absolute;
        top: 50%;
        -webkit-transform: translate3d(-50%,-50%,0);
        transform: translate3d(-50%,-50%,0)
    }

    .hero-video.is-transparent {
        opacity: .3
    }

@media screen and (max-width:768px) {
    .hero-video {
        display: none
    }
}

.hero-buttons {
    margin-top: 1.5rem
}

@media screen and (max-width:768px) {
    .hero-buttons .button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

        .hero-buttons .button:not(:last-child) {
            margin-bottom: .75rem
        }
}

@media screen and (min-width:769px),print {
    .hero-buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

        .hero-buttons .button:not(:last-child) {
            margin-right: 1.5rem
        }
}

.hero-foot, .hero-head {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.hero-body {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 3rem 1.5rem
}

.section {
    padding: 5rem 1.5rem
}

@media screen and (min-width:1088px) {
    .section.is-medium {
        padding: 9rem 1.5rem
    }

    .section.is-large {
        padding: 18rem 1.5rem
    }
}

.footer {
    background-color: #fafafa;
    padding: 3rem 1.5rem 6rem
}

.pricing-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

    .pricing-table.is-comparative .pricing-plan {
        border-radius: initial;
        margin: 0
    }

        .pricing-table.is-comparative .pricing-plan:not(:last-child) {
            border-right: none
        }

        .pricing-table.is-comparative .pricing-plan:first-child {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0
        }

        .pricing-table.is-comparative .pricing-plan:last-child {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0
        }

        .pricing-table.is-comparative .pricing-plan.is-active {
            border: 1px solid #eaeaea;
            border-radius: 0
        }

    .pricing-table .pricing-plan {
        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-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        background-color: #fff;
        border: 1px solid #eaeaea;
        border-radius: 0;
        list-style-type: none;
        -webkit-transition: .25s;
        transition: .25s;
        margin: .5em
    }

        .pricing-table .pricing-plan .plan-header {
            border-top-left-radius: 0;
            border-top-right-radius: 0;
            background-color: transparent;
            color: #4a4a4a;
            font-size: 1.25rem;
           
            padding: .75em;
            -ms-flex-line-pack: center;
            align-content: center;
            text-align: center
        }

        .pricing-table .pricing-plan .plan-item {
            background: 0 0;
            border-bottom: none;
            padding: .75em;
            -ms-flex-line-pack: center;
            align-content: center;
            text-align: center;
            font-size: .9em;
            color: #afafaf
        }

        .pricing-table .pricing-plan .plan-price {
            background-color: transparent;
            color: #4a4a4a;
            font-size: .75rem;
            
            padding: .75em;
            -ms-flex-line-pack: center;
            align-content: center;
            text-align: center
        }

            .pricing-table .pricing-plan .plan-price .plan-price-amount {
                font-size: 2.5rem;
                font-weight: 700
            }

                .pricing-table .pricing-plan .plan-price .plan-price-amount .plan-price-currency {
                    vertical-align: super;
                    font-size: 1rem !important;
                   
                    color: #4a4a4a;
                    margin-right: .25rem
                }

        .pricing-table .pricing-plan .plan-footer {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
            padding: .75em;
            -ms-flex-line-pack: center;
            align-content: center;
            text-align: center;
            margin-top: auto
        }

        .pricing-table .pricing-plan.is-active {
            -webkit-box-shadow: none;
            box-shadow: none;
            -webkit-transform: scale(1,1.11);
            transform: scale(1,1.11)
        }

            .pricing-table .pricing-plan.is-active .plan-price .plan-price-amount {
                color: #9fbf43
            }

            .pricing-table .pricing-plan.is-active .plan-footer .button {
                background-color: #9fbf43;
                border-color: transparent;
                color: #fff
            }

                .pricing-table .pricing-plan.is-active .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-active .plan-footer .button:hover {
                    background-color: #ef521d;
                    border-color: transparent;
                    color: #fff
                }

                .pricing-table .pricing-plan.is-active .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-active .plan-footer .button:focus {
                    border-color: transparent;
                    -webkit-box-shadow: 0 0 .5em rgba(240,91,41,.25);
                    box-shadow: 0 0 .5em rgba(240,91,41,.25);
                    color: #fff
                }

                .pricing-table .pricing-plan.is-active .plan-footer .button.is-active, .pricing-table .pricing-plan.is-active .plan-footer .button:active {
                    background-color: #ee4911;
                    border-color: transparent;
                    color: #fff
                }

                .pricing-table .pricing-plan.is-active .plan-footer .button[disabled] {
                    background-color: #9fbf43;
                    border-color: transparent
                }

        .pricing-table .pricing-plan.is-white .plan-price .plan-price-amount {
            color: #fff
        }

        .pricing-table .pricing-plan.is-white .plan-footer .button {
            background-color: #fff;
            border-color: transparent;
            color: #0a0a0a
        }

            .pricing-table .pricing-plan.is-white .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-white .plan-footer .button:hover {
                background-color: #f9f9f9;
                border-color: transparent;
                color: #0a0a0a
            }

            .pricing-table .pricing-plan.is-white .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-white .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(255,255,255,.25);
                box-shadow: 0 0 .5em rgba(255,255,255,.25);
                color: #0a0a0a
            }

            .pricing-table .pricing-plan.is-white .plan-footer .button.is-active, .pricing-table .pricing-plan.is-white .plan-footer .button:active {
                background-color: #f2f2f2;
                border-color: transparent;
                color: #0a0a0a
            }

            .pricing-table .pricing-plan.is-white .plan-footer .button[disabled] {
                background-color: #fff;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-black .plan-price .plan-price-amount {
            color: #0a0a0a
        }

        .pricing-table .pricing-plan.is-black .plan-footer .button {
            background-color: #0a0a0a;
            border-color: transparent;
            color: #fff
        }

            .pricing-table .pricing-plan.is-black .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-black .plan-footer .button:hover {
                background-color: #040404;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-black .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-black .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(10,10,10,.25);
                box-shadow: 0 0 .5em rgba(10,10,10,.25);
                color: #fff
            }

            .pricing-table .pricing-plan.is-black .plan-footer .button.is-active, .pricing-table .pricing-plan.is-black .plan-footer .button:active {
                background-color: #000;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-black .plan-footer .button[disabled] {
                background-color: #0a0a0a;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-light .plan-price .plan-price-amount {
            color: #f5f5f5
        }

        .pricing-table .pricing-plan.is-light .plan-footer .button {
            background-color: #f5f5f5;
            border-color: transparent;
            color: #363636
        }

            .pricing-table .pricing-plan.is-light .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-light .plan-footer .button:hover {
                background-color: #eee;
                border-color: transparent;
                color: #363636
            }

            .pricing-table .pricing-plan.is-light .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-light .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(245,245,245,.25);
                box-shadow: 0 0 .5em rgba(245,245,245,.25);
                color: #363636
            }

            .pricing-table .pricing-plan.is-light .plan-footer .button.is-active, .pricing-table .pricing-plan.is-light .plan-footer .button:active {
                background-color: #e8e8e8;
                border-color: transparent;
                color: #363636
            }

            .pricing-table .pricing-plan.is-light .plan-footer .button[disabled] {
                background-color: #f5f5f5;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-dark .plan-price .plan-price-amount {
            color: #363636
        }

        .pricing-table .pricing-plan.is-dark .plan-footer .button {
            background-color: #363636;
            border-color: transparent;
            color: #f5f5f5
        }

            .pricing-table .pricing-plan.is-dark .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-dark .plan-footer .button:hover {
                background-color: #2f2f2f;
                border-color: transparent;
                color: #f5f5f5
            }

            .pricing-table .pricing-plan.is-dark .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-dark .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(54,54,54,.25);
                box-shadow: 0 0 .5em rgba(54,54,54,.25);
                color: #f5f5f5
            }

            .pricing-table .pricing-plan.is-dark .plan-footer .button.is-active, .pricing-table .pricing-plan.is-dark .plan-footer .button:active {
                background-color: #292929;
                border-color: transparent;
                color: #f5f5f5
            }

            .pricing-table .pricing-plan.is-dark .plan-footer .button[disabled] {
                background-color: #363636;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-primary .plan-price .plan-price-amount {
            color: #9fbf43
        }

        .pricing-table .pricing-plan.is-primary .plan-footer .button {
            background-color: #9fbf43;
            border-color: transparent;
            color: #fff
        }

            .pricing-table .pricing-plan.is-primary .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-primary .plan-footer .button:hover {
                background-color: #ef521d;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-primary .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-primary .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(240,91,41,.25);
                box-shadow: 0 0 .5em rgba(240,91,41,.25);
                color: #fff
            }

            .pricing-table .pricing-plan.is-primary .plan-footer .button.is-active, .pricing-table .pricing-plan.is-primary .plan-footer .button:active {
                background-color: #ee4911;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-primary .plan-footer .button[disabled] {
                background-color: #9fbf43;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-link .plan-price .plan-price-amount {
            color: #9fbf43
        }

        .pricing-table .pricing-plan.is-link .plan-footer .button {
            background-color: #9fbf43;
            border-color: transparent;
            color: #fff
        }

            .pricing-table .pricing-plan.is-link .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-link .plan-footer .button:hover {
                background-color: #ef521d;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-link .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-link .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(240,91,41,.25);
                box-shadow: 0 0 .5em rgba(240,91,41,.25);
                color: #fff
            }

            .pricing-table .pricing-plan.is-link .plan-footer .button.is-active, .pricing-table .pricing-plan.is-link .plan-footer .button:active {
                background-color: #ee4911;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-link .plan-footer .button[disabled] {
                background-color: #9fbf43;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-info .plan-price .plan-price-amount {
            color: #209cee
        }

        .pricing-table .pricing-plan.is-info .plan-footer .button {
            background-color: #209cee;
            border-color: transparent;
            color: #fff
        }

            .pricing-table .pricing-plan.is-info .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-info .plan-footer .button:hover {
                background-color: #1496ed;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-info .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-info .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(32,156,238,.25);
                box-shadow: 0 0 .5em rgba(32,156,238,.25);
                color: #fff
            }

            .pricing-table .pricing-plan.is-info .plan-footer .button.is-active, .pricing-table .pricing-plan.is-info .plan-footer .button:active {
                background-color: #118fe4;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-info .plan-footer .button[disabled] {
                background-color: #209cee;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-success .plan-price .plan-price-amount {
            color: #23d160
        }

        .pricing-table .pricing-plan.is-success .plan-footer .button {
            background-color: #23d160;
            border-color: transparent;
            color: #fff
        }

            .pricing-table .pricing-plan.is-success .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-success .plan-footer .button:hover {
                background-color: #22c65b;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-success .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-success .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(35,209,96,.25);
                box-shadow: 0 0 .5em rgba(35,209,96,.25);
                color: #fff
            }

            .pricing-table .pricing-plan.is-success .plan-footer .button.is-active, .pricing-table .pricing-plan.is-success .plan-footer .button:active {
                background-color: #20bc56;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-success .plan-footer .button[disabled] {
                background-color: #23d160;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-warning .plan-price .plan-price-amount {
            color: #ffdd57
        }

        .pricing-table .pricing-plan.is-warning .plan-footer .button {
            background-color: #ffdd57;
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

            .pricing-table .pricing-plan.is-warning .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-warning .plan-footer .button:hover {
                background-color: #ffdb4a;
                border-color: transparent;
                color: rgba(0,0,0,.7)
            }

            .pricing-table .pricing-plan.is-warning .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-warning .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(255,221,87,.25);
                box-shadow: 0 0 .5em rgba(255,221,87,.25);
                color: rgba(0,0,0,.7)
            }

            .pricing-table .pricing-plan.is-warning .plan-footer .button.is-active, .pricing-table .pricing-plan.is-warning .plan-footer .button:active {
                background-color: #ffd83d;
                border-color: transparent;
                color: rgba(0,0,0,.7)
            }

            .pricing-table .pricing-plan.is-warning .plan-footer .button[disabled] {
                background-color: #ffdd57;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-danger .plan-price .plan-price-amount {
            color: #ff3860
        }

        .pricing-table .pricing-plan.is-danger .plan-footer .button {
            background-color: #ff3860;
            border-color: transparent;
            color: #fff
        }

            .pricing-table .pricing-plan.is-danger .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-danger .plan-footer .button:hover {
                background-color: #ff2b56;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-danger .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-danger .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(255,56,96,.25);
                box-shadow: 0 0 .5em rgba(255,56,96,.25);
                color: #fff
            }

            .pricing-table .pricing-plan.is-danger .plan-footer .button.is-active, .pricing-table .pricing-plan.is-danger .plan-footer .button:active {
                background-color: #ff1f4b;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-danger .plan-footer .button[disabled] {
                background-color: #ff3860;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-primary-2 .plan-price .plan-price-amount {
            color: #fa622f
        }

        .pricing-table .pricing-plan.is-primary-2 .plan-footer .button {
            background-color: #fa622f;
            border-color: transparent;
            color: #fff
        }

            .pricing-table .pricing-plan.is-primary-2 .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-primary-2 .plan-footer .button:hover {
                background-color: #fa5923;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-primary-2 .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-primary-2 .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(250,98,47,.25);
                box-shadow: 0 0 .5em rgba(250,98,47,.25);
                color: #fff
            }

            .pricing-table .pricing-plan.is-primary-2 .plan-footer .button.is-active, .pricing-table .pricing-plan.is-primary-2 .plan-footer .button:active {
                background-color: #f94f16;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-primary-2 .plan-footer .button[disabled] {
                background-color: #fa622f;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-primary-3 .plan-price .plan-price-amount {
            color: #e65322
        }

        .pricing-table .pricing-plan.is-primary-3 .plan-footer .button {
            background-color: #e65322;
            border-color: transparent;
            color: #fff
        }

            .pricing-table .pricing-plan.is-primary-3 .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-primary-3 .plan-footer .button:hover {
                background-color: #e24c1a;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-primary-3 .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-primary-3 .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(230,83,34,.25);
                box-shadow: 0 0 .5em rgba(230,83,34,.25);
                color: #fff
            }

            .pricing-table .pricing-plan.is-primary-3 .plan-footer .button.is-active, .pricing-table .pricing-plan.is-primary-3 .plan-footer .button:active {
                background-color: #d64818;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-primary-3 .plan-footer .button[disabled] {
                background-color: #e65322;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-primary-4 .plan-price .plan-price-amount {
            color: #e85c2d
        }

        .pricing-table .pricing-plan.is-primary-4 .plan-footer .button {
            background-color: #e85c2d;
            border-color: transparent;
            color: #fff
        }

            .pricing-table .pricing-plan.is-primary-4 .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-primary-4 .plan-footer .button:hover {
                background-color: #e75322;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-primary-4 .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-primary-4 .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(232,92,45,.25);
                box-shadow: 0 0 .5em rgba(232,92,45,.25);
                color: #fff
            }

            .pricing-table .pricing-plan.is-primary-4 .plan-footer .button.is-active, .pricing-table .pricing-plan.is-primary-4 .plan-footer .button:active {
                background-color: #e34c19;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-primary-4 .plan-footer .button[disabled] {
                background-color: #e85c2d;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-primary-5 .plan-price .plan-price-amount {
            color: #e35728
        }

        .pricing-table .pricing-plan.is-primary-5 .plan-footer .button {
            background-color: #e35728;
            border-color: transparent;
            color: #fff
        }

            .pricing-table .pricing-plan.is-primary-5 .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-primary-5 .plan-footer .button:hover {
                background-color: #e14e1d;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-primary-5 .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-primary-5 .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(227,87,40,.25);
                box-shadow: 0 0 .5em rgba(227,87,40,.25);
                color: #fff
            }

            .pricing-table .pricing-plan.is-primary-5 .plan-footer .button.is-active, .pricing-table .pricing-plan.is-primary-5 .plan-footer .button:active {
                background-color: #d64b1c;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-primary-5 .plan-footer .button[disabled] {
                background-color: #e35728;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-primary-6 .plan-price .plan-price-amount {
            color: #e95220
        }

        .pricing-table .pricing-plan.is-primary-6 .plan-footer .button {
            background-color: #e95220;
            border-color: transparent;
            color: #fff
        }

            .pricing-table .pricing-plan.is-primary-6 .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-primary-6 .plan-footer .button:hover {
                background-color: #e64a17;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-primary-6 .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-primary-6 .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(233,82,32,.25);
                box-shadow: 0 0 .5em rgba(233,82,32,.25);
                color: #fff
            }

            .pricing-table .pricing-plan.is-primary-6 .plan-footer .button.is-active, .pricing-table .pricing-plan.is-primary-6 .plan-footer .button:active {
                background-color: #da4616;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-primary-6 .plan-footer .button[disabled] {
                background-color: #e95220;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-primary-7 .plan-price .plan-price-amount {
            color: #fafafa
        }

        .pricing-table .pricing-plan.is-primary-7 .plan-footer .button {
            background-color: #fafafa;
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

            .pricing-table .pricing-plan.is-primary-7 .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-primary-7 .plan-footer .button:hover {
                background-color: #f4f4f4;
                border-color: transparent;
                color: rgba(0,0,0,.7)
            }

            .pricing-table .pricing-plan.is-primary-7 .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-primary-7 .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(250,250,250,.25);
                box-shadow: 0 0 .5em rgba(250,250,250,.25);
                color: rgba(0,0,0,.7)
            }

            .pricing-table .pricing-plan.is-primary-7 .plan-footer .button.is-active, .pricing-table .pricing-plan.is-primary-7 .plan-footer .button:active {
                background-color: #ededed;
                border-color: transparent;
                color: rgba(0,0,0,.7)
            }

            .pricing-table .pricing-plan.is-primary-7 .plan-footer .button[disabled] {
                background-color: #fafafa;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-primary-light .plan-price .plan-price-amount {
            color: #f9f9f9
        }

        .pricing-table .pricing-plan.is-primary-light .plan-footer .button {
            background-color: #f9f9f9;
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

            .pricing-table .pricing-plan.is-primary-light .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-primary-light .plan-footer .button:hover {
                background-color: #f3f3f3;
                border-color: transparent;
                color: rgba(0,0,0,.7)
            }

            .pricing-table .pricing-plan.is-primary-light .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-primary-light .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(249,249,249,.25);
                box-shadow: 0 0 .5em rgba(249,249,249,.25);
                color: rgba(0,0,0,.7)
            }

            .pricing-table .pricing-plan.is-primary-light .plan-footer .button.is-active, .pricing-table .pricing-plan.is-primary-light .plan-footer .button:active {
                background-color: #ececec;
                border-color: transparent;
                color: rgba(0,0,0,.7)
            }

            .pricing-table .pricing-plan.is-primary-light .plan-footer .button[disabled] {
                background-color: #f9f9f9;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-secondary .plan-price .plan-price-amount {
            color: #22262a
        }

        .pricing-table .pricing-plan.is-secondary .plan-footer .button {
            background-color: #22262a;
            border-color: transparent;
            color: #fff
        }

            .pricing-table .pricing-plan.is-secondary .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-secondary .plan-footer .button:hover {
                background-color: #1c2023;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-secondary .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-secondary .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(34,38,42,.25);
                box-shadow: 0 0 .5em rgba(34,38,42,.25);
                color: #fff
            }

            .pricing-table .pricing-plan.is-secondary .plan-footer .button.is-active, .pricing-table .pricing-plan.is-secondary .plan-footer .button:active {
                background-color: #17191c;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-secondary .plan-footer .button[disabled] {
                background-color: #22262a;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-secondary-2 .plan-price .plan-price-amount {
            color: #2d3238
        }

        .pricing-table .pricing-plan.is-secondary-2 .plan-footer .button {
            background-color: #2d3238;
            border-color: transparent;
            color: #fff
        }

            .pricing-table .pricing-plan.is-secondary-2 .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-secondary-2 .plan-footer .button:hover {
                background-color: #272c31;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-secondary-2 .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-secondary-2 .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(45,50,56,.25);
                box-shadow: 0 0 .5em rgba(45,50,56,.25);
                color: #fff
            }

            .pricing-table .pricing-plan.is-secondary-2 .plan-footer .button.is-active, .pricing-table .pricing-plan.is-secondary-2 .plan-footer .button:active {
                background-color: #22252a;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-secondary-2 .plan-footer .button[disabled] {
                background-color: #2d3238;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-secondary-3 .plan-price .plan-price-amount {
            color: #363a3f
        }

        .pricing-table .pricing-plan.is-secondary-3 .plan-footer .button {
            background-color: #363a3f;
            border-color: transparent;
            color: #fff
        }

            .pricing-table .pricing-plan.is-secondary-3 .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-secondary-3 .plan-footer .button:hover {
                background-color: #303438;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-secondary-3 .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-secondary-3 .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(54,58,63,.25);
                box-shadow: 0 0 .5em rgba(54,58,63,.25);
                color: #fff
            }

            .pricing-table .pricing-plan.is-secondary-3 .plan-footer .button.is-active, .pricing-table .pricing-plan.is-secondary-3 .plan-footer .button:active {
                background-color: #2a2d31;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-secondary-3 .plan-footer .button[disabled] {
                background-color: #363a3f;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-secondary-4 .plan-price .plan-price-amount {
            color: #414549
        }

        .pricing-table .pricing-plan.is-secondary-4 .plan-footer .button {
            background-color: #414549;
            border-color: transparent;
            color: #fff
        }

            .pricing-table .pricing-plan.is-secondary-4 .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-secondary-4 .plan-footer .button:hover {
                background-color: #3b3f42;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-secondary-4 .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-secondary-4 .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(65,69,73,.25);
                box-shadow: 0 0 .5em rgba(65,69,73,.25);
                color: #fff
            }

            .pricing-table .pricing-plan.is-secondary-4 .plan-footer .button.is-active, .pricing-table .pricing-plan.is-secondary-4 .plan-footer .button:active {
                background-color: #35383c;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-secondary-4 .plan-footer .button[disabled] {
                background-color: #414549;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-secondary-5 .plan-price .plan-price-amount {
            color: #545659
        }

        .pricing-table .pricing-plan.is-secondary-5 .plan-footer .button {
            background-color: #545659;
            border-color: transparent;
            color: #fff
        }

            .pricing-table .pricing-plan.is-secondary-5 .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-secondary-5 .plan-footer .button:hover {
                background-color: #4e5052;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-secondary-5 .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-secondary-5 .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(84,86,89,.25);
                box-shadow: 0 0 .5em rgba(84,86,89,.25);
                color: #fff
            }

            .pricing-table .pricing-plan.is-secondary-5 .plan-footer .button.is-active, .pricing-table .pricing-plan.is-secondary-5 .plan-footer .button:active {
                background-color: #48494c;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-secondary-5 .plan-footer .button[disabled] {
                background-color: #545659;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-tertiary .plan-price .plan-price-amount {
            color: #a6a6a6
        }

        .pricing-table .pricing-plan.is-tertiary .plan-footer .button {
            background-color: #a6a6a6;
            border-color: transparent;
            color: #fff
        }

            .pricing-table .pricing-plan.is-tertiary .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-tertiary .plan-footer .button:hover {
                background-color: #a0a0a0;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-tertiary .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-tertiary .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(166,166,166,.25);
                box-shadow: 0 0 .5em rgba(166,166,166,.25);
                color: #fff
            }

            .pricing-table .pricing-plan.is-tertiary .plan-footer .button.is-active, .pricing-table .pricing-plan.is-tertiary .plan-footer .button:active {
                background-color: #999;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-tertiary .plan-footer .button[disabled] {
                background-color: #a6a6a6;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-tertiary-2 .plan-price .plan-price-amount {
            color: #d8d8d8
        }

        .pricing-table .pricing-plan.is-tertiary-2 .plan-footer .button {
            background-color: #d8d8d8;
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

            .pricing-table .pricing-plan.is-tertiary-2 .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-tertiary-2 .plan-footer .button:hover {
                background-color: #d2d2d2;
                border-color: transparent;
                color: rgba(0,0,0,.7)
            }

            .pricing-table .pricing-plan.is-tertiary-2 .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-tertiary-2 .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(216,216,216,.25);
                box-shadow: 0 0 .5em rgba(216,216,216,.25);
                color: rgba(0,0,0,.7)
            }

            .pricing-table .pricing-plan.is-tertiary-2 .plan-footer .button.is-active, .pricing-table .pricing-plan.is-tertiary-2 .plan-footer .button:active {
                background-color: #cbcbcb;
                border-color: transparent;
                color: rgba(0,0,0,.7)
            }

            .pricing-table .pricing-plan.is-tertiary-2 .plan-footer .button[disabled] {
                background-color: #d8d8d8;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-tertiary-3 .plan-price .plan-price-amount {
            color: #d7d6d3
        }

        .pricing-table .pricing-plan.is-tertiary-3 .plan-footer .button {
            background-color: #d7d6d3;
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

            .pricing-table .pricing-plan.is-tertiary-3 .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-tertiary-3 .plan-footer .button:hover {
                background-color: #d1d0cc;
                border-color: transparent;
                color: rgba(0,0,0,.7)
            }

            .pricing-table .pricing-plan.is-tertiary-3 .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-tertiary-3 .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(215,214,211,.25);
                box-shadow: 0 0 .5em rgba(215,214,211,.25);
                color: rgba(0,0,0,.7)
            }

            .pricing-table .pricing-plan.is-tertiary-3 .plan-footer .button.is-active, .pricing-table .pricing-plan.is-tertiary-3 .plan-footer .button:active {
                background-color: #cbcac6;
                border-color: transparent;
                color: rgba(0,0,0,.7)
            }

            .pricing-table .pricing-plan.is-tertiary-3 .plan-footer .button[disabled] {
                background-color: #d7d6d3;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-tertiary-4 .plan-price .plan-price-amount {
            color: #afafaf
        }

        .pricing-table .pricing-plan.is-tertiary-4 .plan-footer .button {
            background-color: #afafaf;
            border-color: transparent;
            color: #fff
        }

            .pricing-table .pricing-plan.is-tertiary-4 .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-tertiary-4 .plan-footer .button:hover {
                background-color: #a9a9a9;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-tertiary-4 .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-tertiary-4 .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(175,175,175,.25);
                box-shadow: 0 0 .5em rgba(175,175,175,.25);
                color: #fff
            }

            .pricing-table .pricing-plan.is-tertiary-4 .plan-footer .button.is-active, .pricing-table .pricing-plan.is-tertiary-4 .plan-footer .button:active {
                background-color: #a2a2a2;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-tertiary-4 .plan-footer .button[disabled] {
                background-color: #afafaf;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-tertiary-5 .plan-price .plan-price-amount {
            color: #eaeaea
        }

        .pricing-table .pricing-plan.is-tertiary-5 .plan-footer .button {
            background-color: #eaeaea;
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

            .pricing-table .pricing-plan.is-tertiary-5 .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-tertiary-5 .plan-footer .button:hover {
                background-color: #e4e4e4;
                border-color: transparent;
                color: rgba(0,0,0,.7)
            }

            .pricing-table .pricing-plan.is-tertiary-5 .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-tertiary-5 .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(234,234,234,.25);
                box-shadow: 0 0 .5em rgba(234,234,234,.25);
                color: rgba(0,0,0,.7)
            }

            .pricing-table .pricing-plan.is-tertiary-5 .plan-footer .button.is-active, .pricing-table .pricing-plan.is-tertiary-5 .plan-footer .button:active {
                background-color: #ddd;
                border-color: transparent;
                color: rgba(0,0,0,.7)
            }

            .pricing-table .pricing-plan.is-tertiary-5 .plan-footer .button[disabled] {
                background-color: #eaeaea;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-tertiary-6 .plan-price .plan-price-amount {
            color: #b0b0b0
        }

        .pricing-table .pricing-plan.is-tertiary-6 .plan-footer .button {
            background-color: #b0b0b0;
            border-color: transparent;
            color: #fff
        }

            .pricing-table .pricing-plan.is-tertiary-6 .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-tertiary-6 .plan-footer .button:hover {
                background-color: #aaa;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-tertiary-6 .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-tertiary-6 .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(176,176,176,.25);
                box-shadow: 0 0 .5em rgba(176,176,176,.25);
                color: #fff
            }

            .pricing-table .pricing-plan.is-tertiary-6 .plan-footer .button.is-active, .pricing-table .pricing-plan.is-tertiary-6 .plan-footer .button:active {
                background-color: #a3a3a3;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-tertiary-6 .plan-footer .button[disabled] {
                background-color: #b0b0b0;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-tertiary-7 .plan-price .plan-price-amount {
            color: #969696
        }

        .pricing-table .pricing-plan.is-tertiary-7 .plan-footer .button {
            background-color: #969696;
            border-color: transparent;
            color: #fff
        }

            .pricing-table .pricing-plan.is-tertiary-7 .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-tertiary-7 .plan-footer .button:hover {
                background-color: #909090;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-tertiary-7 .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-tertiary-7 .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(150,150,150,.25);
                box-shadow: 0 0 .5em rgba(150,150,150,.25);
                color: #fff
            }

            .pricing-table .pricing-plan.is-tertiary-7 .plan-footer .button.is-active, .pricing-table .pricing-plan.is-tertiary-7 .plan-footer .button:active {
                background-color: #898989;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-tertiary-7 .plan-footer .button[disabled] {
                background-color: #969696;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-tertiary-8 .plan-price .plan-price-amount {
            color: #999
        }

        .pricing-table .pricing-plan.is-tertiary-8 .plan-footer .button {
            background-color: #999;
            border-color: transparent;
            color: #fff
        }

            .pricing-table .pricing-plan.is-tertiary-8 .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-tertiary-8 .plan-footer .button:hover {
                background-color: #939393;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-tertiary-8 .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-tertiary-8 .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(153,153,153,.25);
                box-shadow: 0 0 .5em rgba(153,153,153,.25);
                color: #fff
            }

            .pricing-table .pricing-plan.is-tertiary-8 .plan-footer .button.is-active, .pricing-table .pricing-plan.is-tertiary-8 .plan-footer .button:active {
                background-color: #8c8c8c;
                border-color: transparent;
                color: #fff
            }

            .pricing-table .pricing-plan.is-tertiary-8 .plan-footer .button[disabled] {
                background-color: #999;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

        .pricing-table .pricing-plan.is-tertiary-9 .plan-price .plan-price-amount {
            color: #f5f5f5
        }

        .pricing-table .pricing-plan.is-tertiary-9 .plan-footer .button {
            background-color: #f5f5f5;
            border-color: transparent;
            color: rgba(0,0,0,.7)
        }

            .pricing-table .pricing-plan.is-tertiary-9 .plan-footer .button.is-hovered, .pricing-table .pricing-plan.is-tertiary-9 .plan-footer .button:hover {
                background-color: #efefef;
                border-color: transparent;
                color: rgba(0,0,0,.7)
            }

            .pricing-table .pricing-plan.is-tertiary-9 .plan-footer .button.is-focused, .pricing-table .pricing-plan.is-tertiary-9 .plan-footer .button:focus {
                border-color: transparent;
                -webkit-box-shadow: 0 0 .5em rgba(245,245,245,.25);
                box-shadow: 0 0 .5em rgba(245,245,245,.25);
                color: rgba(0,0,0,.7)
            }

            .pricing-table .pricing-plan.is-tertiary-9 .plan-footer .button.is-active, .pricing-table .pricing-plan.is-tertiary-9 .plan-footer .button:active {
                background-color: #e8e8e8;
                border-color: transparent;
                color: rgba(0,0,0,.7)
            }

            .pricing-table .pricing-plan.is-tertiary-9 .plan-footer .button[disabled] {
                background-color: #f5f5f5;
                border-color: transparent;
                -webkit-box-shadow: none;
                box-shadow: none
            }

@media screen and (min-width:769px),print {
    .pricing-table.is-comparative {
        margin: .5rem
    }

        .pricing-table.is-comparative.is-features {
            display: none
        }

        .pricing-table.is-comparative .plan-item::before {
            content: attr("data-feature")
        }

    .pricing-table.is-horizontal .pricing-plan {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }

        .pricing-table.is-horizontal .pricing-plan .plan-header {
            width: 50%;
            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
        }

        .pricing-table.is-horizontal .pricing-plan .plan-price {
            width: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center
        }

        .pricing-table.is-horizontal .pricing-plan .plan-items {
            width: 100%;
            background-color: transparent;
            columns: 2;
            -webkit-columns: 2;
            -moz-columns: 2;
            -webkit-column-gap: .1rem;
            column-gap: .1rem
        }

        .pricing-table.is-horizontal .pricing-plan .plan-footer {
            width: 50%;
            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;
            margin: auto
        }
}

@media screen and (max-width:768px) {
    .pricing-table.is-comparative .pricing-plan {
        margin: .5rem
    }

        .pricing-table.is-comparative .pricing-plan.is-plan-first-mobile {
            -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
            order: -1
        }

        .pricing-table.is-comparative .pricing-plan.is-features {
            display: none
        }

        .pricing-table.is-comparative .pricing-plan .plan-item::before {
            content: attr(data-feature);
            display: block;
           
            font-size: .75rem;
            color: #b5b5b5
        }
}

.badge {
    position: relative;
    white-space: nowrap;
    position: relative
}

    .badge[data-badge]::after {
        position: absolute;
        left: 100%;
        margin: 0;
        background: #9fbf43;
        background-clip: padding-box;
        border-radius: 1rem;
        -webkit-box-shadow: 0 0 0 .1rem #fff;
        box-shadow: 0 0 0 .1rem #fff;
        color: #fff;
        content: attr(data-badge);
        display: inline-block
    }

    .badge:not([data-badge=""])::after {
        padding: .3rem .5rem;
        text-align: center;
        white-space: nowrap
    }

    .badge[data-badge=""]::after {
        display: inline-block;
        vertical-align: inherit
    }

    .badge.is-badge-white:not([data-badge])::after, .badge.is-badge-white[data-badge]::after {
        background: #fff;
        color: #0a0a0a
    }

    .badge.is-badge-black:not([data-badge])::after, .badge.is-badge-black[data-badge]::after {
        background: #0a0a0a;
        color: #fff
    }

    .badge.is-badge-light:not([data-badge])::after, .badge.is-badge-light[data-badge]::after {
        background: #f5f5f5;
        color: #363636
    }

    .badge.is-badge-dark:not([data-badge])::after, .badge.is-badge-dark[data-badge]::after {
        background: #363636;
        color: #f5f5f5
    }

    .badge.is-badge-primary:not([data-badge])::after, .badge.is-badge-primary[data-badge]::after {
        background: #9fbf43;
        color: #fff
    }

    .badge.is-badge-link:not([data-badge])::after, .badge.is-badge-link[data-badge]::after {
        background: #9fbf43;
        color: #fff
    }

    .badge.is-badge-info:not([data-badge])::after, .badge.is-badge-info[data-badge]::after {
        background: #209cee;
        color: #fff
    }

    .badge.is-badge-success:not([data-badge])::after, .badge.is-badge-success[data-badge]::after {
        background: #23d160;
        color: #fff
    }

    .badge.is-badge-warning:not([data-badge])::after, .badge.is-badge-warning[data-badge]::after {
        background: #ffdd57;
        color: rgba(0,0,0,.7)
    }

    .badge.is-badge-danger:not([data-badge])::after, .badge.is-badge-danger[data-badge]::after {
        background: #ff3860;
        color: #fff
    }

    .badge.is-badge-primary-2:not([data-badge])::after, .badge.is-badge-primary-2[data-badge]::after {
        background: #fa622f;
        color: #fff
    }

    .badge.is-badge-primary-3:not([data-badge])::after, .badge.is-badge-primary-3[data-badge]::after {
        background: #e65322;
        color: #fff
    }

    .badge.is-badge-primary-4:not([data-badge])::after, .badge.is-badge-primary-4[data-badge]::after {
        background: #e85c2d;
        color: #fff
    }

    .badge.is-badge-primary-5:not([data-badge])::after, .badge.is-badge-primary-5[data-badge]::after {
        background: #e35728;
        color: #fff
    }

    .badge.is-badge-primary-6:not([data-badge])::after, .badge.is-badge-primary-6[data-badge]::after {
        background: #e95220;
        color: #fff
    }

    .badge.is-badge-primary-7:not([data-badge])::after, .badge.is-badge-primary-7[data-badge]::after {
        background: #fafafa;
        color: rgba(0,0,0,.7)
    }

    .badge.is-badge-primary-light:not([data-badge])::after, .badge.is-badge-primary-light[data-badge]::after {
        background: #f9f9f9;
        color: rgba(0,0,0,.7)
    }

    .badge.is-badge-secondary:not([data-badge])::after, .badge.is-badge-secondary[data-badge]::after {
        background: #22262a;
        color: #fff
    }

    .badge.is-badge-secondary-2:not([data-badge])::after, .badge.is-badge-secondary-2[data-badge]::after {
        background: #2d3238;
        color: #fff
    }

    .badge.is-badge-secondary-3:not([data-badge])::after, .badge.is-badge-secondary-3[data-badge]::after {
        background: #363a3f;
        color: #fff
    }

    .badge.is-badge-secondary-4:not([data-badge])::after, .badge.is-badge-secondary-4[data-badge]::after {
        background: #414549;
        color: #fff
    }

    .badge.is-badge-secondary-5:not([data-badge])::after, .badge.is-badge-secondary-5[data-badge]::after {
        background: #545659;
        color: #fff
    }

    .badge.is-badge-tertiary:not([data-badge])::after, .badge.is-badge-tertiary[data-badge]::after {
        background: #a6a6a6;
        color: #fff
    }

    .badge.is-badge-tertiary-2:not([data-badge])::after, .badge.is-badge-tertiary-2[data-badge]::after {
        background: #d8d8d8;
        color: rgba(0,0,0,.7)
    }

    .badge.is-badge-tertiary-3:not([data-badge])::after, .badge.is-badge-tertiary-3[data-badge]::after {
        background: #d7d6d3;
        color: rgba(0,0,0,.7)
    }

    .badge.is-badge-tertiary-4:not([data-badge])::after, .badge.is-badge-tertiary-4[data-badge]::after {
        background: #afafaf;
        color: #fff
    }

    .badge.is-badge-tertiary-5:not([data-badge])::after, .badge.is-badge-tertiary-5[data-badge]::after {
        background: #eaeaea;
        color: rgba(0,0,0,.7)
    }

    .badge.is-badge-tertiary-6:not([data-badge])::after, .badge.is-badge-tertiary-6[data-badge]::after {
        background: #b0b0b0;
        color: #fff
    }

    .badge.is-badge-tertiary-7:not([data-badge])::after, .badge.is-badge-tertiary-7[data-badge]::after {
        background: #969696;
        color: #fff
    }

    .badge.is-badge-tertiary-8:not([data-badge])::after, .badge.is-badge-tertiary-8[data-badge]::after {
        background: #999;
        color: #fff
    }

    .badge.is-badge-tertiary-9:not([data-badge])::after, .badge.is-badge-tertiary-9[data-badge]::after {
        background: #f5f5f5;
        color: rgba(0,0,0,.7)
    }

    .badge.is-badge-outlined[data-badge]::after {
        background-color: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #9fbf43;
        color: #9fbf43
    }

    .badge.is-badge-outlined.is-badge-white[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #fff;
        color: #fff
    }

    .badge.is-badge-outlined.is-badge-black[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #0a0a0a;
        color: #0a0a0a
    }

    .badge.is-badge-outlined.is-badge-light[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #f5f5f5;
        color: #f5f5f5
    }

    .badge.is-badge-outlined.is-badge-dark[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #363636;
        color: #363636
    }

    .badge.is-badge-outlined.is-badge-primary[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #9fbf43;
        color: #9fbf43
    }

    .badge.is-badge-outlined.is-badge-link[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #9fbf43;
        color: #9fbf43
    }

    .badge.is-badge-outlined.is-badge-info[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #209cee;
        color: #209cee
    }

    .badge.is-badge-outlined.is-badge-success[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #23d160;
        color: #23d160
    }

    .badge.is-badge-outlined.is-badge-warning[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #ffdd57;
        color: #ffdd57
    }

    .badge.is-badge-outlined.is-badge-danger[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #ff3860;
        color: #ff3860
    }

    .badge.is-badge-outlined.is-badge-primary-2[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #fa622f;
        color: #fa622f
    }

    .badge.is-badge-outlined.is-badge-primary-3[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #e65322;
        color: #e65322
    }

    .badge.is-badge-outlined.is-badge-primary-4[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #e85c2d;
        color: #e85c2d
    }

    .badge.is-badge-outlined.is-badge-primary-5[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #e35728;
        color: #e35728
    }

    .badge.is-badge-outlined.is-badge-primary-6[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #e95220;
        color: #e95220
    }

    .badge.is-badge-outlined.is-badge-primary-7[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #fafafa;
        color: #fafafa
    }

    .badge.is-badge-outlined.is-badge-primary-light[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #f9f9f9;
        color: #f9f9f9
    }

    .badge.is-badge-outlined.is-badge-secondary[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #22262a;
        color: #22262a
    }

    .badge.is-badge-outlined.is-badge-secondary-2[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #2d3238;
        color: #2d3238
    }

    .badge.is-badge-outlined.is-badge-secondary-3[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #363a3f;
        color: #363a3f
    }

    .badge.is-badge-outlined.is-badge-secondary-4[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #414549;
        color: #414549
    }

    .badge.is-badge-outlined.is-badge-secondary-5[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #545659;
        color: #545659
    }

    .badge.is-badge-outlined.is-badge-tertiary[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #a6a6a6;
        color: #a6a6a6
    }

    .badge.is-badge-outlined.is-badge-tertiary-2[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #d8d8d8;
        color: #d8d8d8
    }

    .badge.is-badge-outlined.is-badge-tertiary-3[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #d7d6d3;
        color: #d7d6d3
    }

    .badge.is-badge-outlined.is-badge-tertiary-4[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #afafaf;
        color: #afafaf
    }

    .badge.is-badge-outlined.is-badge-tertiary-5[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #eaeaea;
        color: #eaeaea
    }

    .badge.is-badge-outlined.is-badge-tertiary-6[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #b0b0b0;
        color: #b0b0b0
    }

    .badge.is-badge-outlined.is-badge-tertiary-7[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #969696;
        color: #969696
    }

    .badge.is-badge-outlined.is-badge-tertiary-8[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #999;
        color: #999
    }

    .badge.is-badge-outlined.is-badge-tertiary-9[data-badge]::after {
        background: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: .1rem solid #f5f5f5;
        color: #f5f5f5
    }

    .badge[data-badge]::after {
        top: calc(0px - (1rem / 2));
        left: calc(100% - (1rem / 2));
        min-height: 1rem;
        min-width: 1rem
    }

    .badge:not([data-badge=""])::after {
        font-size: .75rem;
        line-height: .5rem
    }

    .badge[data-badge=""]::after {
        width: 1rem
    }

    .badge.is-badge-left::after {
        left: calc(0px - (1rem / 2))
    }

    .badge.is-badge-bottom::after {
        top: calc(100% - (1rem / 2))
    }

    .badge.is-badge-bottom-left::after {
        left: calc(0px - (1rem / 2));
        top: calc(100% - (1rem / 2))
    }

    .badge.is-badge-small[data-badge]::after {
        top: calc(0px - (.75rem / 2));
        left: calc(100% - (.75rem / 2));
        min-height: .75rem;
        min-width: .75rem
    }

    .badge.is-badge-small:not([data-badge=""])::after {
        font-size: .5625rem;
        line-height: .375rem
    }

    .badge.is-badge-small[data-badge=""]::after {
        width: .75rem
    }

    .badge.is-badge-small.is-badge-left::after {
        left: calc(0px - (.75rem / 2))
    }

    .badge.is-badge-small.is-badge-bottom::after {
        top: calc(100% - (.75rem / 2))
    }

    .badge.is-badge-small.is-badge-bottom-left::after {
        left: calc(0px - (.75rem / 2));
        top: calc(100% - (.75rem / 2))
    }

    .badge.is-badge-medium[data-badge]::after {
        top: calc(0px - (1.25rem / 2));
        left: calc(100% - (1.25rem / 2));
        min-height: 1.25rem;
        min-width: 1.25rem
    }

    .badge.is-badge-medium:not([data-badge=""])::after {
        font-size: .9375rem;
        line-height: .625rem
    }

    .badge.is-badge-medium[data-badge=""]::after {
        width: 1.25rem
    }

    .badge.is-badge-medium.is-badge-left::after {
        left: calc(0px - (1.25rem / 2))
    }

    .badge.is-badge-medium.is-badge-bottom::after {
        top: calc(100% - (1.25rem / 2))
    }

    .badge.is-badge-medium.is-badge-bottom-left::after {
        left: calc(0px - (1.25rem / 2));
        top: calc(100% - (1.25rem / 2))
    }

    .badge.is-badge-large[data-badge]::after {
        top: calc(0px - (1.5rem / 2));
        left: calc(100% - (1.5rem / 2));
        min-height: 1.5rem;
        min-width: 1.5rem
    }

    .badge.is-badge-large:not([data-badge=""])::after {
        font-size: 1.125rem;
        line-height: .75rem
    }

    .badge.is-badge-large[data-badge=""]::after {
        width: 1.5rem
    }

    .badge.is-badge-large.is-badge-left::after {
        left: calc(0px - (1.5rem / 2))
    }

    .badge.is-badge-large.is-badge-bottom::after {
        top: calc(100% - (1.5rem / 2))
    }

    .badge.is-badge-large.is-badge-bottom-left::after {
        left: calc(0px - (1.5rem / 2));
        top: calc(100% - (1.5rem / 2))
    }

.is-divider, .is-divider-vertical {
    display: block;
    position: relative;
    border-top: .1rem solid #f0f0f0;
    height: .1rem;
    margin: 2rem 0;
    text-align: center
}

    .is-divider-vertical[data-content]::after, .is-divider[data-content]::after {
        background: #fff;
        color: #b5b5b5;
        content: attr(data-content);
        display: inline-block;
        font-size: .875rem;
        padding: .4rem .8rem;
        -webkit-transform: translateY(-1.1rem);
        transform: translateY(-1.1rem);
        text-align: center
    }

@media screen and (min-width:769px),print {
    .is-divider-vertical {
        display: block;
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: auto;
        height: auto;
        padding: 2rem;
        margin: 0;
        position: relative;
        border-top: none;
        min-height: 2rem
    }

        .is-divider-vertical::before {
            border-left: .1rem solid #f0f0f0;
            bottom: 1rem;
            content: "";
            display: block;
            left: 50%;
            position: absolute;
            top: 1rem;
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%)
        }

        .is-divider-vertical[data-content]::after {
            position: absolute;
            left: 50%;
            top: 50%;
            padding: .1rem;
            -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%)
        }
}

.is-divider-vertical.is-white, .is-divider.is-white {
    border-top-color: #fff
}

    .is-divider-vertical.is-white[data-content]::after, .is-divider.is-white[data-content]::after {
        background: #0a0a0a;
        color: #fff
    }

    .is-divider-vertical.is-white::before, .is-divider.is-white::before {
        border-left-color: #fff
    }

.is-divider-vertical.is-black, .is-divider.is-black {
    border-top-color: #0a0a0a
}

    .is-divider-vertical.is-black[data-content]::after, .is-divider.is-black[data-content]::after {
        background: #fff;
        color: #0a0a0a
    }

    .is-divider-vertical.is-black::before, .is-divider.is-black::before {
        border-left-color: #0a0a0a
    }

.is-divider-vertical.is-light, .is-divider.is-light {
    border-top-color: #f5f5f5
}

    .is-divider-vertical.is-light[data-content]::after, .is-divider.is-light[data-content]::after {
        background: #363636;
        color: #f5f5f5
    }

    .is-divider-vertical.is-light::before, .is-divider.is-light::before {
        border-left-color: #f5f5f5
    }

.is-divider-vertical.is-dark, .is-divider.is-dark {
    border-top-color: #363636
}

    .is-divider-vertical.is-dark[data-content]::after, .is-divider.is-dark[data-content]::after {
        background: #f5f5f5;
        color: #363636
    }

    .is-divider-vertical.is-dark::before, .is-divider.is-dark::before {
        border-left-color: #363636
    }

.is-divider-vertical.is-primary, .is-divider.is-primary {
    border-top-color: #9fbf43
}

    .is-divider-vertical.is-primary[data-content]::after, .is-divider.is-primary[data-content]::after {
        background: #fff;
        color: #9fbf43
    }

    .is-divider-vertical.is-primary::before, .is-divider.is-primary::before {
        border-left-color: #9fbf43
    }

.is-divider-vertical.is-link, .is-divider.is-link {
    border-top-color: #9fbf43
}

    .is-divider-vertical.is-link[data-content]::after, .is-divider.is-link[data-content]::after {
        background: #fff;
        color: #9fbf43
    }

    .is-divider-vertical.is-link::before, .is-divider.is-link::before {
        border-left-color: #9fbf43
    }

.is-divider-vertical.is-info, .is-divider.is-info {
    border-top-color: #209cee
}

    .is-divider-vertical.is-info[data-content]::after, .is-divider.is-info[data-content]::after {
        background: #fff;
        color: #209cee
    }

    .is-divider-vertical.is-info::before, .is-divider.is-info::before {
        border-left-color: #209cee
    }

.is-divider-vertical.is-success, .is-divider.is-success {
    border-top-color: #23d160
}

    .is-divider-vertical.is-success[data-content]::after, .is-divider.is-success[data-content]::after {
        background: #fff;
        color: #23d160
    }

    .is-divider-vertical.is-success::before, .is-divider.is-success::before {
        border-left-color: #23d160
    }

.is-divider-vertical.is-warning, .is-divider.is-warning {
    border-top-color: #ffdd57
}

    .is-divider-vertical.is-warning[data-content]::after, .is-divider.is-warning[data-content]::after {
        background: rgba(0,0,0,.7);
        color: #ffdd57
    }

    .is-divider-vertical.is-warning::before, .is-divider.is-warning::before {
        border-left-color: #ffdd57
    }

.is-divider-vertical.is-danger, .is-divider.is-danger {
    border-top-color: #ff3860
}

    .is-divider-vertical.is-danger[data-content]::after, .is-divider.is-danger[data-content]::after {
        background: #fff;
        color: #ff3860
    }

    .is-divider-vertical.is-danger::before, .is-divider.is-danger::before {
        border-left-color: #ff3860
    }

.is-divider-vertical.is-primary-2, .is-divider.is-primary-2 {
    border-top-color: #fa622f
}

    .is-divider-vertical.is-primary-2[data-content]::after, .is-divider.is-primary-2[data-content]::after {
        background: #fff;
        color: #fa622f
    }

    .is-divider-vertical.is-primary-2::before, .is-divider.is-primary-2::before {
        border-left-color: #fa622f
    }

.is-divider-vertical.is-primary-3, .is-divider.is-primary-3 {
    border-top-color: #e65322
}

    .is-divider-vertical.is-primary-3[data-content]::after, .is-divider.is-primary-3[data-content]::after {
        background: #fff;
        color: #e65322
    }

    .is-divider-vertical.is-primary-3::before, .is-divider.is-primary-3::before {
        border-left-color: #e65322
    }

.is-divider-vertical.is-primary-4, .is-divider.is-primary-4 {
    border-top-color: #e85c2d
}

    .is-divider-vertical.is-primary-4[data-content]::after, .is-divider.is-primary-4[data-content]::after {
        background: #fff;
        color: #e85c2d
    }

    .is-divider-vertical.is-primary-4::before, .is-divider.is-primary-4::before {
        border-left-color: #e85c2d
    }

.is-divider-vertical.is-primary-5, .is-divider.is-primary-5 {
    border-top-color: #e35728
}

    .is-divider-vertical.is-primary-5[data-content]::after, .is-divider.is-primary-5[data-content]::after {
        background: #fff;
        color: #e35728
    }

    .is-divider-vertical.is-primary-5::before, .is-divider.is-primary-5::before {
        border-left-color: #e35728
    }

.is-divider-vertical.is-primary-6, .is-divider.is-primary-6 {
    border-top-color: #e95220
}

    .is-divider-vertical.is-primary-6[data-content]::after, .is-divider.is-primary-6[data-content]::after {
        background: #fff;
        color: #e95220
    }

    .is-divider-vertical.is-primary-6::before, .is-divider.is-primary-6::before {
        border-left-color: #e95220
    }

.is-divider-vertical.is-primary-7, .is-divider.is-primary-7 {
    border-top-color: #fafafa
}

    .is-divider-vertical.is-primary-7[data-content]::after, .is-divider.is-primary-7[data-content]::after {
        background: rgba(0,0,0,.7);
        color: #fafafa
    }

    .is-divider-vertical.is-primary-7::before, .is-divider.is-primary-7::before {
        border-left-color: #fafafa
    }

.is-divider-vertical.is-primary-light, .is-divider.is-primary-light {
    border-top-color: #f9f9f9
}

    .is-divider-vertical.is-primary-light[data-content]::after, .is-divider.is-primary-light[data-content]::after {
        background: rgba(0,0,0,.7);
        color: #f9f9f9
    }

    .is-divider-vertical.is-primary-light::before, .is-divider.is-primary-light::before {
        border-left-color: #f9f9f9
    }

.is-divider-vertical.is-secondary, .is-divider.is-secondary {
    border-top-color: #22262a
}

    .is-divider-vertical.is-secondary[data-content]::after, .is-divider.is-secondary[data-content]::after {
        background: #fff;
        color: #22262a
    }

    .is-divider-vertical.is-secondary::before, .is-divider.is-secondary::before {
        border-left-color: #22262a
    }

.is-divider-vertical.is-secondary-2, .is-divider.is-secondary-2 {
    border-top-color: #2d3238
}

    .is-divider-vertical.is-secondary-2[data-content]::after, .is-divider.is-secondary-2[data-content]::after {
        background: #fff;
        color: #2d3238
    }

    .is-divider-vertical.is-secondary-2::before, .is-divider.is-secondary-2::before {
        border-left-color: #2d3238
    }

.is-divider-vertical.is-secondary-3, .is-divider.is-secondary-3 {
    border-top-color: #363a3f
}

    .is-divider-vertical.is-secondary-3[data-content]::after, .is-divider.is-secondary-3[data-content]::after {
        background: #fff;
        color: #363a3f
    }

    .is-divider-vertical.is-secondary-3::before, .is-divider.is-secondary-3::before {
        border-left-color: #363a3f
    }

.is-divider-vertical.is-secondary-4, .is-divider.is-secondary-4 {
    border-top-color: #414549
}

    .is-divider-vertical.is-secondary-4[data-content]::after, .is-divider.is-secondary-4[data-content]::after {
        background: #fff;
        color: #414549
    }

    .is-divider-vertical.is-secondary-4::before, .is-divider.is-secondary-4::before {
        border-left-color: #414549
    }

.is-divider-vertical.is-secondary-5, .is-divider.is-secondary-5 {
    border-top-color: #545659
}

    .is-divider-vertical.is-secondary-5[data-content]::after, .is-divider.is-secondary-5[data-content]::after {
        background: #fff;
        color: #545659
    }

    .is-divider-vertical.is-secondary-5::before, .is-divider.is-secondary-5::before {
        border-left-color: #545659
    }

.is-divider-vertical.is-tertiary, .is-divider.is-tertiary {
    border-top-color: #a6a6a6
}

    .is-divider-vertical.is-tertiary[data-content]::after, .is-divider.is-tertiary[data-content]::after {
        background: #fff;
        color: #a6a6a6
    }

    .is-divider-vertical.is-tertiary::before, .is-divider.is-tertiary::before {
        border-left-color: #a6a6a6
    }

.is-divider-vertical.is-tertiary-2, .is-divider.is-tertiary-2 {
    border-top-color: #d8d8d8
}

    .is-divider-vertical.is-tertiary-2[data-content]::after, .is-divider.is-tertiary-2[data-content]::after {
        background: rgba(0,0,0,.7);
        color: #d8d8d8
    }

    .is-divider-vertical.is-tertiary-2::before, .is-divider.is-tertiary-2::before {
        border-left-color: #d8d8d8
    }

.is-divider-vertical.is-tertiary-3, .is-divider.is-tertiary-3 {
    border-top-color: #d7d6d3
}

    .is-divider-vertical.is-tertiary-3[data-content]::after, .is-divider.is-tertiary-3[data-content]::after {
        background: rgba(0,0,0,.7);
        color: #d7d6d3
    }

    .is-divider-vertical.is-tertiary-3::before, .is-divider.is-tertiary-3::before {
        border-left-color: #d7d6d3
    }

.is-divider-vertical.is-tertiary-4, .is-divider.is-tertiary-4 {
    border-top-color: #afafaf
}

    .is-divider-vertical.is-tertiary-4[data-content]::after, .is-divider.is-tertiary-4[data-content]::after {
        background: #fff;
        color: #afafaf
    }

    .is-divider-vertical.is-tertiary-4::before, .is-divider.is-tertiary-4::before {
        border-left-color: #afafaf
    }

.is-divider-vertical.is-tertiary-5, .is-divider.is-tertiary-5 {
    border-top-color: #eaeaea
}

    .is-divider-vertical.is-tertiary-5[data-content]::after, .is-divider.is-tertiary-5[data-content]::after {
        background: rgba(0,0,0,.7);
        color: #eaeaea
    }

    .is-divider-vertical.is-tertiary-5::before, .is-divider.is-tertiary-5::before {
        border-left-color: #eaeaea
    }

.is-divider-vertical.is-tertiary-6, .is-divider.is-tertiary-6 {
    border-top-color: #b0b0b0
}

    .is-divider-vertical.is-tertiary-6[data-content]::after, .is-divider.is-tertiary-6[data-content]::after {
        background: #fff;
        color: #b0b0b0
    }

    .is-divider-vertical.is-tertiary-6::before, .is-divider.is-tertiary-6::before {
        border-left-color: #b0b0b0
    }

.is-divider-vertical.is-tertiary-7, .is-divider.is-tertiary-7 {
    border-top-color: #969696
}

    .is-divider-vertical.is-tertiary-7[data-content]::after, .is-divider.is-tertiary-7[data-content]::after {
        background: #fff;
        color: #969696
    }

    .is-divider-vertical.is-tertiary-7::before, .is-divider.is-tertiary-7::before {
        border-left-color: #969696
    }

.is-divider-vertical.is-tertiary-8, .is-divider.is-tertiary-8 {
    border-top-color: #999
}

    .is-divider-vertical.is-tertiary-8[data-content]::after, .is-divider.is-tertiary-8[data-content]::after {
        background: #fff;
        color: #999
    }

    .is-divider-vertical.is-tertiary-8::before, .is-divider.is-tertiary-8::before {
        border-left-color: #999
    }

.is-divider-vertical.is-tertiary-9, .is-divider.is-tertiary-9 {
    border-top-color: #f5f5f5
}

    .is-divider-vertical.is-tertiary-9[data-content]::after, .is-divider.is-tertiary-9[data-content]::after {
        background: rgba(0,0,0,.7);
        color: #f5f5f5
    }

    .is-divider-vertical.is-tertiary-9::before, .is-divider.is-tertiary-9::before {
        border-left-color: #f5f5f5
    }

.is-divider-vertical.is-black-bis, .is-divider.is-black-bis {
    border-top-color: #121212
}

    .is-divider-vertical.is-black-bis[data-content]::after, .is-divider.is-black-bis[data-content]::after {
        background: #fff;
        color: #121212
    }

    .is-divider-vertical.is-black-bis::before, .is-divider.is-black-bis::before {
        border-left-color: #121212
    }

.is-divider-vertical.is-black-ter, .is-divider.is-black-ter {
    border-top-color: #242424
}

    .is-divider-vertical.is-black-ter[data-content]::after, .is-divider.is-black-ter[data-content]::after {
        background: #fff;
        color: #242424
    }

    .is-divider-vertical.is-black-ter::before, .is-divider.is-black-ter::before {
        border-left-color: #242424
    }

.is-divider-vertical.is-grey-darker, .is-divider.is-grey-darker {
    border-top-color: #363636
}

    .is-divider-vertical.is-grey-darker[data-content]::after, .is-divider.is-grey-darker[data-content]::after {
        background: #fff;
        color: #363636
    }

    .is-divider-vertical.is-grey-darker::before, .is-divider.is-grey-darker::before {
        border-left-color: #363636
    }

.is-divider-vertical.is-grey-dark, .is-divider.is-grey-dark {
    border-top-color: #4a4a4a
}

    .is-divider-vertical.is-grey-dark[data-content]::after, .is-divider.is-grey-dark[data-content]::after {
        background: #fff;
        color: #4a4a4a
    }

    .is-divider-vertical.is-grey-dark::before, .is-divider.is-grey-dark::before {
        border-left-color: #4a4a4a
    }

.is-divider-vertical.is-grey, .is-divider.is-grey {
    border-top-color: #7a7a7a
}

    .is-divider-vertical.is-grey[data-content]::after, .is-divider.is-grey[data-content]::after {
        background: #fff;
        color: #7a7a7a
    }

    .is-divider-vertical.is-grey::before, .is-divider.is-grey::before {
        border-left-color: #7a7a7a
    }

.is-divider-vertical.is-grey-light, .is-divider.is-grey-light {
    border-top-color: #b5b5b5
}

    .is-divider-vertical.is-grey-light[data-content]::after, .is-divider.is-grey-light[data-content]::after {
        background: #fff;
        color: #b5b5b5
    }

    .is-divider-vertical.is-grey-light::before, .is-divider.is-grey-light::before {
        border-left-color: #b5b5b5
    }

.is-divider-vertical.is-grey-lighter, .is-divider.is-grey-lighter {
    border-top-color: #dbdbdb
}

    .is-divider-vertical.is-grey-lighter[data-content]::after, .is-divider.is-grey-lighter[data-content]::after {
        background: rgba(0,0,0,.7);
        color: #dbdbdb
    }

    .is-divider-vertical.is-grey-lighter::before, .is-divider.is-grey-lighter::before {
        border-left-color: #dbdbdb
    }

.is-divider-vertical.is-white-ter, .is-divider.is-white-ter {
    border-top-color: #f5f5f5
}

    .is-divider-vertical.is-white-ter[data-content]::after, .is-divider.is-white-ter[data-content]::after {
        background: rgba(0,0,0,.7);
        color: #f5f5f5
    }

    .is-divider-vertical.is-white-ter::before, .is-divider.is-white-ter::before {
        border-left-color: #f5f5f5
    }

.is-divider-vertical.is-white-bis, .is-divider.is-white-bis {
    border-top-color: #fafafa
}

    .is-divider-vertical.is-white-bis[data-content]::after, .is-divider.is-white-bis[data-content]::after {
        background: rgba(0,0,0,.7);
        color: #fafafa
    }

    .is-divider-vertical.is-white-bis::before, .is-divider.is-white-bis::before {
        border-left-color: #fafafa
    }

.tooltip {
    position: relative
}

    .tooltip.is-tooltip-active:not(.is-loading)::after, .tooltip:hover:not(.is-loading)::after {
        z-index: 99999;
        position: absolute;
        display: inline-block;
        pointer-events: none
    }

    .tooltip.is-tooltip-active::before, .tooltip:hover::before {
        z-index: 99999;
        position: absolute;
        display: inline-block;
        pointer-events: none
    }

    .tooltip.is-tooltip-active:not(.is-loading)::after, .tooltip:hover:not(.is-loading)::after {
        content: "";
        border-style: solid;
        border-width: .5rem
    }

    .tooltip.is-tooltip-active::before, .tooltip:hover::before {
        opacity: 0;
        content: attr(data-tooltip);
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-size: .75rem;
        padding: .4rem .8rem;
        background: rgba(74,74,74,.9);
        border-radius: 4px;
        color: #fff;
        max-width: 24rem
    }

    .tooltip.is-tooltip-active:not(.is-loading)::after, .tooltip:focus:not(.is-loading)::after, .tooltip:hover:not(.is-loading)::after {
        opacity: 1;
        margin-left: -.5rem;
        margin-top: -.5rem
    }

    .tooltip.is-tooltip-active::before, .tooltip:focus::before, .tooltip:hover::before {
        opacity: 1
    }

    .tooltip::before {
        top: auto;
        bottom: 100%;
        left: 50%;
        right: auto
    }

    .tooltip.is-tooltip-active:not(.is-loading)::after, .tooltip:focus:not(.is-loading)::after, .tooltip:hover:not(.is-loading)::after {
        top: 0;
        bottom: auto;
        left: 50%;
        right: auto;
        border-color: rgba(74,74,74,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-active::before, .tooltip:focus::before, .tooltip:hover::before {
        -webkit-transform: translate(-50%,-.5rem);
        transform: translate(-50%,-.5rem)
    }

    .tooltip.is-tooltip-right::before {
        top: auto;
        bottom: 50%;
        left: 100%;
        right: auto;
        -webkit-transform: translate(-1rem,50%);
        transform: translate(-1rem,50%)
    }

    .tooltip.is-tooltip-right.is-tooltip-active:not(.is-loading)::after, .tooltip.is-tooltip-right:focus:not(.is-loading)::after, .tooltip.is-tooltip-right:hover:not(.is-loading)::after {
        top: 50%;
        left: 100%;
        right: auto;
        border-color: transparent rgba(74,74,74,.9) transparent transparent
    }

    .tooltip.is-tooltip-right.is-tooltip-active::before, .tooltip.is-tooltip-right:focus::before, .tooltip.is-tooltip-right:hover::before {
        -webkit-transform: translate(.5rem,50%);
        transform: translate(.5rem,50%)
    }

    .tooltip.is-tooltip-bottom::before {
        top: 100%;
        bottom: auto;
        left: 50%;
        right: auto;
        -webkit-transform: translate(-50%,-1rem);
        transform: translate(-50%,-1rem)
    }

    .tooltip.is-tooltip-bottom.is-tooltip-active:not(.is-loading)::after, .tooltip.is-tooltip-bottom:focus:not(.is-loading)::after, .tooltip.is-tooltip-bottom:hover:not(.is-loading)::after {
        top: 100%;
        bottom: auto;
        left: 50%;
        right: auto;
        border-color: transparent transparent rgba(74,74,74,.9) transparent
    }

    .tooltip.is-tooltip-bottom.is-tooltip-active::before, .tooltip.is-tooltip-bottom:focus::before, .tooltip.is-tooltip-bottom:hover::before {
        -webkit-transform: translate(-50%,.5rem);
        transform: translate(-50%,.5rem)
    }

    .tooltip.is-tooltip-left::before {
        top: auto;
        bottom: 50%;
        left: auto;
        right: 100%;
        -webkit-transform: translate(1rem,50%);
        transform: translate(1rem,50%)
    }

    .tooltip.is-tooltip-left.is-tooltip-active:not(.is-loading)::after, .tooltip.is-tooltip-left:focus:not(.is-loading)::after, .tooltip.is-tooltip-left:hover:not(.is-loading)::after {
        top: 50%;
        bottom: auto;
        left: auto;
        right: calc(100% - .5rem);
        border-color: transparent transparent transparent rgba(74,74,74,.9)
    }

    .tooltip.is-tooltip-left.is-tooltip-active::before, .tooltip.is-tooltip-left:focus::before, .tooltip.is-tooltip-left:hover::before {
        -webkit-transform: translate(-.5rem,50%);
        transform: translate(-.5rem,50%)
    }

    .tooltip.is-tooltip-multiline::before {
        min-width: 24rem;
        text-overflow: clip;
        white-space: normal;
        word-break: keep-all
    }

    .tooltip.is-tooltip-white:not(.is-loading)::after {
        border-color: rgba(255,255,255,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-white.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(255,255,255,.9) transparent transparent
    }

    .tooltip.is-tooltip-white.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(255,255,255,.9) transparent
    }

    .tooltip.is-tooltip-white.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(255,255,255,.9)
    }

    .tooltip.is-tooltip-white::before {
        background: rgba(255,255,255,.9);
        color: #0a0a0a
    }

    .tooltip.is-tooltip-black:not(.is-loading)::after {
        border-color: rgba(10,10,10,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-black.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(10,10,10,.9) transparent transparent
    }

    .tooltip.is-tooltip-black.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(10,10,10,.9) transparent
    }

    .tooltip.is-tooltip-black.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(10,10,10,.9)
    }

    .tooltip.is-tooltip-black::before {
        background: rgba(10,10,10,.9);
        color: #fff
    }

    .tooltip.is-tooltip-light:not(.is-loading)::after {
        border-color: rgba(245,245,245,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-light.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(245,245,245,.9) transparent transparent
    }

    .tooltip.is-tooltip-light.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(245,245,245,.9) transparent
    }

    .tooltip.is-tooltip-light.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(245,245,245,.9)
    }

    .tooltip.is-tooltip-light::before {
        background: rgba(245,245,245,.9);
        color: #363636
    }

    .tooltip.is-tooltip-dark:not(.is-loading)::after {
        border-color: rgba(54,54,54,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-dark.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(54,54,54,.9) transparent transparent
    }

    .tooltip.is-tooltip-dark.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(54,54,54,.9) transparent
    }

    .tooltip.is-tooltip-dark.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(54,54,54,.9)
    }

    .tooltip.is-tooltip-dark::before {
        background: rgba(54,54,54,.9);
        color: #f5f5f5
    }

    .tooltip.is-tooltip-primary:not(.is-loading)::after {
        border-color: rgba(240,91,41,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-primary.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(240,91,41,.9) transparent transparent
    }

    .tooltip.is-tooltip-primary.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(240,91,41,.9) transparent
    }

    .tooltip.is-tooltip-primary.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(240,91,41,.9)
    }

    .tooltip.is-tooltip-primary::before {
        background: rgba(240,91,41,.9);
        color: #fff
    }

    .tooltip.is-tooltip-link:not(.is-loading)::after {
        border-color: rgba(240,91,41,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-link.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(240,91,41,.9) transparent transparent
    }

    .tooltip.is-tooltip-link.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(240,91,41,.9) transparent
    }

    .tooltip.is-tooltip-link.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(240,91,41,.9)
    }

    .tooltip.is-tooltip-link::before {
        background: rgba(240,91,41,.9);
        color: #fff
    }

    .tooltip.is-tooltip-info:not(.is-loading)::after {
        border-color: rgba(32,156,238,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-info.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(32,156,238,.9) transparent transparent
    }

    .tooltip.is-tooltip-info.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(32,156,238,.9) transparent
    }

    .tooltip.is-tooltip-info.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(32,156,238,.9)
    }

    .tooltip.is-tooltip-info::before {
        background: rgba(32,156,238,.9);
        color: #fff
    }

    .tooltip.is-tooltip-success:not(.is-loading)::after {
        border-color: rgba(35,209,96,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-success.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(35,209,96,.9) transparent transparent
    }

    .tooltip.is-tooltip-success.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(35,209,96,.9) transparent
    }

    .tooltip.is-tooltip-success.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(35,209,96,.9)
    }

    .tooltip.is-tooltip-success::before {
        background: rgba(35,209,96,.9);
        color: #fff
    }

    .tooltip.is-tooltip-warning:not(.is-loading)::after {
        border-color: rgba(255,221,87,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-warning.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(255,221,87,.9) transparent transparent
    }

    .tooltip.is-tooltip-warning.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(255,221,87,.9) transparent
    }

    .tooltip.is-tooltip-warning.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(255,221,87,.9)
    }

    .tooltip.is-tooltip-warning::before {
        background: rgba(255,221,87,.9);
        color: rgba(0,0,0,.7)
    }

    .tooltip.is-tooltip-danger:not(.is-loading)::after {
        border-color: rgba(255,56,96,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-danger.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(255,56,96,.9) transparent transparent
    }

    .tooltip.is-tooltip-danger.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(255,56,96,.9) transparent
    }

    .tooltip.is-tooltip-danger.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(255,56,96,.9)
    }

    .tooltip.is-tooltip-danger::before {
        background: rgba(255,56,96,.9);
        color: #fff
    }

    .tooltip.is-tooltip-primary-2:not(.is-loading)::after {
        border-color: rgba(250,98,47,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-primary-2.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(250,98,47,.9) transparent transparent
    }

    .tooltip.is-tooltip-primary-2.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(250,98,47,.9) transparent
    }

    .tooltip.is-tooltip-primary-2.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(250,98,47,.9)
    }

    .tooltip.is-tooltip-primary-2::before {
        background: rgba(250,98,47,.9);
        color: #fff
    }

    .tooltip.is-tooltip-primary-3:not(.is-loading)::after {
        border-color: rgba(230,83,34,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-primary-3.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(230,83,34,.9) transparent transparent
    }

    .tooltip.is-tooltip-primary-3.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(230,83,34,.9) transparent
    }

    .tooltip.is-tooltip-primary-3.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(230,83,34,.9)
    }

    .tooltip.is-tooltip-primary-3::before {
        background: rgba(230,83,34,.9);
        color: #fff
    }

    .tooltip.is-tooltip-primary-4:not(.is-loading)::after {
        border-color: rgba(232,92,45,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-primary-4.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(232,92,45,.9) transparent transparent
    }

    .tooltip.is-tooltip-primary-4.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(232,92,45,.9) transparent
    }

    .tooltip.is-tooltip-primary-4.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(232,92,45,.9)
    }

    .tooltip.is-tooltip-primary-4::before {
        background: rgba(232,92,45,.9);
        color: #fff
    }

    .tooltip.is-tooltip-primary-5:not(.is-loading)::after {
        border-color: rgba(227,87,40,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-primary-5.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(227,87,40,.9) transparent transparent
    }

    .tooltip.is-tooltip-primary-5.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(227,87,40,.9) transparent
    }

    .tooltip.is-tooltip-primary-5.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(227,87,40,.9)
    }

    .tooltip.is-tooltip-primary-5::before {
        background: rgba(227,87,40,.9);
        color: #fff
    }

    .tooltip.is-tooltip-primary-6:not(.is-loading)::after {
        border-color: rgba(233,82,32,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-primary-6.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(233,82,32,.9) transparent transparent
    }

    .tooltip.is-tooltip-primary-6.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(233,82,32,.9) transparent
    }

    .tooltip.is-tooltip-primary-6.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(233,82,32,.9)
    }

    .tooltip.is-tooltip-primary-6::before {
        background: rgba(233,82,32,.9);
        color: #fff
    }

    .tooltip.is-tooltip-primary-7:not(.is-loading)::after {
        border-color: rgba(250,250,250,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-primary-7.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(250,250,250,.9) transparent transparent
    }

    .tooltip.is-tooltip-primary-7.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(250,250,250,.9) transparent
    }

    .tooltip.is-tooltip-primary-7.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(250,250,250,.9)
    }

    .tooltip.is-tooltip-primary-7::before {
        background: rgba(250,250,250,.9);
        color: rgba(0,0,0,.7)
    }

    .tooltip.is-tooltip-primary-light:not(.is-loading)::after {
        border-color: rgba(249,249,249,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-primary-light.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(249,249,249,.9) transparent transparent
    }

    .tooltip.is-tooltip-primary-light.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(249,249,249,.9) transparent
    }

    .tooltip.is-tooltip-primary-light.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(249,249,249,.9)
    }

    .tooltip.is-tooltip-primary-light::before {
        background: rgba(249,249,249,.9);
        color: rgba(0,0,0,.7)
    }

    .tooltip.is-tooltip-secondary:not(.is-loading)::after {
        border-color: rgba(34,38,42,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-secondary.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(34,38,42,.9) transparent transparent
    }

    .tooltip.is-tooltip-secondary.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(34,38,42,.9) transparent
    }

    .tooltip.is-tooltip-secondary.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(34,38,42,.9)
    }

    .tooltip.is-tooltip-secondary::before {
        background: rgba(34,38,42,.9);
        color: #fff
    }

    .tooltip.is-tooltip-secondary-2:not(.is-loading)::after {
        border-color: rgba(45,50,56,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-secondary-2.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(45,50,56,.9) transparent transparent
    }

    .tooltip.is-tooltip-secondary-2.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(45,50,56,.9) transparent
    }

    .tooltip.is-tooltip-secondary-2.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(45,50,56,.9)
    }

    .tooltip.is-tooltip-secondary-2::before {
        background: rgba(45,50,56,.9);
        color: #fff
    }

    .tooltip.is-tooltip-secondary-3:not(.is-loading)::after {
        border-color: rgba(54,58,63,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-secondary-3.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(54,58,63,.9) transparent transparent
    }

    .tooltip.is-tooltip-secondary-3.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(54,58,63,.9) transparent
    }

    .tooltip.is-tooltip-secondary-3.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(54,58,63,.9)
    }

    .tooltip.is-tooltip-secondary-3::before {
        background: rgba(54,58,63,.9);
        color: #fff
    }

    .tooltip.is-tooltip-secondary-4:not(.is-loading)::after {
        border-color: rgba(65,69,73,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-secondary-4.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(65,69,73,.9) transparent transparent
    }

    .tooltip.is-tooltip-secondary-4.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(65,69,73,.9) transparent
    }

    .tooltip.is-tooltip-secondary-4.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(65,69,73,.9)
    }

    .tooltip.is-tooltip-secondary-4::before {
        background: rgba(65,69,73,.9);
        color: #fff
    }

    .tooltip.is-tooltip-secondary-5:not(.is-loading)::after {
        border-color: rgba(84,86,89,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-secondary-5.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(84,86,89,.9) transparent transparent
    }

    .tooltip.is-tooltip-secondary-5.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(84,86,89,.9) transparent
    }

    .tooltip.is-tooltip-secondary-5.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(84,86,89,.9)
    }

    .tooltip.is-tooltip-secondary-5::before {
        background: rgba(84,86,89,.9);
        color: #fff
    }

    .tooltip.is-tooltip-tertiary:not(.is-loading)::after {
        border-color: rgba(166,166,166,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-tertiary.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(166,166,166,.9) transparent transparent
    }

    .tooltip.is-tooltip-tertiary.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(166,166,166,.9) transparent
    }

    .tooltip.is-tooltip-tertiary.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(166,166,166,.9)
    }

    .tooltip.is-tooltip-tertiary::before {
        background: rgba(166,166,166,.9);
        color: #fff
    }

    .tooltip.is-tooltip-tertiary-2:not(.is-loading)::after {
        border-color: rgba(216,216,216,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-tertiary-2.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(216,216,216,.9) transparent transparent
    }

    .tooltip.is-tooltip-tertiary-2.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(216,216,216,.9) transparent
    }

    .tooltip.is-tooltip-tertiary-2.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(216,216,216,.9)
    }

    .tooltip.is-tooltip-tertiary-2::before {
        background: rgba(216,216,216,.9);
        color: rgba(0,0,0,.7)
    }

    .tooltip.is-tooltip-tertiary-3:not(.is-loading)::after {
        border-color: rgba(215,214,211,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-tertiary-3.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(215,214,211,.9) transparent transparent
    }

    .tooltip.is-tooltip-tertiary-3.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(215,214,211,.9) transparent
    }

    .tooltip.is-tooltip-tertiary-3.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(215,214,211,.9)
    }

    .tooltip.is-tooltip-tertiary-3::before {
        background: rgba(215,214,211,.9);
        color: rgba(0,0,0,.7)
    }

    .tooltip.is-tooltip-tertiary-4:not(.is-loading)::after {
        border-color: rgba(175,175,175,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-tertiary-4.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(175,175,175,.9) transparent transparent
    }

    .tooltip.is-tooltip-tertiary-4.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(175,175,175,.9) transparent
    }

    .tooltip.is-tooltip-tertiary-4.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(175,175,175,.9)
    }

    .tooltip.is-tooltip-tertiary-4::before {
        background: rgba(175,175,175,.9);
        color: #fff
    }

    .tooltip.is-tooltip-tertiary-5:not(.is-loading)::after {
        border-color: rgba(234,234,234,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-tertiary-5.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(234,234,234,.9) transparent transparent
    }

    .tooltip.is-tooltip-tertiary-5.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(234,234,234,.9) transparent
    }

    .tooltip.is-tooltip-tertiary-5.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(234,234,234,.9)
    }

    .tooltip.is-tooltip-tertiary-5::before {
        background: rgba(234,234,234,.9);
        color: rgba(0,0,0,.7)
    }

    .tooltip.is-tooltip-tertiary-6:not(.is-loading)::after {
        border-color: rgba(176,176,176,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-tertiary-6.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(176,176,176,.9) transparent transparent
    }

    .tooltip.is-tooltip-tertiary-6.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(176,176,176,.9) transparent
    }

    .tooltip.is-tooltip-tertiary-6.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(176,176,176,.9)
    }

    .tooltip.is-tooltip-tertiary-6::before {
        background: rgba(176,176,176,.9);
        color: #fff
    }

    .tooltip.is-tooltip-tertiary-7:not(.is-loading)::after {
        border-color: rgba(150,150,150,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-tertiary-7.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(150,150,150,.9) transparent transparent
    }

    .tooltip.is-tooltip-tertiary-7.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(150,150,150,.9) transparent
    }

    .tooltip.is-tooltip-tertiary-7.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(150,150,150,.9)
    }

    .tooltip.is-tooltip-tertiary-7::before {
        background: rgba(150,150,150,.9);
        color: #fff
    }

    .tooltip.is-tooltip-tertiary-8:not(.is-loading)::after {
        border-color: rgba(153,153,153,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-tertiary-8.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(153,153,153,.9) transparent transparent
    }

    .tooltip.is-tooltip-tertiary-8.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(153,153,153,.9) transparent
    }

    .tooltip.is-tooltip-tertiary-8.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(153,153,153,.9)
    }

    .tooltip.is-tooltip-tertiary-8::before {
        background: rgba(153,153,153,.9);
        color: #fff
    }

    .tooltip.is-tooltip-tertiary-9:not(.is-loading)::after {
        border-color: rgba(245,245,245,.9) transparent transparent transparent
    }

    .tooltip.is-tooltip-tertiary-9.is-tooltip-right:not(.is-loading)::after {
        border-color: transparent rgba(245,245,245,.9) transparent transparent
    }

    .tooltip.is-tooltip-tertiary-9.is-tooltip-bottom:not(.is-loading)::after {
        border-color: transparent transparent rgba(245,245,245,.9) transparent
    }

    .tooltip.is-tooltip-tertiary-9.is-tooltip-left:not(.is-loading)::after {
        border-color: transparent transparent transparent rgba(245,245,245,.9)
    }

    .tooltip.is-tooltip-tertiary-9::before {
        background: rgba(245,245,245,.9);
        color: rgba(0,0,0,.7)
    }

@media screen and (max-width:768px) {
    .is-tooltip-top-mobile::before {
        top: auto !important;
        bottom: 100% !important;
        left: 50% !important;
        right: auto !important
    }

    .is-tooltip-top-mobile.is-tooltip-active:not(.is-loading)::after, .is-tooltip-top-mobile:focus:not(.is-loading)::after, .is-tooltip-top-mobile:hover:not(.is-loading)::after {
        top: 0 !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: rgba(74,74,74,.9) transparent transparent transparent !important
    }

    .is-tooltip-top-mobile.is-tooltip-active::before, .is-tooltip-top-mobile:focus::before, .is-tooltip-top-mobile:hover::before {
        -webkit-transform: translate(-50%,-.5rem) !important;
        transform: translate(-50%,-.5rem) !important
    }
}

@media screen and (min-width:769px),print {
    .is-tooltip-top-tablet::before {
        top: auto !important;
        bottom: 100% !important;
        left: 50% !important;
        right: auto !important
    }

    .is-tooltip-top-tablet.is-tooltip-active:not(.is-loading)::after, .is-tooltip-top-tablet:focus:not(.is-loading)::after, .is-tooltip-top-tablet:hover:not(.is-loading)::after {
        top: 0 !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: rgba(74,74,74,.9) transparent transparent transparent !important
    }

    .is-tooltip-top-tablet.is-tooltip-active::before, .is-tooltip-top-tablet:focus::before, .is-tooltip-top-tablet:hover::before {
        -webkit-transform: translate(-50%,-.5rem) !important;
        transform: translate(-50%,-.5rem) !important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .is-tooltip-top-tablet-only::before {
        top: auto !important;
        bottom: 100% !important;
        left: 50% !important;
        right: auto !important
    }

    .is-tooltip-top-tablet-only.is-tooltip-active:not(.is-loading)::after, .is-tooltip-top-tablet-only:focus:not(.is-loading)::after, .is-tooltip-top-tablet-only:hover:not(.is-loading)::after {
        top: 0 !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: rgba(74,74,74,.9) transparent transparent transparent !important
    }

    .is-tooltip-top-tablet-only.is-tooltip-active::before, .is-tooltip-top-tablet-only:focus::before, .is-tooltip-top-tablet-only:hover::before {
        -webkit-transform: translate(-50%,-.5rem) !important;
        transform: translate(-50%,-.5rem) !important
    }
}

@media screen and (max-width:1087px) {
    .is-tooltip-top-touch::before {
        top: auto !important;
        bottom: 100% !important;
        left: 50% !important;
        right: auto !important
    }

    .is-tooltip-top-touch.is-tooltip-active:not(.is-loading)::after, .is-tooltip-top-touch:focus:not(.is-loading)::after, .is-tooltip-top-touch:hover:not(.is-loading)::after {
        top: 0 !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: rgba(74,74,74,.9) transparent transparent transparent !important
    }

    .is-tooltip-top-touch.is-tooltip-active::before, .is-tooltip-top-touch:focus::before, .is-tooltip-top-touch:hover::before {
        -webkit-transform: translate(-50%,-.5rem) !important;
        transform: translate(-50%,-.5rem) !important
    }
}

@media screen and (min-width:1088px) {
    .is-tooltip-top-desktop::before {
        top: auto !important;
        bottom: 100% !important;
        left: 50% !important;
        right: auto !important
    }

    .is-tooltip-top-desktop.is-tooltip-active:not(.is-loading)::after, .is-tooltip-top-desktop:focus:not(.is-loading)::after, .is-tooltip-top-desktop:hover:not(.is-loading)::after {
        top: 0 !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: rgba(74,74,74,.9) transparent transparent transparent !important
    }

    .is-tooltip-top-desktop.is-tooltip-active::before, .is-tooltip-top-desktop:focus::before, .is-tooltip-top-desktop:hover::before {
        -webkit-transform: translate(-50%,-.5rem) !important;
        transform: translate(-50%,-.5rem) !important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .is-tooltip-top-desktop-only::before {
        top: auto !important;
        bottom: 100% !important;
        left: 50% !important;
        right: auto !important
    }

    .is-tooltip-top-desktop-only.is-tooltip-active:not(.is-loading)::after, .is-tooltip-top-desktop-only:focus:not(.is-loading)::after, .is-tooltip-top-desktop-only:hover:not(.is-loading)::after {
        top: 0 !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: rgba(74,74,74,.9) transparent transparent transparent !important
    }

    .is-tooltip-top-desktop-only.is-tooltip-active::before, .is-tooltip-top-desktop-only:focus::before, .is-tooltip-top-desktop-only:hover::before {
        -webkit-transform: translate(-50%,-.5rem) !important;
        transform: translate(-50%,-.5rem) !important
    }
}

@media screen and (min-width:1280px) {
    .is-tooltip-top-widescreen::before {
        top: auto !important;
        bottom: 100% !important;
        left: 50% !important;
        right: auto !important
    }

    .is-tooltip-top-widescreen.is-tooltip-active:not(.is-loading)::after, .is-tooltip-top-widescreen:focus:not(.is-loading)::after, .is-tooltip-top-widescreen:hover:not(.is-loading)::after {
        top: 0 !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: rgba(74,74,74,.9) transparent transparent transparent !important
    }

    .is-tooltip-top-widescreen.is-tooltip-active::before, .is-tooltip-top-widescreen:focus::before, .is-tooltip-top-widescreen:hover::before {
        -webkit-transform: translate(-50%,-.5rem) !important;
        transform: translate(-50%,-.5rem) !important
    }
}

@media screen and (min-width:1280px) and (max-width:1471px) {
    .is-tooltip-top-widescreen-only::before {
        top: auto !important;
        bottom: 100% !important;
        left: 50% !important;
        right: auto !important
    }

    .is-tooltip-top-widescreen-only.is-tooltip-active:not(.is-loading)::after, .is-tooltip-top-widescreen-only:focus:not(.is-loading)::after, .is-tooltip-top-widescreen-only:hover:not(.is-loading)::after {
        top: 0 !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: rgba(74,74,74,.9) transparent transparent transparent !important
    }

    .is-tooltip-top-widescreen-only.is-tooltip-active::before, .is-tooltip-top-widescreen-only:focus::before, .is-tooltip-top-widescreen-only:hover::before {
        -webkit-transform: translate(-50%,-.5rem) !important;
        transform: translate(-50%,-.5rem) !important
    }
}

@media screen and (min-width:1472px) {
    .is-tooltip-top-fullhd::before {
        top: auto !important;
        bottom: 100% !important;
        left: 50% !important;
        right: auto !important
    }

    .is-tooltip-top-fullhd.is-tooltip-active:not(.is-loading)::after, .is-tooltip-top-fullhd:focus:not(.is-loading)::after, .is-tooltip-top-fullhd:hover:not(.is-loading)::after {
        top: 0 !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: rgba(74,74,74,.9) transparent transparent transparent !important
    }

    .is-tooltip-top-fullhd.is-tooltip-active::before, .is-tooltip-top-fullhd:focus::before, .is-tooltip-top-fullhd:hover::before {
        -webkit-transform: translate(-50%,-.5rem) !important;
        transform: translate(-50%,-.5rem) !important
    }
}

@media screen and (max-width:768px) {
    .is-tooltip-right-mobile::before {
        top: auto !important;
        bottom: 50% !important;
        left: 100% !important;
        right: auto !important;
        -webkit-transform: translate(-1rem,50%) !important;
        transform: translate(-1rem,50%) !important
    }

    .is-tooltip-right-mobile.is-tooltip-active:not(.is-loading)::after, .is-tooltip-right-mobile:focus:not(.is-loading)::after, .is-tooltip-right-mobile:hover:not(.is-loading)::after {
        top: 50% !important;
        left: 100% !important;
        right: auto !important;
        border-color: transparent rgba(74,74,74,.9) transparent transparent !important
    }

    .is-tooltip-right-mobile.is-tooltip-active::before, .is-tooltip-right-mobile:focus::before, .is-tooltip-right-mobile:hover::before {
        -webkit-transform: translate(.5rem,50%) !important;
        transform: translate(.5rem,50%) !important
    }
}

@media screen and (min-width:769px),print {
    .is-tooltip-right-tablet::before {
        top: auto !important;
        bottom: 50% !important;
        left: 100% !important;
        right: auto !important;
        -webkit-transform: translate(-1rem,50%) !important;
        transform: translate(-1rem,50%) !important
    }

    .is-tooltip-right-tablet.is-tooltip-active:not(.is-loading)::after, .is-tooltip-right-tablet:focus:not(.is-loading)::after, .is-tooltip-right-tablet:hover:not(.is-loading)::after {
        top: 50% !important;
        left: 100% !important;
        right: auto !important;
        border-color: transparent rgba(74,74,74,.9) transparent transparent !important
    }

    .is-tooltip-right-tablet.is-tooltip-active::before, .is-tooltip-right-tablet:focus::before, .is-tooltip-right-tablet:hover::before {
        -webkit-transform: translate(.5rem,50%) !important;
        transform: translate(.5rem,50%) !important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .is-tooltip-right-tablet-only::before {
        top: auto !important;
        bottom: 50% !important;
        left: 100% !important;
        right: auto !important;
        -webkit-transform: translate(-1rem,50%) !important;
        transform: translate(-1rem,50%) !important
    }

    .is-tooltip-right-tablet-only.is-tooltip-active:not(.is-loading)::after, .is-tooltip-right-tablet-only:focus:not(.is-loading)::after, .is-tooltip-right-tablet-only:hover:not(.is-loading)::after {
        top: 50% !important;
        left: 100% !important;
        right: auto !important;
        border-color: transparent rgba(74,74,74,.9) transparent transparent !important
    }

    .is-tooltip-right-tablet-only.is-tooltip-active::before, .is-tooltip-right-tablet-only:focus::before, .is-tooltip-right-tablet-only:hover::before {
        -webkit-transform: translate(.5rem,50%) !important;
        transform: translate(.5rem,50%) !important
    }
}

@media screen and (max-width:1087px) {
    .is-tooltip-right-touch::before {
        top: auto !important;
        bottom: 50% !important;
        left: 100% !important;
        right: auto !important;
        -webkit-transform: translate(-1rem,50%) !important;
        transform: translate(-1rem,50%) !important
    }

    .is-tooltip-right-touch.is-tooltip-active:not(.is-loading)::after, .is-tooltip-right-touch:focus:not(.is-loading)::after, .is-tooltip-right-touch:hover:not(.is-loading)::after {
        top: 50% !important;
        left: 100% !important;
        right: auto !important;
        border-color: transparent rgba(74,74,74,.9) transparent transparent !important
    }

    .is-tooltip-right-touch.is-tooltip-active::before, .is-tooltip-right-touch:focus::before, .is-tooltip-right-touch:hover::before {
        -webkit-transform: translate(.5rem,50%) !important;
        transform: translate(.5rem,50%) !important
    }
}

@media screen and (min-width:1088px) {
    .is-tooltip-right-desktop::before {
        top: auto !important;
        bottom: 50% !important;
        left: 100% !important;
        right: auto !important;
        -webkit-transform: translate(-1rem,50%) !important;
        transform: translate(-1rem,50%) !important
    }

    .is-tooltip-right-desktop.is-tooltip-active:not(.is-loading)::after, .is-tooltip-right-desktop:focus:not(.is-loading)::after, .is-tooltip-right-desktop:hover:not(.is-loading)::after {
        top: 50% !important;
        left: 100% !important;
        right: auto !important;
        border-color: transparent rgba(74,74,74,.9) transparent transparent !important
    }

    .is-tooltip-right-desktop.is-tooltip-active::before, .is-tooltip-right-desktop:focus::before, .is-tooltip-right-desktop:hover::before {
        -webkit-transform: translate(.5rem,50%) !important;
        transform: translate(.5rem,50%) !important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .is-tooltip-right-desktop-only::before {
        top: auto !important;
        bottom: 50% !important;
        left: 100% !important;
        right: auto !important;
        -webkit-transform: translate(-1rem,50%) !important;
        transform: translate(-1rem,50%) !important
    }

    .is-tooltip-right-desktop-only.is-tooltip-active:not(.is-loading)::after, .is-tooltip-right-desktop-only:focus:not(.is-loading)::after, .is-tooltip-right-desktop-only:hover:not(.is-loading)::after {
        top: 50% !important;
        left: 100% !important;
        right: auto !important;
        border-color: transparent rgba(74,74,74,.9) transparent transparent !important
    }

    .is-tooltip-right-desktop-only.is-tooltip-active::before, .is-tooltip-right-desktop-only:focus::before, .is-tooltip-right-desktop-only:hover::before {
        -webkit-transform: translate(.5rem,50%) !important;
        transform: translate(.5rem,50%) !important
    }
}

@media screen and (min-width:1280px) {
    .is-tooltip-right-widescreen::before {
        top: auto !important;
        bottom: 50% !important;
        left: 100% !important;
        right: auto !important;
        -webkit-transform: translate(-1rem,50%) !important;
        transform: translate(-1rem,50%) !important
    }

    .is-tooltip-right-widescreen.is-tooltip-active:not(.is-loading)::after, .is-tooltip-right-widescreen:focus:not(.is-loading)::after, .is-tooltip-right-widescreen:hover:not(.is-loading)::after {
        top: 50% !important;
        left: 100% !important;
        right: auto !important;
        border-color: transparent rgba(74,74,74,.9) transparent transparent !important
    }

    .is-tooltip-right-widescreen.is-tooltip-active::before, .is-tooltip-right-widescreen:focus::before, .is-tooltip-right-widescreen:hover::before {
        -webkit-transform: translate(.5rem,50%) !important;
        transform: translate(.5rem,50%) !important
    }
}

@media screen and (min-width:1280px) and (max-width:1471px) {
    .is-tooltip-right-widescreen-only::before {
        top: auto !important;
        bottom: 50% !important;
        left: 100% !important;
        right: auto !important;
        -webkit-transform: translate(-1rem,50%) !important;
        transform: translate(-1rem,50%) !important
    }

    .is-tooltip-right-widescreen-only.is-tooltip-active:not(.is-loading)::after, .is-tooltip-right-widescreen-only:focus:not(.is-loading)::after, .is-tooltip-right-widescreen-only:hover:not(.is-loading)::after {
        top: 50% !important;
        left: 100% !important;
        right: auto !important;
        border-color: transparent rgba(74,74,74,.9) transparent transparent !important
    }

    .is-tooltip-right-widescreen-only.is-tooltip-active::before, .is-tooltip-right-widescreen-only:focus::before, .is-tooltip-right-widescreen-only:hover::before {
        -webkit-transform: translate(.5rem,50%) !important;
        transform: translate(.5rem,50%) !important
    }
}

@media screen and (min-width:1472px) {
    .is-tooltip-right-fullhd::before {
        top: auto !important;
        bottom: 50% !important;
        left: 100% !important;
        right: auto !important;
        -webkit-transform: translate(-1rem,50%) !important;
        transform: translate(-1rem,50%) !important
    }

    .is-tooltip-right-fullhd.is-tooltip-active:not(.is-loading)::after, .is-tooltip-right-fullhd:focus:not(.is-loading)::after, .is-tooltip-right-fullhd:hover:not(.is-loading)::after {
        top: 50% !important;
        left: 100% !important;
        right: auto !important;
        border-color: transparent rgba(74,74,74,.9) transparent transparent !important
    }

    .is-tooltip-right-fullhd.is-tooltip-active::before, .is-tooltip-right-fullhd:focus::before, .is-tooltip-right-fullhd:hover::before {
        -webkit-transform: translate(.5rem,50%) !important;
        transform: translate(.5rem,50%) !important
    }
}

@media screen and (max-width:768px) {
    .is-tooltip-bottom-mobile::before {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        -webkit-transform: translate(-50%,-1rem) !important;
        transform: translate(-50%,-1rem) !important
    }

    .is-tooltip-bottom-mobile.is-tooltip-active:not(.is-loading)::after, .is-tooltip-bottom-mobile:focus:not(.is-loading)::after, .is-tooltip-bottom-mobile:hover:not(.is-loading)::after {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: transparent transparent rgba(74,74,74,.9) transparent !important
    }

    .is-tooltip-bottom-mobile.is-tooltip-active::before, .is-tooltip-bottom-mobile:focus::before, .is-tooltip-bottom-mobile:hover::before {
        -webkit-transform: translate(-50%,.5rem) !important;
        transform: translate(-50%,.5rem) !important
    }
}

@media screen and (min-width:769px),print {
    .is-tooltip-bottom-tablet::before {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        -webkit-transform: translate(-50%,-1rem) !important;
        transform: translate(-50%,-1rem) !important
    }

    .is-tooltip-bottom-tablet.is-tooltip-active:not(.is-loading)::after, .is-tooltip-bottom-tablet:focus:not(.is-loading)::after, .is-tooltip-bottom-tablet:hover:not(.is-loading)::after {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: transparent transparent rgba(74,74,74,.9) transparent !important
    }

    .is-tooltip-bottom-tablet.is-tooltip-active::before, .is-tooltip-bottom-tablet:focus::before, .is-tooltip-bottom-tablet:hover::before {
        -webkit-transform: translate(-50%,.5rem) !important;
        transform: translate(-50%,.5rem) !important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .is-tooltip-bottom-tablet-only::before {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        -webkit-transform: translate(-50%,-1rem) !important;
        transform: translate(-50%,-1rem) !important
    }

    .is-tooltip-bottom-tablet-only.is-tooltip-active:not(.is-loading)::after, .is-tooltip-bottom-tablet-only:focus:not(.is-loading)::after, .is-tooltip-bottom-tablet-only:hover:not(.is-loading)::after {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: transparent transparent rgba(74,74,74,.9) transparent !important
    }

    .is-tooltip-bottom-tablet-only.is-tooltip-active::before, .is-tooltip-bottom-tablet-only:focus::before, .is-tooltip-bottom-tablet-only:hover::before {
        -webkit-transform: translate(-50%,.5rem) !important;
        transform: translate(-50%,.5rem) !important
    }
}

@media screen and (max-width:1087px) {
    .is-tooltip-bottom-touch::before {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        -webkit-transform: translate(-50%,-1rem) !important;
        transform: translate(-50%,-1rem) !important
    }

    .is-tooltip-bottom-touch.is-tooltip-active:not(.is-loading)::after, .is-tooltip-bottom-touch:focus:not(.is-loading)::after, .is-tooltip-bottom-touch:hover:not(.is-loading)::after {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: transparent transparent rgba(74,74,74,.9) transparent !important
    }

    .is-tooltip-bottom-touch.is-tooltip-active::before, .is-tooltip-bottom-touch:focus::before, .is-tooltip-bottom-touch:hover::before {
        -webkit-transform: translate(-50%,.5rem) !important;
        transform: translate(-50%,.5rem) !important
    }
}

@media screen and (min-width:1088px) {
    .is-tooltip-bottom-desktop::before {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        -webkit-transform: translate(-50%,-1rem) !important;
        transform: translate(-50%,-1rem) !important
    }

    .is-tooltip-bottom-desktop.is-tooltip-active:not(.is-loading)::after, .is-tooltip-bottom-desktop:focus:not(.is-loading)::after, .is-tooltip-bottom-desktop:hover:not(.is-loading)::after {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: transparent transparent rgba(74,74,74,.9) transparent !important
    }

    .is-tooltip-bottom-desktop.is-tooltip-active::before, .is-tooltip-bottom-desktop:focus::before, .is-tooltip-bottom-desktop:hover::before {
        -webkit-transform: translate(-50%,.5rem) !important;
        transform: translate(-50%,.5rem) !important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .is-tooltip-bottom-desktop-only::before {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        -webkit-transform: translate(-50%,-1rem) !important;
        transform: translate(-50%,-1rem) !important
    }

    .is-tooltip-bottom-desktop-only.is-tooltip-active:not(.is-loading)::after, .is-tooltip-bottom-desktop-only:focus:not(.is-loading)::after, .is-tooltip-bottom-desktop-only:hover:not(.is-loading)::after {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: transparent transparent rgba(74,74,74,.9) transparent !important
    }

    .is-tooltip-bottom-desktop-only.is-tooltip-active::before, .is-tooltip-bottom-desktop-only:focus::before, .is-tooltip-bottom-desktop-only:hover::before {
        -webkit-transform: translate(-50%,.5rem) !important;
        transform: translate(-50%,.5rem) !important
    }
}

@media screen and (min-width:1280px) {
    .is-tooltip-bottom-widescreen::before {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        -webkit-transform: translate(-50%,-1rem) !important;
        transform: translate(-50%,-1rem) !important
    }

    .is-tooltip-bottom-widescreen.is-tooltip-active:not(.is-loading)::after, .is-tooltip-bottom-widescreen:focus:not(.is-loading)::after, .is-tooltip-bottom-widescreen:hover:not(.is-loading)::after {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: transparent transparent rgba(74,74,74,.9) transparent !important
    }

    .is-tooltip-bottom-widescreen.is-tooltip-active::before, .is-tooltip-bottom-widescreen:focus::before, .is-tooltip-bottom-widescreen:hover::before {
        -webkit-transform: translate(-50%,.5rem) !important;
        transform: translate(-50%,.5rem) !important
    }
}

@media screen and (min-width:1280px) and (max-width:1471px) {
    .is-tooltip-bottom-widescreen-only::before {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        -webkit-transform: translate(-50%,-1rem) !important;
        transform: translate(-50%,-1rem) !important
    }

    .is-tooltip-bottom-widescreen-only.is-tooltip-active:not(.is-loading)::after, .is-tooltip-bottom-widescreen-only:focus:not(.is-loading)::after, .is-tooltip-bottom-widescreen-only:hover:not(.is-loading)::after {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: transparent transparent rgba(74,74,74,.9) transparent !important
    }

    .is-tooltip-bottom-widescreen-only.is-tooltip-active::before, .is-tooltip-bottom-widescreen-only:focus::before, .is-tooltip-bottom-widescreen-only:hover::before {
        -webkit-transform: translate(-50%,.5rem) !important;
        transform: translate(-50%,.5rem) !important
    }
}

@media screen and (min-width:1472px) {
    .is-tooltip-bottom-fullhd::before {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        -webkit-transform: translate(-50%,-1rem) !important;
        transform: translate(-50%,-1rem) !important
    }

    .is-tooltip-bottom-fullhd.is-tooltip-active:not(.is-loading)::after, .is-tooltip-bottom-fullhd:focus:not(.is-loading)::after, .is-tooltip-bottom-fullhd:hover:not(.is-loading)::after {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: transparent transparent rgba(74,74,74,.9) transparent !important
    }

    .is-tooltip-bottom-fullhd.is-tooltip-active::before, .is-tooltip-bottom-fullhd:focus::before, .is-tooltip-bottom-fullhd:hover::before {
        -webkit-transform: translate(-50%,.5rem) !important;
        transform: translate(-50%,.5rem) !important
    }
}

@media screen and (max-width:768px) {
    .is-tooltip-left-mobile::before {
        top: auto !important;
        bottom: 50% !important;
        left: auto !important;
        right: 100% !important;
        -webkit-transform: translate(1rem,50%) !important;
        transform: translate(1rem,50%) !important
    }

    .is-tooltip-left-mobile.is-tooltip-active:not(.is-loading)::after, .is-tooltip-left-mobile:focus:not(.is-loading)::after, .is-tooltip-left-mobile:hover:not(.is-loading)::after {
        top: 50% !important;
        bottom: auto !important;
        left: auto !important;
        right: calc(100% - .5rem) !important;
        border-color: transparent transparent transparent rgba(74,74,74,.9) !important
    }

    .is-tooltip-left-mobile.is-tooltip-active::before, .is-tooltip-left-mobile:focus::before, .is-tooltip-left-mobile:hover::before {
        -webkit-transform: translate(-.5rem,50%) !important;
        transform: translate(-.5rem,50%) !important
    }
}

@media screen and (min-width:769px),print {
    .is-tooltip-left-tablet::before {
        top: auto !important;
        bottom: 50% !important;
        left: auto !important;
        right: 100% !important;
        -webkit-transform: translate(1rem,50%) !important;
        transform: translate(1rem,50%) !important
    }

    .is-tooltip-left-tablet.is-tooltip-active:not(.is-loading)::after, .is-tooltip-left-tablet:focus:not(.is-loading)::after, .is-tooltip-left-tablet:hover:not(.is-loading)::after {
        top: 50% !important;
        bottom: auto !important;
        left: auto !important;
        right: calc(100% - .5rem) !important;
        border-color: transparent transparent transparent rgba(74,74,74,.9) !important
    }

    .is-tooltip-left-tablet.is-tooltip-active::before, .is-tooltip-left-tablet:focus::before, .is-tooltip-left-tablet:hover::before {
        -webkit-transform: translate(-.5rem,50%) !important;
        transform: translate(-.5rem,50%) !important
    }
}

@media screen and (min-width:769px) and (max-width:1087px) {
    .is-tooltip-left-tablet-only::before {
        top: auto !important;
        bottom: 50% !important;
        left: auto !important;
        right: 100% !important;
        -webkit-transform: translate(1rem,50%) !important;
        transform: translate(1rem,50%) !important
    }

    .is-tooltip-left-tablet-only.is-tooltip-active:not(.is-loading)::after, .is-tooltip-left-tablet-only:focus:not(.is-loading)::after, .is-tooltip-left-tablet-only:hover:not(.is-loading)::after {
        top: 50% !important;
        bottom: auto !important;
        left: auto !important;
        right: calc(100% - .5rem) !important;
        border-color: transparent transparent transparent rgba(74,74,74,.9) !important
    }

    .is-tooltip-left-tablet-only.is-tooltip-active::before, .is-tooltip-left-tablet-only:focus::before, .is-tooltip-left-tablet-only:hover::before {
        -webkit-transform: translate(-.5rem,50%) !important;
        transform: translate(-.5rem,50%) !important
    }
}

@media screen and (max-width:1087px) {
    .is-tooltip-left-touch::before {
        top: auto !important;
        bottom: 50% !important;
        left: auto !important;
        right: 100% !important;
        -webkit-transform: translate(1rem,50%) !important;
        transform: translate(1rem,50%) !important
    }

    .is-tooltip-left-touch.is-tooltip-active:not(.is-loading)::after, .is-tooltip-left-touch:focus:not(.is-loading)::after, .is-tooltip-left-touch:hover:not(.is-loading)::after {
        top: 50% !important;
        bottom: auto !important;
        left: auto !important;
        right: calc(100% - .5rem) !important;
        border-color: transparent transparent transparent rgba(74,74,74,.9) !important
    }

    .is-tooltip-left-touch.is-tooltip-active::before, .is-tooltip-left-touch:focus::before, .is-tooltip-left-touch:hover::before {
        -webkit-transform: translate(-.5rem,50%) !important;
        transform: translate(-.5rem,50%) !important
    }
}

@media screen and (min-width:1088px) {
    .is-tooltip-left-desktop::before {
        top: auto !important;
        bottom: 50% !important;
        left: auto !important;
        right: 100% !important;
        -webkit-transform: translate(1rem,50%) !important;
        transform: translate(1rem,50%) !important
    }

    .is-tooltip-left-desktop.is-tooltip-active:not(.is-loading)::after, .is-tooltip-left-desktop:focus:not(.is-loading)::after, .is-tooltip-left-desktop:hover:not(.is-loading)::after {
        top: 50% !important;
        bottom: auto !important;
        left: auto !important;
        right: calc(100% - .5rem) !important;
        border-color: transparent transparent transparent rgba(74,74,74,.9) !important
    }

    .is-tooltip-left-desktop.is-tooltip-active::before, .is-tooltip-left-desktop:focus::before, .is-tooltip-left-desktop:hover::before {
        -webkit-transform: translate(-.5rem,50%) !important;
        transform: translate(-.5rem,50%) !important
    }
}

@media screen and (min-width:1088px) and (max-width:1279px) {
    .is-tooltip-left-desktop-only::before {
        top: auto !important;
        bottom: 50% !important;
        left: auto !important;
        right: 100% !important;
        -webkit-transform: translate(1rem,50%) !important;
        transform: translate(1rem,50%) !important
    }

    .is-tooltip-left-desktop-only.is-tooltip-active:not(.is-loading)::after, .is-tooltip-left-desktop-only:focus:not(.is-loading)::after, .is-tooltip-left-desktop-only:hover:not(.is-loading)::after {
        top: 50% !important;
        bottom: auto !important;
        left: auto !important;
        right: calc(100% - .5rem) !important;
        border-color: transparent transparent transparent rgba(74,74,74,.9) !important
    }

    .is-tooltip-left-desktop-only.is-tooltip-active::before, .is-tooltip-left-desktop-only:focus::before, .is-tooltip-left-desktop-only:hover::before {
        -webkit-transform: translate(-.5rem,50%) !important;
        transform: translate(-.5rem,50%) !important
    }
}

@media screen and (min-width:1280px) {
    .is-tooltip-left-widescreen::before {
        top: auto !important;
        bottom: 50% !important;
        left: auto !important;
        right: 100% !important;
        -webkit-transform: translate(1rem,50%) !important;
        transform: translate(1rem,50%) !important
    }

    .is-tooltip-left-widescreen.is-tooltip-active:not(.is-loading)::after, .is-tooltip-left-widescreen:focus:not(.is-loading)::after, .is-tooltip-left-widescreen:hover:not(.is-loading)::after {
        top: 50% !important;
        bottom: auto !important;
        left: auto !important;
        right: calc(100% - .5rem) !important;
        border-color: transparent transparent transparent rgba(74,74,74,.9) !important
    }

    .is-tooltip-left-widescreen.is-tooltip-active::before, .is-tooltip-left-widescreen:focus::before, .is-tooltip-left-widescreen:hover::before {
        -webkit-transform: translate(-.5rem,50%) !important;
        transform: translate(-.5rem,50%) !important
    }
}

@media screen and (min-width:1280px) and (max-width:1471px) {
    .is-tooltip-left-widescreen-only::before {
        top: auto !important;
        bottom: 50% !important;
        left: auto !important;
        right: 100% !important;
        -webkit-transform: translate(1rem,50%) !important;
        transform: translate(1rem,50%) !important
    }

    .is-tooltip-left-widescreen-only.is-tooltip-active:not(.is-loading)::after, .is-tooltip-left-widescreen-only:focus:not(.is-loading)::after, .is-tooltip-left-widescreen-only:hover:not(.is-loading)::after {
        top: 50% !important;
        bottom: auto !important;
        left: auto !important;
        right: calc(100% - .5rem) !important;
        border-color: transparent transparent transparent rgba(74,74,74,.9) !important
    }

    .is-tooltip-left-widescreen-only.is-tooltip-active::before, .is-tooltip-left-widescreen-only:focus::before, .is-tooltip-left-widescreen-only:hover::before {
        -webkit-transform: translate(-.5rem,50%) !important;
        transform: translate(-.5rem,50%) !important
    }
}

@media screen and (min-width:1472px) {
    .is-tooltip-left-fullhd::before {
        top: auto !important;
        bottom: 50% !important;
        left: auto !important;
        right: 100% !important;
        -webkit-transform: translate(1rem,50%) !important;
        transform: translate(1rem,50%) !important
    }

    .is-tooltip-left-fullhd.is-tooltip-active:not(.is-loading)::after, .is-tooltip-left-fullhd:focus:not(.is-loading)::after, .is-tooltip-left-fullhd:hover:not(.is-loading)::after {
        top: 50% !important;
        bottom: auto !important;
        left: auto !important;
        right: calc(100% - .5rem) !important;
        border-color: transparent transparent transparent rgba(74,74,74,.9) !important
    }

    .is-tooltip-left-fullhd.is-tooltip-active::before, .is-tooltip-left-fullhd:focus::before, .is-tooltip-left-fullhd:hover::before {
        -webkit-transform: translate(-.5rem,50%) !important;
        transform: translate(-.5rem,50%) !important
    }
}

.pageloader {
    position: fixed;
    padding-top: 2em;
    background: #9fbf43;
    background: #9fbf43;
    z-index: 999998;
    transition: transform .35s ease-out,-webkit-transform .35s ease-out;
    will-change: transform
}

    .pageloader.is-white {
        background-color: #fff;
        background: #fff
    }

        .pageloader.is-white::after {
            border-color: #0a0a0a;
            -webkit-animation: loader-figure-white 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-white 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-white .title {
            color: #0a0a0a
        }

    .pageloader.is-black {
        background-color: #0a0a0a;
        background: #0a0a0a
    }

        .pageloader.is-black::after {
            border-color: #fff;
            -webkit-animation: loader-figure-black 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-black 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-black .title {
            color: #fff
        }

    .pageloader.is-light {
        background-color: #f5f5f5;
        background: #f5f5f5
    }

        .pageloader.is-light::after {
            border-color: #363636;
            -webkit-animation: loader-figure-light 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-light 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-light .title {
            color: #363636
        }

    .pageloader.is-dark {
        background-color: #363636;
        background: #363636
    }

        .pageloader.is-dark::after {
            border-color: #f5f5f5;
            -webkit-animation: loader-figure-dark 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-dark 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-dark .title {
            color: #f5f5f5
        }

    .pageloader.is-primary {
        background-color: #9fbf43;
        background: #9fbf43
    }

        .pageloader.is-primary::after {
            border-color: #fff;
            -webkit-animation: loader-figure-primary 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-primary 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-primary .title {
            color: #fff
        }

    .pageloader.is-link {
        background-color: #9fbf43;
        background: #9fbf43
    }

        .pageloader.is-link::after {
            border-color: #fff;
            -webkit-animation: loader-figure-link 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-link 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-link .title {
            color: #fff
        }

    .pageloader.is-info {
        background-color: #209cee;
        background: #209cee
    }

        .pageloader.is-info::after {
            border-color: #fff;
            -webkit-animation: loader-figure-info 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-info 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-info .title {
            color: #fff
        }

    .pageloader.is-success {
        background-color: #23d160;
        background: #23d160
    }

        .pageloader.is-success::after {
            border-color: #fff;
            -webkit-animation: loader-figure-success 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-success 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-success .title {
            color: #fff
        }

    .pageloader.is-warning {
        background-color: #ffdd57;
        background: #ffdd57
    }

        .pageloader.is-warning::after {
            border-color: rgba(0,0,0,.7);
            -webkit-animation: loader-figure-warning 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-warning 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-warning .title {
            color: rgba(0,0,0,.7)
        }

    .pageloader.is-danger {
        background-color: #ff3860;
        background: #ff3860
    }

        .pageloader.is-danger::after {
            border-color: #fff;
            -webkit-animation: loader-figure-danger 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-danger 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-danger .title {
            color: #fff
        }

    .pageloader.is-primary-2 {
        background-color: #fa622f;
        background: #fa622f
    }

        .pageloader.is-primary-2::after {
            border-color: #fff;
            -webkit-animation: loader-figure-primary-2 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-primary-2 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-primary-2 .title {
            color: #fff
        }

    .pageloader.is-primary-3 {
        background-color: #e65322;
        background: #e65322
    }

        .pageloader.is-primary-3::after {
            border-color: #fff;
            -webkit-animation: loader-figure-primary-3 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-primary-3 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-primary-3 .title {
            color: #fff
        }

    .pageloader.is-primary-4 {
        background-color: #e85c2d;
        background: #e85c2d
    }

        .pageloader.is-primary-4::after {
            border-color: #fff;
            -webkit-animation: loader-figure-primary-4 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-primary-4 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-primary-4 .title {
            color: #fff
        }

    .pageloader.is-primary-5 {
        background-color: #e35728;
        background: #e35728
    }

        .pageloader.is-primary-5::after {
            border-color: #fff;
            -webkit-animation: loader-figure-primary-5 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-primary-5 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-primary-5 .title {
            color: #fff
        }

    .pageloader.is-primary-6 {
        background-color: #e95220;
        background: #e95220
    }

        .pageloader.is-primary-6::after {
            border-color: #fff;
            -webkit-animation: loader-figure-primary-6 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-primary-6 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-primary-6 .title {
            color: #fff
        }

    .pageloader.is-primary-7 {
        background-color: #fafafa;
        background: #fafafa
    }

        .pageloader.is-primary-7::after {
            border-color: rgba(0,0,0,.7);
            -webkit-animation: loader-figure-primary-7 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-primary-7 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-primary-7 .title {
            color: rgba(0,0,0,.7)
        }

    .pageloader.is-primary-light {
        background-color: #f9f9f9;
        background: #f9f9f9
    }

        .pageloader.is-primary-light::after {
            border-color: rgba(0,0,0,.7);
            -webkit-animation: loader-figure-primary-light 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-primary-light 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-primary-light .title {
            color: rgba(0,0,0,.7)
        }

    .pageloader.is-secondary {
        background-color: #22262a;
        background: #22262a
    }

        .pageloader.is-secondary::after {
            border-color: #fff;
            -webkit-animation: loader-figure-secondary 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-secondary 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-secondary .title {
            color: #fff
        }

    .pageloader.is-secondary-2 {
        background-color: #2d3238;
        background: #2d3238
    }

        .pageloader.is-secondary-2::after {
            border-color: #fff;
            -webkit-animation: loader-figure-secondary-2 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-secondary-2 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-secondary-2 .title {
            color: #fff
        }

    .pageloader.is-secondary-3 {
        background-color: #363a3f;
        background: #363a3f
    }

        .pageloader.is-secondary-3::after {
            border-color: #fff;
            -webkit-animation: loader-figure-secondary-3 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-secondary-3 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-secondary-3 .title {
            color: #fff
        }

    .pageloader.is-secondary-4 {
        background-color: #414549;
        background: #414549
    }

        .pageloader.is-secondary-4::after {
            border-color: #fff;
            -webkit-animation: loader-figure-secondary-4 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-secondary-4 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-secondary-4 .title {
            color: #fff
        }

    .pageloader.is-secondary-5 {
        background-color: #545659;
        background: #545659
    }

        .pageloader.is-secondary-5::after {
            border-color: #fff;
            -webkit-animation: loader-figure-secondary-5 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-secondary-5 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-secondary-5 .title {
            color: #fff
        }

    .pageloader.is-tertiary {
        background-color: #a6a6a6;
        background: #a6a6a6
    }

        .pageloader.is-tertiary::after {
            border-color: #fff;
            -webkit-animation: loader-figure-tertiary 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-tertiary 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-tertiary .title {
            color: #fff
        }

    .pageloader.is-tertiary-2 {
        background-color: #d8d8d8;
        background: #d8d8d8
    }

        .pageloader.is-tertiary-2::after {
            border-color: rgba(0,0,0,.7);
            -webkit-animation: loader-figure-tertiary-2 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-tertiary-2 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-tertiary-2 .title {
            color: rgba(0,0,0,.7)
        }

    .pageloader.is-tertiary-3 {
        background-color: #d7d6d3;
        background: #d7d6d3
    }

        .pageloader.is-tertiary-3::after {
            border-color: rgba(0,0,0,.7);
            -webkit-animation: loader-figure-tertiary-3 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-tertiary-3 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-tertiary-3 .title {
            color: rgba(0,0,0,.7)
        }

    .pageloader.is-tertiary-4 {
        background-color: #afafaf;
        background: #afafaf
    }

        .pageloader.is-tertiary-4::after {
            border-color: #fff;
            -webkit-animation: loader-figure-tertiary-4 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-tertiary-4 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-tertiary-4 .title {
            color: #fff
        }

    .pageloader.is-tertiary-5 {
        background-color: #eaeaea;
        background: #eaeaea
    }

        .pageloader.is-tertiary-5::after {
            border-color: rgba(0,0,0,.7);
            -webkit-animation: loader-figure-tertiary-5 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-tertiary-5 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-tertiary-5 .title {
            color: rgba(0,0,0,.7)
        }

    .pageloader.is-tertiary-6 {
        background-color: #b0b0b0;
        background: #b0b0b0
    }

        .pageloader.is-tertiary-6::after {
            border-color: #fff;
            -webkit-animation: loader-figure-tertiary-6 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-tertiary-6 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-tertiary-6 .title {
            color: #fff
        }

    .pageloader.is-tertiary-7 {
        background-color: #969696;
        background: #969696
    }

        .pageloader.is-tertiary-7::after {
            border-color: #fff;
            -webkit-animation: loader-figure-tertiary-7 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-tertiary-7 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-tertiary-7 .title {
            color: #fff
        }

    .pageloader.is-tertiary-8 {
        background-color: #999;
        background: #999
    }

        .pageloader.is-tertiary-8::after {
            border-color: #fff;
            -webkit-animation: loader-figure-tertiary-8 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-tertiary-8 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-tertiary-8 .title {
            color: #fff
        }

    .pageloader.is-tertiary-9 {
        background-color: #f5f5f5;
        background: #f5f5f5
    }

        .pageloader.is-tertiary-9::after {
            border-color: rgba(0,0,0,.7);
            -webkit-animation: loader-figure-tertiary-9 1.15s infinite cubic-bezier(.215,.61,.355,1);
            animation: loader-figure-tertiary-9 1.15s infinite cubic-bezier(.215,.61,.355,1)
        }

        .pageloader.is-tertiary-9 .title {
            color: rgba(0,0,0,.7)
        }

    .pageloader:not(.is-left-to-right), .pageloader:not(.is-right-to-left) {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    .pageloader.is-left-to-right {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }

    .pageloader.is-right-to-left {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }

    .pageloader.is-active:not(.is-left-to-right), .pageloader.is-active:not(.is-right-to-left) {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    .pageloader.is-active.is-left-to-right, .pageloader.is-active.is-right-to-left {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    .pageloader::after {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        border-radius: 100%;
        content: '';
        z-index: 9999;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        width: 0;
        height: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border: 0 solid #fff;
        -webkit-animation: loader-figure 1.15s infinite cubic-bezier(.215,.61,.355,1);
        animation: loader-figure 1.15s infinite cubic-bezier(.215,.61,.355,1)
    }

    .pageloader .title {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        margin: 2em 0 0 0;
        font-size: .875em;
        letter-spacing: .1em;
        line-height: 1.5em;
        color: #fff;
        white-space: nowrap
    }

@-webkit-keyframes loader-figure {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-white {
    0% {
        height: 0;
        width: 0;
        background-color: #0a0a0a
    }

    29% {
        background-color: #0a0a0a
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-white {
    0% {
        height: 0;
        width: 0;
        background-color: #0a0a0a
    }

    29% {
        background-color: #0a0a0a
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-black {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-black {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-light {
    0% {
        height: 0;
        width: 0;
        background-color: #363636
    }

    29% {
        background-color: #363636
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-light {
    0% {
        height: 0;
        width: 0;
        background-color: #363636
    }

    29% {
        background-color: #363636
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-dark {
    0% {
        height: 0;
        width: 0;
        background-color: #f5f5f5
    }

    29% {
        background-color: #f5f5f5
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-dark {
    0% {
        height: 0;
        width: 0;
        background-color: #f5f5f5
    }

    29% {
        background-color: #f5f5f5
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-primary {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-primary {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-link {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-link {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-info {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-info {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-success {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-success {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-warning {
    0% {
        height: 0;
        width: 0;
        background-color: rgba(0,0,0,.7)
    }

    29% {
        background-color: rgba(0,0,0,.7)
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-warning {
    0% {
        height: 0;
        width: 0;
        background-color: rgba(0,0,0,.7)
    }

    29% {
        background-color: rgba(0,0,0,.7)
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-danger {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-danger {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-primary-2 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-primary-2 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-primary-3 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-primary-3 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-primary-4 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-primary-4 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-primary-5 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-primary-5 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-primary-6 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-primary-6 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-primary-7 {
    0% {
        height: 0;
        width: 0;
        background-color: rgba(0,0,0,.7)
    }

    29% {
        background-color: rgba(0,0,0,.7)
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-primary-7 {
    0% {
        height: 0;
        width: 0;
        background-color: rgba(0,0,0,.7)
    }

    29% {
        background-color: rgba(0,0,0,.7)
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-primary-light {
    0% {
        height: 0;
        width: 0;
        background-color: rgba(0,0,0,.7)
    }

    29% {
        background-color: rgba(0,0,0,.7)
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-primary-light {
    0% {
        height: 0;
        width: 0;
        background-color: rgba(0,0,0,.7)
    }

    29% {
        background-color: rgba(0,0,0,.7)
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-secondary {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-secondary {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-secondary-2 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-secondary-2 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-secondary-3 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-secondary-3 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-secondary-4 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-secondary-4 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-secondary-5 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-secondary-5 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-tertiary {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-tertiary {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-tertiary-2 {
    0% {
        height: 0;
        width: 0;
        background-color: rgba(0,0,0,.7)
    }

    29% {
        background-color: rgba(0,0,0,.7)
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-tertiary-2 {
    0% {
        height: 0;
        width: 0;
        background-color: rgba(0,0,0,.7)
    }

    29% {
        background-color: rgba(0,0,0,.7)
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-tertiary-3 {
    0% {
        height: 0;
        width: 0;
        background-color: rgba(0,0,0,.7)
    }

    29% {
        background-color: rgba(0,0,0,.7)
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-tertiary-3 {
    0% {
        height: 0;
        width: 0;
        background-color: rgba(0,0,0,.7)
    }

    29% {
        background-color: rgba(0,0,0,.7)
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-tertiary-4 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-tertiary-4 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-tertiary-5 {
    0% {
        height: 0;
        width: 0;
        background-color: rgba(0,0,0,.7)
    }

    29% {
        background-color: rgba(0,0,0,.7)
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-tertiary-5 {
    0% {
        height: 0;
        width: 0;
        background-color: rgba(0,0,0,.7)
    }

    29% {
        background-color: rgba(0,0,0,.7)
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-tertiary-6 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-tertiary-6 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-tertiary-7 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-tertiary-7 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-tertiary-8 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-tertiary-8 {
    0% {
        height: 0;
        width: 0;
        background-color: #fff
    }

    29% {
        background-color: #fff
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@-webkit-keyframes loader-figure-tertiary-9 {
    0% {
        height: 0;
        width: 0;
        background-color: rgba(0,0,0,.7)
    }

    29% {
        background-color: rgba(0,0,0,.7)
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

@keyframes loader-figure-tertiary-9 {
    0% {
        height: 0;
        width: 0;
        background-color: rgba(0,0,0,.7)
    }

    29% {
        background-color: rgba(0,0,0,.7)
    }

    30% {
        height: 2em;
        width: 2em;
        background-color: transparent;
        border-width: 1em;
        opacity: 1
    }

    100% {
        height: 2em;
        width: 2em;
        border-width: 0;
        opacity: 0;
        background-color: transparent
    }
}

.calendar {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 0;
    display: block;
    width: 28rem;
    text-align: center;
    max-width: 95%;
    margin: auto
}

    .calendar.is-active {
        display: initial
    }

    .calendar .calendar-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        text-align: left;
        position: relative;
        padding: 0 .5rem
    }

@media screen and (max-width:768px) {
    .calendar .calendar-header {
        font-size: .5rem
    }
}

.calendar .calendar-header .calendar-selection-from, .calendar .calendar-header .calendar-selection-to {
    font-size: .75rem;
    color: #b5b5b5;
    text-transform: uppercase
}

.calendar .calendar-header .calendar-selection-end, .calendar .calendar-header .calendar-selection-start {
    padding: .5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

    .calendar .calendar-header .calendar-selection-end .calendar-selection-date, .calendar .calendar-header .calendar-selection-start .calendar-selection-date {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .calendar .calendar-header .calendar-selection-end .calendar-selection-day, .calendar .calendar-header .calendar-selection-start .calendar-selection-day {
        -webkit-box-flex: 0;
        -ms-flex: 0;
        flex: 0;
        text-transform: capitalize;
        font-size: 3rem;
        margin-right: .5rem;
        color: #5d5d5e
    }

@media screen and (max-width:768px) {
    .calendar .calendar-header .calendar-selection-end .calendar-selection-day, .calendar .calendar-header .calendar-selection-start .calendar-selection-day {
        font-size: 2rem
    }
}

.calendar .calendar-header .calendar-selection-end .calendar-selection-details, .calendar .calendar-header .calendar-selection-start .calendar-selection-details {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.calendar .calendar-header .calendar-selection-end .calendar-selection-month, .calendar .calendar-header .calendar-selection-start .calendar-selection-month {
    color: #4a4a4a;
    text-transform: capitalize
}

.calendar .calendar-header .calendar-selection-end .calendar-selection-weekday, .calendar .calendar-header .calendar-selection-start .calendar-selection-weekday {
    font-size: 12px;
    color: #b6b4b6;
    text-transform: capitalize;
    text-align: left
}

.calendar .calendar-header .calendar-selection-end::before, .calendar .calendar-header .calendar-selection-end:before {
    content: ">";
    font: 2rem Consolas;
    color: #f5f5f5;
    font-weight: 700;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%)
}

.calendar .calendar-header .calendar-selection-end .calendar-selection-to {
    padding-left: 1rem
}

.calendar .calendar-header .calendar-selection-end .calendar-selection-date {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.calendar .calendar-nav {
    background: #9fbf43;
    color: #fff;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    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;
    padding: .5em;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

    .calendar .calendar-nav .calendar-nav-month-year {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .calendar .calendar-nav .calendar-nav-month, .calendar .calendar-nav .calendar-nav-year {
        text-decoration: none;
        font-size: 1rem;
        color: #fff
    }

        .calendar .calendar-nav .calendar-nav-month:hover, .calendar .calendar-nav .calendar-nav-year:hover {
            cursor: pointer
        }

    .calendar .calendar-nav .calendar-nav-month {
        text-transform: capitalize
    }

    .calendar .calendar-nav .calendar-nav-next, .calendar .calendar-nav .calendar-nav-previous {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        text-decoration: none;
        color: #fff
    }

        .calendar .calendar-nav .calendar-nav-next:hover, .calendar .calendar-nav .calendar-nav-previous:hover {
            background-color: transparent
        }

            .calendar .calendar-nav .calendar-nav-next:hover svg, .calendar .calendar-nav .calendar-nav-previous:hover svg {
                stroke-width: 1em
            }

        .calendar .calendar-nav .calendar-nav-next svg, .calendar .calendar-nav .calendar-nav-previous svg {
            stroke: currentColor;
            width: 11.25px;
            height: 18px
        }

.calendar .calendar-body .calendar-dates {
    display: none
}

    .calendar .calendar-body .calendar-dates.is-active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

.calendar .calendar-body .calendar-months, .calendar .calendar-body .calendar-years {
    display: none
}

    .calendar .calendar-body .calendar-months.is-active, .calendar .calendar-body .calendar-years.is-active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

.calendar .calendar-body .calendar-weekdays {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: .3rem 0;
    background: 0 0;
    color: #fff;
    font-size: .75rem
}

    .calendar .calendar-body .calendar-weekdays .calendar-date {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 14.28%;
        flex: 0 0 14.28%;
        max-width: 14.28%;
        background: 0 0 !important;
        color: #b5b5b5;
        padding: .3rem
    }

.calendar .calendar-body .calendar-dates .calendar-days {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 0;
    color: #7a7a7a
}

    .calendar .calendar-body .calendar-dates .calendar-days .calendar-date {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 14.28%;
        flex: 0 0 14.28%;
        max-width: 14.28%;
        border: 0;
        padding: .3rem 0;
        background: #f5f5f5
    }

        .calendar .calendar-body .calendar-dates .calendar-days .calendar-date .date-item {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background: 0 0;
            border: .1rem solid transparent;
            border-radius: 100%;
            color: #4a4a4a;
            cursor: pointer;
            height: 2.2rem;
            line-height: 1.4rem;
            outline: 0;
            padding: .3rem;
            position: relative;
            text-align: center;
            text-decoration: none;
            -webkit-transition: all .2s ease;
            transition: all .2s ease;
            vertical-align: middle;
            white-space: nowrap;
            width: 2.2rem
        }

            .calendar .calendar-body .calendar-dates .calendar-days .calendar-date .date-item.is-today {
                background: 0 0;
                border: .1rem dotted #9fbf43;
                color: #9fbf43
            }

            .calendar .calendar-body .calendar-dates .calendar-days .calendar-date .date-item:focus {
                background: #fff;
                border-color: #fff;
                color: rgba(0,0,0,.7);
                text-decoration: none
            }

            .calendar .calendar-body .calendar-dates .calendar-days .calendar-date .date-item.is-active {
                background: #9fbf43;
                border-color: #9fbf43;
                border-radius: 25091983px;
                color: #fff
            }

            .calendar .calendar-body .calendar-dates .calendar-days .calendar-date .date-item:hover {
                background: #fff;
                border: .1rem solid #9fbf43;
                color: rgba(0,0,0,.7);
                text-decoration: none
            }

        .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.is-disabled .calendar-event, .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.is-disabled .date-item, .calendar .calendar-body .calendar-dates .calendar-days .calendar-date[disabled] .calendar-event, .calendar .calendar-body .calendar-dates .calendar-days .calendar-date[disabled] .date-item {
            cursor: default;
            opacity: .25;
            pointer-events: none
        }

        .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.is-current-month {
            background: 0 0
        }

        .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.calendar-range {
            position: relative;
            background: #9fbf43
        }

            .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.calendar-range::before {
                background: #9fbf43;
                border: .1rem solid #9fbf43;
                content: "";
                height: 100%;
                width: 100%;
                position: absolute;
                right: 0;
                top: 50%;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%)
            }

            .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.calendar-range.calendar-range-end, .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.calendar-range.calendar-range-start {
                border-radius: 25091983px
            }

                .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.calendar-range.calendar-range-start::before {
                    left: 53%
                }

                .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.calendar-range.calendar-range-end::before {
                    right: 50%
                }

            .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.calendar-range .date-item {
                background-color: #9fbf43;
                color: #fff
            }

.calendar .calendar-body .calendar-months, .calendar .calendar-body .calendar-years {
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .5rem;
    max-height: 17rem;
    overflow-y: auto
}

    .calendar .calendar-body .calendar-months.is-active, .calendar .calendar-body .calendar-years.is-active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .calendar .calendar-body .calendar-months .calendar-month, .calendar .calendar-body .calendar-months .calendar-year, .calendar .calendar-body .calendar-years .calendar-month, .calendar .calendar-body .calendar-years .calendar-year {
        padding: .5rem;
        margin: .5rem;
        font-size: 1rem;
        -webkit-box-flex: calc(25% - 1rem);
        -ms-flex: calc(25% - 1rem);
        flex: calc(25% - 1rem);
        text-transform: capitalize;
        border-radius: 25091983px;
        border: .1rem solid transparent
    }

        .calendar .calendar-body .calendar-months .calendar-month.is-active, .calendar .calendar-body .calendar-months .calendar-year.is-active, .calendar .calendar-body .calendar-years .calendar-month.is-active, .calendar .calendar-body .calendar-years .calendar-year.is-active {
            background: #9fbf43;
            border-color: #9fbf43;
            color: #fff
        }

        .calendar .calendar-body .calendar-months .calendar-month:hover, .calendar .calendar-body .calendar-months .calendar-year:hover, .calendar .calendar-body .calendar-years .calendar-month:hover, .calendar .calendar-body .calendar-years .calendar-year:hover {
            cursor: pointer;
            background: #fff;
            border: .1rem solid #9fbf43;
            color: rgba(0,0,0,.7)
        }

.calendar .calendar-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    margin-top: .5rem
}

    .calendar .calendar-footer > * {
        text-decoration: none !important
    }

.calendar.is-large {
    max-width: 100%
}

    .calendar.is-large .calendar-body .calendar-date {
        border-bottom: 1px solid #f0f0f0;
        border-right: 1px solid #f0f0f0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 11rem;
        padding: 0
    }

        .calendar.is-large .calendar-body .calendar-date:nth-child(7n) {
            border-right: 0
        }

        .calendar.is-large .calendar-body .calendar-date:nth-last-child(-n+7) {
            border-bottom: 0
        }

    .calendar.is-large .date-item {
        -ms-flex-item-align: end;
        align-self: flex-end;
        height: 2.2rem;
        margin-right: .5rem;
        margin-top: .5rem
    }

    .calendar.is-large .calendar-range::before {
        top: 1.9rem
    }

    .calendar.is-large .calendar-range.calendar-range-start::before {
        left: auto;
        width: 1.9rem
    }

    .calendar.is-large .calendar-range.calendar-range-end::before {
        right: 1.9rem
    }

    .calendar.is-large .calendar-events {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        line-height: 1;
        overflow-y: auto;
        padding: .5rem
    }

    .calendar.is-large .calendar-event {
        background-color: #7a7a7a;
        border-radius: 2px;
        color: #fff;
        display: block;
        font-size: 1rem;
        margin: .2rem auto;
        overflow: hidden;
        padding: .3rem .4rem;
        text-align: left;
        text-overflow: ellipsis;
        vertical-align: baseline;
        white-space: nowrap
    }

        .calendar.is-large .calendar-event.is-white {
            background-color: #fff;
            color: #0a0a0a
        }

        .calendar.is-large .calendar-event.is-black {
            background-color: #0a0a0a;
            color: #fff
        }

        .calendar.is-large .calendar-event.is-light {
            background-color: #f5f5f5;
            color: #363636
        }

        .calendar.is-large .calendar-event.is-dark {
            background-color: #363636;
            color: #f5f5f5
        }

        .calendar.is-large .calendar-event.is-primary {
            background-color: #9fbf43;
            color: #fff
        }

        .calendar.is-large .calendar-event.is-link {
            background-color: #9fbf43;
            color: #fff
        }

        .calendar.is-large .calendar-event.is-info {
            background-color: #209cee;
            color: #fff
        }

        .calendar.is-large .calendar-event.is-success {
            background-color: #23d160;
            color: #fff
        }

        .calendar.is-large .calendar-event.is-warning {
            background-color: #ffdd57;
            color: rgba(0,0,0,.7)
        }

        .calendar.is-large .calendar-event.is-danger {
            background-color: #ff3860;
            color: #fff
        }

        .calendar.is-large .calendar-event.is-primary-2 {
            background-color: #fa622f;
            color: #fff
        }

        .calendar.is-large .calendar-event.is-primary-3 {
            background-color: #e65322;
            color: #fff
        }

        .calendar.is-large .calendar-event.is-primary-4 {
            background-color: #e85c2d;
            color: #fff
        }

        .calendar.is-large .calendar-event.is-primary-5 {
            background-color: #e35728;
            color: #fff
        }

        .calendar.is-large .calendar-event.is-primary-6 {
            background-color: #e95220;
            color: #fff
        }

        .calendar.is-large .calendar-event.is-primary-7 {
            background-color: #fafafa;
            color: rgba(0,0,0,.7)
        }

        .calendar.is-large .calendar-event.is-primary-light {
            background-color: #f9f9f9;
            color: rgba(0,0,0,.7)
        }

        .calendar.is-large .calendar-event.is-secondary {
            background-color: #22262a;
            color: #fff
        }

        .calendar.is-large .calendar-event.is-secondary-2 {
            background-color: #2d3238;
            color: #fff
        }

        .calendar.is-large .calendar-event.is-secondary-3 {
            background-color: #363a3f;
            color: #fff
        }

        .calendar.is-large .calendar-event.is-secondary-4 {
            background-color: #414549;
            color: #fff
        }

        .calendar.is-large .calendar-event.is-secondary-5 {
            background-color: #545659;
            color: #fff
        }

        .calendar.is-large .calendar-event.is-tertiary {
            background-color: #a6a6a6;
            color: #fff
        }

        .calendar.is-large .calendar-event.is-tertiary-2 {
            background-color: #d8d8d8;
            color: rgba(0,0,0,.7)
        }

        .calendar.is-large .calendar-event.is-tertiary-3 {
            background-color: #d7d6d3;
            color: rgba(0,0,0,.7)
        }

        .calendar.is-large .calendar-event.is-tertiary-4 {
            background-color: #afafaf;
            color: #fff
        }

        .calendar.is-large .calendar-event.is-tertiary-5 {
            background-color: #eaeaea;
            color: rgba(0,0,0,.7)
        }

        .calendar.is-large .calendar-event.is-tertiary-6 {
            background-color: #b0b0b0;
            color: #fff
        }

        .calendar.is-large .calendar-event.is-tertiary-7 {
            background-color: #969696;
            color: #fff
        }

        .calendar.is-large .calendar-event.is-tertiary-8 {
            background-color: #999;
            color: #fff
        }

        .calendar.is-large .calendar-event.is-tertiary-9 {
            background-color: #f5f5f5;
            color: rgba(0,0,0,.7)
        }

.datepicker {
    display: none
}

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

        .datepicker.is-active .calendar {
            position: fixed;
            z-index: 40;
            position: relative;
            margin: 0 auto;
            max-height: calc(100vh - 40px)
        }

    .datepicker .calendar {
        background: #fff;
        border: 1px solid #f0f0f0;
        border-radius: 0;
        display: block;
        width: 28rem;
        text-align: center;
        max-width: 95%;
        margin: auto
    }

        .datepicker .calendar.is-active {
            display: initial
        }

        .datepicker .calendar .calendar-header {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-flex: 1;
            -ms-flex: 1;
            flex: 1;
            text-align: left;
            position: relative;
            padding: 0 .5rem
        }

@media screen and (max-width:768px) {
    .datepicker .calendar .calendar-header {
        font-size: .5rem
    }
}

.datepicker .calendar .calendar-header .calendar-selection-from, .datepicker .calendar .calendar-header .calendar-selection-to {
    font-size: .75rem;
    color: #b5b5b5;
    text-transform: uppercase
}

.datepicker .calendar .calendar-header .calendar-selection-end, .datepicker .calendar .calendar-header .calendar-selection-start {
    padding: .5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

    .datepicker .calendar .calendar-header .calendar-selection-end .calendar-selection-date, .datepicker .calendar .calendar-header .calendar-selection-start .calendar-selection-date {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .datepicker .calendar .calendar-header .calendar-selection-end .calendar-selection-day, .datepicker .calendar .calendar-header .calendar-selection-start .calendar-selection-day {
        -webkit-box-flex: 0;
        -ms-flex: 0;
        flex: 0;
        text-transform: capitalize;
        font-size: 3rem;
        margin-right: .5rem;
        color: #5d5d5e
    }

@media screen and (max-width:768px) {
    .datepicker .calendar .calendar-header .calendar-selection-end .calendar-selection-day, .datepicker .calendar .calendar-header .calendar-selection-start .calendar-selection-day {
        font-size: 2rem
    }
}

.datepicker .calendar .calendar-header .calendar-selection-end .calendar-selection-details, .datepicker .calendar .calendar-header .calendar-selection-start .calendar-selection-details {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.datepicker .calendar .calendar-header .calendar-selection-end .calendar-selection-month, .datepicker .calendar .calendar-header .calendar-selection-start .calendar-selection-month {
    color: #4a4a4a;
    text-transform: capitalize
}

.datepicker .calendar .calendar-header .calendar-selection-end .calendar-selection-weekday, .datepicker .calendar .calendar-header .calendar-selection-start .calendar-selection-weekday {
    font-size: 12px;
    color: #b6b4b6;
    text-transform: capitalize;
    text-align: left
}

.datepicker .calendar .calendar-header .calendar-selection-end::before, .datepicker .calendar .calendar-header .calendar-selection-end:before {
    content: ">";
    font: 2rem Consolas;
    color: #f5f5f5;
    font-weight: 700;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%)
}

.datepicker .calendar .calendar-header .calendar-selection-end .calendar-selection-to {
    padding-left: 1rem
}

.datepicker .calendar .calendar-header .calendar-selection-end .calendar-selection-date {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.datepicker .calendar .calendar-nav {
    background: #9fbf43;
    color: #fff;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    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;
    padding: .5em;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

    .datepicker .calendar .calendar-nav .calendar-nav-month-year {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .datepicker .calendar .calendar-nav .calendar-nav-month, .datepicker .calendar .calendar-nav .calendar-nav-year {
        text-decoration: none;
        font-size: 1rem;
        color: #fff
    }

        .datepicker .calendar .calendar-nav .calendar-nav-month:hover, .datepicker .calendar .calendar-nav .calendar-nav-year:hover {
            cursor: pointer
        }

    .datepicker .calendar .calendar-nav .calendar-nav-month {
        text-transform: capitalize
    }

    .datepicker .calendar .calendar-nav .calendar-nav-next, .datepicker .calendar .calendar-nav .calendar-nav-previous {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        text-decoration: none;
        color: #fff
    }

        .datepicker .calendar .calendar-nav .calendar-nav-next:hover, .datepicker .calendar .calendar-nav .calendar-nav-previous:hover {
            background-color: transparent
        }

            .datepicker .calendar .calendar-nav .calendar-nav-next:hover svg, .datepicker .calendar .calendar-nav .calendar-nav-previous:hover svg {
                stroke-width: 1em
            }

        .datepicker .calendar .calendar-nav .calendar-nav-next svg, .datepicker .calendar .calendar-nav .calendar-nav-previous svg {
            stroke: currentColor;
            width: 11.25px;
            height: 18px
        }

.datepicker .calendar .calendar-body .calendar-dates {
    display: none
}

    .datepicker .calendar .calendar-body .calendar-dates.is-active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

.datepicker .calendar .calendar-body .calendar-months, .datepicker .calendar .calendar-body .calendar-years {
    display: none
}

    .datepicker .calendar .calendar-body .calendar-months.is-active, .datepicker .calendar .calendar-body .calendar-years.is-active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

.datepicker .calendar .calendar-body .calendar-weekdays {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: .3rem 0;
    background: 0 0;
    color: #fff;
    font-size: .75rem
}

    .datepicker .calendar .calendar-body .calendar-weekdays .calendar-date {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 14.28%;
        flex: 0 0 14.28%;
        max-width: 14.28%;
        background: 0 0 !important;
        color: #b5b5b5;
        padding: .3rem
    }

.datepicker .calendar .calendar-body .calendar-dates .calendar-days {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 0;
    color: #7a7a7a
}

    .datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 14.28%;
        flex: 0 0 14.28%;
        max-width: 14.28%;
        border: 0;
        padding: .3rem 0;
        background: #f5f5f5
    }

        .datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date .date-item {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background: 0 0;
            border: .1rem solid transparent;
            border-radius: 100%;
            color: #4a4a4a;
            cursor: pointer;
            height: 2.2rem;
            line-height: 1.4rem;
            outline: 0;
            padding: .3rem;
            position: relative;
            text-align: center;
            text-decoration: none;
            -webkit-transition: all .2s ease;
            transition: all .2s ease;
            vertical-align: middle;
            white-space: nowrap;
            width: 2.2rem
        }

            .datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date .date-item.is-today {
                background: 0 0;
                border: .1rem dotted #9fbf43;
                color: #9fbf43
            }

            .datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date .date-item:focus {
                background: #fff;
                border-color: #fff;
                color: rgba(0,0,0,.7);
                text-decoration: none
            }

            .datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date .date-item.is-active {
                background: #9fbf43;
                border-color: #9fbf43;
                border-radius: 25091983px;
                color: #fff
            }

            .datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date .date-item:hover {
                background: #fff;
                border: .1rem solid #9fbf43;
                color: rgba(0,0,0,.7);
                text-decoration: none
            }

        .datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.is-disabled .calendar-event, .datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.is-disabled .date-item, .datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date[disabled] .calendar-event, .datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date[disabled] .date-item {
            cursor: default;
            opacity: .25;
            pointer-events: none
        }

        .datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.is-current-month {
            background: 0 0
        }

        .datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.calendar-range {
            position: relative;
            background: #9fbf43
        }

            .datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.calendar-range::before {
                background: #9fbf43;
                border: .1rem solid #9fbf43;
                content: "";
                height: 100%;
                width: 100%;
                position: absolute;
                right: 0;
                top: 50%;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%)
            }

            .datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.calendar-range.calendar-range-end, .datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.calendar-range.calendar-range-start {
                border-radius: 25091983px
            }

                .datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.calendar-range.calendar-range-start::before {
                    left: 53%
                }

                .datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.calendar-range.calendar-range-end::before {
                    right: 50%
                }

            .datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.calendar-range .date-item {
                background-color: #9fbf43;
                color: #fff
            }

.datepicker .calendar .calendar-body .calendar-months, .datepicker .calendar .calendar-body .calendar-years {
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .5rem;
    max-height: 17rem;
    overflow-y: auto
}

    .datepicker .calendar .calendar-body .calendar-months.is-active, .datepicker .calendar .calendar-body .calendar-years.is-active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .datepicker .calendar .calendar-body .calendar-months .calendar-month, .datepicker .calendar .calendar-body .calendar-months .calendar-year, .datepicker .calendar .calendar-body .calendar-years .calendar-month, .datepicker .calendar .calendar-body .calendar-years .calendar-year {
        padding: .5rem;
        margin: .5rem;
        font-size: 1rem;
        -webkit-box-flex: calc(25% - 1rem);
        -ms-flex: calc(25% - 1rem);
        flex: calc(25% - 1rem);
        text-transform: capitalize;
        border-radius: 25091983px;
        border: .1rem solid transparent
    }

        .datepicker .calendar .calendar-body .calendar-months .calendar-month.is-active, .datepicker .calendar .calendar-body .calendar-months .calendar-year.is-active, .datepicker .calendar .calendar-body .calendar-years .calendar-month.is-active, .datepicker .calendar .calendar-body .calendar-years .calendar-year.is-active {
            background: #9fbf43;
            border-color: #9fbf43;
            color: #fff
        }

        .datepicker .calendar .calendar-body .calendar-months .calendar-month:hover, .datepicker .calendar .calendar-body .calendar-months .calendar-year:hover, .datepicker .calendar .calendar-body .calendar-years .calendar-month:hover, .datepicker .calendar .calendar-body .calendar-years .calendar-year:hover {
            cursor: pointer;
            background: #fff;
            border: .1rem solid #9fbf43;
            color: rgba(0,0,0,.7)
        }

.datepicker .calendar .calendar-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    margin-top: .5rem
}

    .datepicker .calendar .calendar-footer > * {
        text-decoration: none !important
    }

.datepicker .calendar.is-large {
    max-width: 100%
}

    .datepicker .calendar.is-large .calendar-body .calendar-date {
        border-bottom: 1px solid #f0f0f0;
        border-right: 1px solid #f0f0f0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 11rem;
        padding: 0
    }

        .datepicker .calendar.is-large .calendar-body .calendar-date:nth-child(7n) {
            border-right: 0
        }

        .datepicker .calendar.is-large .calendar-body .calendar-date:nth-last-child(-n+7) {
            border-bottom: 0
        }

    .datepicker .calendar.is-large .date-item {
        -ms-flex-item-align: end;
        align-self: flex-end;
        height: 2.2rem;
        margin-right: .5rem;
        margin-top: .5rem
    }

    .datepicker .calendar.is-large .calendar-range::before {
        top: 1.9rem
    }

    .datepicker .calendar.is-large .calendar-range.calendar-range-start::before {
        left: auto;
        width: 1.9rem
    }

    .datepicker .calendar.is-large .calendar-range.calendar-range-end::before {
        right: 1.9rem
    }

    .datepicker .calendar.is-large .calendar-events {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        line-height: 1;
        overflow-y: auto;
        padding: .5rem
    }

    .datepicker .calendar.is-large .calendar-event {
        background-color: #7a7a7a;
        border-radius: 2px;
        color: #fff;
        display: block;
        font-size: 1rem;
        margin: .2rem auto;
        overflow: hidden;
        padding: .3rem .4rem;
        text-align: left;
        text-overflow: ellipsis;
        vertical-align: baseline;
        white-space: nowrap
    }

        .datepicker .calendar.is-large .calendar-event.is-white {
            background-color: #fff;
            color: #0a0a0a
        }

        .datepicker .calendar.is-large .calendar-event.is-black {
            background-color: #0a0a0a;
            color: #fff
        }

        .datepicker .calendar.is-large .calendar-event.is-light {
            background-color: #f5f5f5;
            color: #363636
        }

        .datepicker .calendar.is-large .calendar-event.is-dark {
            background-color: #363636;
            color: #f5f5f5
        }

        .datepicker .calendar.is-large .calendar-event.is-primary {
            background-color: #9fbf43;
            color: #fff
        }

        .datepicker .calendar.is-large .calendar-event.is-link {
            background-color: #9fbf43;
            color: #fff
        }

        .datepicker .calendar.is-large .calendar-event.is-info {
            background-color: #209cee;
            color: #fff
        }

        .datepicker .calendar.is-large .calendar-event.is-success {
            background-color: #23d160;
            color: #fff
        }

        .datepicker .calendar.is-large .calendar-event.is-warning {
            background-color: #ffdd57;
            color: rgba(0,0,0,.7)
        }

        .datepicker .calendar.is-large .calendar-event.is-danger {
            background-color: #ff3860;
            color: #fff
        }

        .datepicker .calendar.is-large .calendar-event.is-primary-2 {
            background-color: #fa622f;
            color: #fff
        }

        .datepicker .calendar.is-large .calendar-event.is-primary-3 {
            background-color: #e65322;
            color: #fff
        }

        .datepicker .calendar.is-large .calendar-event.is-primary-4 {
            background-color: #e85c2d;
            color: #fff
        }

        .datepicker .calendar.is-large .calendar-event.is-primary-5 {
            background-color: #e35728;
            color: #fff
        }

        .datepicker .calendar.is-large .calendar-event.is-primary-6 {
            background-color: #e95220;
            color: #fff
        }

        .datepicker .calendar.is-large .calendar-event.is-primary-7 {
            background-color: #fafafa;
            color: rgba(0,0,0,.7)
        }

        .datepicker .calendar.is-large .calendar-event.is-primary-light {
            background-color: #f9f9f9;
            color: rgba(0,0,0,.7)
        }

        .datepicker .calendar.is-large .calendar-event.is-secondary {
            background-color: #22262a;
            color: #fff
        }

        .datepicker .calendar.is-large .calendar-event.is-secondary-2 {
            background-color: #2d3238;
            color: #fff
        }

        .datepicker .calendar.is-large .calendar-event.is-secondary-3 {
            background-color: #363a3f;
            color: #fff
        }

        .datepicker .calendar.is-large .calendar-event.is-secondary-4 {
            background-color: #414549;
            color: #fff
        }

        .datepicker .calendar.is-large .calendar-event.is-secondary-5 {
            background-color: #545659;
            color: #fff
        }

        .datepicker .calendar.is-large .calendar-event.is-tertiary {
            background-color: #a6a6a6;
            color: #fff
        }

        .datepicker .calendar.is-large .calendar-event.is-tertiary-2 {
            background-color: #d8d8d8;
            color: rgba(0,0,0,.7)
        }

        .datepicker .calendar.is-large .calendar-event.is-tertiary-3 {
            background-color: #d7d6d3;
            color: rgba(0,0,0,.7)
        }

        .datepicker .calendar.is-large .calendar-event.is-tertiary-4 {
            background-color: #afafaf;
            color: #fff
        }

        .datepicker .calendar.is-large .calendar-event.is-tertiary-5 {
            background-color: #eaeaea;
            color: rgba(0,0,0,.7)
        }

        .datepicker .calendar.is-large .calendar-event.is-tertiary-6 {
            background-color: #b0b0b0;
            color: #fff
        }

        .datepicker .calendar.is-large .calendar-event.is-tertiary-7 {
            background-color: #969696;
            color: #fff
        }

        .datepicker .calendar.is-large .calendar-event.is-tertiary-8 {
            background-color: #999;
            color: #fff
        }

        .datepicker .calendar.is-large .calendar-event.is-tertiary-9 {
            background-color: #f5f5f5;
            color: rgba(0,0,0,.7)
        }

.is-checkradio[type=checkbox], .is-checkradio[type=radio] {
    outline: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    position: absolute;
    opacity: 0
}

    .is-checkradio[type=checkbox] + label, .is-checkradio[type=radio] + label {
        position: relative;
        display: initial;
        cursor: pointer;
        vertical-align: middle;
        margin: .5em;
        padding: .2rem .5rem .2rem 0;
        border-radius: 0
    }

        .is-checkradio[type=checkbox] + label:hover::before, .is-checkradio[type=checkbox] + label:hover:before, .is-checkradio[type=radio] + label:hover::before, .is-checkradio[type=radio] + label:hover:before {
            -webkit-animation-duration: .4s;
            animation-duration: .4s;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
            -webkit-animation-name: hover-color;
            animation-name: hover-color
        }

        .is-checkradio[type=checkbox] + label::before, .is-checkradio[type=checkbox] + label:before, .is-checkradio[type=radio] + label::before, .is-checkradio[type=radio] + label:before {
            position: absolute;
            left: 0;
            top: 0;
            content: '';
            border: .1rem solid #dbdbdb
        }

        .is-checkradio[type=checkbox] + label::after, .is-checkradio[type=checkbox] + label:after, .is-checkradio[type=radio] + label::after, .is-checkradio[type=radio] + label:after {
            position: absolute;
            display: none;
            content: '';
            top: 0
        }

    .is-checkradio[type=checkbox].is-rtl + label, .is-checkradio[type=radio].is-rtl + label {
        margin-right: 0;
        margin-left: .5rem
    }

        .is-checkradio[type=checkbox].is-rtl + label::before, .is-checkradio[type=checkbox].is-rtl + label:before, .is-checkradio[type=radio].is-rtl + label::before, .is-checkradio[type=radio].is-rtl + label:before {
            left: auto;
            right: 0
        }

    .is-checkradio[type=checkbox]:focus + label::before, .is-checkradio[type=checkbox]:focus + label:before, .is-checkradio[type=radio]:focus + label::before, .is-checkradio[type=radio]:focus + label:before {
        outline: 1px dotted #b5b5b5
    }

    .is-checkradio[type=checkbox]:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox]:hover:not([disabled]) + label:before, .is-checkradio[type=radio]:hover:not([disabled]) + label::before, .is-checkradio[type=radio]:hover:not([disabled]) + label:before {
        border-color: #9fbf43 !important
    }

    .is-checkradio[type=checkbox]:checked + label::before, .is-checkradio[type=checkbox]:checked + label:before, .is-checkradio[type=radio]:checked + label::before, .is-checkradio[type=radio]:checked + label:before {
        border: .1rem solid #dbdbdb
    }

    .is-checkradio[type=checkbox]:checked[disabled], .is-checkradio[type=radio]:checked[disabled] {
        cursor: not-allowed
    }

        .is-checkradio[type=checkbox]:checked[disabled] + label, .is-checkradio[type=radio]:checked[disabled] + label {
            opacity: .5
        }

    .is-checkradio[type=checkbox]:checked + label::before, .is-checkradio[type=checkbox]:checked + label:before, .is-checkradio[type=radio]:checked + label::before, .is-checkradio[type=radio]:checked + label:before {
        -webkit-animation-name: none;
        animation-name: none
    }

    .is-checkradio[type=checkbox]:checked + label::after, .is-checkradio[type=checkbox]:checked + label:after, .is-checkradio[type=radio]:checked + label::after, .is-checkradio[type=radio]:checked + label:after {
        display: inline-block
    }

    .is-checkradio[type=checkbox][disabled], .is-checkradio[type=radio][disabled] {
        cursor: not-allowed
    }

        .is-checkradio[type=checkbox][disabled] + label, .is-checkradio[type=radio][disabled] + label {
            opacity: .5;
            cursor: not-allowed
        }

            .is-checkradio[type=checkbox][disabled] + label::after, .is-checkradio[type=checkbox][disabled] + label::before, .is-checkradio[type=checkbox][disabled] + label:after, .is-checkradio[type=checkbox][disabled] + label:before, .is-checkradio[type=checkbox][disabled] + label:hover, .is-checkradio[type=radio][disabled] + label::after, .is-checkradio[type=radio][disabled] + label::before, .is-checkradio[type=radio][disabled] + label:after, .is-checkradio[type=radio][disabled] + label:before, .is-checkradio[type=radio][disabled] + label:hover {
                cursor: not-allowed
            }

        .is-checkradio[type=checkbox][disabled]:hover, .is-checkradio[type=radio][disabled]:hover {
            cursor: not-allowed
        }

            .is-checkradio[type=checkbox][disabled]:hover::before, .is-checkradio[type=checkbox][disabled]:hover:before, .is-checkradio[type=radio][disabled]:hover::before, .is-checkradio[type=radio][disabled]:hover:before {
                -webkit-animation-name: none;
                animation-name: none
            }

        .is-checkradio[type=checkbox][disabled]::before, .is-checkradio[type=checkbox][disabled]:before, .is-checkradio[type=radio][disabled]::before, .is-checkradio[type=radio][disabled]:before {
            cursor: not-allowed
        }

        .is-checkradio[type=checkbox][disabled]::after, .is-checkradio[type=checkbox][disabled]:after, .is-checkradio[type=radio][disabled]::after, .is-checkradio[type=radio][disabled]:after {
            cursor: not-allowed
        }

    .is-checkradio[type=checkbox].has-no-border + label::before, .is-checkradio[type=checkbox].has-no-border + label:before, .is-checkradio[type=radio].has-no-border + label::before, .is-checkradio[type=radio].has-no-border + label:before {
        border: none !important
    }

    .is-checkradio[type=checkbox].is-block, .is-checkradio[type=radio].is-block {
        display: none !important
    }

        .is-checkradio[type=checkbox].is-block + label, .is-checkradio[type=radio].is-block + label {
            width: 100% !important;
            background: #f5f5f5;
            color: rgba(0,0,0,.7);
            padding-right: .75em
        }

            .is-checkradio[type=checkbox].is-block + label::before, .is-checkradio[type=checkbox].is-block + label:before, .is-checkradio[type=radio].is-block + label::before, .is-checkradio[type=radio].is-block + label:before {
                border: none !important
            }

    .is-checkradio[type=checkbox] + label::before, .is-checkradio[type=checkbox] + label:before {
        border-radius: 0
    }

    .is-checkradio[type=checkbox] + label::after, .is-checkradio[type=checkbox] + label:after {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        border-width: .1rem;
        border-style: solid;
        border-color: #9fbf43;
        border-top: 0;
        border-left: 0
    }

    .is-checkradio[type=checkbox].is-circle + label::before, .is-checkradio[type=checkbox].is-circle + label:before {
        border-radius: 50%
    }

    .is-checkradio[type=checkbox] + label {
        font-size: 1rem;
        padding-left: 2rem
    }

        .is-checkradio[type=checkbox] + label::before, .is-checkradio[type=checkbox] + label:before {
            width: 1.5rem;
            height: 1.5rem
        }

        .is-checkradio[type=checkbox] + label::after, .is-checkradio[type=checkbox] + label:after {
            width: .375rem;
            height: .6rem;
            top: .405rem;
            left: .6rem
        }

    .is-checkradio[type=checkbox].is-block + label::after, .is-checkradio[type=checkbox].is-block + label:after {
        top: .585rem;
        left: .78rem
    }

    .is-checkradio[type=checkbox].is-rtl + label {
        padding-left: 0;
        padding-right: 2rem
    }

        .is-checkradio[type=checkbox].is-rtl + label::after, .is-checkradio[type=checkbox].is-rtl + label:after {
            left: auto;
            right: .6rem
        }

    .is-checkradio[type=checkbox].is-small + label {
        font-size: .75rem;
        padding-left: 1.5rem
    }

        .is-checkradio[type=checkbox].is-small + label::before, .is-checkradio[type=checkbox].is-small + label:before {
            width: 1.125rem;
            height: 1.125rem
        }

        .is-checkradio[type=checkbox].is-small + label::after, .is-checkradio[type=checkbox].is-small + label:after {
            width: .28125rem;
            height: .45rem;
            top: .30375rem;
            left: .45rem
        }

    .is-checkradio[type=checkbox].is-small.is-block + label::after, .is-checkradio[type=checkbox].is-small.is-block + label:after {
        top: .43875rem;
        left: .585rem
    }

    .is-checkradio[type=checkbox].is-small.is-rtl + label {
        padding-left: 0;
        padding-right: 1.5rem
    }

        .is-checkradio[type=checkbox].is-small.is-rtl + label::after, .is-checkradio[type=checkbox].is-small.is-rtl + label:after {
            left: auto;
            right: .45rem
        }

    .is-checkradio[type=checkbox].is-medium + label {
        font-size: 1.25rem;
        padding-left: 2.5rem
    }

        .is-checkradio[type=checkbox].is-medium + label::before, .is-checkradio[type=checkbox].is-medium + label:before {
            width: 1.875rem;
            height: 1.875rem
        }

        .is-checkradio[type=checkbox].is-medium + label::after, .is-checkradio[type=checkbox].is-medium + label:after {
            width: .46875rem;
            height: .75rem;
            top: .50625rem;
            left: .75rem
        }

    .is-checkradio[type=checkbox].is-medium.is-block + label::after, .is-checkradio[type=checkbox].is-medium.is-block + label:after {
        top: .73125rem;
        left: .975rem
    }

    .is-checkradio[type=checkbox].is-medium.is-rtl + label {
        padding-left: 0;
        padding-right: 2.5rem
    }

        .is-checkradio[type=checkbox].is-medium.is-rtl + label::after, .is-checkradio[type=checkbox].is-medium.is-rtl + label:after {
            left: auto;
            right: .75rem
        }

    .is-checkradio[type=checkbox].is-large + label {
        font-size: 1.5rem;
        padding-left: 3rem
    }

        .is-checkradio[type=checkbox].is-large + label::before, .is-checkradio[type=checkbox].is-large + label:before {
            width: 2.25rem;
            height: 2.25rem
        }

        .is-checkradio[type=checkbox].is-large + label::after, .is-checkradio[type=checkbox].is-large + label:after {
            width: .5625rem;
            height: .9rem;
            top: .6075rem;
            left: .9rem
        }

    .is-checkradio[type=checkbox].is-large.is-block + label::after, .is-checkradio[type=checkbox].is-large.is-block + label:after {
        top: .8775rem;
        left: 1.17rem
    }

    .is-checkradio[type=checkbox].is-large.is-rtl + label {
        padding-left: 0;
        padding-right: 3rem
    }

        .is-checkradio[type=checkbox].is-large.is-rtl + label::after, .is-checkradio[type=checkbox].is-large.is-rtl + label:after {
            left: auto;
            right: .9rem
        }

    .is-checkradio[type=checkbox].is-white.has-background-color + label::before, .is-checkradio[type=checkbox].is-white.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #fff !important
    }

    .is-checkradio[type=checkbox].is-white:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-white:hover:not([disabled]) + label:before {
        border-color: #fff !important
    }

    .is-checkradio[type=checkbox].is-white:checked + label::after, .is-checkradio[type=checkbox].is-white:checked + label:after {
        border-color: #fff !important
    }

    .is-checkradio[type=checkbox].is-white:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-white:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #fff !important
    }

    .is-checkradio[type=checkbox].is-white:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-white:checked.has-background-color + label:after {
        border-color: #0a0a0a !important;
        background-color: #fff !important
    }

    .is-checkradio[type=checkbox].is-white:checked.is-block + label {
        color: #0a0a0a;
        border-color: #fff !important;
        background: #fff
    }

        .is-checkradio[type=checkbox].is-white:checked.is-block + label::after, .is-checkradio[type=checkbox].is-white:checked.is-block + label:after {
            border-color: #0a0a0a !important
        }

    .is-checkradio[type=checkbox].is-black.has-background-color + label::before, .is-checkradio[type=checkbox].is-black.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #0a0a0a !important
    }

    .is-checkradio[type=checkbox].is-black:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-black:hover:not([disabled]) + label:before {
        border-color: #0a0a0a !important
    }

    .is-checkradio[type=checkbox].is-black:checked + label::after, .is-checkradio[type=checkbox].is-black:checked + label:after {
        border-color: #0a0a0a !important
    }

    .is-checkradio[type=checkbox].is-black:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-black:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #0a0a0a !important
    }

    .is-checkradio[type=checkbox].is-black:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-black:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #0a0a0a !important
    }

    .is-checkradio[type=checkbox].is-black:checked.is-block + label {
        color: #fff;
        border-color: #0a0a0a !important;
        background: #0a0a0a
    }

        .is-checkradio[type=checkbox].is-black:checked.is-block + label::after, .is-checkradio[type=checkbox].is-black:checked.is-block + label:after {
            border-color: #fff !important
        }

    .is-checkradio[type=checkbox].is-light.has-background-color + label::before, .is-checkradio[type=checkbox].is-light.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #f5f5f5 !important
    }

    .is-checkradio[type=checkbox].is-light:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-light:hover:not([disabled]) + label:before {
        border-color: #f5f5f5 !important
    }

    .is-checkradio[type=checkbox].is-light:checked + label::after, .is-checkradio[type=checkbox].is-light:checked + label:after {
        border-color: #f5f5f5 !important
    }

    .is-checkradio[type=checkbox].is-light:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-light:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #f5f5f5 !important
    }

    .is-checkradio[type=checkbox].is-light:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-light:checked.has-background-color + label:after {
        border-color: #363636 !important;
        background-color: #f5f5f5 !important
    }

    .is-checkradio[type=checkbox].is-light:checked.is-block + label {
        color: #363636;
        border-color: #f5f5f5 !important;
        background: #f5f5f5
    }

        .is-checkradio[type=checkbox].is-light:checked.is-block + label::after, .is-checkradio[type=checkbox].is-light:checked.is-block + label:after {
            border-color: #363636 !important
        }

    .is-checkradio[type=checkbox].is-dark.has-background-color + label::before, .is-checkradio[type=checkbox].is-dark.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #363636 !important
    }

    .is-checkradio[type=checkbox].is-dark:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-dark:hover:not([disabled]) + label:before {
        border-color: #363636 !important
    }

    .is-checkradio[type=checkbox].is-dark:checked + label::after, .is-checkradio[type=checkbox].is-dark:checked + label:after {
        border-color: #363636 !important
    }

    .is-checkradio[type=checkbox].is-dark:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-dark:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #363636 !important
    }

    .is-checkradio[type=checkbox].is-dark:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-dark:checked.has-background-color + label:after {
        border-color: #f5f5f5 !important;
        background-color: #363636 !important
    }

    .is-checkradio[type=checkbox].is-dark:checked.is-block + label {
        color: #f5f5f5;
        border-color: #363636 !important;
        background: #363636
    }

        .is-checkradio[type=checkbox].is-dark:checked.is-block + label::after, .is-checkradio[type=checkbox].is-dark:checked.is-block + label:after {
            border-color: #f5f5f5 !important
        }

    .is-checkradio[type=checkbox].is-primary.has-background-color + label::before, .is-checkradio[type=checkbox].is-primary.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #9fbf43 !important
    }

    .is-checkradio[type=checkbox].is-primary:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-primary:hover:not([disabled]) + label:before {
        border-color: #9fbf43 !important
    }

    .is-checkradio[type=checkbox].is-primary:checked + label::after, .is-checkradio[type=checkbox].is-primary:checked + label:after {
        border-color: #9fbf43 !important
    }

    .is-checkradio[type=checkbox].is-primary:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-primary:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #9fbf43 !important
    }

    .is-checkradio[type=checkbox].is-primary:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-primary:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #9fbf43 !important
    }

    .is-checkradio[type=checkbox].is-primary:checked.is-block + label {
        color: #fff;
        border-color: #9fbf43 !important;
        background: #9fbf43
    }

        .is-checkradio[type=checkbox].is-primary:checked.is-block + label::after, .is-checkradio[type=checkbox].is-primary:checked.is-block + label:after {
            border-color: #fff !important
        }

    .is-checkradio[type=checkbox].is-link.has-background-color + label::before, .is-checkradio[type=checkbox].is-link.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #9fbf43 !important
    }

    .is-checkradio[type=checkbox].is-link:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-link:hover:not([disabled]) + label:before {
        border-color: #9fbf43 !important
    }

    .is-checkradio[type=checkbox].is-link:checked + label::after, .is-checkradio[type=checkbox].is-link:checked + label:after {
        border-color: #9fbf43 !important
    }

    .is-checkradio[type=checkbox].is-link:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-link:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #9fbf43 !important
    }

    .is-checkradio[type=checkbox].is-link:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-link:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #9fbf43 !important
    }

    .is-checkradio[type=checkbox].is-link:checked.is-block + label {
        color: #fff;
        border-color: #9fbf43 !important;
        background: #9fbf43
    }

        .is-checkradio[type=checkbox].is-link:checked.is-block + label::after, .is-checkradio[type=checkbox].is-link:checked.is-block + label:after {
            border-color: #fff !important
        }

    .is-checkradio[type=checkbox].is-info.has-background-color + label::before, .is-checkradio[type=checkbox].is-info.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #209cee !important
    }

    .is-checkradio[type=checkbox].is-info:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-info:hover:not([disabled]) + label:before {
        border-color: #209cee !important
    }

    .is-checkradio[type=checkbox].is-info:checked + label::after, .is-checkradio[type=checkbox].is-info:checked + label:after {
        border-color: #209cee !important
    }

    .is-checkradio[type=checkbox].is-info:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-info:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #209cee !important
    }

    .is-checkradio[type=checkbox].is-info:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-info:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #209cee !important
    }

    .is-checkradio[type=checkbox].is-info:checked.is-block + label {
        color: #fff;
        border-color: #209cee !important;
        background: #209cee
    }

        .is-checkradio[type=checkbox].is-info:checked.is-block + label::after, .is-checkradio[type=checkbox].is-info:checked.is-block + label:after {
            border-color: #fff !important
        }

    .is-checkradio[type=checkbox].is-success.has-background-color + label::before, .is-checkradio[type=checkbox].is-success.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #23d160 !important
    }

    .is-checkradio[type=checkbox].is-success:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-success:hover:not([disabled]) + label:before {
        border-color: #23d160 !important
    }

    .is-checkradio[type=checkbox].is-success:checked + label::after, .is-checkradio[type=checkbox].is-success:checked + label:after {
        border-color: #23d160 !important
    }

    .is-checkradio[type=checkbox].is-success:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-success:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #23d160 !important
    }

    .is-checkradio[type=checkbox].is-success:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-success:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #23d160 !important
    }

    .is-checkradio[type=checkbox].is-success:checked.is-block + label {
        color: #fff;
        border-color: #23d160 !important;
        background: #23d160
    }

        .is-checkradio[type=checkbox].is-success:checked.is-block + label::after, .is-checkradio[type=checkbox].is-success:checked.is-block + label:after {
            border-color: #fff !important
        }

    .is-checkradio[type=checkbox].is-warning.has-background-color + label::before, .is-checkradio[type=checkbox].is-warning.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #ffdd57 !important
    }

    .is-checkradio[type=checkbox].is-warning:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-warning:hover:not([disabled]) + label:before {
        border-color: #ffdd57 !important
    }

    .is-checkradio[type=checkbox].is-warning:checked + label::after, .is-checkradio[type=checkbox].is-warning:checked + label:after {
        border-color: #ffdd57 !important
    }

    .is-checkradio[type=checkbox].is-warning:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-warning:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #ffdd57 !important
    }

    .is-checkradio[type=checkbox].is-warning:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-warning:checked.has-background-color + label:after {
        border-color: rgba(0,0,0,.7) !important;
        background-color: #ffdd57 !important
    }

    .is-checkradio[type=checkbox].is-warning:checked.is-block + label {
        color: rgba(0,0,0,.7);
        border-color: #ffdd57 !important;
        background: #ffdd57
    }

        .is-checkradio[type=checkbox].is-warning:checked.is-block + label::after, .is-checkradio[type=checkbox].is-warning:checked.is-block + label:after {
            border-color: rgba(0,0,0,.7) !important
        }

    .is-checkradio[type=checkbox].is-danger.has-background-color + label::before, .is-checkradio[type=checkbox].is-danger.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #ff3860 !important
    }

    .is-checkradio[type=checkbox].is-danger:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-danger:hover:not([disabled]) + label:before {
        border-color: #ff3860 !important
    }

    .is-checkradio[type=checkbox].is-danger:checked + label::after, .is-checkradio[type=checkbox].is-danger:checked + label:after {
        border-color: #ff3860 !important
    }

    .is-checkradio[type=checkbox].is-danger:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-danger:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #ff3860 !important
    }

    .is-checkradio[type=checkbox].is-danger:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-danger:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #ff3860 !important
    }

    .is-checkradio[type=checkbox].is-danger:checked.is-block + label {
        color: #fff;
        border-color: #ff3860 !important;
        background: #ff3860
    }

        .is-checkradio[type=checkbox].is-danger:checked.is-block + label::after, .is-checkradio[type=checkbox].is-danger:checked.is-block + label:after {
            border-color: #fff !important
        }

    .is-checkradio[type=checkbox].is-primary-2.has-background-color + label::before, .is-checkradio[type=checkbox].is-primary-2.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #fa622f !important
    }

    .is-checkradio[type=checkbox].is-primary-2:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-primary-2:hover:not([disabled]) + label:before {
        border-color: #fa622f !important
    }

    .is-checkradio[type=checkbox].is-primary-2:checked + label::after, .is-checkradio[type=checkbox].is-primary-2:checked + label:after {
        border-color: #fa622f !important
    }

    .is-checkradio[type=checkbox].is-primary-2:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-primary-2:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #fa622f !important
    }

    .is-checkradio[type=checkbox].is-primary-2:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-primary-2:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fa622f !important
    }

    .is-checkradio[type=checkbox].is-primary-2:checked.is-block + label {
        color: #fff;
        border-color: #fa622f !important;
        background: #fa622f
    }

        .is-checkradio[type=checkbox].is-primary-2:checked.is-block + label::after, .is-checkradio[type=checkbox].is-primary-2:checked.is-block + label:after {
            border-color: #fff !important
        }

    .is-checkradio[type=checkbox].is-primary-3.has-background-color + label::before, .is-checkradio[type=checkbox].is-primary-3.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #e65322 !important
    }

    .is-checkradio[type=checkbox].is-primary-3:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-primary-3:hover:not([disabled]) + label:before {
        border-color: #e65322 !important
    }

    .is-checkradio[type=checkbox].is-primary-3:checked + label::after, .is-checkradio[type=checkbox].is-primary-3:checked + label:after {
        border-color: #e65322 !important
    }

    .is-checkradio[type=checkbox].is-primary-3:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-primary-3:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #e65322 !important
    }

    .is-checkradio[type=checkbox].is-primary-3:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-primary-3:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #e65322 !important
    }

    .is-checkradio[type=checkbox].is-primary-3:checked.is-block + label {
        color: #fff;
        border-color: #e65322 !important;
        background: #e65322
    }

        .is-checkradio[type=checkbox].is-primary-3:checked.is-block + label::after, .is-checkradio[type=checkbox].is-primary-3:checked.is-block + label:after {
            border-color: #fff !important
        }

    .is-checkradio[type=checkbox].is-primary-4.has-background-color + label::before, .is-checkradio[type=checkbox].is-primary-4.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #e85c2d !important
    }

    .is-checkradio[type=checkbox].is-primary-4:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-primary-4:hover:not([disabled]) + label:before {
        border-color: #e85c2d !important
    }

    .is-checkradio[type=checkbox].is-primary-4:checked + label::after, .is-checkradio[type=checkbox].is-primary-4:checked + label:after {
        border-color: #e85c2d !important
    }

    .is-checkradio[type=checkbox].is-primary-4:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-primary-4:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #e85c2d !important
    }

    .is-checkradio[type=checkbox].is-primary-4:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-primary-4:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #e85c2d !important
    }

    .is-checkradio[type=checkbox].is-primary-4:checked.is-block + label {
        color: #fff;
        border-color: #e85c2d !important;
        background: #e85c2d
    }

        .is-checkradio[type=checkbox].is-primary-4:checked.is-block + label::after, .is-checkradio[type=checkbox].is-primary-4:checked.is-block + label:after {
            border-color: #fff !important
        }

    .is-checkradio[type=checkbox].is-primary-5.has-background-color + label::before, .is-checkradio[type=checkbox].is-primary-5.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #e35728 !important
    }

    .is-checkradio[type=checkbox].is-primary-5:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-primary-5:hover:not([disabled]) + label:before {
        border-color: #e35728 !important
    }

    .is-checkradio[type=checkbox].is-primary-5:checked + label::after, .is-checkradio[type=checkbox].is-primary-5:checked + label:after {
        border-color: #e35728 !important
    }

    .is-checkradio[type=checkbox].is-primary-5:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-primary-5:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #e35728 !important
    }

    .is-checkradio[type=checkbox].is-primary-5:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-primary-5:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #e35728 !important
    }

    .is-checkradio[type=checkbox].is-primary-5:checked.is-block + label {
        color: #fff;
        border-color: #e35728 !important;
        background: #e35728
    }

        .is-checkradio[type=checkbox].is-primary-5:checked.is-block + label::after, .is-checkradio[type=checkbox].is-primary-5:checked.is-block + label:after {
            border-color: #fff !important
        }

    .is-checkradio[type=checkbox].is-primary-6.has-background-color + label::before, .is-checkradio[type=checkbox].is-primary-6.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #e95220 !important
    }

    .is-checkradio[type=checkbox].is-primary-6:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-primary-6:hover:not([disabled]) + label:before {
        border-color: #e95220 !important
    }

    .is-checkradio[type=checkbox].is-primary-6:checked + label::after, .is-checkradio[type=checkbox].is-primary-6:checked + label:after {
        border-color: #e95220 !important
    }

    .is-checkradio[type=checkbox].is-primary-6:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-primary-6:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #e95220 !important
    }

    .is-checkradio[type=checkbox].is-primary-6:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-primary-6:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #e95220 !important
    }

    .is-checkradio[type=checkbox].is-primary-6:checked.is-block + label {
        color: #fff;
        border-color: #e95220 !important;
        background: #e95220
    }

        .is-checkradio[type=checkbox].is-primary-6:checked.is-block + label::after, .is-checkradio[type=checkbox].is-primary-6:checked.is-block + label:after {
            border-color: #fff !important
        }

    .is-checkradio[type=checkbox].is-primary-7.has-background-color + label::before, .is-checkradio[type=checkbox].is-primary-7.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #fafafa !important
    }

    .is-checkradio[type=checkbox].is-primary-7:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-primary-7:hover:not([disabled]) + label:before {
        border-color: #fafafa !important
    }

    .is-checkradio[type=checkbox].is-primary-7:checked + label::after, .is-checkradio[type=checkbox].is-primary-7:checked + label:after {
        border-color: #fafafa !important
    }

    .is-checkradio[type=checkbox].is-primary-7:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-primary-7:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #fafafa !important
    }

    .is-checkradio[type=checkbox].is-primary-7:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-primary-7:checked.has-background-color + label:after {
        border-color: rgba(0,0,0,.7) !important;
        background-color: #fafafa !important
    }

    .is-checkradio[type=checkbox].is-primary-7:checked.is-block + label {
        color: rgba(0,0,0,.7);
        border-color: #fafafa !important;
        background: #fafafa
    }

        .is-checkradio[type=checkbox].is-primary-7:checked.is-block + label::after, .is-checkradio[type=checkbox].is-primary-7:checked.is-block + label:after {
            border-color: rgba(0,0,0,.7) !important
        }

    .is-checkradio[type=checkbox].is-primary-light.has-background-color + label::before, .is-checkradio[type=checkbox].is-primary-light.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #f9f9f9 !important
    }

    .is-checkradio[type=checkbox].is-primary-light:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-primary-light:hover:not([disabled]) + label:before {
        border-color: #f9f9f9 !important
    }

    .is-checkradio[type=checkbox].is-primary-light:checked + label::after, .is-checkradio[type=checkbox].is-primary-light:checked + label:after {
        border-color: #f9f9f9 !important
    }

    .is-checkradio[type=checkbox].is-primary-light:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-primary-light:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #f9f9f9 !important
    }

    .is-checkradio[type=checkbox].is-primary-light:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-primary-light:checked.has-background-color + label:after {
        border-color: rgba(0,0,0,.7) !important;
        background-color: #f9f9f9 !important
    }

    .is-checkradio[type=checkbox].is-primary-light:checked.is-block + label {
        color: rgba(0,0,0,.7);
        border-color: #f9f9f9 !important;
        background: #f9f9f9
    }

        .is-checkradio[type=checkbox].is-primary-light:checked.is-block + label::after, .is-checkradio[type=checkbox].is-primary-light:checked.is-block + label:after {
            border-color: rgba(0,0,0,.7) !important
        }

    .is-checkradio[type=checkbox].is-secondary.has-background-color + label::before, .is-checkradio[type=checkbox].is-secondary.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #22262a !important
    }

    .is-checkradio[type=checkbox].is-secondary:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-secondary:hover:not([disabled]) + label:before {
        border-color: #22262a !important
    }

    .is-checkradio[type=checkbox].is-secondary:checked + label::after, .is-checkradio[type=checkbox].is-secondary:checked + label:after {
        border-color: #22262a !important
    }

    .is-checkradio[type=checkbox].is-secondary:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-secondary:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #22262a !important
    }

    .is-checkradio[type=checkbox].is-secondary:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-secondary:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #22262a !important
    }

    .is-checkradio[type=checkbox].is-secondary:checked.is-block + label {
        color: #fff;
        border-color: #22262a !important;
        background: #22262a
    }

        .is-checkradio[type=checkbox].is-secondary:checked.is-block + label::after, .is-checkradio[type=checkbox].is-secondary:checked.is-block + label:after {
            border-color: #fff !important
        }

    .is-checkradio[type=checkbox].is-secondary-2.has-background-color + label::before, .is-checkradio[type=checkbox].is-secondary-2.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #2d3238 !important
    }

    .is-checkradio[type=checkbox].is-secondary-2:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-secondary-2:hover:not([disabled]) + label:before {
        border-color: #2d3238 !important
    }

    .is-checkradio[type=checkbox].is-secondary-2:checked + label::after, .is-checkradio[type=checkbox].is-secondary-2:checked + label:after {
        border-color: #2d3238 !important
    }

    .is-checkradio[type=checkbox].is-secondary-2:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-secondary-2:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #2d3238 !important
    }

    .is-checkradio[type=checkbox].is-secondary-2:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-secondary-2:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #2d3238 !important
    }

    .is-checkradio[type=checkbox].is-secondary-2:checked.is-block + label {
        color: #fff;
        border-color: #2d3238 !important;
        background: #2d3238
    }

        .is-checkradio[type=checkbox].is-secondary-2:checked.is-block + label::after, .is-checkradio[type=checkbox].is-secondary-2:checked.is-block + label:after {
            border-color: #fff !important
        }

    .is-checkradio[type=checkbox].is-secondary-3.has-background-color + label::before, .is-checkradio[type=checkbox].is-secondary-3.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #363a3f !important
    }

    .is-checkradio[type=checkbox].is-secondary-3:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-secondary-3:hover:not([disabled]) + label:before {
        border-color: #363a3f !important
    }

    .is-checkradio[type=checkbox].is-secondary-3:checked + label::after, .is-checkradio[type=checkbox].is-secondary-3:checked + label:after {
        border-color: #363a3f !important
    }

    .is-checkradio[type=checkbox].is-secondary-3:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-secondary-3:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #363a3f !important
    }

    .is-checkradio[type=checkbox].is-secondary-3:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-secondary-3:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #363a3f !important
    }

    .is-checkradio[type=checkbox].is-secondary-3:checked.is-block + label {
        color: #fff;
        border-color: #363a3f !important;
        background: #363a3f
    }

        .is-checkradio[type=checkbox].is-secondary-3:checked.is-block + label::after, .is-checkradio[type=checkbox].is-secondary-3:checked.is-block + label:after {
            border-color: #fff !important
        }

    .is-checkradio[type=checkbox].is-secondary-4.has-background-color + label::before, .is-checkradio[type=checkbox].is-secondary-4.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #414549 !important
    }

    .is-checkradio[type=checkbox].is-secondary-4:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-secondary-4:hover:not([disabled]) + label:before {
        border-color: #414549 !important
    }

    .is-checkradio[type=checkbox].is-secondary-4:checked + label::after, .is-checkradio[type=checkbox].is-secondary-4:checked + label:after {
        border-color: #414549 !important
    }

    .is-checkradio[type=checkbox].is-secondary-4:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-secondary-4:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #414549 !important
    }

    .is-checkradio[type=checkbox].is-secondary-4:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-secondary-4:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #414549 !important
    }

    .is-checkradio[type=checkbox].is-secondary-4:checked.is-block + label {
        color: #fff;
        border-color: #414549 !important;
        background: #414549
    }

        .is-checkradio[type=checkbox].is-secondary-4:checked.is-block + label::after, .is-checkradio[type=checkbox].is-secondary-4:checked.is-block + label:after {
            border-color: #fff !important
        }

    .is-checkradio[type=checkbox].is-secondary-5.has-background-color + label::before, .is-checkradio[type=checkbox].is-secondary-5.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #545659 !important
    }

    .is-checkradio[type=checkbox].is-secondary-5:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-secondary-5:hover:not([disabled]) + label:before {
        border-color: #545659 !important
    }

    .is-checkradio[type=checkbox].is-secondary-5:checked + label::after, .is-checkradio[type=checkbox].is-secondary-5:checked + label:after {
        border-color: #545659 !important
    }

    .is-checkradio[type=checkbox].is-secondary-5:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-secondary-5:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #545659 !important
    }

    .is-checkradio[type=checkbox].is-secondary-5:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-secondary-5:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #545659 !important
    }

    .is-checkradio[type=checkbox].is-secondary-5:checked.is-block + label {
        color: #fff;
        border-color: #545659 !important;
        background: #545659
    }

        .is-checkradio[type=checkbox].is-secondary-5:checked.is-block + label::after, .is-checkradio[type=checkbox].is-secondary-5:checked.is-block + label:after {
            border-color: #fff !important
        }

    .is-checkradio[type=checkbox].is-tertiary.has-background-color + label::before, .is-checkradio[type=checkbox].is-tertiary.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #a6a6a6 !important
    }

    .is-checkradio[type=checkbox].is-tertiary:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-tertiary:hover:not([disabled]) + label:before {
        border-color: #a6a6a6 !important
    }

    .is-checkradio[type=checkbox].is-tertiary:checked + label::after, .is-checkradio[type=checkbox].is-tertiary:checked + label:after {
        border-color: #a6a6a6 !important
    }

    .is-checkradio[type=checkbox].is-tertiary:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-tertiary:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #a6a6a6 !important
    }

    .is-checkradio[type=checkbox].is-tertiary:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-tertiary:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #a6a6a6 !important
    }

    .is-checkradio[type=checkbox].is-tertiary:checked.is-block + label {
        color: #fff;
        border-color: #a6a6a6 !important;
        background: #a6a6a6
    }

        .is-checkradio[type=checkbox].is-tertiary:checked.is-block + label::after, .is-checkradio[type=checkbox].is-tertiary:checked.is-block + label:after {
            border-color: #fff !important
        }

    .is-checkradio[type=checkbox].is-tertiary-2.has-background-color + label::before, .is-checkradio[type=checkbox].is-tertiary-2.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #d8d8d8 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-2:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-tertiary-2:hover:not([disabled]) + label:before {
        border-color: #d8d8d8 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-2:checked + label::after, .is-checkradio[type=checkbox].is-tertiary-2:checked + label:after {
        border-color: #d8d8d8 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-2:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-tertiary-2:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #d8d8d8 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-2:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-tertiary-2:checked.has-background-color + label:after {
        border-color: rgba(0,0,0,.7) !important;
        background-color: #d8d8d8 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-2:checked.is-block + label {
        color: rgba(0,0,0,.7);
        border-color: #d8d8d8 !important;
        background: #d8d8d8
    }

        .is-checkradio[type=checkbox].is-tertiary-2:checked.is-block + label::after, .is-checkradio[type=checkbox].is-tertiary-2:checked.is-block + label:after {
            border-color: rgba(0,0,0,.7) !important
        }

    .is-checkradio[type=checkbox].is-tertiary-3.has-background-color + label::before, .is-checkradio[type=checkbox].is-tertiary-3.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #d7d6d3 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-3:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-tertiary-3:hover:not([disabled]) + label:before {
        border-color: #d7d6d3 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-3:checked + label::after, .is-checkradio[type=checkbox].is-tertiary-3:checked + label:after {
        border-color: #d7d6d3 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-3:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-tertiary-3:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #d7d6d3 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-3:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-tertiary-3:checked.has-background-color + label:after {
        border-color: rgba(0,0,0,.7) !important;
        background-color: #d7d6d3 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-3:checked.is-block + label {
        color: rgba(0,0,0,.7);
        border-color: #d7d6d3 !important;
        background: #d7d6d3
    }

        .is-checkradio[type=checkbox].is-tertiary-3:checked.is-block + label::after, .is-checkradio[type=checkbox].is-tertiary-3:checked.is-block + label:after {
            border-color: rgba(0,0,0,.7) !important
        }

    .is-checkradio[type=checkbox].is-tertiary-4.has-background-color + label::before, .is-checkradio[type=checkbox].is-tertiary-4.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #afafaf !important
    }

    .is-checkradio[type=checkbox].is-tertiary-4:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-tertiary-4:hover:not([disabled]) + label:before {
        border-color: #afafaf !important
    }

    .is-checkradio[type=checkbox].is-tertiary-4:checked + label::after, .is-checkradio[type=checkbox].is-tertiary-4:checked + label:after {
        border-color: #afafaf !important
    }

    .is-checkradio[type=checkbox].is-tertiary-4:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-tertiary-4:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #afafaf !important
    }

    .is-checkradio[type=checkbox].is-tertiary-4:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-tertiary-4:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #afafaf !important
    }

    .is-checkradio[type=checkbox].is-tertiary-4:checked.is-block + label {
        color: #fff;
        border-color: #afafaf !important;
        background: #afafaf
    }

        .is-checkradio[type=checkbox].is-tertiary-4:checked.is-block + label::after, .is-checkradio[type=checkbox].is-tertiary-4:checked.is-block + label:after {
            border-color: #fff !important
        }

    .is-checkradio[type=checkbox].is-tertiary-5.has-background-color + label::before, .is-checkradio[type=checkbox].is-tertiary-5.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #eaeaea !important
    }

    .is-checkradio[type=checkbox].is-tertiary-5:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-tertiary-5:hover:not([disabled]) + label:before {
        border-color: #eaeaea !important
    }

    .is-checkradio[type=checkbox].is-tertiary-5:checked + label::after, .is-checkradio[type=checkbox].is-tertiary-5:checked + label:after {
        border-color: #eaeaea !important
    }

    .is-checkradio[type=checkbox].is-tertiary-5:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-tertiary-5:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #eaeaea !important
    }

    .is-checkradio[type=checkbox].is-tertiary-5:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-tertiary-5:checked.has-background-color + label:after {
        border-color: rgba(0,0,0,.7) !important;
        background-color: #eaeaea !important
    }

    .is-checkradio[type=checkbox].is-tertiary-5:checked.is-block + label {
        color: rgba(0,0,0,.7);
        border-color: #eaeaea !important;
        background: #eaeaea
    }

        .is-checkradio[type=checkbox].is-tertiary-5:checked.is-block + label::after, .is-checkradio[type=checkbox].is-tertiary-5:checked.is-block + label:after {
            border-color: rgba(0,0,0,.7) !important
        }

    .is-checkradio[type=checkbox].is-tertiary-6.has-background-color + label::before, .is-checkradio[type=checkbox].is-tertiary-6.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #b0b0b0 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-6:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-tertiary-6:hover:not([disabled]) + label:before {
        border-color: #b0b0b0 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-6:checked + label::after, .is-checkradio[type=checkbox].is-tertiary-6:checked + label:after {
        border-color: #b0b0b0 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-6:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-tertiary-6:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #b0b0b0 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-6:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-tertiary-6:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #b0b0b0 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-6:checked.is-block + label {
        color: #fff;
        border-color: #b0b0b0 !important;
        background: #b0b0b0
    }

        .is-checkradio[type=checkbox].is-tertiary-6:checked.is-block + label::after, .is-checkradio[type=checkbox].is-tertiary-6:checked.is-block + label:after {
            border-color: #fff !important
        }

    .is-checkradio[type=checkbox].is-tertiary-7.has-background-color + label::before, .is-checkradio[type=checkbox].is-tertiary-7.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #969696 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-7:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-tertiary-7:hover:not([disabled]) + label:before {
        border-color: #969696 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-7:checked + label::after, .is-checkradio[type=checkbox].is-tertiary-7:checked + label:after {
        border-color: #969696 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-7:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-tertiary-7:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #969696 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-7:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-tertiary-7:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #969696 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-7:checked.is-block + label {
        color: #fff;
        border-color: #969696 !important;
        background: #969696
    }

        .is-checkradio[type=checkbox].is-tertiary-7:checked.is-block + label::after, .is-checkradio[type=checkbox].is-tertiary-7:checked.is-block + label:after {
            border-color: #fff !important
        }

    .is-checkradio[type=checkbox].is-tertiary-8.has-background-color + label::before, .is-checkradio[type=checkbox].is-tertiary-8.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #999 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-8:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-tertiary-8:hover:not([disabled]) + label:before {
        border-color: #999 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-8:checked + label::after, .is-checkradio[type=checkbox].is-tertiary-8:checked + label:after {
        border-color: #999 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-8:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-tertiary-8:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #999 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-8:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-tertiary-8:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #999 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-8:checked.is-block + label {
        color: #fff;
        border-color: #999 !important;
        background: #999
    }

        .is-checkradio[type=checkbox].is-tertiary-8:checked.is-block + label::after, .is-checkradio[type=checkbox].is-tertiary-8:checked.is-block + label:after {
            border-color: #fff !important
        }

    .is-checkradio[type=checkbox].is-tertiary-9.has-background-color + label::before, .is-checkradio[type=checkbox].is-tertiary-9.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #f5f5f5 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-9:hover:not([disabled]) + label::before, .is-checkradio[type=checkbox].is-tertiary-9:hover:not([disabled]) + label:before {
        border-color: #f5f5f5 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-9:checked + label::after, .is-checkradio[type=checkbox].is-tertiary-9:checked + label:after {
        border-color: #f5f5f5 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-9:checked.has-background-color + label::before, .is-checkradio[type=checkbox].is-tertiary-9:checked.has-background-color + label:before {
        border-color: transparent !important;
        background-color: #f5f5f5 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-9:checked.has-background-color + label::after, .is-checkradio[type=checkbox].is-tertiary-9:checked.has-background-color + label:after {
        border-color: rgba(0,0,0,.7) !important;
        background-color: #f5f5f5 !important
    }

    .is-checkradio[type=checkbox].is-tertiary-9:checked.is-block + label {
        color: rgba(0,0,0,.7);
        border-color: #f5f5f5 !important;
        background: #f5f5f5
    }

        .is-checkradio[type=checkbox].is-tertiary-9:checked.is-block + label::after, .is-checkradio[type=checkbox].is-tertiary-9:checked.is-block + label:after {
            border-color: rgba(0,0,0,.7) !important
        }

    .is-checkradio[type=checkbox]:indeterminate + label::after, .is-checkradio[type=checkbox]:indeterminate + label:after {
        display: inline-block;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        border-bottom: none
    }

    .is-checkradio[type=checkbox]:indeterminate.is-white + label::after, .is-checkradio[type=checkbox]:indeterminate.is-white + label:after {
        border-color: #fff
    }

    .is-checkradio[type=checkbox]:indeterminate.is-black + label::after, .is-checkradio[type=checkbox]:indeterminate.is-black + label:after {
        border-color: #0a0a0a
    }

    .is-checkradio[type=checkbox]:indeterminate.is-light + label::after, .is-checkradio[type=checkbox]:indeterminate.is-light + label:after {
        border-color: #f5f5f5
    }

    .is-checkradio[type=checkbox]:indeterminate.is-dark + label::after, .is-checkradio[type=checkbox]:indeterminate.is-dark + label:after {
        border-color: #363636
    }

    .is-checkradio[type=checkbox]:indeterminate.is-primary + label::after, .is-checkradio[type=checkbox]:indeterminate.is-primary + label:after {
        border-color: #9fbf43
    }

    .is-checkradio[type=checkbox]:indeterminate.is-link + label::after, .is-checkradio[type=checkbox]:indeterminate.is-link + label:after {
        border-color: #9fbf43
    }

    .is-checkradio[type=checkbox]:indeterminate.is-info + label::after, .is-checkradio[type=checkbox]:indeterminate.is-info + label:after {
        border-color: #209cee
    }

    .is-checkradio[type=checkbox]:indeterminate.is-success + label::after, .is-checkradio[type=checkbox]:indeterminate.is-success + label:after {
        border-color: #23d160
    }

    .is-checkradio[type=checkbox]:indeterminate.is-warning + label::after, .is-checkradio[type=checkbox]:indeterminate.is-warning + label:after {
        border-color: #ffdd57
    }

    .is-checkradio[type=checkbox]:indeterminate.is-danger + label::after, .is-checkradio[type=checkbox]:indeterminate.is-danger + label:after {
        border-color: #ff3860
    }

    .is-checkradio[type=checkbox]:indeterminate.is-primary-2 + label::after, .is-checkradio[type=checkbox]:indeterminate.is-primary-2 + label:after {
        border-color: #fa622f
    }

    .is-checkradio[type=checkbox]:indeterminate.is-primary-3 + label::after, .is-checkradio[type=checkbox]:indeterminate.is-primary-3 + label:after {
        border-color: #e65322
    }

    .is-checkradio[type=checkbox]:indeterminate.is-primary-4 + label::after, .is-checkradio[type=checkbox]:indeterminate.is-primary-4 + label:after {
        border-color: #e85c2d
    }

    .is-checkradio[type=checkbox]:indeterminate.is-primary-5 + label::after, .is-checkradio[type=checkbox]:indeterminate.is-primary-5 + label:after {
        border-color: #e35728
    }

    .is-checkradio[type=checkbox]:indeterminate.is-primary-6 + label::after, .is-checkradio[type=checkbox]:indeterminate.is-primary-6 + label:after {
        border-color: #e95220
    }

    .is-checkradio[type=checkbox]:indeterminate.is-primary-7 + label::after, .is-checkradio[type=checkbox]:indeterminate.is-primary-7 + label:after {
        border-color: #fafafa
    }

    .is-checkradio[type=checkbox]:indeterminate.is-primary-light + label::after, .is-checkradio[type=checkbox]:indeterminate.is-primary-light + label:after {
        border-color: #f9f9f9
    }

    .is-checkradio[type=checkbox]:indeterminate.is-secondary + label::after, .is-checkradio[type=checkbox]:indeterminate.is-secondary + label:after {
        border-color: #22262a
    }

    .is-checkradio[type=checkbox]:indeterminate.is-secondary-2 + label::after, .is-checkradio[type=checkbox]:indeterminate.is-secondary-2 + label:after {
        border-color: #2d3238
    }

    .is-checkradio[type=checkbox]:indeterminate.is-secondary-3 + label::after, .is-checkradio[type=checkbox]:indeterminate.is-secondary-3 + label:after {
        border-color: #363a3f
    }

    .is-checkradio[type=checkbox]:indeterminate.is-secondary-4 + label::after, .is-checkradio[type=checkbox]:indeterminate.is-secondary-4 + label:after {
        border-color: #414549
    }

    .is-checkradio[type=checkbox]:indeterminate.is-secondary-5 + label::after, .is-checkradio[type=checkbox]:indeterminate.is-secondary-5 + label:after {
        border-color: #545659
    }

    .is-checkradio[type=checkbox]:indeterminate.is-tertiary + label::after, .is-checkradio[type=checkbox]:indeterminate.is-tertiary + label:after {
        border-color: #a6a6a6
    }

    .is-checkradio[type=checkbox]:indeterminate.is-tertiary-2 + label::after, .is-checkradio[type=checkbox]:indeterminate.is-tertiary-2 + label:after {
        border-color: #d8d8d8
    }

    .is-checkradio[type=checkbox]:indeterminate.is-tertiary-3 + label::after, .is-checkradio[type=checkbox]:indeterminate.is-tertiary-3 + label:after {
        border-color: #d7d6d3
    }

    .is-checkradio[type=checkbox]:indeterminate.is-tertiary-4 + label::after, .is-checkradio[type=checkbox]:indeterminate.is-tertiary-4 + label:after {
        border-color: #afafaf
    }

    .is-checkradio[type=checkbox]:indeterminate.is-tertiary-5 + label::after, .is-checkradio[type=checkbox]:indeterminate.is-tertiary-5 + label:after {
        border-color: #eaeaea
    }

    .is-checkradio[type=checkbox]:indeterminate.is-tertiary-6 + label::after, .is-checkradio[type=checkbox]:indeterminate.is-tertiary-6 + label:after {
        border-color: #b0b0b0
    }

    .is-checkradio[type=checkbox]:indeterminate.is-tertiary-7 + label::after, .is-checkradio[type=checkbox]:indeterminate.is-tertiary-7 + label:after {
        border-color: #969696
    }

    .is-checkradio[type=checkbox]:indeterminate.is-tertiary-8 + label::after, .is-checkradio[type=checkbox]:indeterminate.is-tertiary-8 + label:after {
        border-color: #999
    }

    .is-checkradio[type=checkbox]:indeterminate.is-tertiary-9 + label::after, .is-checkradio[type=checkbox]:indeterminate.is-tertiary-9 + label:after {
        border-color: #f5f5f5
    }

    .is-checkradio[type=radio] + label::before, .is-checkradio[type=radio] + label:before {
        border-radius: 50%
    }

    .is-checkradio[type=radio] + label::after, .is-checkradio[type=radio] + label:after {
        border-radius: 50%;
        background: #9fbf43;
        left: 0;
        -webkit-transform: scale(.5);
        transform: scale(.5)
    }

    .is-checkradio[type=radio]:checked.has-background-color + label::before, .is-checkradio[type=radio]:checked.has-background-color + label:before {
        border-color: #4a4a4a !important;
        background-color: #4a4a4a !important
    }

    .is-checkradio[type=radio]:checked.has-background-color + label::after, .is-checkradio[type=radio]:checked.has-background-color + label:after {
        border-color: #4a4a4a !important;
        background-color: #4a4a4a !important
    }

    .is-checkradio[type=radio].is-rtl + label {
        padding-left: 0
    }

        .is-checkradio[type=radio].is-rtl + label::after, .is-checkradio[type=radio].is-rtl + label:after {
            left: auto;
            right: 0
        }

    .is-checkradio[type=radio] + label {
        font-size: 1rem;
        line-height: 1.5rem;
        padding-left: 2rem
    }

        .is-checkradio[type=radio] + label::after, .is-checkradio[type=radio] + label::before, .is-checkradio[type=radio] + label:after, .is-checkradio[type=radio] + label:before {
            width: 1.5rem;
            height: 1.5rem
        }

    .is-checkradio[type=radio].is-rtl + label {
        padding-right: 2rem
    }

    .is-checkradio[type=radio].is-small + label {
        font-size: .75rem;
        line-height: 1.125rem;
        padding-left: 1.5rem
    }

        .is-checkradio[type=radio].is-small + label::after, .is-checkradio[type=radio].is-small + label::before, .is-checkradio[type=radio].is-small + label:after, .is-checkradio[type=radio].is-small + label:before {
            width: 1.125rem;
            height: 1.125rem
        }

    .is-checkradio[type=radio].is-small.is-rtl + label {
        padding-right: 1.5rem
    }

    .is-checkradio[type=radio].is-medium + label {
        font-size: 1.25rem;
        line-height: 1.875rem;
        padding-left: 2.5rem
    }

        .is-checkradio[type=radio].is-medium + label::after, .is-checkradio[type=radio].is-medium + label::before, .is-checkradio[type=radio].is-medium + label:after, .is-checkradio[type=radio].is-medium + label:before {
            width: 1.875rem;
            height: 1.875rem
        }

    .is-checkradio[type=radio].is-medium.is-rtl + label {
        padding-right: 2.5rem
    }

    .is-checkradio[type=radio].is-large + label {
        font-size: 1.5rem;
        line-height: 2.25rem;
        padding-left: 3rem
    }

        .is-checkradio[type=radio].is-large + label::after, .is-checkradio[type=radio].is-large + label::before, .is-checkradio[type=radio].is-large + label:after, .is-checkradio[type=radio].is-large + label:before {
            width: 2.25rem;
            height: 2.25rem
        }

    .is-checkradio[type=radio].is-large.is-rtl + label {
        padding-right: 3rem
    }

    .is-checkradio[type=radio].is-white.has-background-color + label::before, .is-checkradio[type=radio].is-white.has-background-color + label:before {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-white:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-white:hover:not([disabled]) + label:before {
        border-color: #fff !important
    }

    .is-checkradio[type=radio].is-white:checked + label::after, .is-checkradio[type=radio].is-white:checked + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-white:checked.has-background-color + label::before, .is-checkradio[type=radio].is-white:checked.has-background-color + label:before {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-white:checked.has-background-color + label::after, .is-checkradio[type=radio].is-white:checked.has-background-color + label:after {
        border-color: #0a0a0a !important;
        background-color: #0a0a0a !important
    }

    .is-checkradio[type=radio].is-black.has-background-color + label::before, .is-checkradio[type=radio].is-black.has-background-color + label:before {
        border-color: #0a0a0a !important;
        background-color: #0a0a0a !important
    }

    .is-checkradio[type=radio].is-black:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-black:hover:not([disabled]) + label:before {
        border-color: #0a0a0a !important
    }

    .is-checkradio[type=radio].is-black:checked + label::after, .is-checkradio[type=radio].is-black:checked + label:after {
        border-color: #0a0a0a !important;
        background-color: #0a0a0a !important
    }

    .is-checkradio[type=radio].is-black:checked.has-background-color + label::before, .is-checkradio[type=radio].is-black:checked.has-background-color + label:before {
        border-color: #0a0a0a !important;
        background-color: #0a0a0a !important
    }

    .is-checkradio[type=radio].is-black:checked.has-background-color + label::after, .is-checkradio[type=radio].is-black:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-light.has-background-color + label::before, .is-checkradio[type=radio].is-light.has-background-color + label:before {
        border-color: #f5f5f5 !important;
        background-color: #f5f5f5 !important
    }

    .is-checkradio[type=radio].is-light:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-light:hover:not([disabled]) + label:before {
        border-color: #f5f5f5 !important
    }

    .is-checkradio[type=radio].is-light:checked + label::after, .is-checkradio[type=radio].is-light:checked + label:after {
        border-color: #f5f5f5 !important;
        background-color: #f5f5f5 !important
    }

    .is-checkradio[type=radio].is-light:checked.has-background-color + label::before, .is-checkradio[type=radio].is-light:checked.has-background-color + label:before {
        border-color: #f5f5f5 !important;
        background-color: #f5f5f5 !important
    }

    .is-checkradio[type=radio].is-light:checked.has-background-color + label::after, .is-checkradio[type=radio].is-light:checked.has-background-color + label:after {
        border-color: #363636 !important;
        background-color: #363636 !important
    }

    .is-checkradio[type=radio].is-dark.has-background-color + label::before, .is-checkradio[type=radio].is-dark.has-background-color + label:before {
        border-color: #363636 !important;
        background-color: #363636 !important
    }

    .is-checkradio[type=radio].is-dark:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-dark:hover:not([disabled]) + label:before {
        border-color: #363636 !important
    }

    .is-checkradio[type=radio].is-dark:checked + label::after, .is-checkradio[type=radio].is-dark:checked + label:after {
        border-color: #363636 !important;
        background-color: #363636 !important
    }

    .is-checkradio[type=radio].is-dark:checked.has-background-color + label::before, .is-checkradio[type=radio].is-dark:checked.has-background-color + label:before {
        border-color: #363636 !important;
        background-color: #363636 !important
    }

    .is-checkradio[type=radio].is-dark:checked.has-background-color + label::after, .is-checkradio[type=radio].is-dark:checked.has-background-color + label:after {
        border-color: #f5f5f5 !important;
        background-color: #f5f5f5 !important
    }

    .is-checkradio[type=radio].is-primary.has-background-color + label::before, .is-checkradio[type=radio].is-primary.has-background-color + label:before {
        border-color: #9fbf43 !important;
        background-color: #9fbf43 !important
    }

    .is-checkradio[type=radio].is-primary:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-primary:hover:not([disabled]) + label:before {
        border-color: #9fbf43 !important
    }

    .is-checkradio[type=radio].is-primary:checked + label::after, .is-checkradio[type=radio].is-primary:checked + label:after {
        border-color: #9fbf43 !important;
        background-color: #9fbf43 !important
    }

    .is-checkradio[type=radio].is-primary:checked.has-background-color + label::before, .is-checkradio[type=radio].is-primary:checked.has-background-color + label:before {
        border-color: #9fbf43 !important;
        background-color: #9fbf43 !important
    }

    .is-checkradio[type=radio].is-primary:checked.has-background-color + label::after, .is-checkradio[type=radio].is-primary:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-link.has-background-color + label::before, .is-checkradio[type=radio].is-link.has-background-color + label:before {
        border-color: #9fbf43 !important;
        background-color: #9fbf43 !important
    }

    .is-checkradio[type=radio].is-link:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-link:hover:not([disabled]) + label:before {
        border-color: #9fbf43 !important
    }

    .is-checkradio[type=radio].is-link:checked + label::after, .is-checkradio[type=radio].is-link:checked + label:after {
        border-color: #9fbf43 !important;
        background-color: #9fbf43 !important
    }

    .is-checkradio[type=radio].is-link:checked.has-background-color + label::before, .is-checkradio[type=radio].is-link:checked.has-background-color + label:before {
        border-color: #9fbf43 !important;
        background-color: #9fbf43 !important
    }

    .is-checkradio[type=radio].is-link:checked.has-background-color + label::after, .is-checkradio[type=radio].is-link:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-info.has-background-color + label::before, .is-checkradio[type=radio].is-info.has-background-color + label:before {
        border-color: #209cee !important;
        background-color: #209cee !important
    }

    .is-checkradio[type=radio].is-info:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-info:hover:not([disabled]) + label:before {
        border-color: #209cee !important
    }

    .is-checkradio[type=radio].is-info:checked + label::after, .is-checkradio[type=radio].is-info:checked + label:after {
        border-color: #209cee !important;
        background-color: #209cee !important
    }

    .is-checkradio[type=radio].is-info:checked.has-background-color + label::before, .is-checkradio[type=radio].is-info:checked.has-background-color + label:before {
        border-color: #209cee !important;
        background-color: #209cee !important
    }

    .is-checkradio[type=radio].is-info:checked.has-background-color + label::after, .is-checkradio[type=radio].is-info:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-success.has-background-color + label::before, .is-checkradio[type=radio].is-success.has-background-color + label:before {
        border-color: #23d160 !important;
        background-color: #23d160 !important
    }

    .is-checkradio[type=radio].is-success:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-success:hover:not([disabled]) + label:before {
        border-color: #23d160 !important
    }

    .is-checkradio[type=radio].is-success:checked + label::after, .is-checkradio[type=radio].is-success:checked + label:after {
        border-color: #23d160 !important;
        background-color: #23d160 !important
    }

    .is-checkradio[type=radio].is-success:checked.has-background-color + label::before, .is-checkradio[type=radio].is-success:checked.has-background-color + label:before {
        border-color: #23d160 !important;
        background-color: #23d160 !important
    }

    .is-checkradio[type=radio].is-success:checked.has-background-color + label::after, .is-checkradio[type=radio].is-success:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-warning.has-background-color + label::before, .is-checkradio[type=radio].is-warning.has-background-color + label:before {
        border-color: #ffdd57 !important;
        background-color: #ffdd57 !important
    }

    .is-checkradio[type=radio].is-warning:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-warning:hover:not([disabled]) + label:before {
        border-color: #ffdd57 !important
    }

    .is-checkradio[type=radio].is-warning:checked + label::after, .is-checkradio[type=radio].is-warning:checked + label:after {
        border-color: #ffdd57 !important;
        background-color: #ffdd57 !important
    }

    .is-checkradio[type=radio].is-warning:checked.has-background-color + label::before, .is-checkradio[type=radio].is-warning:checked.has-background-color + label:before {
        border-color: #ffdd57 !important;
        background-color: #ffdd57 !important
    }

    .is-checkradio[type=radio].is-warning:checked.has-background-color + label::after, .is-checkradio[type=radio].is-warning:checked.has-background-color + label:after {
        border-color: rgba(0,0,0,.7) !important;
        background-color: rgba(0,0,0,.7) !important
    }

    .is-checkradio[type=radio].is-danger.has-background-color + label::before, .is-checkradio[type=radio].is-danger.has-background-color + label:before {
        border-color: #ff3860 !important;
        background-color: #ff3860 !important
    }

    .is-checkradio[type=radio].is-danger:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-danger:hover:not([disabled]) + label:before {
        border-color: #ff3860 !important
    }

    .is-checkradio[type=radio].is-danger:checked + label::after, .is-checkradio[type=radio].is-danger:checked + label:after {
        border-color: #ff3860 !important;
        background-color: #ff3860 !important
    }

    .is-checkradio[type=radio].is-danger:checked.has-background-color + label::before, .is-checkradio[type=radio].is-danger:checked.has-background-color + label:before {
        border-color: #ff3860 !important;
        background-color: #ff3860 !important
    }

    .is-checkradio[type=radio].is-danger:checked.has-background-color + label::after, .is-checkradio[type=radio].is-danger:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-primary-2.has-background-color + label::before, .is-checkradio[type=radio].is-primary-2.has-background-color + label:before {
        border-color: #fa622f !important;
        background-color: #fa622f !important
    }

    .is-checkradio[type=radio].is-primary-2:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-primary-2:hover:not([disabled]) + label:before {
        border-color: #fa622f !important
    }

    .is-checkradio[type=radio].is-primary-2:checked + label::after, .is-checkradio[type=radio].is-primary-2:checked + label:after {
        border-color: #fa622f !important;
        background-color: #fa622f !important
    }

    .is-checkradio[type=radio].is-primary-2:checked.has-background-color + label::before, .is-checkradio[type=radio].is-primary-2:checked.has-background-color + label:before {
        border-color: #fa622f !important;
        background-color: #fa622f !important
    }

    .is-checkradio[type=radio].is-primary-2:checked.has-background-color + label::after, .is-checkradio[type=radio].is-primary-2:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-primary-3.has-background-color + label::before, .is-checkradio[type=radio].is-primary-3.has-background-color + label:before {
        border-color: #e65322 !important;
        background-color: #e65322 !important
    }

    .is-checkradio[type=radio].is-primary-3:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-primary-3:hover:not([disabled]) + label:before {
        border-color: #e65322 !important
    }

    .is-checkradio[type=radio].is-primary-3:checked + label::after, .is-checkradio[type=radio].is-primary-3:checked + label:after {
        border-color: #e65322 !important;
        background-color: #e65322 !important
    }

    .is-checkradio[type=radio].is-primary-3:checked.has-background-color + label::before, .is-checkradio[type=radio].is-primary-3:checked.has-background-color + label:before {
        border-color: #e65322 !important;
        background-color: #e65322 !important
    }

    .is-checkradio[type=radio].is-primary-3:checked.has-background-color + label::after, .is-checkradio[type=radio].is-primary-3:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-primary-4.has-background-color + label::before, .is-checkradio[type=radio].is-primary-4.has-background-color + label:before {
        border-color: #e85c2d !important;
        background-color: #e85c2d !important
    }

    .is-checkradio[type=radio].is-primary-4:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-primary-4:hover:not([disabled]) + label:before {
        border-color: #e85c2d !important
    }

    .is-checkradio[type=radio].is-primary-4:checked + label::after, .is-checkradio[type=radio].is-primary-4:checked + label:after {
        border-color: #e85c2d !important;
        background-color: #e85c2d !important
    }

    .is-checkradio[type=radio].is-primary-4:checked.has-background-color + label::before, .is-checkradio[type=radio].is-primary-4:checked.has-background-color + label:before {
        border-color: #e85c2d !important;
        background-color: #e85c2d !important
    }

    .is-checkradio[type=radio].is-primary-4:checked.has-background-color + label::after, .is-checkradio[type=radio].is-primary-4:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-primary-5.has-background-color + label::before, .is-checkradio[type=radio].is-primary-5.has-background-color + label:before {
        border-color: #e35728 !important;
        background-color: #e35728 !important
    }

    .is-checkradio[type=radio].is-primary-5:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-primary-5:hover:not([disabled]) + label:before {
        border-color: #e35728 !important
    }

    .is-checkradio[type=radio].is-primary-5:checked + label::after, .is-checkradio[type=radio].is-primary-5:checked + label:after {
        border-color: #e35728 !important;
        background-color: #e35728 !important
    }

    .is-checkradio[type=radio].is-primary-5:checked.has-background-color + label::before, .is-checkradio[type=radio].is-primary-5:checked.has-background-color + label:before {
        border-color: #e35728 !important;
        background-color: #e35728 !important
    }

    .is-checkradio[type=radio].is-primary-5:checked.has-background-color + label::after, .is-checkradio[type=radio].is-primary-5:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-primary-6.has-background-color + label::before, .is-checkradio[type=radio].is-primary-6.has-background-color + label:before {
        border-color: #e95220 !important;
        background-color: #e95220 !important
    }

    .is-checkradio[type=radio].is-primary-6:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-primary-6:hover:not([disabled]) + label:before {
        border-color: #e95220 !important
    }

    .is-checkradio[type=radio].is-primary-6:checked + label::after, .is-checkradio[type=radio].is-primary-6:checked + label:after {
        border-color: #e95220 !important;
        background-color: #e95220 !important
    }

    .is-checkradio[type=radio].is-primary-6:checked.has-background-color + label::before, .is-checkradio[type=radio].is-primary-6:checked.has-background-color + label:before {
        border-color: #e95220 !important;
        background-color: #e95220 !important
    }

    .is-checkradio[type=radio].is-primary-6:checked.has-background-color + label::after, .is-checkradio[type=radio].is-primary-6:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-primary-7.has-background-color + label::before, .is-checkradio[type=radio].is-primary-7.has-background-color + label:before {
        border-color: #fafafa !important;
        background-color: #fafafa !important
    }

    .is-checkradio[type=radio].is-primary-7:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-primary-7:hover:not([disabled]) + label:before {
        border-color: #fafafa !important
    }

    .is-checkradio[type=radio].is-primary-7:checked + label::after, .is-checkradio[type=radio].is-primary-7:checked + label:after {
        border-color: #fafafa !important;
        background-color: #fafafa !important
    }

    .is-checkradio[type=radio].is-primary-7:checked.has-background-color + label::before, .is-checkradio[type=radio].is-primary-7:checked.has-background-color + label:before {
        border-color: #fafafa !important;
        background-color: #fafafa !important
    }

    .is-checkradio[type=radio].is-primary-7:checked.has-background-color + label::after, .is-checkradio[type=radio].is-primary-7:checked.has-background-color + label:after {
        border-color: rgba(0,0,0,.7) !important;
        background-color: rgba(0,0,0,.7) !important
    }

    .is-checkradio[type=radio].is-primary-light.has-background-color + label::before, .is-checkradio[type=radio].is-primary-light.has-background-color + label:before {
        border-color: #f9f9f9 !important;
        background-color: #f9f9f9 !important
    }

    .is-checkradio[type=radio].is-primary-light:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-primary-light:hover:not([disabled]) + label:before {
        border-color: #f9f9f9 !important
    }

    .is-checkradio[type=radio].is-primary-light:checked + label::after, .is-checkradio[type=radio].is-primary-light:checked + label:after {
        border-color: #f9f9f9 !important;
        background-color: #f9f9f9 !important
    }

    .is-checkradio[type=radio].is-primary-light:checked.has-background-color + label::before, .is-checkradio[type=radio].is-primary-light:checked.has-background-color + label:before {
        border-color: #f9f9f9 !important;
        background-color: #f9f9f9 !important
    }

    .is-checkradio[type=radio].is-primary-light:checked.has-background-color + label::after, .is-checkradio[type=radio].is-primary-light:checked.has-background-color + label:after {
        border-color: rgba(0,0,0,.7) !important;
        background-color: rgba(0,0,0,.7) !important
    }

    .is-checkradio[type=radio].is-secondary.has-background-color + label::before, .is-checkradio[type=radio].is-secondary.has-background-color + label:before {
        border-color: #22262a !important;
        background-color: #22262a !important
    }

    .is-checkradio[type=radio].is-secondary:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-secondary:hover:not([disabled]) + label:before {
        border-color: #22262a !important
    }

    .is-checkradio[type=radio].is-secondary:checked + label::after, .is-checkradio[type=radio].is-secondary:checked + label:after {
        border-color: #22262a !important;
        background-color: #22262a !important
    }

    .is-checkradio[type=radio].is-secondary:checked.has-background-color + label::before, .is-checkradio[type=radio].is-secondary:checked.has-background-color + label:before {
        border-color: #22262a !important;
        background-color: #22262a !important
    }

    .is-checkradio[type=radio].is-secondary:checked.has-background-color + label::after, .is-checkradio[type=radio].is-secondary:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-secondary-2.has-background-color + label::before, .is-checkradio[type=radio].is-secondary-2.has-background-color + label:before {
        border-color: #2d3238 !important;
        background-color: #2d3238 !important
    }

    .is-checkradio[type=radio].is-secondary-2:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-secondary-2:hover:not([disabled]) + label:before {
        border-color: #2d3238 !important
    }

    .is-checkradio[type=radio].is-secondary-2:checked + label::after, .is-checkradio[type=radio].is-secondary-2:checked + label:after {
        border-color: #2d3238 !important;
        background-color: #2d3238 !important
    }

    .is-checkradio[type=radio].is-secondary-2:checked.has-background-color + label::before, .is-checkradio[type=radio].is-secondary-2:checked.has-background-color + label:before {
        border-color: #2d3238 !important;
        background-color: #2d3238 !important
    }

    .is-checkradio[type=radio].is-secondary-2:checked.has-background-color + label::after, .is-checkradio[type=radio].is-secondary-2:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-secondary-3.has-background-color + label::before, .is-checkradio[type=radio].is-secondary-3.has-background-color + label:before {
        border-color: #363a3f !important;
        background-color: #363a3f !important
    }

    .is-checkradio[type=radio].is-secondary-3:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-secondary-3:hover:not([disabled]) + label:before {
        border-color: #363a3f !important
    }

    .is-checkradio[type=radio].is-secondary-3:checked + label::after, .is-checkradio[type=radio].is-secondary-3:checked + label:after {
        border-color: #363a3f !important;
        background-color: #363a3f !important
    }

    .is-checkradio[type=radio].is-secondary-3:checked.has-background-color + label::before, .is-checkradio[type=radio].is-secondary-3:checked.has-background-color + label:before {
        border-color: #363a3f !important;
        background-color: #363a3f !important
    }

    .is-checkradio[type=radio].is-secondary-3:checked.has-background-color + label::after, .is-checkradio[type=radio].is-secondary-3:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-secondary-4.has-background-color + label::before, .is-checkradio[type=radio].is-secondary-4.has-background-color + label:before {
        border-color: #414549 !important;
        background-color: #414549 !important
    }

    .is-checkradio[type=radio].is-secondary-4:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-secondary-4:hover:not([disabled]) + label:before {
        border-color: #414549 !important
    }

    .is-checkradio[type=radio].is-secondary-4:checked + label::after, .is-checkradio[type=radio].is-secondary-4:checked + label:after {
        border-color: #414549 !important;
        background-color: #414549 !important
    }

    .is-checkradio[type=radio].is-secondary-4:checked.has-background-color + label::before, .is-checkradio[type=radio].is-secondary-4:checked.has-background-color + label:before {
        border-color: #414549 !important;
        background-color: #414549 !important
    }

    .is-checkradio[type=radio].is-secondary-4:checked.has-background-color + label::after, .is-checkradio[type=radio].is-secondary-4:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-secondary-5.has-background-color + label::before, .is-checkradio[type=radio].is-secondary-5.has-background-color + label:before {
        border-color: #545659 !important;
        background-color: #545659 !important
    }

    .is-checkradio[type=radio].is-secondary-5:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-secondary-5:hover:not([disabled]) + label:before {
        border-color: #545659 !important
    }

    .is-checkradio[type=radio].is-secondary-5:checked + label::after, .is-checkradio[type=radio].is-secondary-5:checked + label:after {
        border-color: #545659 !important;
        background-color: #545659 !important
    }

    .is-checkradio[type=radio].is-secondary-5:checked.has-background-color + label::before, .is-checkradio[type=radio].is-secondary-5:checked.has-background-color + label:before {
        border-color: #545659 !important;
        background-color: #545659 !important
    }

    .is-checkradio[type=radio].is-secondary-5:checked.has-background-color + label::after, .is-checkradio[type=radio].is-secondary-5:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-tertiary.has-background-color + label::before, .is-checkradio[type=radio].is-tertiary.has-background-color + label:before {
        border-color: #a6a6a6 !important;
        background-color: #a6a6a6 !important
    }

    .is-checkradio[type=radio].is-tertiary:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-tertiary:hover:not([disabled]) + label:before {
        border-color: #a6a6a6 !important
    }

    .is-checkradio[type=radio].is-tertiary:checked + label::after, .is-checkradio[type=radio].is-tertiary:checked + label:after {
        border-color: #a6a6a6 !important;
        background-color: #a6a6a6 !important
    }

    .is-checkradio[type=radio].is-tertiary:checked.has-background-color + label::before, .is-checkradio[type=radio].is-tertiary:checked.has-background-color + label:before {
        border-color: #a6a6a6 !important;
        background-color: #a6a6a6 !important
    }

    .is-checkradio[type=radio].is-tertiary:checked.has-background-color + label::after, .is-checkradio[type=radio].is-tertiary:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-tertiary-2.has-background-color + label::before, .is-checkradio[type=radio].is-tertiary-2.has-background-color + label:before {
        border-color: #d8d8d8 !important;
        background-color: #d8d8d8 !important
    }

    .is-checkradio[type=radio].is-tertiary-2:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-tertiary-2:hover:not([disabled]) + label:before {
        border-color: #d8d8d8 !important
    }

    .is-checkradio[type=radio].is-tertiary-2:checked + label::after, .is-checkradio[type=radio].is-tertiary-2:checked + label:after {
        border-color: #d8d8d8 !important;
        background-color: #d8d8d8 !important
    }

    .is-checkradio[type=radio].is-tertiary-2:checked.has-background-color + label::before, .is-checkradio[type=radio].is-tertiary-2:checked.has-background-color + label:before {
        border-color: #d8d8d8 !important;
        background-color: #d8d8d8 !important
    }

    .is-checkradio[type=radio].is-tertiary-2:checked.has-background-color + label::after, .is-checkradio[type=radio].is-tertiary-2:checked.has-background-color + label:after {
        border-color: rgba(0,0,0,.7) !important;
        background-color: rgba(0,0,0,.7) !important
    }

    .is-checkradio[type=radio].is-tertiary-3.has-background-color + label::before, .is-checkradio[type=radio].is-tertiary-3.has-background-color + label:before {
        border-color: #d7d6d3 !important;
        background-color: #d7d6d3 !important
    }

    .is-checkradio[type=radio].is-tertiary-3:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-tertiary-3:hover:not([disabled]) + label:before {
        border-color: #d7d6d3 !important
    }

    .is-checkradio[type=radio].is-tertiary-3:checked + label::after, .is-checkradio[type=radio].is-tertiary-3:checked + label:after {
        border-color: #d7d6d3 !important;
        background-color: #d7d6d3 !important
    }

    .is-checkradio[type=radio].is-tertiary-3:checked.has-background-color + label::before, .is-checkradio[type=radio].is-tertiary-3:checked.has-background-color + label:before {
        border-color: #d7d6d3 !important;
        background-color: #d7d6d3 !important
    }

    .is-checkradio[type=radio].is-tertiary-3:checked.has-background-color + label::after, .is-checkradio[type=radio].is-tertiary-3:checked.has-background-color + label:after {
        border-color: rgba(0,0,0,.7) !important;
        background-color: rgba(0,0,0,.7) !important
    }

    .is-checkradio[type=radio].is-tertiary-4.has-background-color + label::before, .is-checkradio[type=radio].is-tertiary-4.has-background-color + label:before {
        border-color: #afafaf !important;
        background-color: #afafaf !important
    }

    .is-checkradio[type=radio].is-tertiary-4:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-tertiary-4:hover:not([disabled]) + label:before {
        border-color: #afafaf !important
    }

    .is-checkradio[type=radio].is-tertiary-4:checked + label::after, .is-checkradio[type=radio].is-tertiary-4:checked + label:after {
        border-color: #afafaf !important;
        background-color: #afafaf !important
    }

    .is-checkradio[type=radio].is-tertiary-4:checked.has-background-color + label::before, .is-checkradio[type=radio].is-tertiary-4:checked.has-background-color + label:before {
        border-color: #afafaf !important;
        background-color: #afafaf !important
    }

    .is-checkradio[type=radio].is-tertiary-4:checked.has-background-color + label::after, .is-checkradio[type=radio].is-tertiary-4:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-tertiary-5.has-background-color + label::before, .is-checkradio[type=radio].is-tertiary-5.has-background-color + label:before {
        border-color: #eaeaea !important;
        background-color: #eaeaea !important
    }

    .is-checkradio[type=radio].is-tertiary-5:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-tertiary-5:hover:not([disabled]) + label:before {
        border-color: #eaeaea !important
    }

    .is-checkradio[type=radio].is-tertiary-5:checked + label::after, .is-checkradio[type=radio].is-tertiary-5:checked + label:after {
        border-color: #eaeaea !important;
        background-color: #eaeaea !important
    }

    .is-checkradio[type=radio].is-tertiary-5:checked.has-background-color + label::before, .is-checkradio[type=radio].is-tertiary-5:checked.has-background-color + label:before {
        border-color: #eaeaea !important;
        background-color: #eaeaea !important
    }

    .is-checkradio[type=radio].is-tertiary-5:checked.has-background-color + label::after, .is-checkradio[type=radio].is-tertiary-5:checked.has-background-color + label:after {
        border-color: rgba(0,0,0,.7) !important;
        background-color: rgba(0,0,0,.7) !important
    }

    .is-checkradio[type=radio].is-tertiary-6.has-background-color + label::before, .is-checkradio[type=radio].is-tertiary-6.has-background-color + label:before {
        border-color: #b0b0b0 !important;
        background-color: #b0b0b0 !important
    }

    .is-checkradio[type=radio].is-tertiary-6:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-tertiary-6:hover:not([disabled]) + label:before {
        border-color: #b0b0b0 !important
    }

    .is-checkradio[type=radio].is-tertiary-6:checked + label::after, .is-checkradio[type=radio].is-tertiary-6:checked + label:after {
        border-color: #b0b0b0 !important;
        background-color: #b0b0b0 !important
    }

    .is-checkradio[type=radio].is-tertiary-6:checked.has-background-color + label::before, .is-checkradio[type=radio].is-tertiary-6:checked.has-background-color + label:before {
        border-color: #b0b0b0 !important;
        background-color: #b0b0b0 !important
    }

    .is-checkradio[type=radio].is-tertiary-6:checked.has-background-color + label::after, .is-checkradio[type=radio].is-tertiary-6:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-tertiary-7.has-background-color + label::before, .is-checkradio[type=radio].is-tertiary-7.has-background-color + label:before {
        border-color: #969696 !important;
        background-color: #969696 !important
    }

    .is-checkradio[type=radio].is-tertiary-7:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-tertiary-7:hover:not([disabled]) + label:before {
        border-color: #969696 !important
    }

    .is-checkradio[type=radio].is-tertiary-7:checked + label::after, .is-checkradio[type=radio].is-tertiary-7:checked + label:after {
        border-color: #969696 !important;
        background-color: #969696 !important
    }

    .is-checkradio[type=radio].is-tertiary-7:checked.has-background-color + label::before, .is-checkradio[type=radio].is-tertiary-7:checked.has-background-color + label:before {
        border-color: #969696 !important;
        background-color: #969696 !important
    }

    .is-checkradio[type=radio].is-tertiary-7:checked.has-background-color + label::after, .is-checkradio[type=radio].is-tertiary-7:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-tertiary-8.has-background-color + label::before, .is-checkradio[type=radio].is-tertiary-8.has-background-color + label:before {
        border-color: #999 !important;
        background-color: #999 !important
    }

    .is-checkradio[type=radio].is-tertiary-8:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-tertiary-8:hover:not([disabled]) + label:before {
        border-color: #999 !important
    }

    .is-checkradio[type=radio].is-tertiary-8:checked + label::after, .is-checkradio[type=radio].is-tertiary-8:checked + label:after {
        border-color: #999 !important;
        background-color: #999 !important
    }

    .is-checkradio[type=radio].is-tertiary-8:checked.has-background-color + label::before, .is-checkradio[type=radio].is-tertiary-8:checked.has-background-color + label:before {
        border-color: #999 !important;
        background-color: #999 !important
    }

    .is-checkradio[type=radio].is-tertiary-8:checked.has-background-color + label::after, .is-checkradio[type=radio].is-tertiary-8:checked.has-background-color + label:after {
        border-color: #fff !important;
        background-color: #fff !important
    }

    .is-checkradio[type=radio].is-tertiary-9.has-background-color + label::before, .is-checkradio[type=radio].is-tertiary-9.has-background-color + label:before {
        border-color: #f5f5f5 !important;
        background-color: #f5f5f5 !important
    }

    .is-checkradio[type=radio].is-tertiary-9:hover:not([disabled]) + label::before, .is-checkradio[type=radio].is-tertiary-9:hover:not([disabled]) + label:before {
        border-color: #f5f5f5 !important
    }

    .is-checkradio[type=radio].is-tertiary-9:checked + label::after, .is-checkradio[type=radio].is-tertiary-9:checked + label:after {
        border-color: #f5f5f5 !important;
        background-color: #f5f5f5 !important
    }

    .is-checkradio[type=radio].is-tertiary-9:checked.has-background-color + label::before, .is-checkradio[type=radio].is-tertiary-9:checked.has-background-color + label:before {
        border-color: #f5f5f5 !important;
        background-color: #f5f5f5 !important
    }

    .is-checkradio[type=radio].is-tertiary-9:checked.has-background-color + label::after, .is-checkradio[type=radio].is-tertiary-9:checked.has-background-color + label:after {
        border-color: rgba(0,0,0,.7) !important;
        background-color: rgba(0,0,0,.7) !important
    }

.steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1rem;
    min-height: 2rem
}

    .steps .step-item {
        margin-top: 0;
        position: relative;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 0;
        flex-basis: 0
    }

        .steps .step-item:not(:first-child) {
            -ms-flex-preferred-size: 1em;
            flex-basis: 1em;
            -webkit-box-flex: 1;
            -ms-flex-positive: 1;
            flex-grow: 1;
            -ms-flex-negative: 1;
            flex-shrink: 1
        }

            .steps .step-item:not(:first-child)::before {
                content: " ";
                display: block;
                position: absolute
            }

        .steps .step-item::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#9fbf43));
            background: linear-gradient(to left,#dbdbdb 50%,#9fbf43 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

            .steps .step-item::before .step-marker {
                color: #fff
            }

        .steps .step-item.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-active .step-marker {
            background-color: #fff;
            border-color: #9fbf43;
            color: #9fbf43
        }

        .steps .step-item.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-completed .step-marker {
            color: #fff;
            background-color: #9fbf43
        }

        .steps .step-item .step-marker {
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            border-radius: 50%;
            font-weight: 700;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            background: #b5b5b5;
            color: #fff;
            border: .2em solid #fff;
            z-index: 1
        }

        .steps .step-item .step-details {
            text-align: center
        }

        .steps .step-item.is-white::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#fff));
            background: linear-gradient(to left,#dbdbdb 50%,#fff 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-white.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-white.is-active .step-marker {
            background-color: #fff;
            border-color: #fff;
            color: #fff
        }

        .steps .step-item.is-white.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-white.is-completed .step-marker {
            color: #0a0a0a;
            background-color: #fff
        }

        .steps .step-item.is-black::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#0a0a0a));
            background: linear-gradient(to left,#dbdbdb 50%,#0a0a0a 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-black.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-black.is-active .step-marker {
            background-color: #fff;
            border-color: #0a0a0a;
            color: #0a0a0a
        }

        .steps .step-item.is-black.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-black.is-completed .step-marker {
            color: #fff;
            background-color: #0a0a0a
        }

        .steps .step-item.is-light::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#f5f5f5));
            background: linear-gradient(to left,#dbdbdb 50%,#f5f5f5 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-light.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-light.is-active .step-marker {
            background-color: #fff;
            border-color: #f5f5f5;
            color: #f5f5f5
        }

        .steps .step-item.is-light.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-light.is-completed .step-marker {
            color: #363636;
            background-color: #f5f5f5
        }

        .steps .step-item.is-dark::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#363636));
            background: linear-gradient(to left,#dbdbdb 50%,#363636 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-dark.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-dark.is-active .step-marker {
            background-color: #fff;
            border-color: #363636;
            color: #363636
        }

        .steps .step-item.is-dark.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-dark.is-completed .step-marker {
            color: #f5f5f5;
            background-color: #363636
        }

        .steps .step-item.is-primary::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#9fbf43));
            background: linear-gradient(to left,#dbdbdb 50%,#9fbf43 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-primary.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-primary.is-active .step-marker {
            background-color: #fff;
            border-color: #9fbf43;
            color: #9fbf43
        }

        .steps .step-item.is-primary.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-primary.is-completed .step-marker {
            color: #fff;
            background-color: #9fbf43
        }

        .steps .step-item.is-link::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#9fbf43));
            background: linear-gradient(to left,#dbdbdb 50%,#9fbf43 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-link.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-link.is-active .step-marker {
            background-color: #fff;
            border-color: #9fbf43;
            color: #9fbf43
        }

        .steps .step-item.is-link.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-link.is-completed .step-marker {
            color: #fff;
            background-color: #9fbf43
        }

        .steps .step-item.is-info::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#209cee));
            background: linear-gradient(to left,#dbdbdb 50%,#209cee 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-info.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-info.is-active .step-marker {
            background-color: #fff;
            border-color: #209cee;
            color: #209cee
        }

        .steps .step-item.is-info.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-info.is-completed .step-marker {
            color: #fff;
            background-color: #209cee
        }

        .steps .step-item.is-success::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#23d160));
            background: linear-gradient(to left,#dbdbdb 50%,#23d160 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-success.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-success.is-active .step-marker {
            background-color: #fff;
            border-color: #23d160;
            color: #23d160
        }

        .steps .step-item.is-success.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-success.is-completed .step-marker {
            color: #fff;
            background-color: #23d160
        }

        .steps .step-item.is-warning::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#ffdd57));
            background: linear-gradient(to left,#dbdbdb 50%,#ffdd57 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-warning.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-warning.is-active .step-marker {
            background-color: #fff;
            border-color: #ffdd57;
            color: #ffdd57
        }

        .steps .step-item.is-warning.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-warning.is-completed .step-marker {
            color: rgba(0,0,0,.7);
            background-color: #ffdd57
        }

        .steps .step-item.is-danger::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#ff3860));
            background: linear-gradient(to left,#dbdbdb 50%,#ff3860 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-danger.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-danger.is-active .step-marker {
            background-color: #fff;
            border-color: #ff3860;
            color: #ff3860
        }

        .steps .step-item.is-danger.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-danger.is-completed .step-marker {
            color: #fff;
            background-color: #ff3860
        }

        .steps .step-item.is-primary-2::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#fa622f));
            background: linear-gradient(to left,#dbdbdb 50%,#fa622f 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-primary-2.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-primary-2.is-active .step-marker {
            background-color: #fff;
            border-color: #fa622f;
            color: #fa622f
        }

        .steps .step-item.is-primary-2.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-primary-2.is-completed .step-marker {
            color: #fff;
            background-color: #fa622f
        }

        .steps .step-item.is-primary-3::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#e65322));
            background: linear-gradient(to left,#dbdbdb 50%,#e65322 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-primary-3.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-primary-3.is-active .step-marker {
            background-color: #fff;
            border-color: #e65322;
            color: #e65322
        }

        .steps .step-item.is-primary-3.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-primary-3.is-completed .step-marker {
            color: #fff;
            background-color: #e65322
        }

        .steps .step-item.is-primary-4::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#e85c2d));
            background: linear-gradient(to left,#dbdbdb 50%,#e85c2d 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-primary-4.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-primary-4.is-active .step-marker {
            background-color: #fff;
            border-color: #e85c2d;
            color: #e85c2d
        }

        .steps .step-item.is-primary-4.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-primary-4.is-completed .step-marker {
            color: #fff;
            background-color: #e85c2d
        }

        .steps .step-item.is-primary-5::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#e35728));
            background: linear-gradient(to left,#dbdbdb 50%,#e35728 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-primary-5.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-primary-5.is-active .step-marker {
            background-color: #fff;
            border-color: #e35728;
            color: #e35728
        }

        .steps .step-item.is-primary-5.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-primary-5.is-completed .step-marker {
            color: #fff;
            background-color: #e35728
        }

        .steps .step-item.is-primary-6::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#e95220));
            background: linear-gradient(to left,#dbdbdb 50%,#e95220 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-primary-6.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-primary-6.is-active .step-marker {
            background-color: #fff;
            border-color: #e95220;
            color: #e95220
        }

        .steps .step-item.is-primary-6.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-primary-6.is-completed .step-marker {
            color: #fff;
            background-color: #e95220
        }

        .steps .step-item.is-primary-7::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#fafafa));
            background: linear-gradient(to left,#dbdbdb 50%,#fafafa 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-primary-7.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-primary-7.is-active .step-marker {
            background-color: #fff;
            border-color: #fafafa;
            color: #fafafa
        }

        .steps .step-item.is-primary-7.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-primary-7.is-completed .step-marker {
            color: rgba(0,0,0,.7);
            background-color: #fafafa
        }

        .steps .step-item.is-primary-light::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#f9f9f9));
            background: linear-gradient(to left,#dbdbdb 50%,#f9f9f9 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-primary-light.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-primary-light.is-active .step-marker {
            background-color: #fff;
            border-color: #f9f9f9;
            color: #f9f9f9
        }

        .steps .step-item.is-primary-light.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-primary-light.is-completed .step-marker {
            color: rgba(0,0,0,.7);
            background-color: #f9f9f9
        }

        .steps .step-item.is-secondary::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#22262a));
            background: linear-gradient(to left,#dbdbdb 50%,#22262a 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-secondary.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-secondary.is-active .step-marker {
            background-color: #fff;
            border-color: #22262a;
            color: #22262a
        }

        .steps .step-item.is-secondary.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-secondary.is-completed .step-marker {
            color: #fff;
            background-color: #22262a
        }

        .steps .step-item.is-secondary-2::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#2d3238));
            background: linear-gradient(to left,#dbdbdb 50%,#2d3238 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-secondary-2.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-secondary-2.is-active .step-marker {
            background-color: #fff;
            border-color: #2d3238;
            color: #2d3238
        }

        .steps .step-item.is-secondary-2.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-secondary-2.is-completed .step-marker {
            color: #fff;
            background-color: #2d3238
        }

        .steps .step-item.is-secondary-3::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#363a3f));
            background: linear-gradient(to left,#dbdbdb 50%,#363a3f 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-secondary-3.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-secondary-3.is-active .step-marker {
            background-color: #fff;
            border-color: #363a3f;
            color: #363a3f
        }

        .steps .step-item.is-secondary-3.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-secondary-3.is-completed .step-marker {
            color: #fff;
            background-color: #363a3f
        }

        .steps .step-item.is-secondary-4::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#414549));
            background: linear-gradient(to left,#dbdbdb 50%,#414549 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-secondary-4.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-secondary-4.is-active .step-marker {
            background-color: #fff;
            border-color: #414549;
            color: #414549
        }

        .steps .step-item.is-secondary-4.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-secondary-4.is-completed .step-marker {
            color: #fff;
            background-color: #414549
        }

        .steps .step-item.is-secondary-5::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#545659));
            background: linear-gradient(to left,#dbdbdb 50%,#545659 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-secondary-5.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-secondary-5.is-active .step-marker {
            background-color: #fff;
            border-color: #545659;
            color: #545659
        }

        .steps .step-item.is-secondary-5.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-secondary-5.is-completed .step-marker {
            color: #fff;
            background-color: #545659
        }

        .steps .step-item.is-tertiary::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#a6a6a6));
            background: linear-gradient(to left,#dbdbdb 50%,#a6a6a6 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-tertiary.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-tertiary.is-active .step-marker {
            background-color: #fff;
            border-color: #a6a6a6;
            color: #a6a6a6
        }

        .steps .step-item.is-tertiary.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-tertiary.is-completed .step-marker {
            color: #fff;
            background-color: #a6a6a6
        }

        .steps .step-item.is-tertiary-2::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#d8d8d8));
            background: linear-gradient(to left,#dbdbdb 50%,#d8d8d8 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-tertiary-2.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-tertiary-2.is-active .step-marker {
            background-color: #fff;
            border-color: #d8d8d8;
            color: #d8d8d8
        }

        .steps .step-item.is-tertiary-2.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-tertiary-2.is-completed .step-marker {
            color: rgba(0,0,0,.7);
            background-color: #d8d8d8
        }

        .steps .step-item.is-tertiary-3::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#d7d6d3));
            background: linear-gradient(to left,#dbdbdb 50%,#d7d6d3 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-tertiary-3.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-tertiary-3.is-active .step-marker {
            background-color: #fff;
            border-color: #d7d6d3;
            color: #d7d6d3
        }

        .steps .step-item.is-tertiary-3.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-tertiary-3.is-completed .step-marker {
            color: rgba(0,0,0,.7);
            background-color: #d7d6d3
        }

        .steps .step-item.is-tertiary-4::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#afafaf));
            background: linear-gradient(to left,#dbdbdb 50%,#afafaf 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-tertiary-4.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-tertiary-4.is-active .step-marker {
            background-color: #fff;
            border-color: #afafaf;
            color: #afafaf
        }

        .steps .step-item.is-tertiary-4.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-tertiary-4.is-completed .step-marker {
            color: #fff;
            background-color: #afafaf
        }

        .steps .step-item.is-tertiary-5::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#eaeaea));
            background: linear-gradient(to left,#dbdbdb 50%,#eaeaea 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-tertiary-5.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-tertiary-5.is-active .step-marker {
            background-color: #fff;
            border-color: #eaeaea;
            color: #eaeaea
        }

        .steps .step-item.is-tertiary-5.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-tertiary-5.is-completed .step-marker {
            color: rgba(0,0,0,.7);
            background-color: #eaeaea
        }

        .steps .step-item.is-tertiary-6::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#b0b0b0));
            background: linear-gradient(to left,#dbdbdb 50%,#b0b0b0 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-tertiary-6.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-tertiary-6.is-active .step-marker {
            background-color: #fff;
            border-color: #b0b0b0;
            color: #b0b0b0
        }

        .steps .step-item.is-tertiary-6.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-tertiary-6.is-completed .step-marker {
            color: #fff;
            background-color: #b0b0b0
        }

        .steps .step-item.is-tertiary-7::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#969696));
            background: linear-gradient(to left,#dbdbdb 50%,#969696 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-tertiary-7.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-tertiary-7.is-active .step-marker {
            background-color: #fff;
            border-color: #969696;
            color: #969696
        }

        .steps .step-item.is-tertiary-7.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-tertiary-7.is-completed .step-marker {
            color: #fff;
            background-color: #969696
        }

        .steps .step-item.is-tertiary-8::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#999));
            background: linear-gradient(to left,#dbdbdb 50%,#999 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-tertiary-8.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-tertiary-8.is-active .step-marker {
            background-color: #fff;
            border-color: #999;
            color: #999
        }

        .steps .step-item.is-tertiary-8.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-tertiary-8.is-completed .step-marker {
            color: #fff;
            background-color: #999
        }

        .steps .step-item.is-tertiary-9::before {
            background: -webkit-gradient(linear,right top,left top,color-stop(50%,#dbdbdb),color-stop(50%,#f5f5f5));
            background: linear-gradient(to left,#dbdbdb 50%,#f5f5f5 50%);
            background-size: 200% 100%;
            background-position: right bottom
        }

        .steps .step-item.is-tertiary-9.is-active::before {
            background-position: left bottom
        }

        .steps .step-item.is-tertiary-9.is-active .step-marker {
            background-color: #fff;
            border-color: #f5f5f5;
            color: #f5f5f5
        }

        .steps .step-item.is-tertiary-9.is-completed::before {
            background-position: left bottom
        }

        .steps .step-item.is-tertiary-9.is-completed .step-marker {
            color: rgba(0,0,0,.7);
            background-color: #f5f5f5
        }

    .steps .steps-content {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin: 2rem 0
    }

        .steps .steps-content .step-content {
            display: none
        }

            .steps .steps-content .step-content.is-active {
                display: block
            }

    .steps .steps-actions {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }

        .steps .steps-actions .steps-action {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-preferred-size: 0;
            flex-basis: 0;
            -webkit-box-flex: 1;
            -ms-flex-positive: 1;
            flex-grow: 1;
            margin: .5rem;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center
        }

    .steps.is-animated .step-item::before {
        -webkit-transition: all 2s ease;
        transition: all 2s ease
    }

    .steps.is-animated .step-item .step-marker {
        -webkit-transition: all 0s ease;
        transition: all 0s ease;
        -webkit-transition-delay: 1.5s;
        transition-delay: 1.5s
    }

    .steps .step-item:not(:first-child)::before {
        height: .2em;
        width: 100%;
        bottom: 0;
        left: -50%;
        top: 1rem
    }

    .steps .step-item .step-marker {
        height: 2rem;
        width: 2rem;
        position: absolute;
        left: calc(50% - 1rem)
    }

        .steps .step-item .step-marker .icon * {
            font-size: 1rem
        }

    .steps .step-item .step-details {
        margin-top: 2rem;
        margin-left: .5em;
        margin-right: .5em;
        padding-top: .2em
    }

        .steps .step-item .step-details .step-title {
            font-size: 1.2rem;
            font-weight: 600
        }

    .steps.is-small {
        font-size: .75rem;
        min-height: 1.5rem
    }

        .steps.is-small .step-item:not(:first-child)::before {
            height: .2em;
            width: 100%;
            bottom: 0;
            left: -50%;
            top: .75rem
        }

        .steps.is-small .step-item .step-marker {
            height: 1.5rem;
            width: 1.5rem;
            position: absolute;
            left: calc(50% - .75rem)
        }

            .steps.is-small .step-item .step-marker .icon * {
                font-size: .75rem
            }

        .steps.is-small .step-item .step-details {
            margin-top: 1.5rem;
            margin-left: .5em;
            margin-right: .5em;
            padding-top: .2em
        }

            .steps.is-small .step-item .step-details .step-title {
                font-size: .9rem;
                font-weight: 600
            }

    .steps.is-medium {
        font-size: 1.25rem;
        min-height: 2.5rem
    }

        .steps.is-medium .step-item:not(:first-child)::before {
            height: .2em;
            width: 100%;
            bottom: 0;
            left: -50%;
            top: 1.25rem
        }

        .steps.is-medium .step-item .step-marker {
            height: 2.5rem;
            width: 2.5rem;
            position: absolute;
            left: calc(50% - 1.25rem)
        }

            .steps.is-medium .step-item .step-marker .icon * {
                font-size: 1.25rem
            }

        .steps.is-medium .step-item .step-details {
            margin-top: 2.5rem;
            margin-left: .5em;
            margin-right: .5em;
            padding-top: .2em
        }

            .steps.is-medium .step-item .step-details .step-title {
                font-size: 1.5rem;
                font-weight: 600
            }

    .steps.is-large {
        font-size: 1.5rem;
        min-height: 3rem
    }

        .steps.is-large .step-item:not(:first-child)::before {
            height: .2em;
            width: 100%;
            bottom: 0;
            left: -50%;
            top: 1.5rem
        }

        .steps.is-large .step-item .step-marker {
            height: 3rem;
            width: 3rem;
            position: absolute;
            left: calc(50% - 1.5rem)
        }

            .steps.is-large .step-item .step-marker .icon * {
                font-size: 1.5rem
            }

        .steps.is-large .step-item .step-details {
            margin-top: 3rem;
            margin-left: .5em;
            margin-right: .5em;
            padding-top: .2em
        }

            .steps.is-large .step-item .step-details .step-title {
                font-size: 1.8rem;
                font-weight: 600
            }

.switch[type=checkbox] {
    outline: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    position: absolute;
    opacity: 0
}

    .switch[type=checkbox]:focus + label::after, .switch[type=checkbox]:focus + label::before, .switch[type=checkbox]:focus + label:after, .switch[type=checkbox]:focus + label:before {
        outline: 1px dotted #b5b5b5
    }

    .switch[type=checkbox][disabled] {
        cursor: not-allowed
    }

        .switch[type=checkbox][disabled] + label {
            opacity: .5
        }

            .switch[type=checkbox][disabled] + label::before, .switch[type=checkbox][disabled] + label:before {
                opacity: .5
            }

            .switch[type=checkbox][disabled] + label::after, .switch[type=checkbox][disabled] + label:after {
                opacity: .5
            }

            .switch[type=checkbox][disabled] + label:hover {
                cursor: not-allowed
            }

    .switch[type=checkbox] + label {
        position: relative;
        display: initial;
        font-size: 1rem;
        line-height: initial;
        padding-left: 3.5rem;
        padding-top: .2rem;
        cursor: pointer
    }

        .switch[type=checkbox] + label::before, .switch[type=checkbox] + label:before {
            position: absolute;
            display: block;
            top: 0;
            left: 0;
            width: 3rem;
            height: 1.5rem;
            border: .1rem solid transparent;
            border-radius: 4px;
            background: #b5b5b5;
            content: ''
        }

        .switch[type=checkbox] + label::after, .switch[type=checkbox] + label:after {
            display: block;
            position: absolute;
            top: .25rem;
            left: .25rem;
            width: 1rem;
            height: 1rem;
            -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
            border-radius: 4px;
            background: #fff;
            -webkit-transition: all .25s ease-out;
            transition: all .25s ease-out;
            content: ''
        }

    .switch[type=checkbox].is-rtl + label {
        padding-left: 0;
        padding-right: 3.5rem
    }

        .switch[type=checkbox].is-rtl + label::before, .switch[type=checkbox].is-rtl + label:before {
            left: auto;
            right: 0
        }

        .switch[type=checkbox].is-rtl + label::after, .switch[type=checkbox].is-rtl + label:after {
            left: auto;
            right: .25rem
        }

    .switch[type=checkbox]:checked + label::before, .switch[type=checkbox]:checked + label:before {
        background: #9fbf43
    }

    .switch[type=checkbox]:checked + label::after {
        left: 1.625rem
    }

    .switch[type=checkbox]:checked.is-rtl + label::after, .switch[type=checkbox]:checked.is-rtl + label:after {
        left: auto;
        right: 1.625rem
    }

    .switch[type=checkbox].is-outlined + label::before, .switch[type=checkbox].is-outlined + label:before {
        background-color: transparent;
        border-color: #b5b5b5
    }

    .switch[type=checkbox].is-outlined + label::after, .switch[type=checkbox].is-outlined + label:after {
        background: #b5b5b5
    }

    .switch[type=checkbox].is-outlined:checked + label::before, .switch[type=checkbox].is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #9fbf43
    }

    .switch[type=checkbox].is-outlined:checked + label::after, .switch[type=checkbox].is-outlined:checked + label:after {
        background: #9fbf43
    }

    .switch[type=checkbox].is-thin + label::before, .switch[type=checkbox].is-thin + label:before {
        top: .54545rem;
        height: .375rem
    }

    .switch[type=checkbox].is-thin + label::after, .switch[type=checkbox].is-thin + label:after {
        -webkit-box-shadow: 0 0 3px #7a7a7a;
        box-shadow: 0 0 3px #7a7a7a
    }

    .switch[type=checkbox].is-rounded + label::before, .switch[type=checkbox].is-rounded + label:before {
        border-radius: 24px
    }

    .switch[type=checkbox].is-rounded + label::after, .switch[type=checkbox].is-rounded + label:after {
        border-radius: 50%
    }

    .switch[type=checkbox].is-small + label {
        position: relative;
        display: initial;
        font-size: .75rem;
        line-height: initial;
        padding-left: 2.75rem;
        padding-top: .2rem;
        cursor: pointer
    }

        .switch[type=checkbox].is-small + label::before, .switch[type=checkbox].is-small + label:before {
            position: absolute;
            display: block;
            top: 0;
            left: 0;
            width: 2.25rem;
            height: 1.125rem;
            border: .1rem solid transparent;
            border-radius: 4px;
            background: #b5b5b5;
            content: ''
        }

        .switch[type=checkbox].is-small + label::after, .switch[type=checkbox].is-small + label:after {
            display: block;
            position: absolute;
            top: .25rem;
            left: .25rem;
            width: .625rem;
            height: .625rem;
            -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
            border-radius: 4px;
            background: #fff;
            -webkit-transition: all .25s ease-out;
            transition: all .25s ease-out;
            content: ''
        }

    .switch[type=checkbox].is-small.is-rtl + label {
        padding-left: 0;
        padding-right: 2.75rem
    }

        .switch[type=checkbox].is-small.is-rtl + label::before, .switch[type=checkbox].is-small.is-rtl + label:before {
            left: auto;
            right: 0
        }

        .switch[type=checkbox].is-small.is-rtl + label::after, .switch[type=checkbox].is-small.is-rtl + label:after {
            left: auto;
            right: .25rem
        }

    .switch[type=checkbox].is-small:checked + label::before, .switch[type=checkbox].is-small:checked + label:before {
        background: #9fbf43
    }

    .switch[type=checkbox].is-small:checked + label::after {
        left: 1.25rem
    }

    .switch[type=checkbox].is-small:checked.is-rtl + label::after, .switch[type=checkbox].is-small:checked.is-rtl + label:after {
        left: auto;
        right: 1.25rem
    }

    .switch[type=checkbox].is-small.is-outlined + label::before, .switch[type=checkbox].is-small.is-outlined + label:before {
        background-color: transparent;
        border-color: #b5b5b5
    }

    .switch[type=checkbox].is-small.is-outlined + label::after, .switch[type=checkbox].is-small.is-outlined + label:after {
        background: #b5b5b5
    }

    .switch[type=checkbox].is-small.is-outlined:checked + label::before, .switch[type=checkbox].is-small.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #9fbf43
    }

    .switch[type=checkbox].is-small.is-outlined:checked + label::after, .switch[type=checkbox].is-small.is-outlined:checked + label:after {
        background: #9fbf43
    }

    .switch[type=checkbox].is-small.is-thin + label::before, .switch[type=checkbox].is-small.is-thin + label:before {
        top: .40909rem;
        height: .28125rem
    }

    .switch[type=checkbox].is-small.is-thin + label::after, .switch[type=checkbox].is-small.is-thin + label:after {
        -webkit-box-shadow: 0 0 3px #7a7a7a;
        box-shadow: 0 0 3px #7a7a7a
    }

    .switch[type=checkbox].is-small.is-rounded + label::before, .switch[type=checkbox].is-small.is-rounded + label:before {
        border-radius: 24px
    }

    .switch[type=checkbox].is-small.is-rounded + label::after, .switch[type=checkbox].is-small.is-rounded + label:after {
        border-radius: 50%
    }

    .switch[type=checkbox].is-medium + label {
        position: relative;
        display: initial;
        font-size: 1.25rem;
        line-height: initial;
        padding-left: 4.25rem;
        padding-top: .2rem;
        cursor: pointer
    }

        .switch[type=checkbox].is-medium + label::before, .switch[type=checkbox].is-medium + label:before {
            position: absolute;
            display: block;
            top: 0;
            left: 0;
            width: 3.75rem;
            height: 1.875rem;
            border: .1rem solid transparent;
            border-radius: 4px;
            background: #b5b5b5;
            content: ''
        }

        .switch[type=checkbox].is-medium + label::after, .switch[type=checkbox].is-medium + label:after {
            display: block;
            position: absolute;
            top: .25rem;
            left: .25rem;
            width: 1.375rem;
            height: 1.375rem;
            -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
            border-radius: 4px;
            background: #fff;
            -webkit-transition: all .25s ease-out;
            transition: all .25s ease-out;
            content: ''
        }

    .switch[type=checkbox].is-medium.is-rtl + label {
        padding-left: 0;
        padding-right: 4.25rem
    }

        .switch[type=checkbox].is-medium.is-rtl + label::before, .switch[type=checkbox].is-medium.is-rtl + label:before {
            left: auto;
            right: 0
        }

        .switch[type=checkbox].is-medium.is-rtl + label::after, .switch[type=checkbox].is-medium.is-rtl + label:after {
            left: auto;
            right: .25rem
        }

    .switch[type=checkbox].is-medium:checked + label::before, .switch[type=checkbox].is-medium:checked + label:before {
        background: #9fbf43
    }

    .switch[type=checkbox].is-medium:checked + label::after {
        left: 2rem
    }

    .switch[type=checkbox].is-medium:checked.is-rtl + label::after, .switch[type=checkbox].is-medium:checked.is-rtl + label:after {
        left: auto;
        right: 2rem
    }

    .switch[type=checkbox].is-medium.is-outlined + label::before, .switch[type=checkbox].is-medium.is-outlined + label:before {
        background-color: transparent;
        border-color: #b5b5b5
    }

    .switch[type=checkbox].is-medium.is-outlined + label::after, .switch[type=checkbox].is-medium.is-outlined + label:after {
        background: #b5b5b5
    }

    .switch[type=checkbox].is-medium.is-outlined:checked + label::before, .switch[type=checkbox].is-medium.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #9fbf43
    }

    .switch[type=checkbox].is-medium.is-outlined:checked + label::after, .switch[type=checkbox].is-medium.is-outlined:checked + label:after {
        background: #9fbf43
    }

    .switch[type=checkbox].is-medium.is-thin + label::before, .switch[type=checkbox].is-medium.is-thin + label:before {
        top: .68182rem;
        height: .46875rem
    }

    .switch[type=checkbox].is-medium.is-thin + label::after, .switch[type=checkbox].is-medium.is-thin + label:after {
        -webkit-box-shadow: 0 0 3px #7a7a7a;
        box-shadow: 0 0 3px #7a7a7a
    }

    .switch[type=checkbox].is-medium.is-rounded + label::before, .switch[type=checkbox].is-medium.is-rounded + label:before {
        border-radius: 24px
    }

    .switch[type=checkbox].is-medium.is-rounded + label::after, .switch[type=checkbox].is-medium.is-rounded + label:after {
        border-radius: 50%
    }

    .switch[type=checkbox].is-large + label {
        position: relative;
        display: initial;
        font-size: 1.5rem;
        line-height: initial;
        padding-left: 5rem;
        padding-top: .2rem;
        cursor: pointer
    }

        .switch[type=checkbox].is-large + label::before, .switch[type=checkbox].is-large + label:before {
            position: absolute;
            display: block;
            top: 0;
            left: 0;
            width: 4.5rem;
            height: 2.25rem;
            border: .1rem solid transparent;
            border-radius: 4px;
            background: #b5b5b5;
            content: ''
        }

        .switch[type=checkbox].is-large + label::after, .switch[type=checkbox].is-large + label:after {
            display: block;
            position: absolute;
            top: .25rem;
            left: .25rem;
            width: 1.75rem;
            height: 1.75rem;
            -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
            border-radius: 4px;
            background: #fff;
            -webkit-transition: all .25s ease-out;
            transition: all .25s ease-out;
            content: ''
        }

    .switch[type=checkbox].is-large.is-rtl + label {
        padding-left: 0;
        padding-right: 5rem
    }

        .switch[type=checkbox].is-large.is-rtl + label::before, .switch[type=checkbox].is-large.is-rtl + label:before {
            left: auto;
            right: 0
        }

        .switch[type=checkbox].is-large.is-rtl + label::after, .switch[type=checkbox].is-large.is-rtl + label:after {
            left: auto;
            right: .25rem
        }

    .switch[type=checkbox].is-large:checked + label::before, .switch[type=checkbox].is-large:checked + label:before {
        background: #9fbf43
    }

    .switch[type=checkbox].is-large:checked + label::after {
        left: 2.375rem
    }

    .switch[type=checkbox].is-large:checked.is-rtl + label::after, .switch[type=checkbox].is-large:checked.is-rtl + label:after {
        left: auto;
        right: 2.375rem
    }

    .switch[type=checkbox].is-large.is-outlined + label::before, .switch[type=checkbox].is-large.is-outlined + label:before {
        background-color: transparent;
        border-color: #b5b5b5
    }

    .switch[type=checkbox].is-large.is-outlined + label::after, .switch[type=checkbox].is-large.is-outlined + label:after {
        background: #b5b5b5
    }

    .switch[type=checkbox].is-large.is-outlined:checked + label::before, .switch[type=checkbox].is-large.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #9fbf43
    }

    .switch[type=checkbox].is-large.is-outlined:checked + label::after, .switch[type=checkbox].is-large.is-outlined:checked + label:after {
        background: #9fbf43
    }

    .switch[type=checkbox].is-large.is-thin + label::before, .switch[type=checkbox].is-large.is-thin + label:before {
        top: .81818rem;
        height: .5625rem
    }

    .switch[type=checkbox].is-large.is-thin + label::after, .switch[type=checkbox].is-large.is-thin + label:after {
        -webkit-box-shadow: 0 0 3px #7a7a7a;
        box-shadow: 0 0 3px #7a7a7a
    }

    .switch[type=checkbox].is-large.is-rounded + label::before, .switch[type=checkbox].is-large.is-rounded + label:before {
        border-radius: 24px
    }

    .switch[type=checkbox].is-large.is-rounded + label::after, .switch[type=checkbox].is-large.is-rounded + label:after {
        border-radius: 50%
    }

    .switch[type=checkbox].is-white:checked + label::before, .switch[type=checkbox].is-white:checked + label:before {
        background: #fff
    }

    .switch[type=checkbox].is-white.is-outlined:checked + label::before, .switch[type=checkbox].is-white.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #fff !important
    }

    .switch[type=checkbox].is-white.is-outlined:checked + label::after, .switch[type=checkbox].is-white.is-outlined:checked + label:after {
        background: #fff
    }

    .switch[type=checkbox].is-white.is-thin.is-outlined + label::after, .switch[type=checkbox].is-white.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-white + label::before, .switch[type=checkbox].is-unchecked-white + label:before {
        background: #fff
    }

    .switch[type=checkbox].is-unchecked-white.is-outlined + label::before, .switch[type=checkbox].is-unchecked-white.is-outlined + label:before {
        background-color: transparent;
        border-color: #fff !important
    }

    .switch[type=checkbox].is-unchecked-white.is-outlined + label::after, .switch[type=checkbox].is-unchecked-white.is-outlined + label:after {
        background: #fff
    }

    .switch[type=checkbox].is-black:checked + label::before, .switch[type=checkbox].is-black:checked + label:before {
        background: #0a0a0a
    }

    .switch[type=checkbox].is-black.is-outlined:checked + label::before, .switch[type=checkbox].is-black.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #0a0a0a !important
    }

    .switch[type=checkbox].is-black.is-outlined:checked + label::after, .switch[type=checkbox].is-black.is-outlined:checked + label:after {
        background: #0a0a0a
    }

    .switch[type=checkbox].is-black.is-thin.is-outlined + label::after, .switch[type=checkbox].is-black.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-black + label::before, .switch[type=checkbox].is-unchecked-black + label:before {
        background: #0a0a0a
    }

    .switch[type=checkbox].is-unchecked-black.is-outlined + label::before, .switch[type=checkbox].is-unchecked-black.is-outlined + label:before {
        background-color: transparent;
        border-color: #0a0a0a !important
    }

    .switch[type=checkbox].is-unchecked-black.is-outlined + label::after, .switch[type=checkbox].is-unchecked-black.is-outlined + label:after {
        background: #0a0a0a
    }

    .switch[type=checkbox].is-light:checked + label::before, .switch[type=checkbox].is-light:checked + label:before {
        background: #f5f5f5
    }

    .switch[type=checkbox].is-light.is-outlined:checked + label::before, .switch[type=checkbox].is-light.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #f5f5f5 !important
    }

    .switch[type=checkbox].is-light.is-outlined:checked + label::after, .switch[type=checkbox].is-light.is-outlined:checked + label:after {
        background: #f5f5f5
    }

    .switch[type=checkbox].is-light.is-thin.is-outlined + label::after, .switch[type=checkbox].is-light.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-light + label::before, .switch[type=checkbox].is-unchecked-light + label:before {
        background: #f5f5f5
    }

    .switch[type=checkbox].is-unchecked-light.is-outlined + label::before, .switch[type=checkbox].is-unchecked-light.is-outlined + label:before {
        background-color: transparent;
        border-color: #f5f5f5 !important
    }

    .switch[type=checkbox].is-unchecked-light.is-outlined + label::after, .switch[type=checkbox].is-unchecked-light.is-outlined + label:after {
        background: #f5f5f5
    }

    .switch[type=checkbox].is-dark:checked + label::before, .switch[type=checkbox].is-dark:checked + label:before {
        background: #363636
    }

    .switch[type=checkbox].is-dark.is-outlined:checked + label::before, .switch[type=checkbox].is-dark.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #363636 !important
    }

    .switch[type=checkbox].is-dark.is-outlined:checked + label::after, .switch[type=checkbox].is-dark.is-outlined:checked + label:after {
        background: #363636
    }

    .switch[type=checkbox].is-dark.is-thin.is-outlined + label::after, .switch[type=checkbox].is-dark.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-dark + label::before, .switch[type=checkbox].is-unchecked-dark + label:before {
        background: #363636
    }

    .switch[type=checkbox].is-unchecked-dark.is-outlined + label::before, .switch[type=checkbox].is-unchecked-dark.is-outlined + label:before {
        background-color: transparent;
        border-color: #363636 !important
    }

    .switch[type=checkbox].is-unchecked-dark.is-outlined + label::after, .switch[type=checkbox].is-unchecked-dark.is-outlined + label:after {
        background: #363636
    }

    .switch[type=checkbox].is-primary:checked + label::before, .switch[type=checkbox].is-primary:checked + label:before {
        background: #9fbf43
    }

    .switch[type=checkbox].is-primary.is-outlined:checked + label::before, .switch[type=checkbox].is-primary.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #9fbf43 !important
    }

    .switch[type=checkbox].is-primary.is-outlined:checked + label::after, .switch[type=checkbox].is-primary.is-outlined:checked + label:after {
        background: #9fbf43
    }

    .switch[type=checkbox].is-primary.is-thin.is-outlined + label::after, .switch[type=checkbox].is-primary.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-primary + label::before, .switch[type=checkbox].is-unchecked-primary + label:before {
        background: #9fbf43
    }

    .switch[type=checkbox].is-unchecked-primary.is-outlined + label::before, .switch[type=checkbox].is-unchecked-primary.is-outlined + label:before {
        background-color: transparent;
        border-color: #9fbf43 !important
    }

    .switch[type=checkbox].is-unchecked-primary.is-outlined + label::after, .switch[type=checkbox].is-unchecked-primary.is-outlined + label:after {
        background: #9fbf43
    }

    .switch[type=checkbox].is-link:checked + label::before, .switch[type=checkbox].is-link:checked + label:before {
        background: #9fbf43
    }

    .switch[type=checkbox].is-link.is-outlined:checked + label::before, .switch[type=checkbox].is-link.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #9fbf43 !important
    }

    .switch[type=checkbox].is-link.is-outlined:checked + label::after, .switch[type=checkbox].is-link.is-outlined:checked + label:after {
        background: #9fbf43
    }

    .switch[type=checkbox].is-link.is-thin.is-outlined + label::after, .switch[type=checkbox].is-link.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-link + label::before, .switch[type=checkbox].is-unchecked-link + label:before {
        background: #9fbf43
    }

    .switch[type=checkbox].is-unchecked-link.is-outlined + label::before, .switch[type=checkbox].is-unchecked-link.is-outlined + label:before {
        background-color: transparent;
        border-color: #9fbf43 !important
    }

    .switch[type=checkbox].is-unchecked-link.is-outlined + label::after, .switch[type=checkbox].is-unchecked-link.is-outlined + label:after {
        background: #9fbf43
    }

    .switch[type=checkbox].is-info:checked + label::before, .switch[type=checkbox].is-info:checked + label:before {
        background: #209cee
    }

    .switch[type=checkbox].is-info.is-outlined:checked + label::before, .switch[type=checkbox].is-info.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #209cee !important
    }

    .switch[type=checkbox].is-info.is-outlined:checked + label::after, .switch[type=checkbox].is-info.is-outlined:checked + label:after {
        background: #209cee
    }

    .switch[type=checkbox].is-info.is-thin.is-outlined + label::after, .switch[type=checkbox].is-info.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-info + label::before, .switch[type=checkbox].is-unchecked-info + label:before {
        background: #209cee
    }

    .switch[type=checkbox].is-unchecked-info.is-outlined + label::before, .switch[type=checkbox].is-unchecked-info.is-outlined + label:before {
        background-color: transparent;
        border-color: #209cee !important
    }

    .switch[type=checkbox].is-unchecked-info.is-outlined + label::after, .switch[type=checkbox].is-unchecked-info.is-outlined + label:after {
        background: #209cee
    }

    .switch[type=checkbox].is-success:checked + label::before, .switch[type=checkbox].is-success:checked + label:before {
        background: #23d160
    }

    .switch[type=checkbox].is-success.is-outlined:checked + label::before, .switch[type=checkbox].is-success.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #23d160 !important
    }

    .switch[type=checkbox].is-success.is-outlined:checked + label::after, .switch[type=checkbox].is-success.is-outlined:checked + label:after {
        background: #23d160
    }

    .switch[type=checkbox].is-success.is-thin.is-outlined + label::after, .switch[type=checkbox].is-success.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-success + label::before, .switch[type=checkbox].is-unchecked-success + label:before {
        background: #23d160
    }

    .switch[type=checkbox].is-unchecked-success.is-outlined + label::before, .switch[type=checkbox].is-unchecked-success.is-outlined + label:before {
        background-color: transparent;
        border-color: #23d160 !important
    }

    .switch[type=checkbox].is-unchecked-success.is-outlined + label::after, .switch[type=checkbox].is-unchecked-success.is-outlined + label:after {
        background: #23d160
    }

    .switch[type=checkbox].is-warning:checked + label::before, .switch[type=checkbox].is-warning:checked + label:before {
        background: #ffdd57
    }

    .switch[type=checkbox].is-warning.is-outlined:checked + label::before, .switch[type=checkbox].is-warning.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #ffdd57 !important
    }

    .switch[type=checkbox].is-warning.is-outlined:checked + label::after, .switch[type=checkbox].is-warning.is-outlined:checked + label:after {
        background: #ffdd57
    }

    .switch[type=checkbox].is-warning.is-thin.is-outlined + label::after, .switch[type=checkbox].is-warning.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-warning + label::before, .switch[type=checkbox].is-unchecked-warning + label:before {
        background: #ffdd57
    }

    .switch[type=checkbox].is-unchecked-warning.is-outlined + label::before, .switch[type=checkbox].is-unchecked-warning.is-outlined + label:before {
        background-color: transparent;
        border-color: #ffdd57 !important
    }

    .switch[type=checkbox].is-unchecked-warning.is-outlined + label::after, .switch[type=checkbox].is-unchecked-warning.is-outlined + label:after {
        background: #ffdd57
    }

    .switch[type=checkbox].is-danger:checked + label::before, .switch[type=checkbox].is-danger:checked + label:before {
        background: #ff3860
    }

    .switch[type=checkbox].is-danger.is-outlined:checked + label::before, .switch[type=checkbox].is-danger.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #ff3860 !important
    }

    .switch[type=checkbox].is-danger.is-outlined:checked + label::after, .switch[type=checkbox].is-danger.is-outlined:checked + label:after {
        background: #ff3860
    }

    .switch[type=checkbox].is-danger.is-thin.is-outlined + label::after, .switch[type=checkbox].is-danger.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-danger + label::before, .switch[type=checkbox].is-unchecked-danger + label:before {
        background: #ff3860
    }

    .switch[type=checkbox].is-unchecked-danger.is-outlined + label::before, .switch[type=checkbox].is-unchecked-danger.is-outlined + label:before {
        background-color: transparent;
        border-color: #ff3860 !important
    }

    .switch[type=checkbox].is-unchecked-danger.is-outlined + label::after, .switch[type=checkbox].is-unchecked-danger.is-outlined + label:after {
        background: #ff3860
    }

    .switch[type=checkbox].is-primary-2:checked + label::before, .switch[type=checkbox].is-primary-2:checked + label:before {
        background: #fa622f
    }

    .switch[type=checkbox].is-primary-2.is-outlined:checked + label::before, .switch[type=checkbox].is-primary-2.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #fa622f !important
    }

    .switch[type=checkbox].is-primary-2.is-outlined:checked + label::after, .switch[type=checkbox].is-primary-2.is-outlined:checked + label:after {
        background: #fa622f
    }

    .switch[type=checkbox].is-primary-2.is-thin.is-outlined + label::after, .switch[type=checkbox].is-primary-2.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-primary-2 + label::before, .switch[type=checkbox].is-unchecked-primary-2 + label:before {
        background: #fa622f
    }

    .switch[type=checkbox].is-unchecked-primary-2.is-outlined + label::before, .switch[type=checkbox].is-unchecked-primary-2.is-outlined + label:before {
        background-color: transparent;
        border-color: #fa622f !important
    }

    .switch[type=checkbox].is-unchecked-primary-2.is-outlined + label::after, .switch[type=checkbox].is-unchecked-primary-2.is-outlined + label:after {
        background: #fa622f
    }

    .switch[type=checkbox].is-primary-3:checked + label::before, .switch[type=checkbox].is-primary-3:checked + label:before {
        background: #e65322
    }

    .switch[type=checkbox].is-primary-3.is-outlined:checked + label::before, .switch[type=checkbox].is-primary-3.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #e65322 !important
    }

    .switch[type=checkbox].is-primary-3.is-outlined:checked + label::after, .switch[type=checkbox].is-primary-3.is-outlined:checked + label:after {
        background: #e65322
    }

    .switch[type=checkbox].is-primary-3.is-thin.is-outlined + label::after, .switch[type=checkbox].is-primary-3.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-primary-3 + label::before, .switch[type=checkbox].is-unchecked-primary-3 + label:before {
        background: #e65322
    }

    .switch[type=checkbox].is-unchecked-primary-3.is-outlined + label::before, .switch[type=checkbox].is-unchecked-primary-3.is-outlined + label:before {
        background-color: transparent;
        border-color: #e65322 !important
    }

    .switch[type=checkbox].is-unchecked-primary-3.is-outlined + label::after, .switch[type=checkbox].is-unchecked-primary-3.is-outlined + label:after {
        background: #e65322
    }

    .switch[type=checkbox].is-primary-4:checked + label::before, .switch[type=checkbox].is-primary-4:checked + label:before {
        background: #e85c2d
    }

    .switch[type=checkbox].is-primary-4.is-outlined:checked + label::before, .switch[type=checkbox].is-primary-4.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #e85c2d !important
    }

    .switch[type=checkbox].is-primary-4.is-outlined:checked + label::after, .switch[type=checkbox].is-primary-4.is-outlined:checked + label:after {
        background: #e85c2d
    }

    .switch[type=checkbox].is-primary-4.is-thin.is-outlined + label::after, .switch[type=checkbox].is-primary-4.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-primary-4 + label::before, .switch[type=checkbox].is-unchecked-primary-4 + label:before {
        background: #e85c2d
    }

    .switch[type=checkbox].is-unchecked-primary-4.is-outlined + label::before, .switch[type=checkbox].is-unchecked-primary-4.is-outlined + label:before {
        background-color: transparent;
        border-color: #e85c2d !important
    }

    .switch[type=checkbox].is-unchecked-primary-4.is-outlined + label::after, .switch[type=checkbox].is-unchecked-primary-4.is-outlined + label:after {
        background: #e85c2d
    }

    .switch[type=checkbox].is-primary-5:checked + label::before, .switch[type=checkbox].is-primary-5:checked + label:before {
        background: #e35728
    }

    .switch[type=checkbox].is-primary-5.is-outlined:checked + label::before, .switch[type=checkbox].is-primary-5.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #e35728 !important
    }

    .switch[type=checkbox].is-primary-5.is-outlined:checked + label::after, .switch[type=checkbox].is-primary-5.is-outlined:checked + label:after {
        background: #e35728
    }

    .switch[type=checkbox].is-primary-5.is-thin.is-outlined + label::after, .switch[type=checkbox].is-primary-5.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-primary-5 + label::before, .switch[type=checkbox].is-unchecked-primary-5 + label:before {
        background: #e35728
    }

    .switch[type=checkbox].is-unchecked-primary-5.is-outlined + label::before, .switch[type=checkbox].is-unchecked-primary-5.is-outlined + label:before {
        background-color: transparent;
        border-color: #e35728 !important
    }

    .switch[type=checkbox].is-unchecked-primary-5.is-outlined + label::after, .switch[type=checkbox].is-unchecked-primary-5.is-outlined + label:after {
        background: #e35728
    }

    .switch[type=checkbox].is-primary-6:checked + label::before, .switch[type=checkbox].is-primary-6:checked + label:before {
        background: #e95220
    }

    .switch[type=checkbox].is-primary-6.is-outlined:checked + label::before, .switch[type=checkbox].is-primary-6.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #e95220 !important
    }

    .switch[type=checkbox].is-primary-6.is-outlined:checked + label::after, .switch[type=checkbox].is-primary-6.is-outlined:checked + label:after {
        background: #e95220
    }

    .switch[type=checkbox].is-primary-6.is-thin.is-outlined + label::after, .switch[type=checkbox].is-primary-6.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-primary-6 + label::before, .switch[type=checkbox].is-unchecked-primary-6 + label:before {
        background: #e95220
    }

    .switch[type=checkbox].is-unchecked-primary-6.is-outlined + label::before, .switch[type=checkbox].is-unchecked-primary-6.is-outlined + label:before {
        background-color: transparent;
        border-color: #e95220 !important
    }

    .switch[type=checkbox].is-unchecked-primary-6.is-outlined + label::after, .switch[type=checkbox].is-unchecked-primary-6.is-outlined + label:after {
        background: #e95220
    }

    .switch[type=checkbox].is-primary-7:checked + label::before, .switch[type=checkbox].is-primary-7:checked + label:before {
        background: #fafafa
    }

    .switch[type=checkbox].is-primary-7.is-outlined:checked + label::before, .switch[type=checkbox].is-primary-7.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #fafafa !important
    }

    .switch[type=checkbox].is-primary-7.is-outlined:checked + label::after, .switch[type=checkbox].is-primary-7.is-outlined:checked + label:after {
        background: #fafafa
    }

    .switch[type=checkbox].is-primary-7.is-thin.is-outlined + label::after, .switch[type=checkbox].is-primary-7.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-primary-7 + label::before, .switch[type=checkbox].is-unchecked-primary-7 + label:before {
        background: #fafafa
    }

    .switch[type=checkbox].is-unchecked-primary-7.is-outlined + label::before, .switch[type=checkbox].is-unchecked-primary-7.is-outlined + label:before {
        background-color: transparent;
        border-color: #fafafa !important
    }

    .switch[type=checkbox].is-unchecked-primary-7.is-outlined + label::after, .switch[type=checkbox].is-unchecked-primary-7.is-outlined + label:after {
        background: #fafafa
    }

    .switch[type=checkbox].is-primary-light:checked + label::before, .switch[type=checkbox].is-primary-light:checked + label:before {
        background: #f9f9f9
    }

    .switch[type=checkbox].is-primary-light.is-outlined:checked + label::before, .switch[type=checkbox].is-primary-light.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #f9f9f9 !important
    }

    .switch[type=checkbox].is-primary-light.is-outlined:checked + label::after, .switch[type=checkbox].is-primary-light.is-outlined:checked + label:after {
        background: #f9f9f9
    }

    .switch[type=checkbox].is-primary-light.is-thin.is-outlined + label::after, .switch[type=checkbox].is-primary-light.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-primary-light + label::before, .switch[type=checkbox].is-unchecked-primary-light + label:before {
        background: #f9f9f9
    }

    .switch[type=checkbox].is-unchecked-primary-light.is-outlined + label::before, .switch[type=checkbox].is-unchecked-primary-light.is-outlined + label:before {
        background-color: transparent;
        border-color: #f9f9f9 !important
    }

    .switch[type=checkbox].is-unchecked-primary-light.is-outlined + label::after, .switch[type=checkbox].is-unchecked-primary-light.is-outlined + label:after {
        background: #f9f9f9
    }

    .switch[type=checkbox].is-secondary:checked + label::before, .switch[type=checkbox].is-secondary:checked + label:before {
        background: #22262a
    }

    .switch[type=checkbox].is-secondary.is-outlined:checked + label::before, .switch[type=checkbox].is-secondary.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #22262a !important
    }

    .switch[type=checkbox].is-secondary.is-outlined:checked + label::after, .switch[type=checkbox].is-secondary.is-outlined:checked + label:after {
        background: #22262a
    }

    .switch[type=checkbox].is-secondary.is-thin.is-outlined + label::after, .switch[type=checkbox].is-secondary.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-secondary + label::before, .switch[type=checkbox].is-unchecked-secondary + label:before {
        background: #22262a
    }

    .switch[type=checkbox].is-unchecked-secondary.is-outlined + label::before, .switch[type=checkbox].is-unchecked-secondary.is-outlined + label:before {
        background-color: transparent;
        border-color: #22262a !important
    }

    .switch[type=checkbox].is-unchecked-secondary.is-outlined + label::after, .switch[type=checkbox].is-unchecked-secondary.is-outlined + label:after {
        background: #22262a
    }

    .switch[type=checkbox].is-secondary-2:checked + label::before, .switch[type=checkbox].is-secondary-2:checked + label:before {
        background: #2d3238
    }

    .switch[type=checkbox].is-secondary-2.is-outlined:checked + label::before, .switch[type=checkbox].is-secondary-2.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #2d3238 !important
    }

    .switch[type=checkbox].is-secondary-2.is-outlined:checked + label::after, .switch[type=checkbox].is-secondary-2.is-outlined:checked + label:after {
        background: #2d3238
    }

    .switch[type=checkbox].is-secondary-2.is-thin.is-outlined + label::after, .switch[type=checkbox].is-secondary-2.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-secondary-2 + label::before, .switch[type=checkbox].is-unchecked-secondary-2 + label:before {
        background: #2d3238
    }

    .switch[type=checkbox].is-unchecked-secondary-2.is-outlined + label::before, .switch[type=checkbox].is-unchecked-secondary-2.is-outlined + label:before {
        background-color: transparent;
        border-color: #2d3238 !important
    }

    .switch[type=checkbox].is-unchecked-secondary-2.is-outlined + label::after, .switch[type=checkbox].is-unchecked-secondary-2.is-outlined + label:after {
        background: #2d3238
    }

    .switch[type=checkbox].is-secondary-3:checked + label::before, .switch[type=checkbox].is-secondary-3:checked + label:before {
        background: #363a3f
    }

    .switch[type=checkbox].is-secondary-3.is-outlined:checked + label::before, .switch[type=checkbox].is-secondary-3.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #363a3f !important
    }

    .switch[type=checkbox].is-secondary-3.is-outlined:checked + label::after, .switch[type=checkbox].is-secondary-3.is-outlined:checked + label:after {
        background: #363a3f
    }

    .switch[type=checkbox].is-secondary-3.is-thin.is-outlined + label::after, .switch[type=checkbox].is-secondary-3.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-secondary-3 + label::before, .switch[type=checkbox].is-unchecked-secondary-3 + label:before {
        background: #363a3f
    }

    .switch[type=checkbox].is-unchecked-secondary-3.is-outlined + label::before, .switch[type=checkbox].is-unchecked-secondary-3.is-outlined + label:before {
        background-color: transparent;
        border-color: #363a3f !important
    }

    .switch[type=checkbox].is-unchecked-secondary-3.is-outlined + label::after, .switch[type=checkbox].is-unchecked-secondary-3.is-outlined + label:after {
        background: #363a3f
    }

    .switch[type=checkbox].is-secondary-4:checked + label::before, .switch[type=checkbox].is-secondary-4:checked + label:before {
        background: #414549
    }

    .switch[type=checkbox].is-secondary-4.is-outlined:checked + label::before, .switch[type=checkbox].is-secondary-4.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #414549 !important
    }

    .switch[type=checkbox].is-secondary-4.is-outlined:checked + label::after, .switch[type=checkbox].is-secondary-4.is-outlined:checked + label:after {
        background: #414549
    }

    .switch[type=checkbox].is-secondary-4.is-thin.is-outlined + label::after, .switch[type=checkbox].is-secondary-4.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-secondary-4 + label::before, .switch[type=checkbox].is-unchecked-secondary-4 + label:before {
        background: #414549
    }

    .switch[type=checkbox].is-unchecked-secondary-4.is-outlined + label::before, .switch[type=checkbox].is-unchecked-secondary-4.is-outlined + label:before {
        background-color: transparent;
        border-color: #414549 !important
    }

    .switch[type=checkbox].is-unchecked-secondary-4.is-outlined + label::after, .switch[type=checkbox].is-unchecked-secondary-4.is-outlined + label:after {
        background: #414549
    }

    .switch[type=checkbox].is-secondary-5:checked + label::before, .switch[type=checkbox].is-secondary-5:checked + label:before {
        background: #545659
    }

    .switch[type=checkbox].is-secondary-5.is-outlined:checked + label::before, .switch[type=checkbox].is-secondary-5.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #545659 !important
    }

    .switch[type=checkbox].is-secondary-5.is-outlined:checked + label::after, .switch[type=checkbox].is-secondary-5.is-outlined:checked + label:after {
        background: #545659
    }

    .switch[type=checkbox].is-secondary-5.is-thin.is-outlined + label::after, .switch[type=checkbox].is-secondary-5.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-secondary-5 + label::before, .switch[type=checkbox].is-unchecked-secondary-5 + label:before {
        background: #545659
    }

    .switch[type=checkbox].is-unchecked-secondary-5.is-outlined + label::before, .switch[type=checkbox].is-unchecked-secondary-5.is-outlined + label:before {
        background-color: transparent;
        border-color: #545659 !important
    }

    .switch[type=checkbox].is-unchecked-secondary-5.is-outlined + label::after, .switch[type=checkbox].is-unchecked-secondary-5.is-outlined + label:after {
        background: #545659
    }

    .switch[type=checkbox].is-tertiary:checked + label::before, .switch[type=checkbox].is-tertiary:checked + label:before {
        background: #a6a6a6
    }

    .switch[type=checkbox].is-tertiary.is-outlined:checked + label::before, .switch[type=checkbox].is-tertiary.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #a6a6a6 !important
    }

    .switch[type=checkbox].is-tertiary.is-outlined:checked + label::after, .switch[type=checkbox].is-tertiary.is-outlined:checked + label:after {
        background: #a6a6a6
    }

    .switch[type=checkbox].is-tertiary.is-thin.is-outlined + label::after, .switch[type=checkbox].is-tertiary.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-tertiary + label::before, .switch[type=checkbox].is-unchecked-tertiary + label:before {
        background: #a6a6a6
    }

    .switch[type=checkbox].is-unchecked-tertiary.is-outlined + label::before, .switch[type=checkbox].is-unchecked-tertiary.is-outlined + label:before {
        background-color: transparent;
        border-color: #a6a6a6 !important
    }

    .switch[type=checkbox].is-unchecked-tertiary.is-outlined + label::after, .switch[type=checkbox].is-unchecked-tertiary.is-outlined + label:after {
        background: #a6a6a6
    }

    .switch[type=checkbox].is-tertiary-2:checked + label::before, .switch[type=checkbox].is-tertiary-2:checked + label:before {
        background: #d8d8d8
    }

    .switch[type=checkbox].is-tertiary-2.is-outlined:checked + label::before, .switch[type=checkbox].is-tertiary-2.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #d8d8d8 !important
    }

    .switch[type=checkbox].is-tertiary-2.is-outlined:checked + label::after, .switch[type=checkbox].is-tertiary-2.is-outlined:checked + label:after {
        background: #d8d8d8
    }

    .switch[type=checkbox].is-tertiary-2.is-thin.is-outlined + label::after, .switch[type=checkbox].is-tertiary-2.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-tertiary-2 + label::before, .switch[type=checkbox].is-unchecked-tertiary-2 + label:before {
        background: #d8d8d8
    }

    .switch[type=checkbox].is-unchecked-tertiary-2.is-outlined + label::before, .switch[type=checkbox].is-unchecked-tertiary-2.is-outlined + label:before {
        background-color: transparent;
        border-color: #d8d8d8 !important
    }

    .switch[type=checkbox].is-unchecked-tertiary-2.is-outlined + label::after, .switch[type=checkbox].is-unchecked-tertiary-2.is-outlined + label:after {
        background: #d8d8d8
    }

    .switch[type=checkbox].is-tertiary-3:checked + label::before, .switch[type=checkbox].is-tertiary-3:checked + label:before {
        background: #d7d6d3
    }

    .switch[type=checkbox].is-tertiary-3.is-outlined:checked + label::before, .switch[type=checkbox].is-tertiary-3.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #d7d6d3 !important
    }

    .switch[type=checkbox].is-tertiary-3.is-outlined:checked + label::after, .switch[type=checkbox].is-tertiary-3.is-outlined:checked + label:after {
        background: #d7d6d3
    }

    .switch[type=checkbox].is-tertiary-3.is-thin.is-outlined + label::after, .switch[type=checkbox].is-tertiary-3.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-tertiary-3 + label::before, .switch[type=checkbox].is-unchecked-tertiary-3 + label:before {
        background: #d7d6d3
    }

    .switch[type=checkbox].is-unchecked-tertiary-3.is-outlined + label::before, .switch[type=checkbox].is-unchecked-tertiary-3.is-outlined + label:before {
        background-color: transparent;
        border-color: #d7d6d3 !important
    }

    .switch[type=checkbox].is-unchecked-tertiary-3.is-outlined + label::after, .switch[type=checkbox].is-unchecked-tertiary-3.is-outlined + label:after {
        background: #d7d6d3
    }

    .switch[type=checkbox].is-tertiary-4:checked + label::before, .switch[type=checkbox].is-tertiary-4:checked + label:before {
        background: #afafaf
    }

    .switch[type=checkbox].is-tertiary-4.is-outlined:checked + label::before, .switch[type=checkbox].is-tertiary-4.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #afafaf !important
    }

    .switch[type=checkbox].is-tertiary-4.is-outlined:checked + label::after, .switch[type=checkbox].is-tertiary-4.is-outlined:checked + label:after {
        background: #afafaf
    }

    .switch[type=checkbox].is-tertiary-4.is-thin.is-outlined + label::after, .switch[type=checkbox].is-tertiary-4.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-tertiary-4 + label::before, .switch[type=checkbox].is-unchecked-tertiary-4 + label:before {
        background: #afafaf
    }

    .switch[type=checkbox].is-unchecked-tertiary-4.is-outlined + label::before, .switch[type=checkbox].is-unchecked-tertiary-4.is-outlined + label:before {
        background-color: transparent;
        border-color: #afafaf !important
    }

    .switch[type=checkbox].is-unchecked-tertiary-4.is-outlined + label::after, .switch[type=checkbox].is-unchecked-tertiary-4.is-outlined + label:after {
        background: #afafaf
    }

    .switch[type=checkbox].is-tertiary-5:checked + label::before, .switch[type=checkbox].is-tertiary-5:checked + label:before {
        background: #eaeaea
    }

    .switch[type=checkbox].is-tertiary-5.is-outlined:checked + label::before, .switch[type=checkbox].is-tertiary-5.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #eaeaea !important
    }

    .switch[type=checkbox].is-tertiary-5.is-outlined:checked + label::after, .switch[type=checkbox].is-tertiary-5.is-outlined:checked + label:after {
        background: #eaeaea
    }

    .switch[type=checkbox].is-tertiary-5.is-thin.is-outlined + label::after, .switch[type=checkbox].is-tertiary-5.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-tertiary-5 + label::before, .switch[type=checkbox].is-unchecked-tertiary-5 + label:before {
        background: #eaeaea
    }

    .switch[type=checkbox].is-unchecked-tertiary-5.is-outlined + label::before, .switch[type=checkbox].is-unchecked-tertiary-5.is-outlined + label:before {
        background-color: transparent;
        border-color: #eaeaea !important
    }

    .switch[type=checkbox].is-unchecked-tertiary-5.is-outlined + label::after, .switch[type=checkbox].is-unchecked-tertiary-5.is-outlined + label:after {
        background: #eaeaea
    }

    .switch[type=checkbox].is-tertiary-6:checked + label::before, .switch[type=checkbox].is-tertiary-6:checked + label:before {
        background: #b0b0b0
    }

    .switch[type=checkbox].is-tertiary-6.is-outlined:checked + label::before, .switch[type=checkbox].is-tertiary-6.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #b0b0b0 !important
    }

    .switch[type=checkbox].is-tertiary-6.is-outlined:checked + label::after, .switch[type=checkbox].is-tertiary-6.is-outlined:checked + label:after {
        background: #b0b0b0
    }

    .switch[type=checkbox].is-tertiary-6.is-thin.is-outlined + label::after, .switch[type=checkbox].is-tertiary-6.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-tertiary-6 + label::before, .switch[type=checkbox].is-unchecked-tertiary-6 + label:before {
        background: #b0b0b0
    }

    .switch[type=checkbox].is-unchecked-tertiary-6.is-outlined + label::before, .switch[type=checkbox].is-unchecked-tertiary-6.is-outlined + label:before {
        background-color: transparent;
        border-color: #b0b0b0 !important
    }

    .switch[type=checkbox].is-unchecked-tertiary-6.is-outlined + label::after, .switch[type=checkbox].is-unchecked-tertiary-6.is-outlined + label:after {
        background: #b0b0b0
    }

    .switch[type=checkbox].is-tertiary-7:checked + label::before, .switch[type=checkbox].is-tertiary-7:checked + label:before {
        background: #969696
    }

    .switch[type=checkbox].is-tertiary-7.is-outlined:checked + label::before, .switch[type=checkbox].is-tertiary-7.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #969696 !important
    }

    .switch[type=checkbox].is-tertiary-7.is-outlined:checked + label::after, .switch[type=checkbox].is-tertiary-7.is-outlined:checked + label:after {
        background: #969696
    }

    .switch[type=checkbox].is-tertiary-7.is-thin.is-outlined + label::after, .switch[type=checkbox].is-tertiary-7.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-tertiary-7 + label::before, .switch[type=checkbox].is-unchecked-tertiary-7 + label:before {
        background: #969696
    }

    .switch[type=checkbox].is-unchecked-tertiary-7.is-outlined + label::before, .switch[type=checkbox].is-unchecked-tertiary-7.is-outlined + label:before {
        background-color: transparent;
        border-color: #969696 !important
    }

    .switch[type=checkbox].is-unchecked-tertiary-7.is-outlined + label::after, .switch[type=checkbox].is-unchecked-tertiary-7.is-outlined + label:after {
        background: #969696
    }

    .switch[type=checkbox].is-tertiary-8:checked + label::before, .switch[type=checkbox].is-tertiary-8:checked + label:before {
        background: #999
    }

    .switch[type=checkbox].is-tertiary-8.is-outlined:checked + label::before, .switch[type=checkbox].is-tertiary-8.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #999 !important
    }

    .switch[type=checkbox].is-tertiary-8.is-outlined:checked + label::after, .switch[type=checkbox].is-tertiary-8.is-outlined:checked + label:after {
        background: #999
    }

    .switch[type=checkbox].is-tertiary-8.is-thin.is-outlined + label::after, .switch[type=checkbox].is-tertiary-8.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-tertiary-8 + label::before, .switch[type=checkbox].is-unchecked-tertiary-8 + label:before {
        background: #999
    }

    .switch[type=checkbox].is-unchecked-tertiary-8.is-outlined + label::before, .switch[type=checkbox].is-unchecked-tertiary-8.is-outlined + label:before {
        background-color: transparent;
        border-color: #999 !important
    }

    .switch[type=checkbox].is-unchecked-tertiary-8.is-outlined + label::after, .switch[type=checkbox].is-unchecked-tertiary-8.is-outlined + label:after {
        background: #999
    }

    .switch[type=checkbox].is-tertiary-9:checked + label::before, .switch[type=checkbox].is-tertiary-9:checked + label:before {
        background: #f5f5f5
    }

    .switch[type=checkbox].is-tertiary-9.is-outlined:checked + label::before, .switch[type=checkbox].is-tertiary-9.is-outlined:checked + label:before {
        background-color: transparent;
        border-color: #f5f5f5 !important
    }

    .switch[type=checkbox].is-tertiary-9.is-outlined:checked + label::after, .switch[type=checkbox].is-tertiary-9.is-outlined:checked + label:after {
        background: #f5f5f5
    }

    .switch[type=checkbox].is-tertiary-9.is-thin.is-outlined + label::after, .switch[type=checkbox].is-tertiary-9.is-thin.is-outlined + label:after {
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .switch[type=checkbox].is-unchecked-tertiary-9 + label::before, .switch[type=checkbox].is-unchecked-tertiary-9 + label:before {
        background: #f5f5f5
    }

    .switch[type=checkbox].is-unchecked-tertiary-9.is-outlined + label::before, .switch[type=checkbox].is-unchecked-tertiary-9.is-outlined + label:before {
        background-color: transparent;
        border-color: #f5f5f5 !important
    }

    .switch[type=checkbox].is-unchecked-tertiary-9.is-outlined + label::after, .switch[type=checkbox].is-unchecked-tertiary-9.is-outlined + label:after {
        background: #f5f5f5
    }

.tagsinput {
    height: auto !important
}

    .tagsinput .control {
        margin-bottom: .1em !important;
        margin-top: .1em !important
    }

    .tagsinput input {
        border: none;
        margin-bottom: .1em !important;
        margin-top: .1em !important
    }

    .tagsinput .tag.is-active {
        background-color: #9fbf43;
        color: #fff
    }

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

    .timeline .timeline-header {
        width: 4em;
        min-width: 4em;
        max-width: 8em;
        word-wrap: normal;
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .timeline .timeline-item {
        display: -webkit-box;
        display: flex;
        display: -ms-flexbox;
        display: -webkit-flex;
        position: relative;
        margin-left: 2em;
        padding-bottom: 2em
    }

        .timeline .timeline-item::before {
            content: "";
            background-color: #dbdbdb;
            display: block;
            width: .1em;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0
        }

        .timeline .timeline-item .timeline-marker {
            position: absolute;
            background: #dbdbdb;
            border: .1em solid #dbdbdb;
            border-radius: 100%;
            content: "";
            display: block;
            height: .8em;
            left: -.35em;
            top: 1.2rem;
            width: .8em
        }

            .timeline .timeline-item .timeline-marker.is-image {
                background: #dbdbdb;
                border: .1em solid #dbdbdb;
                border-radius: 100%;
                display: block;
                overflow: hidden
            }

                .timeline .timeline-item .timeline-marker.is-image.is-16x16 {
                    height: 16px;
                    width: 16px;
                    left: -8px
                }

                .timeline .timeline-item .timeline-marker.is-image.is-24x24 {
                    height: 24px;
                    width: 24px;
                    left: -12px
                }

                .timeline .timeline-item .timeline-marker.is-image.is-32x32 {
                    height: 32px;
                    width: 32px;
                    left: -16px
                }

                .timeline .timeline-item .timeline-marker.is-image.is-48x48 {
                    height: 48px;
                    width: 48px;
                    left: -24px
                }

                .timeline .timeline-item .timeline-marker.is-image.is-64x64 {
                    height: 64px;
                    width: 64px;
                    left: -32px
                }

                .timeline .timeline-item .timeline-marker.is-image.is-96x96 {
                    height: 96px;
                    width: 96px;
                    left: -48px
                }

                .timeline .timeline-item .timeline-marker.is-image.is-128x128 {
                    height: 128px;
                    width: 128px;
                    left: -64px
                }

            .timeline .timeline-item .timeline-marker.is-icon {
                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;
                height: 1.5em;
                width: 1.5em;
                left: -.7em;
                line-height: .75rem;
                padding: .25rem;
                background: #dbdbdb;
                border: .1em solid #dbdbdb;
                border-radius: 100%
            }

                .timeline .timeline-item .timeline-marker.is-icon > i {
                    color: #fff;
                    font-size: .75rem !important
                }

            .timeline .timeline-item .timeline-marker.is-outlined .image {
                background: #fff
            }

            .timeline .timeline-item .timeline-marker.is-outlined.is-icon {
                background: #fff
            }

                .timeline .timeline-item .timeline-marker.is-outlined.is-icon > i {
                    color: #dbdbdb
                }

            .timeline .timeline-item .timeline-marker.is-white {
                background-color: #fff !important;
                border-color: #fff !important
            }

                .timeline .timeline-item .timeline-marker.is-white .image {
                    border-color: #fff !important
                }

                .timeline .timeline-item .timeline-marker.is-white.is-icon {
                    background-color: #fff !important;
                    border-color: #fff !important
                }

                    .timeline .timeline-item .timeline-marker.is-white.is-icon > i {
                        color: #0a0a0a !important
                    }

                .timeline .timeline-item .timeline-marker.is-white.is-outlined {
                    background-color: #fff !important;
                    border-color: #fff !important
                }

                    .timeline .timeline-item .timeline-marker.is-white.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-white.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-white.is-outlined.is-icon > i {
                            color: #fff !important
                        }

            .timeline .timeline-item .timeline-marker.is-black {
                background-color: #0a0a0a !important;
                border-color: #0a0a0a !important
            }

                .timeline .timeline-item .timeline-marker.is-black .image {
                    border-color: #0a0a0a !important
                }

                .timeline .timeline-item .timeline-marker.is-black.is-icon {
                    background-color: #0a0a0a !important;
                    border-color: #0a0a0a !important
                }

                    .timeline .timeline-item .timeline-marker.is-black.is-icon > i {
                        color: #fff !important
                    }

                .timeline .timeline-item .timeline-marker.is-black.is-outlined {
                    background-color: #fff !important;
                    border-color: #0a0a0a !important
                }

                    .timeline .timeline-item .timeline-marker.is-black.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-black.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-black.is-outlined.is-icon > i {
                            color: #0a0a0a !important
                        }

            .timeline .timeline-item .timeline-marker.is-light {
                background-color: #f5f5f5 !important;
                border-color: #f5f5f5 !important
            }

                .timeline .timeline-item .timeline-marker.is-light .image {
                    border-color: #f5f5f5 !important
                }

                .timeline .timeline-item .timeline-marker.is-light.is-icon {
                    background-color: #f5f5f5 !important;
                    border-color: #f5f5f5 !important
                }

                    .timeline .timeline-item .timeline-marker.is-light.is-icon > i {
                        color: #363636 !important
                    }

                .timeline .timeline-item .timeline-marker.is-light.is-outlined {
                    background-color: #fff !important;
                    border-color: #f5f5f5 !important
                }

                    .timeline .timeline-item .timeline-marker.is-light.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-light.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-light.is-outlined.is-icon > i {
                            color: #f5f5f5 !important
                        }

            .timeline .timeline-item .timeline-marker.is-dark {
                background-color: #363636 !important;
                border-color: #363636 !important
            }

                .timeline .timeline-item .timeline-marker.is-dark .image {
                    border-color: #363636 !important
                }

                .timeline .timeline-item .timeline-marker.is-dark.is-icon {
                    background-color: #363636 !important;
                    border-color: #363636 !important
                }

                    .timeline .timeline-item .timeline-marker.is-dark.is-icon > i {
                        color: #f5f5f5 !important
                    }

                .timeline .timeline-item .timeline-marker.is-dark.is-outlined {
                    background-color: #fff !important;
                    border-color: #363636 !important
                }

                    .timeline .timeline-item .timeline-marker.is-dark.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-dark.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-dark.is-outlined.is-icon > i {
                            color: #363636 !important
                        }

            .timeline .timeline-item .timeline-marker.is-primary {
                background-color: #9fbf43 !important;
                border-color: #9fbf43 !important
            }

                .timeline .timeline-item .timeline-marker.is-primary .image {
                    border-color: #9fbf43 !important
                }

                .timeline .timeline-item .timeline-marker.is-primary.is-icon {
                    background-color: #9fbf43 !important;
                    border-color: #9fbf43 !important
                }

                    .timeline .timeline-item .timeline-marker.is-primary.is-icon > i {
                        color: #fff !important
                    }

                .timeline .timeline-item .timeline-marker.is-primary.is-outlined {
                    background-color: #fff !important;
                    border-color: #9fbf43 !important
                }

                    .timeline .timeline-item .timeline-marker.is-primary.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-primary.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-primary.is-outlined.is-icon > i {
                            color: #9fbf43 !important
                        }

            .timeline .timeline-item .timeline-marker.is-link {
                background-color: #9fbf43 !important;
                border-color: #9fbf43 !important
            }

                .timeline .timeline-item .timeline-marker.is-link .image {
                    border-color: #9fbf43 !important
                }

                .timeline .timeline-item .timeline-marker.is-link.is-icon {
                    background-color: #9fbf43 !important;
                    border-color: #9fbf43 !important
                }

                    .timeline .timeline-item .timeline-marker.is-link.is-icon > i {
                        color: #fff !important
                    }

                .timeline .timeline-item .timeline-marker.is-link.is-outlined {
                    background-color: #fff !important;
                    border-color: #9fbf43 !important
                }

                    .timeline .timeline-item .timeline-marker.is-link.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-link.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-link.is-outlined.is-icon > i {
                            color: #9fbf43 !important
                        }

            .timeline .timeline-item .timeline-marker.is-info {
                background-color: #209cee !important;
                border-color: #209cee !important
            }

                .timeline .timeline-item .timeline-marker.is-info .image {
                    border-color: #209cee !important
                }

                .timeline .timeline-item .timeline-marker.is-info.is-icon {
                    background-color: #209cee !important;
                    border-color: #209cee !important
                }

                    .timeline .timeline-item .timeline-marker.is-info.is-icon > i {
                        color: #fff !important
                    }

                .timeline .timeline-item .timeline-marker.is-info.is-outlined {
                    background-color: #fff !important;
                    border-color: #209cee !important
                }

                    .timeline .timeline-item .timeline-marker.is-info.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-info.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-info.is-outlined.is-icon > i {
                            color: #209cee !important
                        }

            .timeline .timeline-item .timeline-marker.is-success {
                background-color: #23d160 !important;
                border-color: #23d160 !important
            }

                .timeline .timeline-item .timeline-marker.is-success .image {
                    border-color: #23d160 !important
                }

                .timeline .timeline-item .timeline-marker.is-success.is-icon {
                    background-color: #23d160 !important;
                    border-color: #23d160 !important
                }

                    .timeline .timeline-item .timeline-marker.is-success.is-icon > i {
                        color: #fff !important
                    }

                .timeline .timeline-item .timeline-marker.is-success.is-outlined {
                    background-color: #fff !important;
                    border-color: #23d160 !important
                }

                    .timeline .timeline-item .timeline-marker.is-success.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-success.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-success.is-outlined.is-icon > i {
                            color: #23d160 !important
                        }

            .timeline .timeline-item .timeline-marker.is-warning {
                background-color: #ffdd57 !important;
                border-color: #ffdd57 !important
            }

                .timeline .timeline-item .timeline-marker.is-warning .image {
                    border-color: #ffdd57 !important
                }

                .timeline .timeline-item .timeline-marker.is-warning.is-icon {
                    background-color: #ffdd57 !important;
                    border-color: #ffdd57 !important
                }

                    .timeline .timeline-item .timeline-marker.is-warning.is-icon > i {
                        color: rgba(0,0,0,.7) !important
                    }

                .timeline .timeline-item .timeline-marker.is-warning.is-outlined {
                    background-color: #fff !important;
                    border-color: #ffdd57 !important
                }

                    .timeline .timeline-item .timeline-marker.is-warning.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-warning.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-warning.is-outlined.is-icon > i {
                            color: #ffdd57 !important
                        }

            .timeline .timeline-item .timeline-marker.is-danger {
                background-color: #ff3860 !important;
                border-color: #ff3860 !important
            }

                .timeline .timeline-item .timeline-marker.is-danger .image {
                    border-color: #ff3860 !important
                }

                .timeline .timeline-item .timeline-marker.is-danger.is-icon {
                    background-color: #ff3860 !important;
                    border-color: #ff3860 !important
                }

                    .timeline .timeline-item .timeline-marker.is-danger.is-icon > i {
                        color: #fff !important
                    }

                .timeline .timeline-item .timeline-marker.is-danger.is-outlined {
                    background-color: #fff !important;
                    border-color: #ff3860 !important
                }

                    .timeline .timeline-item .timeline-marker.is-danger.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-danger.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-danger.is-outlined.is-icon > i {
                            color: #ff3860 !important
                        }

            .timeline .timeline-item .timeline-marker.is-primary-2 {
                background-color: #fa622f !important;
                border-color: #fa622f !important
            }

                .timeline .timeline-item .timeline-marker.is-primary-2 .image {
                    border-color: #fa622f !important
                }

                .timeline .timeline-item .timeline-marker.is-primary-2.is-icon {
                    background-color: #fa622f !important;
                    border-color: #fa622f !important
                }

                    .timeline .timeline-item .timeline-marker.is-primary-2.is-icon > i {
                        color: #fff !important
                    }

                .timeline .timeline-item .timeline-marker.is-primary-2.is-outlined {
                    background-color: #fff !important;
                    border-color: #fa622f !important
                }

                    .timeline .timeline-item .timeline-marker.is-primary-2.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-primary-2.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-primary-2.is-outlined.is-icon > i {
                            color: #fa622f !important
                        }

            .timeline .timeline-item .timeline-marker.is-primary-3 {
                background-color: #e65322 !important;
                border-color: #e65322 !important
            }

                .timeline .timeline-item .timeline-marker.is-primary-3 .image {
                    border-color: #e65322 !important
                }

                .timeline .timeline-item .timeline-marker.is-primary-3.is-icon {
                    background-color: #e65322 !important;
                    border-color: #e65322 !important
                }

                    .timeline .timeline-item .timeline-marker.is-primary-3.is-icon > i {
                        color: #fff !important
                    }

                .timeline .timeline-item .timeline-marker.is-primary-3.is-outlined {
                    background-color: #fff !important;
                    border-color: #e65322 !important
                }

                    .timeline .timeline-item .timeline-marker.is-primary-3.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-primary-3.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-primary-3.is-outlined.is-icon > i {
                            color: #e65322 !important
                        }

            .timeline .timeline-item .timeline-marker.is-primary-4 {
                background-color: #e85c2d !important;
                border-color: #e85c2d !important
            }

                .timeline .timeline-item .timeline-marker.is-primary-4 .image {
                    border-color: #e85c2d !important
                }

                .timeline .timeline-item .timeline-marker.is-primary-4.is-icon {
                    background-color: #e85c2d !important;
                    border-color: #e85c2d !important
                }

                    .timeline .timeline-item .timeline-marker.is-primary-4.is-icon > i {
                        color: #fff !important
                    }

                .timeline .timeline-item .timeline-marker.is-primary-4.is-outlined {
                    background-color: #fff !important;
                    border-color: #e85c2d !important
                }

                    .timeline .timeline-item .timeline-marker.is-primary-4.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-primary-4.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-primary-4.is-outlined.is-icon > i {
                            color: #e85c2d !important
                        }

            .timeline .timeline-item .timeline-marker.is-primary-5 {
                background-color: #e35728 !important;
                border-color: #e35728 !important
            }

                .timeline .timeline-item .timeline-marker.is-primary-5 .image {
                    border-color: #e35728 !important
                }

                .timeline .timeline-item .timeline-marker.is-primary-5.is-icon {
                    background-color: #e35728 !important;
                    border-color: #e35728 !important
                }

                    .timeline .timeline-item .timeline-marker.is-primary-5.is-icon > i {
                        color: #fff !important
                    }

                .timeline .timeline-item .timeline-marker.is-primary-5.is-outlined {
                    background-color: #fff !important;
                    border-color: #e35728 !important
                }

                    .timeline .timeline-item .timeline-marker.is-primary-5.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-primary-5.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-primary-5.is-outlined.is-icon > i {
                            color: #e35728 !important
                        }

            .timeline .timeline-item .timeline-marker.is-primary-6 {
                background-color: #e95220 !important;
                border-color: #e95220 !important
            }

                .timeline .timeline-item .timeline-marker.is-primary-6 .image {
                    border-color: #e95220 !important
                }

                .timeline .timeline-item .timeline-marker.is-primary-6.is-icon {
                    background-color: #e95220 !important;
                    border-color: #e95220 !important
                }

                    .timeline .timeline-item .timeline-marker.is-primary-6.is-icon > i {
                        color: #fff !important
                    }

                .timeline .timeline-item .timeline-marker.is-primary-6.is-outlined {
                    background-color: #fff !important;
                    border-color: #e95220 !important
                }

                    .timeline .timeline-item .timeline-marker.is-primary-6.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-primary-6.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-primary-6.is-outlined.is-icon > i {
                            color: #e95220 !important
                        }

            .timeline .timeline-item .timeline-marker.is-primary-7 {
                background-color: #fafafa !important;
                border-color: #fafafa !important
            }

                .timeline .timeline-item .timeline-marker.is-primary-7 .image {
                    border-color: #fafafa !important
                }

                .timeline .timeline-item .timeline-marker.is-primary-7.is-icon {
                    background-color: #fafafa !important;
                    border-color: #fafafa !important
                }

                    .timeline .timeline-item .timeline-marker.is-primary-7.is-icon > i {
                        color: rgba(0,0,0,.7) !important
                    }

                .timeline .timeline-item .timeline-marker.is-primary-7.is-outlined {
                    background-color: #fff !important;
                    border-color: #fafafa !important
                }

                    .timeline .timeline-item .timeline-marker.is-primary-7.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-primary-7.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-primary-7.is-outlined.is-icon > i {
                            color: #fafafa !important
                        }

            .timeline .timeline-item .timeline-marker.is-primary-light {
                background-color: #f9f9f9 !important;
                border-color: #f9f9f9 !important
            }

                .timeline .timeline-item .timeline-marker.is-primary-light .image {
                    border-color: #f9f9f9 !important
                }

                .timeline .timeline-item .timeline-marker.is-primary-light.is-icon {
                    background-color: #f9f9f9 !important;
                    border-color: #f9f9f9 !important
                }

                    .timeline .timeline-item .timeline-marker.is-primary-light.is-icon > i {
                        color: rgba(0,0,0,.7) !important
                    }

                .timeline .timeline-item .timeline-marker.is-primary-light.is-outlined {
                    background-color: #fff !important;
                    border-color: #f9f9f9 !important
                }

                    .timeline .timeline-item .timeline-marker.is-primary-light.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-primary-light.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-primary-light.is-outlined.is-icon > i {
                            color: #f9f9f9 !important
                        }

            .timeline .timeline-item .timeline-marker.is-secondary {
                background-color: #22262a !important;
                border-color: #22262a !important
            }

                .timeline .timeline-item .timeline-marker.is-secondary .image {
                    border-color: #22262a !important
                }

                .timeline .timeline-item .timeline-marker.is-secondary.is-icon {
                    background-color: #22262a !important;
                    border-color: #22262a !important
                }

                    .timeline .timeline-item .timeline-marker.is-secondary.is-icon > i {
                        color: #fff !important
                    }

                .timeline .timeline-item .timeline-marker.is-secondary.is-outlined {
                    background-color: #fff !important;
                    border-color: #22262a !important
                }

                    .timeline .timeline-item .timeline-marker.is-secondary.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-secondary.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-secondary.is-outlined.is-icon > i {
                            color: #22262a !important
                        }

            .timeline .timeline-item .timeline-marker.is-secondary-2 {
                background-color: #2d3238 !important;
                border-color: #2d3238 !important
            }

                .timeline .timeline-item .timeline-marker.is-secondary-2 .image {
                    border-color: #2d3238 !important
                }

                .timeline .timeline-item .timeline-marker.is-secondary-2.is-icon {
                    background-color: #2d3238 !important;
                    border-color: #2d3238 !important
                }

                    .timeline .timeline-item .timeline-marker.is-secondary-2.is-icon > i {
                        color: #fff !important
                    }

                .timeline .timeline-item .timeline-marker.is-secondary-2.is-outlined {
                    background-color: #fff !important;
                    border-color: #2d3238 !important
                }

                    .timeline .timeline-item .timeline-marker.is-secondary-2.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-secondary-2.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-secondary-2.is-outlined.is-icon > i {
                            color: #2d3238 !important
                        }

            .timeline .timeline-item .timeline-marker.is-secondary-3 {
                background-color: #363a3f !important;
                border-color: #363a3f !important
            }

                .timeline .timeline-item .timeline-marker.is-secondary-3 .image {
                    border-color: #363a3f !important
                }

                .timeline .timeline-item .timeline-marker.is-secondary-3.is-icon {
                    background-color: #363a3f !important;
                    border-color: #363a3f !important
                }

                    .timeline .timeline-item .timeline-marker.is-secondary-3.is-icon > i {
                        color: #fff !important
                    }

                .timeline .timeline-item .timeline-marker.is-secondary-3.is-outlined {
                    background-color: #fff !important;
                    border-color: #363a3f !important
                }

                    .timeline .timeline-item .timeline-marker.is-secondary-3.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-secondary-3.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-secondary-3.is-outlined.is-icon > i {
                            color: #363a3f !important
                        }

            .timeline .timeline-item .timeline-marker.is-secondary-4 {
                background-color: #414549 !important;
                border-color: #414549 !important
            }

                .timeline .timeline-item .timeline-marker.is-secondary-4 .image {
                    border-color: #414549 !important
                }

                .timeline .timeline-item .timeline-marker.is-secondary-4.is-icon {
                    background-color: #414549 !important;
                    border-color: #414549 !important
                }

                    .timeline .timeline-item .timeline-marker.is-secondary-4.is-icon > i {
                        color: #fff !important
                    }

                .timeline .timeline-item .timeline-marker.is-secondary-4.is-outlined {
                    background-color: #fff !important;
                    border-color: #414549 !important
                }

                    .timeline .timeline-item .timeline-marker.is-secondary-4.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-secondary-4.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-secondary-4.is-outlined.is-icon > i {
                            color: #414549 !important
                        }

            .timeline .timeline-item .timeline-marker.is-secondary-5 {
                background-color: #545659 !important;
                border-color: #545659 !important
            }

                .timeline .timeline-item .timeline-marker.is-secondary-5 .image {
                    border-color: #545659 !important
                }

                .timeline .timeline-item .timeline-marker.is-secondary-5.is-icon {
                    background-color: #545659 !important;
                    border-color: #545659 !important
                }

                    .timeline .timeline-item .timeline-marker.is-secondary-5.is-icon > i {
                        color: #fff !important
                    }

                .timeline .timeline-item .timeline-marker.is-secondary-5.is-outlined {
                    background-color: #fff !important;
                    border-color: #545659 !important
                }

                    .timeline .timeline-item .timeline-marker.is-secondary-5.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-secondary-5.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-secondary-5.is-outlined.is-icon > i {
                            color: #545659 !important
                        }

            .timeline .timeline-item .timeline-marker.is-tertiary {
                background-color: #a6a6a6 !important;
                border-color: #a6a6a6 !important
            }

                .timeline .timeline-item .timeline-marker.is-tertiary .image {
                    border-color: #a6a6a6 !important
                }

                .timeline .timeline-item .timeline-marker.is-tertiary.is-icon {
                    background-color: #a6a6a6 !important;
                    border-color: #a6a6a6 !important
                }

                    .timeline .timeline-item .timeline-marker.is-tertiary.is-icon > i {
                        color: #fff !important
                    }

                .timeline .timeline-item .timeline-marker.is-tertiary.is-outlined {
                    background-color: #fff !important;
                    border-color: #a6a6a6 !important
                }

                    .timeline .timeline-item .timeline-marker.is-tertiary.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-tertiary.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-tertiary.is-outlined.is-icon > i {
                            color: #a6a6a6 !important
                        }

            .timeline .timeline-item .timeline-marker.is-tertiary-2 {
                background-color: #d8d8d8 !important;
                border-color: #d8d8d8 !important
            }

                .timeline .timeline-item .timeline-marker.is-tertiary-2 .image {
                    border-color: #d8d8d8 !important
                }

                .timeline .timeline-item .timeline-marker.is-tertiary-2.is-icon {
                    background-color: #d8d8d8 !important;
                    border-color: #d8d8d8 !important
                }

                    .timeline .timeline-item .timeline-marker.is-tertiary-2.is-icon > i {
                        color: rgba(0,0,0,.7) !important
                    }

                .timeline .timeline-item .timeline-marker.is-tertiary-2.is-outlined {
                    background-color: #fff !important;
                    border-color: #d8d8d8 !important
                }

                    .timeline .timeline-item .timeline-marker.is-tertiary-2.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-tertiary-2.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-tertiary-2.is-outlined.is-icon > i {
                            color: #d8d8d8 !important
                        }

            .timeline .timeline-item .timeline-marker.is-tertiary-3 {
                background-color: #d7d6d3 !important;
                border-color: #d7d6d3 !important
            }

                .timeline .timeline-item .timeline-marker.is-tertiary-3 .image {
                    border-color: #d7d6d3 !important
                }

                .timeline .timeline-item .timeline-marker.is-tertiary-3.is-icon {
                    background-color: #d7d6d3 !important;
                    border-color: #d7d6d3 !important
                }

                    .timeline .timeline-item .timeline-marker.is-tertiary-3.is-icon > i {
                        color: rgba(0,0,0,.7) !important
                    }

                .timeline .timeline-item .timeline-marker.is-tertiary-3.is-outlined {
                    background-color: #fff !important;
                    border-color: #d7d6d3 !important
                }

                    .timeline .timeline-item .timeline-marker.is-tertiary-3.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-tertiary-3.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-tertiary-3.is-outlined.is-icon > i {
                            color: #d7d6d3 !important
                        }

            .timeline .timeline-item .timeline-marker.is-tertiary-4 {
                background-color: #afafaf !important;
                border-color: #afafaf !important
            }

                .timeline .timeline-item .timeline-marker.is-tertiary-4 .image {
                    border-color: #afafaf !important
                }

                .timeline .timeline-item .timeline-marker.is-tertiary-4.is-icon {
                    background-color: #afafaf !important;
                    border-color: #afafaf !important
                }

                    .timeline .timeline-item .timeline-marker.is-tertiary-4.is-icon > i {
                        color: #fff !important
                    }

                .timeline .timeline-item .timeline-marker.is-tertiary-4.is-outlined {
                    background-color: #fff !important;
                    border-color: #afafaf !important
                }

                    .timeline .timeline-item .timeline-marker.is-tertiary-4.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-tertiary-4.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-tertiary-4.is-outlined.is-icon > i {
                            color: #afafaf !important
                        }

            .timeline .timeline-item .timeline-marker.is-tertiary-5 {
                background-color: #eaeaea !important;
                border-color: #eaeaea !important
            }

                .timeline .timeline-item .timeline-marker.is-tertiary-5 .image {
                    border-color: #eaeaea !important
                }

                .timeline .timeline-item .timeline-marker.is-tertiary-5.is-icon {
                    background-color: #eaeaea !important;
                    border-color: #eaeaea !important
                }

                    .timeline .timeline-item .timeline-marker.is-tertiary-5.is-icon > i {
                        color: rgba(0,0,0,.7) !important
                    }

                .timeline .timeline-item .timeline-marker.is-tertiary-5.is-outlined {
                    background-color: #fff !important;
                    border-color: #eaeaea !important
                }

                    .timeline .timeline-item .timeline-marker.is-tertiary-5.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-tertiary-5.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-tertiary-5.is-outlined.is-icon > i {
                            color: #eaeaea !important
                        }

            .timeline .timeline-item .timeline-marker.is-tertiary-6 {
                background-color: #b0b0b0 !important;
                border-color: #b0b0b0 !important
            }

                .timeline .timeline-item .timeline-marker.is-tertiary-6 .image {
                    border-color: #b0b0b0 !important
                }

                .timeline .timeline-item .timeline-marker.is-tertiary-6.is-icon {
                    background-color: #b0b0b0 !important;
                    border-color: #b0b0b0 !important
                }

                    .timeline .timeline-item .timeline-marker.is-tertiary-6.is-icon > i {
                        color: #fff !important
                    }

                .timeline .timeline-item .timeline-marker.is-tertiary-6.is-outlined {
                    background-color: #fff !important;
                    border-color: #b0b0b0 !important
                }

                    .timeline .timeline-item .timeline-marker.is-tertiary-6.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-tertiary-6.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-tertiary-6.is-outlined.is-icon > i {
                            color: #b0b0b0 !important
                        }

            .timeline .timeline-item .timeline-marker.is-tertiary-7 {
                background-color: #969696 !important;
                border-color: #969696 !important
            }

                .timeline .timeline-item .timeline-marker.is-tertiary-7 .image {
                    border-color: #969696 !important
                }

                .timeline .timeline-item .timeline-marker.is-tertiary-7.is-icon {
                    background-color: #969696 !important;
                    border-color: #969696 !important
                }

                    .timeline .timeline-item .timeline-marker.is-tertiary-7.is-icon > i {
                        color: #fff !important
                    }

                .timeline .timeline-item .timeline-marker.is-tertiary-7.is-outlined {
                    background-color: #fff !important;
                    border-color: #969696 !important
                }

                    .timeline .timeline-item .timeline-marker.is-tertiary-7.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-tertiary-7.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-tertiary-7.is-outlined.is-icon > i {
                            color: #969696 !important
                        }

            .timeline .timeline-item .timeline-marker.is-tertiary-8 {
                background-color: #999 !important;
                border-color: #999 !important
            }

                .timeline .timeline-item .timeline-marker.is-tertiary-8 .image {
                    border-color: #999 !important
                }

                .timeline .timeline-item .timeline-marker.is-tertiary-8.is-icon {
                    background-color: #999 !important;
                    border-color: #999 !important
                }

                    .timeline .timeline-item .timeline-marker.is-tertiary-8.is-icon > i {
                        color: #fff !important
                    }

                .timeline .timeline-item .timeline-marker.is-tertiary-8.is-outlined {
                    background-color: #fff !important;
                    border-color: #999 !important
                }

                    .timeline .timeline-item .timeline-marker.is-tertiary-8.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-tertiary-8.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-tertiary-8.is-outlined.is-icon > i {
                            color: #999 !important
                        }

            .timeline .timeline-item .timeline-marker.is-tertiary-9 {
                background-color: #f5f5f5 !important;
                border-color: #f5f5f5 !important
            }

                .timeline .timeline-item .timeline-marker.is-tertiary-9 .image {
                    border-color: #f5f5f5 !important
                }

                .timeline .timeline-item .timeline-marker.is-tertiary-9.is-icon {
                    background-color: #f5f5f5 !important;
                    border-color: #f5f5f5 !important
                }

                    .timeline .timeline-item .timeline-marker.is-tertiary-9.is-icon > i {
                        color: rgba(0,0,0,.7) !important
                    }

                .timeline .timeline-item .timeline-marker.is-tertiary-9.is-outlined {
                    background-color: #fff !important;
                    border-color: #f5f5f5 !important
                }

                    .timeline .timeline-item .timeline-marker.is-tertiary-9.is-outlined .image {
                        background-color: #fff !important
                    }

                    .timeline .timeline-item .timeline-marker.is-tertiary-9.is-outlined.is-icon {
                        background-color: #fff !important
                    }

                        .timeline .timeline-item .timeline-marker.is-tertiary-9.is-outlined.is-icon > i {
                            color: #f5f5f5 !important
                        }

        .timeline .timeline-item .timeline-content {
            padding: 1em 0 0 .5em;
            padding: 1em 0 0 2em
        }

            .timeline .timeline-item .timeline-content .heading {
                font-weight: 600
            }

        .timeline .timeline-item.is-white::before {
            background-color: #fff
        }

        .timeline .timeline-item.is-black::before {
            background-color: #0a0a0a
        }

        .timeline .timeline-item.is-light::before {
            background-color: #f5f5f5
        }

        .timeline .timeline-item.is-dark::before {
            background-color: #363636
        }

        .timeline .timeline-item.is-primary::before {
            background-color: #9fbf43
        }

        .timeline .timeline-item.is-link::before {
            background-color: #9fbf43
        }

        .timeline .timeline-item.is-info::before {
            background-color: #209cee
        }

        .timeline .timeline-item.is-success::before {
            background-color: #23d160
        }

        .timeline .timeline-item.is-warning::before {
            background-color: #ffdd57
        }

        .timeline .timeline-item.is-danger::before {
            background-color: #ff3860
        }

        .timeline .timeline-item.is-primary-2::before {
            background-color: #fa622f
        }

        .timeline .timeline-item.is-primary-3::before {
            background-color: #e65322
        }

        .timeline .timeline-item.is-primary-4::before {
            background-color: #e85c2d
        }

        .timeline .timeline-item.is-primary-5::before {
            background-color: #e35728
        }

        .timeline .timeline-item.is-primary-6::before {
            background-color: #e95220
        }

        .timeline .timeline-item.is-primary-7::before {
            background-color: #fafafa
        }

        .timeline .timeline-item.is-primary-light::before {
            background-color: #f9f9f9
        }

        .timeline .timeline-item.is-secondary::before {
            background-color: #22262a
        }

        .timeline .timeline-item.is-secondary-2::before {
            background-color: #2d3238
        }

        .timeline .timeline-item.is-secondary-3::before {
            background-color: #363a3f
        }

        .timeline .timeline-item.is-secondary-4::before {
            background-color: #414549
        }

        .timeline .timeline-item.is-secondary-5::before {
            background-color: #545659
        }

        .timeline .timeline-item.is-tertiary::before {
            background-color: #a6a6a6
        }

        .timeline .timeline-item.is-tertiary-2::before {
            background-color: #d8d8d8
        }

        .timeline .timeline-item.is-tertiary-3::before {
            background-color: #d7d6d3
        }

        .timeline .timeline-item.is-tertiary-4::before {
            background-color: #afafaf
        }

        .timeline .timeline-item.is-tertiary-5::before {
            background-color: #eaeaea
        }

        .timeline .timeline-item.is-tertiary-6::before {
            background-color: #b0b0b0
        }

        .timeline .timeline-item.is-tertiary-7::before {
            background-color: #969696
        }

        .timeline .timeline-item.is-tertiary-8::before {
            background-color: #999
        }

        .timeline .timeline-item.is-tertiary-9::before {
            background-color: #f5f5f5
        }

    .timeline.is-centered .timeline-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -ms-flex-item-align: center;
        align-self: center
    }

    .timeline.is-centered .timeline-item {
        width: 50%;
        -ms-flex-item-align: end;
        align-self: flex-end
    }

        .timeline.is-centered .timeline-item:nth-of-type(2n) {
            -ms-flex-item-align: start;
            align-self: flex-start;
            margin-left: 0;
            margin-right: 2em
        }

            .timeline.is-centered .timeline-item:nth-of-type(2n)::before {
                right: -.1em;
                left: auto
            }

            .timeline.is-centered .timeline-item:nth-of-type(2n) .timeline-marker {
                left: auto;
                right: -.45em
            }

                .timeline.is-centered .timeline-item:nth-of-type(2n) .timeline-marker.is-image.is-16x16 {
                    left: auto;
                    right: -8px
                }

                .timeline.is-centered .timeline-item:nth-of-type(2n) .timeline-marker.is-image.is-24x24 {
                    left: auto;
                    right: -12px
                }

                .timeline.is-centered .timeline-item:nth-of-type(2n) .timeline-marker.is-image.is-32x32 {
                    left: auto;
                    right: -16px
                }

                .timeline.is-centered .timeline-item:nth-of-type(2n) .timeline-marker.is-image.is-48x48 {
                    left: auto;
                    right: -24px
                }

                .timeline.is-centered .timeline-item:nth-of-type(2n) .timeline-marker.is-image.is-64x64 {
                    left: auto;
                    right: -32px
                }

                .timeline.is-centered .timeline-item:nth-of-type(2n) .timeline-marker.is-image.is-96x96 {
                    left: auto;
                    right: -48px
                }

                .timeline.is-centered .timeline-item:nth-of-type(2n) .timeline-marker.is-image.is-128x128 {
                    left: auto;
                    right: -64px
                }

                .timeline.is-centered .timeline-item:nth-of-type(2n) .timeline-marker.is-icon {
                    left: auto;
                    right: -.8em
                }

            .timeline.is-centered .timeline-item:nth-of-type(2n) .timeline-content {
                padding: 1em 2em 0 0;
                text-align: right;
                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-align: end;
                -ms-flex-align: end;
                align-items: flex-end;
                -ms-flex-preferred-size: 100%;
                flex-basis: 100%
            }

        .timeline.is-centered .timeline-item:nth-of-type(2n+1)::before {
            content: "";
            background-color: #dbdbdb;
            display: block;
            width: .1em;
            height: 100%;
            position: absolute;
            top: 0
        }

        .timeline.is-centered .timeline-item.is-white::before {
            background-color: #fff
        }

        .timeline.is-centered .timeline-item.is-black::before {
            background-color: #0a0a0a
        }

        .timeline.is-centered .timeline-item.is-light::before {
            background-color: #f5f5f5
        }

        .timeline.is-centered .timeline-item.is-dark::before {
            background-color: #363636
        }

        .timeline.is-centered .timeline-item.is-primary::before {
            background-color: #9fbf43
        }

        .timeline.is-centered .timeline-item.is-link::before {
            background-color: #9fbf43
        }

        .timeline.is-centered .timeline-item.is-info::before {
            background-color: #209cee
        }

        .timeline.is-centered .timeline-item.is-success::before {
            background-color: #23d160
        }

        .timeline.is-centered .timeline-item.is-warning::before {
            background-color: #ffdd57
        }

        .timeline.is-centered .timeline-item.is-danger::before {
            background-color: #ff3860
        }

        .timeline.is-centered .timeline-item.is-primary-2::before {
            background-color: #fa622f
        }

        .timeline.is-centered .timeline-item.is-primary-3::before {
            background-color: #e65322
        }

        .timeline.is-centered .timeline-item.is-primary-4::before {
            background-color: #e85c2d
        }

        .timeline.is-centered .timeline-item.is-primary-5::before {
            background-color: #e35728
        }

        .timeline.is-centered .timeline-item.is-primary-6::before {
            background-color: #e95220
        }

        .timeline.is-centered .timeline-item.is-primary-7::before {
            background-color: #fafafa
        }

        .timeline.is-centered .timeline-item.is-primary-light::before {
            background-color: #f9f9f9
        }

        .timeline.is-centered .timeline-item.is-secondary::before {
            background-color: #22262a
        }

        .timeline.is-centered .timeline-item.is-secondary-2::before {
            background-color: #2d3238
        }

        .timeline.is-centered .timeline-item.is-secondary-3::before {
            background-color: #363a3f
        }

        .timeline.is-centered .timeline-item.is-secondary-4::before {
            background-color: #414549
        }

        .timeline.is-centered .timeline-item.is-secondary-5::before {
            background-color: #545659
        }

        .timeline.is-centered .timeline-item.is-tertiary::before {
            background-color: #a6a6a6
        }

        .timeline.is-centered .timeline-item.is-tertiary-2::before {
            background-color: #d8d8d8
        }

        .timeline.is-centered .timeline-item.is-tertiary-3::before {
            background-color: #d7d6d3
        }

        .timeline.is-centered .timeline-item.is-tertiary-4::before {
            background-color: #afafaf
        }

        .timeline.is-centered .timeline-item.is-tertiary-5::before {
            background-color: #eaeaea
        }

        .timeline.is-centered .timeline-item.is-tertiary-6::before {
            background-color: #b0b0b0
        }

        .timeline.is-centered .timeline-item.is-tertiary-7::before {
            background-color: #969696
        }

        .timeline.is-centered .timeline-item.is-tertiary-8::before {
            background-color: #999
        }

        .timeline.is-centered .timeline-item.is-tertiary-9::before {
            background-color: #f5f5f5
        }

    .timeline.is-rtl {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }

        .timeline.is-rtl .timeline-item {
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
            border-left: none;
            margin-left: 0;
            margin-right: 2em
        }

            .timeline.is-rtl .timeline-item::before {
                right: 0;
                left: auto
            }

            .timeline.is-rtl .timeline-item .timeline-marker {
                left: auto;
                right: -.35em
            }

                .timeline.is-rtl .timeline-item .timeline-marker.is-image.is-16x16 {
                    left: auto;
                    right: -8px
                }

                .timeline.is-rtl .timeline-item .timeline-marker.is-image.is-24x24 {
                    left: auto;
                    right: -12px
                }

                .timeline.is-rtl .timeline-item .timeline-marker.is-image.is-32x32 {
                    left: auto;
                    right: -16px
                }

                .timeline.is-rtl .timeline-item .timeline-marker.is-image.is-48x48 {
                    left: auto;
                    right: -24px
                }

                .timeline.is-rtl .timeline-item .timeline-marker.is-image.is-64x64 {
                    left: auto;
                    right: -32px
                }

                .timeline.is-rtl .timeline-item .timeline-marker.is-image.is-96x96 {
                    left: auto;
                    right: -48px
                }

                .timeline.is-rtl .timeline-item .timeline-marker.is-image.is-128x128 {
                    left: auto;
                    right: -64px
                }

                .timeline.is-rtl .timeline-item .timeline-marker.is-icon {
                    left: auto;
                    right: -.7em
                }

            .timeline.is-rtl .timeline-item .timeline-content {
                padding: 1em 2em 0 0;
                text-align: right
            }

.quickview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    max-width: calc(100% - 50px);
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 35;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: .3s ease;
    transition: .3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
    will-change: transform
}

    .quickview.is-marginless {
        max-width: 100%
    }

@media screen and (max-width:768px) {
    .quickview {
        width: 100%;
        right: -100%
    }
}

@media screen and (min-width:769px),print {
    .quickview {
        width: 50%;
        right: -50%
    }
}

@media screen and (min-width:1088px) {
    .quickview {
        width: 35%;
        right: -35%
    }
}

@media screen and (min-width:1280px) {
    .quickview {
        width: 30%;
        right: -30%
    }
}

@media screen and (min-width:1472px) {
    .quickview {
        width: 25%;
        right: -25%
    }
}

@media screen and (max-width:768px) {
    .quickview.is-left {
        left: -100%
    }
}

@media screen and (min-width:769px),print {
    .quickview.is-left {
        left: -50%
    }
}

@media screen and (min-width:1088px) {
    .quickview.is-left {
        left: -35%
    }
}

@media screen and (min-width:1280px) {
    .quickview.is-left {
        left: -30%
    }
}

@media screen and (min-width:1472px) {
    .quickview.is-left {
        left: -25%
    }
}

.quickview.is-active {
    right: 0;
    -webkit-box-shadow: 5px 0 13px 3px rgba(0,0,0,.1);
    box-shadow: 5px 0 13px 3px rgba(0,0,0,.1)
}

    .quickview.is-active.is-left {
        left: 0
    }

.quickview-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 1rem;
    min-height: 3.25em !important;
    border-bottom: 1px solid #f0f0f0
}

    .quickview-header.is-white {
        background-color: #fff
    }

        .quickview-header.is-white .title {
            color: #0a0a0a
        }

    .quickview-header.is-black {
        background-color: #0a0a0a
    }

        .quickview-header.is-black .title {
            color: #fff
        }

    .quickview-header.is-light {
        background-color: #f5f5f5
    }

        .quickview-header.is-light .title {
            color: #363636
        }

    .quickview-header.is-dark {
        background-color: #363636
    }

        .quickview-header.is-dark .title {
            color: #f5f5f5
        }

    .quickview-header.is-primary {
        background-color: #9fbf43
    }

        .quickview-header.is-primary .title {
            color: #fff
        }

    .quickview-header.is-link {
        background-color: #9fbf43
    }

        .quickview-header.is-link .title {
            color: #fff
        }

    .quickview-header.is-info {
        background-color: #209cee
    }

        .quickview-header.is-info .title {
            color: #fff
        }

    .quickview-header.is-success {
        background-color: #23d160
    }

        .quickview-header.is-success .title {
            color: #fff
        }

    .quickview-header.is-warning {
        background-color: #ffdd57
    }

        .quickview-header.is-warning .title {
            color: rgba(0,0,0,.7)
        }

    .quickview-header.is-danger {
        background-color: #ff3860
    }

        .quickview-header.is-danger .title {
            color: #fff
        }

    .quickview-header.is-primary-2 {
        background-color: #fa622f
    }

        .quickview-header.is-primary-2 .title {
            color: #fff
        }

    .quickview-header.is-primary-3 {
        background-color: #e65322
    }

        .quickview-header.is-primary-3 .title {
            color: #fff
        }

    .quickview-header.is-primary-4 {
        background-color: #e85c2d
    }

        .quickview-header.is-primary-4 .title {
            color: #fff
        }

    .quickview-header.is-primary-5 {
        background-color: #e35728
    }

        .quickview-header.is-primary-5 .title {
            color: #fff
        }

    .quickview-header.is-primary-6 {
        background-color: #e95220
    }

        .quickview-header.is-primary-6 .title {
            color: #fff
        }

    .quickview-header.is-primary-7 {
        background-color: #fafafa
    }

        .quickview-header.is-primary-7 .title {
            color: rgba(0,0,0,.7)
        }

    .quickview-header.is-primary-light {
        background-color: #f9f9f9
    }

        .quickview-header.is-primary-light .title {
            color: rgba(0,0,0,.7)
        }

    .quickview-header.is-secondary {
        background-color: #22262a
    }

        .quickview-header.is-secondary .title {
            color: #fff
        }

    .quickview-header.is-secondary-2 {
        background-color: #2d3238
    }

        .quickview-header.is-secondary-2 .title {
            color: #fff
        }

    .quickview-header.is-secondary-3 {
        background-color: #363a3f
    }

        .quickview-header.is-secondary-3 .title {
            color: #fff
        }

    .quickview-header.is-secondary-4 {
        background-color: #414549
    }

        .quickview-header.is-secondary-4 .title {
            color: #fff
        }

    .quickview-header.is-secondary-5 {
        background-color: #545659
    }

        .quickview-header.is-secondary-5 .title {
            color: #fff
        }

    .quickview-header.is-tertiary {
        background-color: #a6a6a6
    }

        .quickview-header.is-tertiary .title {
            color: #fff
        }

    .quickview-header.is-tertiary-2 {
        background-color: #d8d8d8
    }

        .quickview-header.is-tertiary-2 .title {
            color: rgba(0,0,0,.7)
        }

    .quickview-header.is-tertiary-3 {
        background-color: #d7d6d3
    }

        .quickview-header.is-tertiary-3 .title {
            color: rgba(0,0,0,.7)
        }

    .quickview-header.is-tertiary-4 {
        background-color: #afafaf
    }

        .quickview-header.is-tertiary-4 .title {
            color: #fff
        }

    .quickview-header.is-tertiary-5 {
        background-color: #eaeaea
    }

        .quickview-header.is-tertiary-5 .title {
            color: rgba(0,0,0,.7)
        }

    .quickview-header.is-tertiary-6 {
        background-color: #b0b0b0
    }

        .quickview-header.is-tertiary-6 .title {
            color: #fff
        }

    .quickview-header.is-tertiary-7 {
        background-color: #969696
    }

        .quickview-header.is-tertiary-7 .title {
            color: #fff
        }

    .quickview-header.is-tertiary-8 {
        background-color: #999
    }

        .quickview-header.is-tertiary-8 .title {
            color: #fff
        }

    .quickview-header.is-tertiary-9 {
        background-color: #f5f5f5
    }

        .quickview-header.is-tertiary-9 .title {
            color: rgba(0,0,0,.7)
        }

    .quickview-header .title {
        font-size: 1rem;
        font-weight: 300;
        margin-bottom: 0
    }

        .quickview-header .title img {
            max-height: 2em
        }

.quickview-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
    overflow-y: auto
}

.quickview-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 1rem;
    min-height: 4rem;
    background-color: #f5f5f5;
    border-top: 1px solid #f0f0f0
}

    .quickview-footer > * {
        margin: 0 .4rem
    }

input[type=range].slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 1rem 0;
    background: 0 0
}

    input[type=range].slider.is-fullwidth {
        display: block;
        width: 100%
    }

    input[type=range].slider:focus {
        outline: 0
    }

    input[type=range].slider:not([orient=vertical])::-webkit-slider-runnable-track {
        width: 100%
    }

    input[type=range].slider:not([orient=vertical])::-moz-range-track {
        width: 100%
    }

    input[type=range].slider:not([orient=vertical])::-ms-track {
        width: 100%
    }

    input[type=range].slider:not([orient=vertical]).has-output + output, input[type=range].slider:not([orient=vertical]).has-output-tooltip + output {
        width: 3rem;
        background: #4a4a4a;
        border-radius: 4px;
        padding: .4rem .8rem;
        font-size: .75rem;
        line-height: .75rem;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #fff;
        overflow: hidden;
        pointer-events: none;
        z-index: 200
    }

    input[type=range].slider:not([orient=vertical]).has-output {
        display: inline-block;
        width: calc(100% - (4.2rem))
    }

        input[type=range].slider:not([orient=vertical]).has-output + output {
            display: inline-block;
            position: relative;
            margin-left: .75rem;
            top: -.75rem
        }

    input[type=range].slider:not([orient=vertical]).has-output-tooltip {
        display: block
    }

        input[type=range].slider:not([orient=vertical]).has-output-tooltip + output {
            position: absolute;
            left: 0;
            top: -.1rem
        }

    input[type=range].slider[orient=vertical] {
        -webkit-appearance: slider-vertical;
        -webkit-writing-mode: bt-lr;
        -ms-writing-mode: bt-lr;
        writing-mode: bt-lr
    }

        input[type=range].slider[orient=vertical]::-webkit-slider-runnable-track {
            height: 100%
        }

        input[type=range].slider[orient=vertical]::-moz-range-track {
            height: 100%
        }

        input[type=range].slider[orient=vertical]::-ms-track {
            height: 100%
        }

    input[type=range].slider::-webkit-slider-runnable-track {
        cursor: pointer;
        animate: .2s;
        -webkit-box-shadow: 0 0 0 #7a7a7a;
        box-shadow: 0 0 0 #7a7a7a;
        background: #dbdbdb;
        border-radius: 4px;
        border: 0 solid #7a7a7a
    }

    input[type=range].slider::-moz-range-track {
        cursor: pointer;
        animate: .2s;
        box-shadow: 0 0 0 #7a7a7a;
        background: #dbdbdb;
        border-radius: 4px;
        border: 0 solid #7a7a7a
    }

    input[type=range].slider::-ms-track {
        cursor: pointer;
        animate: .2s;
        box-shadow: 0 0 0 #7a7a7a;
        background: #dbdbdb;
        border-radius: 4px;
        border: 0 solid #7a7a7a
    }

    input[type=range].slider::-ms-fill-lower {
        background: #9fbf43
    }

    input[type=range].slider::-ms-fill-upper {
        background: #dbdbdb
    }

    input[type=range].slider::-webkit-slider-thumb {
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 1px solid #b5b5b5;
        border-radius: 4px;
        background: #fff;
        cursor: pointer;
        -webkit-appearance: none;
        transition: transform .2s ease,-webkit-transform .2s ease;
        -webkit-transition: -webkit-transform .2s ease;
        transition: transform .2s ease;
        transition: -webkit-transform .2s ease
    }

    input[type=range].slider::-moz-range-thumb {
        box-shadow: none;
        border: 1px solid #b5b5b5;
        background: #fff;
        border-radius: 4px;
        cursor: pointer;
        transition: transform .2s ease,-webkit-transform .2s ease;
        -webkit-transition: -webkit-transform .2s ease;
        transition: transform .2s ease;
        transition: -webkit-transform .2s ease
    }

    input[type=range].slider::-ms-thumb {
        box-shadow: none;
        border: 1px solid #b5b5b5;
        background: #fff;
        border-radius: 4px;
        cursor: pointer;
        transition: transform .2s ease,-webkit-transform .2s ease;
        -webkit-transition: -webkit-transform .2s ease;
        transition: transform .2s ease;
        transition: -webkit-transform .2s ease
    }

    input[type=range].slider::-webkit-slider-thumb {
        -webkit-appearance: none
    }

    input[type=range].slider.is-circle::-webkit-slider-thumb {
        border-radius: 50%
    }

    input[type=range].slider.is-circle::-moz-range-thumb {
        border-radius: 50%
    }

    input[type=range].slider.is-circle::-ms-thumb {
        border-radius: 50%
    }

    input[type=range].slider:active::-webkit-slider-thumb {
        -webkit-transform: scale(1.25);
        transform: scale(1.25)
    }

    input[type=range].slider:active::-moz-range-thumb {
        transform: scale(1.25)
    }

    input[type=range].slider:active::-ms-thumb {
        transform: scale(1.25)
    }

    input[type=range].slider:disabled {
        opacity: .5;
        cursor: not-allowed
    }

        input[type=range].slider:disabled::-webkit-slider-thumb {
            cursor: not-allowed;
            -webkit-transform: scale(1);
            transform: scale(1)
        }

        input[type=range].slider:disabled::-moz-range-thumb {
            cursor: not-allowed;
            transform: scale(1)
        }

        input[type=range].slider:disabled::-ms-thumb {
            cursor: not-allowed;
            transform: scale(1)
        }

    input[type=range].slider:not([orient=vertical])::-webkit-slider-runnable-track {
        height: .5rem
    }

    input[type=range].slider:not([orient=vertical])::-moz-range-track {
        height: .5rem
    }

    input[type=range].slider:not([orient=vertical])::-ms-track {
        height: .5rem
    }

    input[type=range].slider[orient=vertical]::-webkit-slider-runnable-track {
        width: .5rem
    }

    input[type=range].slider[orient=vertical]::-moz-range-track {
        width: .5rem
    }

    input[type=range].slider[orient=vertical]::-ms-track {
        width: .5rem
    }

    input[type=range].slider::-webkit-slider-thumb {
        height: 1rem;
        width: 1rem;
        margin-top: -.25rem
    }

    input[type=range].slider::-moz-range-thumb {
        height: 1rem;
        width: 1rem
    }

    input[type=range].slider::-ms-thumb {
        height: 1rem;
        width: 1rem
    }

    input[type=range].slider[orient=vertical]::-webkit-slider-thumb {
        margin-top: auto;
        margin-left: -.25rem
    }

    input[type=range].slider.is-small:not([orient=vertical])::-webkit-slider-runnable-track {
        height: .375rem
    }

    input[type=range].slider.is-small:not([orient=vertical])::-moz-range-track {
        height: .375rem
    }

    input[type=range].slider.is-small:not([orient=vertical])::-ms-track {
        height: .375rem
    }

    input[type=range].slider.is-small[orient=vertical]::-webkit-slider-runnable-track {
        width: .375rem
    }

    input[type=range].slider.is-small[orient=vertical]::-moz-range-track {
        width: .375rem
    }

    input[type=range].slider.is-small[orient=vertical]::-ms-track {
        width: .375rem
    }

    input[type=range].slider.is-small::-webkit-slider-thumb {
        height: .75rem;
        width: .75rem;
        margin-top: -.1875rem
    }

    input[type=range].slider.is-small::-moz-range-thumb {
        height: .75rem;
        width: .75rem
    }

    input[type=range].slider.is-small::-ms-thumb {
        height: .75rem;
        width: .75rem
    }

    input[type=range].slider.is-small[orient=vertical]::-webkit-slider-thumb {
        margin-top: auto;
        margin-left: -.1875rem
    }

    input[type=range].slider.is-medium:not([orient=vertical])::-webkit-slider-runnable-track {
        height: .625rem
    }

    input[type=range].slider.is-medium:not([orient=vertical])::-moz-range-track {
        height: .625rem
    }

    input[type=range].slider.is-medium:not([orient=vertical])::-ms-track {
        height: .625rem
    }

    input[type=range].slider.is-medium[orient=vertical]::-webkit-slider-runnable-track {
        width: .625rem
    }

    input[type=range].slider.is-medium[orient=vertical]::-moz-range-track {
        width: .625rem
    }

    input[type=range].slider.is-medium[orient=vertical]::-ms-track {
        width: .625rem
    }

    input[type=range].slider.is-medium::-webkit-slider-thumb {
        height: 1.25rem;
        width: 1.25rem;
        margin-top: -.3125rem
    }

    input[type=range].slider.is-medium::-moz-range-thumb {
        height: 1.25rem;
        width: 1.25rem
    }

    input[type=range].slider.is-medium::-ms-thumb {
        height: 1.25rem;
        width: 1.25rem
    }

    input[type=range].slider.is-medium[orient=vertical]::-webkit-slider-thumb {
        margin-top: auto;
        margin-left: -.3125rem
    }

    input[type=range].slider.is-large:not([orient=vertical])::-webkit-slider-runnable-track {
        height: .75rem
    }

    input[type=range].slider.is-large:not([orient=vertical])::-moz-range-track {
        height: .75rem
    }

    input[type=range].slider.is-large:not([orient=vertical])::-ms-track {
        height: .75rem
    }

    input[type=range].slider.is-large[orient=vertical]::-webkit-slider-runnable-track {
        width: .75rem
    }

    input[type=range].slider.is-large[orient=vertical]::-moz-range-track {
        width: .75rem
    }

    input[type=range].slider.is-large[orient=vertical]::-ms-track {
        width: .75rem
    }

    input[type=range].slider.is-large::-webkit-slider-thumb {
        height: 1.5rem;
        width: 1.5rem;
        margin-top: -.375rem
    }

    input[type=range].slider.is-large::-moz-range-thumb {
        height: 1.5rem;
        width: 1.5rem
    }

    input[type=range].slider.is-large::-ms-thumb {
        height: 1.5rem;
        width: 1.5rem
    }

    input[type=range].slider.is-large[orient=vertical]::-webkit-slider-thumb {
        margin-top: auto;
        margin-left: -.375rem
    }

    input[type=range].slider.is-white::-moz-range-track {
        background: #fff
    }

    input[type=range].slider.is-white::-webkit-slider-runnable-track {
        background: #fff
    }

    input[type=range].slider.is-white::-ms-track {
        background: #fff !important
    }

    input[type=range].slider.is-white::-ms-fill-lower {
        background: #fff
    }

    input[type=range].slider.is-white .has-output-tooltip + output, input[type=range].slider.is-white.has-output + output {
        background-color: #fff;
        color: #0a0a0a
    }

    input[type=range].slider.is-black::-moz-range-track {
        background: #0a0a0a
    }

    input[type=range].slider.is-black::-webkit-slider-runnable-track {
        background: #0a0a0a
    }

    input[type=range].slider.is-black::-ms-track {
        background: #0a0a0a !important
    }

    input[type=range].slider.is-black::-ms-fill-lower {
        background: #0a0a0a
    }

    input[type=range].slider.is-black .has-output-tooltip + output, input[type=range].slider.is-black.has-output + output {
        background-color: #0a0a0a;
        color: #fff
    }

    input[type=range].slider.is-light::-moz-range-track {
        background: #f5f5f5
    }

    input[type=range].slider.is-light::-webkit-slider-runnable-track {
        background: #f5f5f5
    }

    input[type=range].slider.is-light::-ms-track {
        background: #f5f5f5 !important
    }

    input[type=range].slider.is-light::-ms-fill-lower {
        background: #f5f5f5
    }

    input[type=range].slider.is-light .has-output-tooltip + output, input[type=range].slider.is-light.has-output + output {
        background-color: #f5f5f5;
        color: #363636
    }

    input[type=range].slider.is-dark::-moz-range-track {
        background: #363636
    }

    input[type=range].slider.is-dark::-webkit-slider-runnable-track {
        background: #363636
    }

    input[type=range].slider.is-dark::-ms-track {
        background: #363636 !important
    }

    input[type=range].slider.is-dark::-ms-fill-lower {
        background: #363636
    }

    input[type=range].slider.is-dark .has-output-tooltip + output, input[type=range].slider.is-dark.has-output + output {
        background-color: #363636;
        color: #f5f5f5
    }

    input[type=range].slider.is-primary::-moz-range-track {
        background: #9fbf43
    }

    input[type=range].slider.is-primary::-webkit-slider-runnable-track {
        background: #9fbf43
    }

    input[type=range].slider.is-primary::-ms-track {
        background: #9fbf43 !important
    }

    input[type=range].slider.is-primary::-ms-fill-lower {
        background: #9fbf43
    }

    input[type=range].slider.is-primary .has-output-tooltip + output, input[type=range].slider.is-primary.has-output + output {
        background-color: #9fbf43;
        color: #fff
    }

    input[type=range].slider.is-link::-moz-range-track {
        background: #9fbf43
    }

    input[type=range].slider.is-link::-webkit-slider-runnable-track {
        background: #9fbf43
    }

    input[type=range].slider.is-link::-ms-track {
        background: #9fbf43 !important
    }

    input[type=range].slider.is-link::-ms-fill-lower {
        background: #9fbf43
    }

    input[type=range].slider.is-link .has-output-tooltip + output, input[type=range].slider.is-link.has-output + output {
        background-color: #9fbf43;
        color: #fff
    }

    input[type=range].slider.is-info::-moz-range-track {
        background: #209cee
    }

    input[type=range].slider.is-info::-webkit-slider-runnable-track {
        background: #209cee
    }

    input[type=range].slider.is-info::-ms-track {
        background: #209cee !important
    }

    input[type=range].slider.is-info::-ms-fill-lower {
        background: #209cee
    }

    input[type=range].slider.is-info .has-output-tooltip + output, input[type=range].slider.is-info.has-output + output {
        background-color: #209cee;
        color: #fff
    }

    input[type=range].slider.is-success::-moz-range-track {
        background: #23d160
    }

    input[type=range].slider.is-success::-webkit-slider-runnable-track {
        background: #23d160
    }

    input[type=range].slider.is-success::-ms-track {
        background: #23d160 !important
    }

    input[type=range].slider.is-success::-ms-fill-lower {
        background: #23d160
    }

    input[type=range].slider.is-success .has-output-tooltip + output, input[type=range].slider.is-success.has-output + output {
        background-color: #23d160;
        color: #fff
    }

    input[type=range].slider.is-warning::-moz-range-track {
        background: #ffdd57
    }

    input[type=range].slider.is-warning::-webkit-slider-runnable-track {
        background: #ffdd57
    }

    input[type=range].slider.is-warning::-ms-track {
        background: #ffdd57 !important
    }

    input[type=range].slider.is-warning::-ms-fill-lower {
        background: #ffdd57
    }

    input[type=range].slider.is-warning .has-output-tooltip + output, input[type=range].slider.is-warning.has-output + output {
        background-color: #ffdd57;
        color: rgba(0,0,0,.7)
    }

    input[type=range].slider.is-danger::-moz-range-track {
        background: #ff3860
    }

    input[type=range].slider.is-danger::-webkit-slider-runnable-track {
        background: #ff3860
    }

    input[type=range].slider.is-danger::-ms-track {
        background: #ff3860 !important
    }

    input[type=range].slider.is-danger::-ms-fill-lower {
        background: #ff3860
    }

    input[type=range].slider.is-danger .has-output-tooltip + output, input[type=range].slider.is-danger.has-output + output {
        background-color: #ff3860;
        color: #fff
    }

    input[type=range].slider.is-primary-2::-moz-range-track {
        background: #fa622f
    }

    input[type=range].slider.is-primary-2::-webkit-slider-runnable-track {
        background: #fa622f
    }

    input[type=range].slider.is-primary-2::-ms-track {
        background: #fa622f !important
    }

    input[type=range].slider.is-primary-2::-ms-fill-lower {
        background: #fa622f
    }

    input[type=range].slider.is-primary-2 .has-output-tooltip + output, input[type=range].slider.is-primary-2.has-output + output {
        background-color: #fa622f;
        color: #fff
    }

    input[type=range].slider.is-primary-3::-moz-range-track {
        background: #e65322
    }

    input[type=range].slider.is-primary-3::-webkit-slider-runnable-track {
        background: #e65322
    }

    input[type=range].slider.is-primary-3::-ms-track {
        background: #e65322 !important
    }

    input[type=range].slider.is-primary-3::-ms-fill-lower {
        background: #e65322
    }

    input[type=range].slider.is-primary-3 .has-output-tooltip + output, input[type=range].slider.is-primary-3.has-output + output {
        background-color: #e65322;
        color: #fff
    }

    input[type=range].slider.is-primary-4::-moz-range-track {
        background: #e85c2d
    }

    input[type=range].slider.is-primary-4::-webkit-slider-runnable-track {
        background: #e85c2d
    }

    input[type=range].slider.is-primary-4::-ms-track {
        background: #e85c2d !important
    }

    input[type=range].slider.is-primary-4::-ms-fill-lower {
        background: #e85c2d
    }

    input[type=range].slider.is-primary-4 .has-output-tooltip + output, input[type=range].slider.is-primary-4.has-output + output {
        background-color: #e85c2d;
        color: #fff
    }

    input[type=range].slider.is-primary-5::-moz-range-track {
        background: #e35728
    }

    input[type=range].slider.is-primary-5::-webkit-slider-runnable-track {
        background: #e35728
    }

    input[type=range].slider.is-primary-5::-ms-track {
        background: #e35728 !important
    }

    input[type=range].slider.is-primary-5::-ms-fill-lower {
        background: #e35728
    }

    input[type=range].slider.is-primary-5 .has-output-tooltip + output, input[type=range].slider.is-primary-5.has-output + output {
        background-color: #e35728;
        color: #fff
    }

    input[type=range].slider.is-primary-6::-moz-range-track {
        background: #e95220
    }

    input[type=range].slider.is-primary-6::-webkit-slider-runnable-track {
        background: #e95220
    }

    input[type=range].slider.is-primary-6::-ms-track {
        background: #e95220 !important
    }

    input[type=range].slider.is-primary-6::-ms-fill-lower {
        background: #e95220
    }

    input[type=range].slider.is-primary-6 .has-output-tooltip + output, input[type=range].slider.is-primary-6.has-output + output {
        background-color: #e95220;
        color: #fff
    }

    input[type=range].slider.is-primary-7::-moz-range-track {
        background: #fafafa
    }

    input[type=range].slider.is-primary-7::-webkit-slider-runnable-track {
        background: #fafafa
    }

    input[type=range].slider.is-primary-7::-ms-track {
        background: #fafafa !important
    }

    input[type=range].slider.is-primary-7::-ms-fill-lower {
        background: #fafafa
    }

    input[type=range].slider.is-primary-7 .has-output-tooltip + output, input[type=range].slider.is-primary-7.has-output + output {
        background-color: #fafafa;
        color: rgba(0,0,0,.7)
    }

    input[type=range].slider.is-primary-light::-moz-range-track {
        background: #f9f9f9
    }

    input[type=range].slider.is-primary-light::-webkit-slider-runnable-track {
        background: #f9f9f9
    }

    input[type=range].slider.is-primary-light::-ms-track {
        background: #f9f9f9 !important
    }

    input[type=range].slider.is-primary-light::-ms-fill-lower {
        background: #f9f9f9
    }

    input[type=range].slider.is-primary-light .has-output-tooltip + output, input[type=range].slider.is-primary-light.has-output + output {
        background-color: #f9f9f9;
        color: rgba(0,0,0,.7)
    }

    input[type=range].slider.is-secondary::-moz-range-track {
        background: #22262a
    }

    input[type=range].slider.is-secondary::-webkit-slider-runnable-track {
        background: #22262a
    }

    input[type=range].slider.is-secondary::-ms-track {
        background: #22262a !important
    }

    input[type=range].slider.is-secondary::-ms-fill-lower {
        background: #22262a
    }

    input[type=range].slider.is-secondary .has-output-tooltip + output, input[type=range].slider.is-secondary.has-output + output {
        background-color: #22262a;
        color: #fff
    }

    input[type=range].slider.is-secondary-2::-moz-range-track {
        background: #2d3238
    }

    input[type=range].slider.is-secondary-2::-webkit-slider-runnable-track {
        background: #2d3238
    }

    input[type=range].slider.is-secondary-2::-ms-track {
        background: #2d3238 !important
    }

    input[type=range].slider.is-secondary-2::-ms-fill-lower {
        background: #2d3238
    }

    input[type=range].slider.is-secondary-2 .has-output-tooltip + output, input[type=range].slider.is-secondary-2.has-output + output {
        background-color: #2d3238;
        color: #fff
    }

    input[type=range].slider.is-secondary-3::-moz-range-track {
        background: #363a3f
    }

    input[type=range].slider.is-secondary-3::-webkit-slider-runnable-track {
        background: #363a3f
    }

    input[type=range].slider.is-secondary-3::-ms-track {
        background: #363a3f !important
    }

    input[type=range].slider.is-secondary-3::-ms-fill-lower {
        background: #363a3f
    }

    input[type=range].slider.is-secondary-3 .has-output-tooltip + output, input[type=range].slider.is-secondary-3.has-output + output {
        background-color: #363a3f;
        color: #fff
    }

    input[type=range].slider.is-secondary-4::-moz-range-track {
        background: #414549
    }

    input[type=range].slider.is-secondary-4::-webkit-slider-runnable-track {
        background: #414549
    }

    input[type=range].slider.is-secondary-4::-ms-track {
        background: #414549 !important
    }

    input[type=range].slider.is-secondary-4::-ms-fill-lower {
        background: #414549
    }

    input[type=range].slider.is-secondary-4 .has-output-tooltip + output, input[type=range].slider.is-secondary-4.has-output + output {
        background-color: #414549;
        color: #fff
    }

    input[type=range].slider.is-secondary-5::-moz-range-track {
        background: #545659
    }

    input[type=range].slider.is-secondary-5::-webkit-slider-runnable-track {
        background: #545659
    }

    input[type=range].slider.is-secondary-5::-ms-track {
        background: #545659 !important
    }

    input[type=range].slider.is-secondary-5::-ms-fill-lower {
        background: #545659
    }

    input[type=range].slider.is-secondary-5 .has-output-tooltip + output, input[type=range].slider.is-secondary-5.has-output + output {
        background-color: #545659;
        color: #fff
    }

    input[type=range].slider.is-tertiary::-moz-range-track {
        background: #a6a6a6
    }

    input[type=range].slider.is-tertiary::-webkit-slider-runnable-track {
        background: #a6a6a6
    }

    input[type=range].slider.is-tertiary::-ms-track {
        background: #a6a6a6 !important
    }

    input[type=range].slider.is-tertiary::-ms-fill-lower {
        background: #a6a6a6
    }

    input[type=range].slider.is-tertiary .has-output-tooltip + output, input[type=range].slider.is-tertiary.has-output + output {
        background-color: #a6a6a6;
        color: #fff
    }

    input[type=range].slider.is-tertiary-2::-moz-range-track {
        background: #d8d8d8
    }

    input[type=range].slider.is-tertiary-2::-webkit-slider-runnable-track {
        background: #d8d8d8
    }

    input[type=range].slider.is-tertiary-2::-ms-track {
        background: #d8d8d8 !important
    }

    input[type=range].slider.is-tertiary-2::-ms-fill-lower {
        background: #d8d8d8
    }

    input[type=range].slider.is-tertiary-2 .has-output-tooltip + output, input[type=range].slider.is-tertiary-2.has-output + output {
        background-color: #d8d8d8;
        color: rgba(0,0,0,.7)
    }

    input[type=range].slider.is-tertiary-3::-moz-range-track {
        background: #d7d6d3
    }

    input[type=range].slider.is-tertiary-3::-webkit-slider-runnable-track {
        background: #d7d6d3
    }

    input[type=range].slider.is-tertiary-3::-ms-track {
        background: #d7d6d3 !important
    }

    input[type=range].slider.is-tertiary-3::-ms-fill-lower {
        background: #d7d6d3
    }

    input[type=range].slider.is-tertiary-3 .has-output-tooltip + output, input[type=range].slider.is-tertiary-3.has-output + output {
        background-color: #d7d6d3;
        color: rgba(0,0,0,.7)
    }

    input[type=range].slider.is-tertiary-4::-moz-range-track {
        background: #afafaf
    }

    input[type=range].slider.is-tertiary-4::-webkit-slider-runnable-track {
        background: #afafaf
    }

    input[type=range].slider.is-tertiary-4::-ms-track {
        background: #afafaf !important
    }

    input[type=range].slider.is-tertiary-4::-ms-fill-lower {
        background: #afafaf
    }

    input[type=range].slider.is-tertiary-4 .has-output-tooltip + output, input[type=range].slider.is-tertiary-4.has-output + output {
        background-color: #afafaf;
        color: #fff
    }

    input[type=range].slider.is-tertiary-5::-moz-range-track {
        background: #eaeaea
    }

    input[type=range].slider.is-tertiary-5::-webkit-slider-runnable-track {
        background: #eaeaea
    }

    input[type=range].slider.is-tertiary-5::-ms-track {
        background: #eaeaea !important
    }

    input[type=range].slider.is-tertiary-5::-ms-fill-lower {
        background: #eaeaea
    }

    input[type=range].slider.is-tertiary-5 .has-output-tooltip + output, input[type=range].slider.is-tertiary-5.has-output + output {
        background-color: #eaeaea;
        color: rgba(0,0,0,.7)
    }

    input[type=range].slider.is-tertiary-6::-moz-range-track {
        background: #b0b0b0
    }

    input[type=range].slider.is-tertiary-6::-webkit-slider-runnable-track {
        background: #b0b0b0
    }

    input[type=range].slider.is-tertiary-6::-ms-track {
        background: #b0b0b0 !important
    }

    input[type=range].slider.is-tertiary-6::-ms-fill-lower {
        background: #b0b0b0
    }

    input[type=range].slider.is-tertiary-6 .has-output-tooltip + output, input[type=range].slider.is-tertiary-6.has-output + output {
        background-color: #b0b0b0;
        color: #fff
    }

    input[type=range].slider.is-tertiary-7::-moz-range-track {
        background: #969696
    }

    input[type=range].slider.is-tertiary-7::-webkit-slider-runnable-track {
        background: #969696
    }

    input[type=range].slider.is-tertiary-7::-ms-track {
        background: #969696 !important
    }

    input[type=range].slider.is-tertiary-7::-ms-fill-lower {
        background: #969696
    }

    input[type=range].slider.is-tertiary-7 .has-output-tooltip + output, input[type=range].slider.is-tertiary-7.has-output + output {
        background-color: #969696;
        color: #fff
    }

    input[type=range].slider.is-tertiary-8::-moz-range-track {
        background: #999
    }

    input[type=range].slider.is-tertiary-8::-webkit-slider-runnable-track {
        background: #999
    }

    input[type=range].slider.is-tertiary-8::-ms-track {
        background: #999 !important
    }

    input[type=range].slider.is-tertiary-8::-ms-fill-lower {
        background: #999
    }

    input[type=range].slider.is-tertiary-8 .has-output-tooltip + output, input[type=range].slider.is-tertiary-8.has-output + output {
        background-color: #999;
        color: #fff
    }

    input[type=range].slider.is-tertiary-9::-moz-range-track {
        background: #f5f5f5
    }

    input[type=range].slider.is-tertiary-9::-webkit-slider-runnable-track {
        background: #f5f5f5
    }

    input[type=range].slider.is-tertiary-9::-ms-track {
        background: #f5f5f5 !important
    }

    input[type=range].slider.is-tertiary-9::-ms-fill-lower {
        background: #f5f5f5
    }

    input[type=range].slider.is-tertiary-9 .has-output-tooltip + output, input[type=range].slider.is-tertiary-9.has-output + output {
        background-color: #f5f5f5;
        color: rgba(0,0,0,.7)
    }

.flag-icon-background {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat
}

.flag-icon {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    width: 1.33333333em;
    line-height: 1em
}

    .flag-icon:before {
        content: "\00a0"
    }

    .flag-icon.flag-icon-squared {
        width: 1em
    }

.flag-icon-ad {
    background-image: url(../images/flags/4x3/ad.svg)
}

    .flag-icon-ad.flag-icon-squared {
        background-image: url(../images/flags/1x1/ad.svg)
    }

.flag-icon-ae {
    background-image: url(../images/flags/4x3/ae.svg)
}

    .flag-icon-ae.flag-icon-squared {
        background-image: url(../images/flags/1x1/ae.svg)
    }

.flag-icon-af {
    background-image: url(../images/flags/4x3/af.svg)
}

    .flag-icon-af.flag-icon-squared {
        background-image: url(../images/flags/1x1/af.svg)
    }

.flag-icon-ag {
    background-image: url(../images/flags/4x3/ag.svg)
}

    .flag-icon-ag.flag-icon-squared {
        background-image: url(../images/flags/1x1/ag.svg)
    }

.flag-icon-ai {
    background-image: url(../images/flags/4x3/ai.svg)
}

    .flag-icon-ai.flag-icon-squared {
        background-image: url(../images/flags/1x1/ai.svg)
    }

.flag-icon-al {
    background-image: url(../images/flags/4x3/al.svg)
}

    .flag-icon-al.flag-icon-squared {
        background-image: url(../images/flags/1x1/al.svg)
    }

.flag-icon-am {
    background-image: url(../images/flags/4x3/am.svg)
}

    .flag-icon-am.flag-icon-squared {
        background-image: url(../images/flags/1x1/am.svg)
    }

.flag-icon-ao {
    background-image: url(../images/flags/4x3/ao.svg)
}

    .flag-icon-ao.flag-icon-squared {
        background-image: url(../images/flags/1x1/ao.svg)
    }

.flag-icon-aq {
    background-image: url(../images/flags/4x3/aq.svg)
}

    .flag-icon-aq.flag-icon-squared {
        background-image: url(../images/flags/1x1/aq.svg)
    }

.flag-icon-ar {
    background-image: url(../images/flags/4x3/ar.svg)
}

    .flag-icon-ar.flag-icon-squared {
        background-image: url(../images/flags/1x1/ar.svg)
    }

.flag-icon-as {
    background-image: url(../images/flags/4x3/as.svg)
}

    .flag-icon-as.flag-icon-squared {
        background-image: url(../images/flags/1x1/as.svg)
    }

.flag-icon-at {
    background-image: url(../images/flags/4x3/at.svg)
}

    .flag-icon-at.flag-icon-squared {
        background-image: url(../images/flags/1x1/at.svg)
    }

.flag-icon-au {
    background-image: url(../images/flags/4x3/au.svg)
}

    .flag-icon-au.flag-icon-squared {
        background-image: url(../images/flags/1x1/au.svg)
    }

.flag-icon-aw {
    background-image: url(../images/flags/4x3/aw.svg)
}

    .flag-icon-aw.flag-icon-squared {
        background-image: url(../images/flags/1x1/aw.svg)
    }

.flag-icon-ax {
    background-image: url(../images/flags/4x3/ax.svg)
}

    .flag-icon-ax.flag-icon-squared {
        background-image: url(../images/flags/1x1/ax.svg)
    }

.flag-icon-az {
    background-image: url(../images/flags/4x3/az.svg)
}

    .flag-icon-az.flag-icon-squared {
        background-image: url(../images/flags/1x1/az.svg)
    }

.flag-icon-ba {
    background-image: url(../images/flags/4x3/ba.svg)
}

    .flag-icon-ba.flag-icon-squared {
        background-image: url(../images/flags/1x1/ba.svg)
    }

.flag-icon-bb {
    background-image: url(../images/flags/4x3/bb.svg)
}

    .flag-icon-bb.flag-icon-squared {
        background-image: url(../images/flags/1x1/bb.svg)
    }

.flag-icon-bd {
    background-image: url(../images/flags/4x3/bd.svg)
}

    .flag-icon-bd.flag-icon-squared {
        background-image: url(../images/flags/1x1/bd.svg)
    }

.flag-icon-be {
    background-image: url(../images/flags/4x3/be.svg)
}

    .flag-icon-be.flag-icon-squared {
        background-image: url(../images/flags/1x1/be.svg)
    }

.flag-icon-bf {
    background-image: url(../images/flags/4x3/bf.svg)
}

    .flag-icon-bf.flag-icon-squared {
        background-image: url(../images/flags/1x1/bf.svg)
    }

.flag-icon-bg {
    background-image: url(../images/flags/4x3/bg.svg)
}

    .flag-icon-bg.flag-icon-squared {
        background-image: url(../images/flags/1x1/bg.svg)
    }

.flag-icon-bh {
    background-image: url(../images/flags/4x3/bh.svg)
}

    .flag-icon-bh.flag-icon-squared {
        background-image: url(../images/flags/1x1/bh.svg)
    }

.flag-icon-bi {
    background-image: url(../images/flags/4x3/bi.svg)
}

    .flag-icon-bi.flag-icon-squared {
        background-image: url(../images/flags/1x1/bi.svg)
    }

.flag-icon-bj {
    background-image: url(../images/flags/4x3/bj.svg)
}

    .flag-icon-bj.flag-icon-squared {
        background-image: url(../images/flags/1x1/bj.svg)
    }

.flag-icon-bl {
    background-image: url(../images/flags/4x3/bl.svg)
}

    .flag-icon-bl.flag-icon-squared {
        background-image: url(../images/flags/1x1/bl.svg)
    }

.flag-icon-bm {
    background-image: url(../images/flags/4x3/bm.svg)
}

    .flag-icon-bm.flag-icon-squared {
        background-image: url(../images/flags/1x1/bm.svg)
    }

.flag-icon-bn {
    background-image: url(../images/flags/4x3/bn.svg)
}

    .flag-icon-bn.flag-icon-squared {
        background-image: url(../images/flags/1x1/bn.svg)
    }

.flag-icon-bo {
    background-image: url(../images/flags/4x3/bo.svg)
}

    .flag-icon-bo.flag-icon-squared {
        background-image: url(../images/flags/1x1/bo.svg)
    }

.flag-icon-bq {
    background-image: url(../images/flags/4x3/bq.svg)
}

    .flag-icon-bq.flag-icon-squared {
        background-image: url(../images/flags/1x1/bq.svg)
    }

.flag-icon-br {
    background-image: url(../images/flags/4x3/br.svg)
}

    .flag-icon-br.flag-icon-squared {
        background-image: url(../images/flags/1x1/br.svg)
    }

.flag-icon-bs {
    background-image: url(../images/flags/4x3/bs.svg)
}

    .flag-icon-bs.flag-icon-squared {
        background-image: url(../images/flags/1x1/bs.svg)
    }

.flag-icon-bt {
    background-image: url(../images/flags/4x3/bt.svg)
}

    .flag-icon-bt.flag-icon-squared {
        background-image: url(../images/flags/1x1/bt.svg)
    }

.flag-icon-bv {
    background-image: url(../images/flags/4x3/bv.svg)
}

    .flag-icon-bv.flag-icon-squared {
        background-image: url(../images/flags/1x1/bv.svg)
    }

.flag-icon-bw {
    background-image: url(../images/flags/4x3/bw.svg)
}

    .flag-icon-bw.flag-icon-squared {
        background-image: url(../images/flags/1x1/bw.svg)
    }

.flag-icon-by {
    background-image: url(../images/flags/4x3/by.svg)
}

    .flag-icon-by.flag-icon-squared {
        background-image: url(../images/flags/1x1/by.svg)
    }

.flag-icon-bz {
    background-image: url(../images/flags/4x3/bz.svg)
}

    .flag-icon-bz.flag-icon-squared {
        background-image: url(../images/flags/1x1/bz.svg)
    }

.flag-icon-ca {
    background-image: url(../images/flags/4x3/ca.svg)
}

    .flag-icon-ca.flag-icon-squared {
        background-image: url(../images/flags/1x1/ca.svg)
    }

.flag-icon-cc {
    background-image: url(../images/flags/4x3/cc.svg)
}

    .flag-icon-cc.flag-icon-squared {
        background-image: url(../images/flags/1x1/cc.svg)
    }

.flag-icon-cd {
    background-image: url(../images/flags/4x3/cd.svg)
}

    .flag-icon-cd.flag-icon-squared {
        background-image: url(../images/flags/1x1/cd.svg)
    }

.flag-icon-cf {
    background-image: url(../images/flags/4x3/cf.svg)
}

    .flag-icon-cf.flag-icon-squared {
        background-image: url(../images/flags/1x1/cf.svg)
    }

.flag-icon-cg {
    background-image: url(../images/flags/4x3/cg.svg)
}

    .flag-icon-cg.flag-icon-squared {
        background-image: url(../images/flags/1x1/cg.svg)
    }

.flag-icon-ch {
    background-image: url(../images/flags/4x3/ch.svg)
}

    .flag-icon-ch.flag-icon-squared {
        background-image: url(../images/flags/1x1/ch.svg)
    }

.flag-icon-ci {
    background-image: url(../images/flags/4x3/ci.svg)
}

    .flag-icon-ci.flag-icon-squared {
        background-image: url(../images/flags/1x1/ci.svg)
    }

.flag-icon-ck {
    background-image: url(../images/flags/4x3/ck.svg)
}

    .flag-icon-ck.flag-icon-squared {
        background-image: url(../images/flags/1x1/ck.svg)
    }

.flag-icon-cl {
    background-image: url(../images/flags/4x3/cl.svg)
}

    .flag-icon-cl.flag-icon-squared {
        background-image: url(../images/flags/1x1/cl.svg)
    }

.flag-icon-cm {
    background-image: url(../images/flags/4x3/cm.svg)
}

    .flag-icon-cm.flag-icon-squared {
        background-image: url(../images/flags/1x1/cm.svg)
    }

.flag-icon-cn {
    background-image: url(../images/flags/4x3/cn.svg)
}

    .flag-icon-cn.flag-icon-squared {
        background-image: url(../images/flags/1x1/cn.svg)
    }

.flag-icon-co {
    background-image: url(../images/flags/4x3/co.svg)
}

    .flag-icon-co.flag-icon-squared {
        background-image: url(../images/flags/1x1/co.svg)
    }

.flag-icon-cr {
    background-image: url(../images/flags/4x3/cr.svg)
}

    .flag-icon-cr.flag-icon-squared {
        background-image: url(../images/flags/1x1/cr.svg)
    }

.flag-icon-cu {
    background-image: url(../images/flags/4x3/cu.svg)
}

    .flag-icon-cu.flag-icon-squared {
        background-image: url(../images/flags/1x1/cu.svg)
    }

.flag-icon-cv {
    background-image: url(../images/flags/4x3/cv.svg)
}

    .flag-icon-cv.flag-icon-squared {
        background-image: url(../images/flags/1x1/cv.svg)
    }

.flag-icon-cw {
    background-image: url(../images/flags/4x3/cw.svg)
}

    .flag-icon-cw.flag-icon-squared {
        background-image: url(../images/flags/1x1/cw.svg)
    }

.flag-icon-cx {
    background-image: url(../images/flags/4x3/cx.svg)
}

    .flag-icon-cx.flag-icon-squared {
        background-image: url(../images/flags/1x1/cx.svg)
    }

.flag-icon-cy {
    background-image: url(../images/flags/4x3/cy.svg)
}

    .flag-icon-cy.flag-icon-squared {
        background-image: url(../images/flags/1x1/cy.svg)
    }

.flag-icon-cz {
    background-image: url(../images/flags/4x3/cz.svg)
}

    .flag-icon-cz.flag-icon-squared {
        background-image: url(../images/flags/1x1/cz.svg)
    }

.flag-icon-de {
    background-image: url(../images/flags/4x3/de.svg)
}

    .flag-icon-de.flag-icon-squared {
        background-image: url(../images/flags/1x1/de.svg)
    }

.flag-icon-dj {
    background-image: url(../images/flags/4x3/dj.svg)
}

    .flag-icon-dj.flag-icon-squared {
        background-image: url(../images/flags/1x1/dj.svg)
    }

.flag-icon-dk {
    background-image: url(../images/flags/4x3/dk.svg)
}

    .flag-icon-dk.flag-icon-squared {
        background-image: url(../images/flags/1x1/dk.svg)
    }

.flag-icon-dm {
    background-image: url(../images/flags/4x3/dm.svg)
}

    .flag-icon-dm.flag-icon-squared {
        background-image: url(../images/flags/1x1/dm.svg)
    }

.flag-icon-do {
    background-image: url(../images/flags/4x3/do.svg)
}

    .flag-icon-do.flag-icon-squared {
        background-image: url(../images/flags/1x1/do.svg)
    }

.flag-icon-dz {
    background-image: url(../images/flags/4x3/dz.svg)
}

    .flag-icon-dz.flag-icon-squared {
        background-image: url(../images/flags/1x1/dz.svg)
    }

.flag-icon-ec {
    background-image: url(../images/flags/4x3/ec.svg)
}

    .flag-icon-ec.flag-icon-squared {
        background-image: url(../images/flags/1x1/ec.svg)
    }

.flag-icon-ee {
    background-image: url(../images/flags/4x3/ee.svg)
}

    .flag-icon-ee.flag-icon-squared {
        background-image: url(../images/flags/1x1/ee.svg)
    }

.flag-icon-eg {
    background-image: url(../images/flags/4x3/eg.svg)
}

    .flag-icon-eg.flag-icon-squared {
        background-image: url(../images/flags/1x1/eg.svg)
    }

.flag-icon-eh {
    background-image: url(../images/flags/4x3/eh.svg)
}

    .flag-icon-eh.flag-icon-squared {
        background-image: url(../images/flags/1x1/eh.svg)
    }

.flag-icon-er {
    background-image: url(../images/flags/4x3/er.svg)
}

    .flag-icon-er.flag-icon-squared {
        background-image: url(../images/flags/1x1/er.svg)
    }

.flag-icon-es {
    background-image: url(../images/flags/4x3/es.svg)
}

    .flag-icon-es.flag-icon-squared {
        background-image: url(../images/flags/1x1/es.svg)
    }

.flag-icon-et {
    background-image: url(../images/flags/4x3/et.svg)
}

    .flag-icon-et.flag-icon-squared {
        background-image: url(../images/flags/1x1/et.svg)
    }

.flag-icon-fi {
    background-image: url(../images/flags/4x3/fi.svg)
}

    .flag-icon-fi.flag-icon-squared {
        background-image: url(../images/flags/1x1/fi.svg)
    }

.flag-icon-fj {
    background-image: url(../images/flags/4x3/fj.svg)
}

    .flag-icon-fj.flag-icon-squared {
        background-image: url(../images/flags/1x1/fj.svg)
    }

.flag-icon-fk {
    background-image: url(../images/flags/4x3/fk.svg)
}

    .flag-icon-fk.flag-icon-squared {
        background-image: url(../images/flags/1x1/fk.svg)
    }

.flag-icon-fm {
    background-image: url(../images/flags/4x3/fm.svg)
}

    .flag-icon-fm.flag-icon-squared {
        background-image: url(../images/flags/1x1/fm.svg)
    }

.flag-icon-fo {
    background-image: url(../images/flags/4x3/fo.svg)
}

    .flag-icon-fo.flag-icon-squared {
        background-image: url(../images/flags/1x1/fo.svg)
    }

.flag-icon-fr {
    background-image: url(../images/flags/4x3/fr.svg)
}

    .flag-icon-fr.flag-icon-squared {
        background-image: url(../images/flags/1x1/fr.svg)
    }

.flag-icon-ga {
    background-image: url(../images/flags/4x3/ga.svg)
}

    .flag-icon-ga.flag-icon-squared {
        background-image: url(../images/flags/1x1/ga.svg)
    }

.flag-icon-gb {
    background-image: url(../images/flags/4x3/gb.svg)
}

    .flag-icon-gb.flag-icon-squared {
        background-image: url(../images/flags/1x1/gb.svg)
    }

.flag-icon-gd {
    background-image: url(../images/flags/4x3/gd.svg)
}

    .flag-icon-gd.flag-icon-squared {
        background-image: url(../images/flags/1x1/gd.svg)
    }

.flag-icon-ge {
    background-image: url(../images/flags/4x3/ge.svg)
}

    .flag-icon-ge.flag-icon-squared {
        background-image: url(../images/flags/1x1/ge.svg)
    }

.flag-icon-gf {
    background-image: url(../images/flags/4x3/gf.svg)
}

    .flag-icon-gf.flag-icon-squared {
        background-image: url(../images/flags/1x1/gf.svg)
    }

.flag-icon-gg {
    background-image: url(../images/flags/4x3/gg.svg)
}

    .flag-icon-gg.flag-icon-squared {
        background-image: url(../images/flags/1x1/gg.svg)
    }

.flag-icon-gh {
    background-image: url(../images/flags/4x3/gh.svg)
}

    .flag-icon-gh.flag-icon-squared {
        background-image: url(../images/flags/1x1/gh.svg)
    }

.flag-icon-gi {
    background-image: url(../images/flags/4x3/gi.svg)
}

    .flag-icon-gi.flag-icon-squared {
        background-image: url(../images/flags/1x1/gi.svg)
    }

.flag-icon-gl {
    background-image: url(../images/flags/4x3/gl.svg)
}

    .flag-icon-gl.flag-icon-squared {
        background-image: url(../images/flags/1x1/gl.svg)
    }

.flag-icon-gm {
    background-image: url(../images/flags/4x3/gm.svg)
}

    .flag-icon-gm.flag-icon-squared {
        background-image: url(../images/flags/1x1/gm.svg)
    }

.flag-icon-gn {
    background-image: url(../images/flags/4x3/gn.svg)
}

    .flag-icon-gn.flag-icon-squared {
        background-image: url(../images/flags/1x1/gn.svg)
    }

.flag-icon-gp {
    background-image: url(../images/flags/4x3/gp.svg)
}

    .flag-icon-gp.flag-icon-squared {
        background-image: url(../images/flags/1x1/gp.svg)
    }

.flag-icon-gq {
    background-image: url(../images/flags/4x3/gq.svg)
}

    .flag-icon-gq.flag-icon-squared {
        background-image: url(../images/flags/1x1/gq.svg)
    }

.flag-icon-gr {
    background-image: url(../images/flags/4x3/gr.svg)
}

    .flag-icon-gr.flag-icon-squared {
        background-image: url(../images/flags/1x1/gr.svg)
    }

.flag-icon-gs {
    background-image: url(../images/flags/4x3/gs.svg)
}

    .flag-icon-gs.flag-icon-squared {
        background-image: url(../images/flags/1x1/gs.svg)
    }

.flag-icon-gt {
    background-image: url(../images/flags/4x3/gt.svg)
}

    .flag-icon-gt.flag-icon-squared {
        background-image: url(../images/flags/1x1/gt.svg)
    }

.flag-icon-gu {
    background-image: url(../images/flags/4x3/gu.svg)
}

    .flag-icon-gu.flag-icon-squared {
        background-image: url(../images/flags/1x1/gu.svg)
    }

.flag-icon-gw {
    background-image: url(../images/flags/4x3/gw.svg)
}

    .flag-icon-gw.flag-icon-squared {
        background-image: url(../images/flags/1x1/gw.svg)
    }

.flag-icon-gy {
    background-image: url(../images/flags/4x3/gy.svg)
}

    .flag-icon-gy.flag-icon-squared {
        background-image: url(../images/flags/1x1/gy.svg)
    }

.flag-icon-hk {
    background-image: url(../images/flags/4x3/hk.svg)
}

    .flag-icon-hk.flag-icon-squared {
        background-image: url(../images/flags/1x1/hk.svg)
    }

.flag-icon-hm {
    background-image: url(../images/flags/4x3/hm.svg)
}

    .flag-icon-hm.flag-icon-squared {
        background-image: url(../images/flags/1x1/hm.svg)
    }

.flag-icon-hn {
    background-image: url(../images/flags/4x3/hn.svg)
}

    .flag-icon-hn.flag-icon-squared {
        background-image: url(../images/flags/1x1/hn.svg)
    }

.flag-icon-hr {
    background-image: url(../images/flags/4x3/hr.svg)
}

    .flag-icon-hr.flag-icon-squared {
        background-image: url(../images/flags/1x1/hr.svg)
    }

.flag-icon-ht {
    background-image: url(../images/flags/4x3/ht.svg)
}

    .flag-icon-ht.flag-icon-squared {
        background-image: url(../images/flags/1x1/ht.svg)
    }

.flag-icon-hu {
    background-image: url(../images/flags/4x3/hu.svg)
}

    .flag-icon-hu.flag-icon-squared {
        background-image: url(../images/flags/1x1/hu.svg)
    }

.flag-icon-id {
    background-image: url(../images/flags/4x3/id.svg)
}

    .flag-icon-id.flag-icon-squared {
        background-image: url(../images/flags/1x1/id.svg)
    }

.flag-icon-ie {
    background-image: url(../images/flags/4x3/ie.svg)
}

    .flag-icon-ie.flag-icon-squared {
        background-image: url(../images/flags/1x1/ie.svg)
    }

.flag-icon-il {
    background-image: url(../images/flags/4x3/il.svg)
}

    .flag-icon-il.flag-icon-squared {
        background-image: url(../images/flags/1x1/il.svg)
    }

.flag-icon-im {
    background-image: url(../images/flags/4x3/im.svg)
}

    .flag-icon-im.flag-icon-squared {
        background-image: url(../images/flags/1x1/im.svg)
    }

.flag-icon-in {
    background-image: url(../images/flags/4x3/in.svg)
}

    .flag-icon-in.flag-icon-squared {
        background-image: url(../images/flags/1x1/in.svg)
    }

.flag-icon-io {
    background-image: url(../images/flags/4x3/io.svg)
}

    .flag-icon-io.flag-icon-squared {
        background-image: url(../images/flags/1x1/io.svg)
    }

.flag-icon-iq {
    background-image: url(../images/flags/4x3/iq.svg)
}

    .flag-icon-iq.flag-icon-squared {
        background-image: url(../images/flags/1x1/iq.svg)
    }

.flag-icon-ir {
    background-image: url(../images/flags/4x3/ir.svg)
}

    .flag-icon-ir.flag-icon-squared {
        background-image: url(../images/flags/1x1/ir.svg)
    }

.flag-icon-is {
    background-image: url(../images/flags/4x3/is.svg)
}

    .flag-icon-is.flag-icon-squared {
        background-image: url(../images/flags/1x1/is.svg)
    }

.flag-icon-it {
    background-image: url(../images/flags/4x3/it.svg)
}

    .flag-icon-it.flag-icon-squared {
        background-image: url(../images/flags/1x1/it.svg)
    }

.flag-icon-je {
    background-image: url(../images/flags/4x3/je.svg)
}

    .flag-icon-je.flag-icon-squared {
        background-image: url(../images/flags/1x1/je.svg)
    }

.flag-icon-jm {
    background-image: url(../images/flags/4x3/jm.svg)
}

    .flag-icon-jm.flag-icon-squared {
        background-image: url(../images/flags/1x1/jm.svg)
    }

.flag-icon-jo {
    background-image: url(../images/flags/4x3/jo.svg)
}

    .flag-icon-jo.flag-icon-squared {
        background-image: url(../images/flags/1x1/jo.svg)
    }

.flag-icon-jp {
    background-image: url(../images/flags/4x3/jp.svg)
}

    .flag-icon-jp.flag-icon-squared {
        background-image: url(../images/flags/1x1/jp.svg)
    }

.flag-icon-ke {
    background-image: url(../images/flags/4x3/ke.svg)
}

    .flag-icon-ke.flag-icon-squared {
        background-image: url(../images/flags/1x1/ke.svg)
    }

.flag-icon-kg {
    background-image: url(../images/flags/4x3/kg.svg)
}

    .flag-icon-kg.flag-icon-squared {
        background-image: url(../images/flags/1x1/kg.svg)
    }

.flag-icon-kh {
    background-image: url(../images/flags/4x3/kh.svg)
}

    .flag-icon-kh.flag-icon-squared {
        background-image: url(../images/flags/1x1/kh.svg)
    }

.flag-icon-ki {
    background-image: url(../images/flags/4x3/ki.svg)
}

    .flag-icon-ki.flag-icon-squared {
        background-image: url(../images/flags/1x1/ki.svg)
    }

.flag-icon-km {
    background-image: url(../images/flags/4x3/km.svg)
}

    .flag-icon-km.flag-icon-squared {
        background-image: url(../images/flags/1x1/km.svg)
    }

.flag-icon-kn {
    background-image: url(../images/flags/4x3/kn.svg)
}

    .flag-icon-kn.flag-icon-squared {
        background-image: url(../images/flags/1x1/kn.svg)
    }

.flag-icon-kp {
    background-image: url(../images/flags/4x3/kp.svg)
}

    .flag-icon-kp.flag-icon-squared {
        background-image: url(../images/flags/1x1/kp.svg)
    }

.flag-icon-kr {
    background-image: url(../images/flags/4x3/kr.svg)
}

    .flag-icon-kr.flag-icon-squared {
        background-image: url(../images/flags/1x1/kr.svg)
    }

.flag-icon-kw {
    background-image: url(../images/flags/4x3/kw.svg)
}

    .flag-icon-kw.flag-icon-squared {
        background-image: url(../images/flags/1x1/kw.svg)
    }

.flag-icon-ky {
    background-image: url(../images/flags/4x3/ky.svg)
}

    .flag-icon-ky.flag-icon-squared {
        background-image: url(../images/flags/1x1/ky.svg)
    }

.flag-icon-kz {
    background-image: url(../images/flags/4x3/kz.svg)
}

    .flag-icon-kz.flag-icon-squared {
        background-image: url(../images/flags/1x1/kz.svg)
    }

.flag-icon-la {
    background-image: url(../images/flags/4x3/la.svg)
}

    .flag-icon-la.flag-icon-squared {
        background-image: url(../images/flags/1x1/la.svg)
    }

.flag-icon-lb {
    background-image: url(../images/flags/4x3/lb.svg)
}

    .flag-icon-lb.flag-icon-squared {
        background-image: url(../images/flags/1x1/lb.svg)
    }

.flag-icon-lc {
    background-image: url(../images/flags/4x3/lc.svg)
}

    .flag-icon-lc.flag-icon-squared {
        background-image: url(../images/flags/1x1/lc.svg)
    }

.flag-icon-li {
    background-image: url(../images/flags/4x3/li.svg)
}

    .flag-icon-li.flag-icon-squared {
        background-image: url(../images/flags/1x1/li.svg)
    }

.flag-icon-lk {
    background-image: url(../images/flags/4x3/lk.svg)
}

    .flag-icon-lk.flag-icon-squared {
        background-image: url(../images/flags/1x1/lk.svg)
    }

.flag-icon-lr {
    background-image: url(../images/flags/4x3/lr.svg)
}

    .flag-icon-lr.flag-icon-squared {
        background-image: url(../images/flags/1x1/lr.svg)
    }

.flag-icon-ls {
    background-image: url(../images/flags/4x3/ls.svg)
}

    .flag-icon-ls.flag-icon-squared {
        background-image: url(../images/flags/1x1/ls.svg)
    }

.flag-icon-lt {
    background-image: url(../images/flags/4x3/lt.svg)
}

    .flag-icon-lt.flag-icon-squared {
        background-image: url(../images/flags/1x1/lt.svg)
    }

.flag-icon-lu {
    background-image: url(../images/flags/4x3/lu.svg)
}

    .flag-icon-lu.flag-icon-squared {
        background-image: url(../images/flags/1x1/lu.svg)
    }

.flag-icon-lv {
    background-image: url(../images/flags/4x3/lv.svg)
}

    .flag-icon-lv.flag-icon-squared {
        background-image: url(../images/flags/1x1/lv.svg)
    }

.flag-icon-ly {
    background-image: url(../images/flags/4x3/ly.svg)
}

    .flag-icon-ly.flag-icon-squared {
        background-image: url(../images/flags/1x1/ly.svg)
    }

.flag-icon-ma {
    background-image: url(../images/flags/4x3/ma.svg)
}

    .flag-icon-ma.flag-icon-squared {
        background-image: url(../images/flags/1x1/ma.svg)
    }

.flag-icon-mc {
    background-image: url(../images/flags/4x3/mc.svg)
}

    .flag-icon-mc.flag-icon-squared {
        background-image: url(../images/flags/1x1/mc.svg)
    }

.flag-icon-md {
    background-image: url(../images/flags/4x3/md.svg)
}

    .flag-icon-md.flag-icon-squared {
        background-image: url(../images/flags/1x1/md.svg)
    }

.flag-icon-me {
    background-image: url(../images/flags/4x3/me.svg)
}

    .flag-icon-me.flag-icon-squared {
        background-image: url(../images/flags/1x1/me.svg)
    }

.flag-icon-mf {
    background-image: url(../images/flags/4x3/mf.svg)
}

    .flag-icon-mf.flag-icon-squared {
        background-image: url(../images/flags/1x1/mf.svg)
    }

.flag-icon-mg {
    background-image: url(../images/flags/4x3/mg.svg)
}

    .flag-icon-mg.flag-icon-squared {
        background-image: url(../images/flags/1x1/mg.svg)
    }

.flag-icon-mh {
    background-image: url(../images/flags/4x3/mh.svg)
}

    .flag-icon-mh.flag-icon-squared {
        background-image: url(../images/flags/1x1/mh.svg)
    }

.flag-icon-mk {
    background-image: url(../images/flags/4x3/mk.svg)
}

    .flag-icon-mk.flag-icon-squared {
        background-image: url(../images/flags/1x1/mk.svg)
    }

.flag-icon-ml {
    background-image: url(../images/flags/4x3/ml.svg)
}

    .flag-icon-ml.flag-icon-squared {
        background-image: url(../images/flags/1x1/ml.svg)
    }

.flag-icon-mm {
    background-image: url(../images/flags/4x3/mm.svg)
}

    .flag-icon-mm.flag-icon-squared {
        background-image: url(../images/flags/1x1/mm.svg)
    }

.flag-icon-mn {
    background-image: url(../images/flags/4x3/mn.svg)
}

    .flag-icon-mn.flag-icon-squared {
        background-image: url(../images/flags/1x1/mn.svg)
    }

.flag-icon-mo {
    background-image: url(../images/flags/4x3/mo.svg)
}

    .flag-icon-mo.flag-icon-squared {
        background-image: url(../images/flags/1x1/mo.svg)
    }

.flag-icon-mp {
    background-image: url(../images/flags/4x3/mp.svg)
}

    .flag-icon-mp.flag-icon-squared {
        background-image: url(../images/flags/1x1/mp.svg)
    }

.flag-icon-mq {
    background-image: url(../images/flags/4x3/mq.svg)
}

    .flag-icon-mq.flag-icon-squared {
        background-image: url(../images/flags/1x1/mq.svg)
    }

.flag-icon-mr {
    background-image: url(../images/flags/4x3/mr.svg)
}

    .flag-icon-mr.flag-icon-squared {
        background-image: url(../images/flags/1x1/mr.svg)
    }

.flag-icon-ms {
    background-image: url(../images/flags/4x3/ms.svg)
}

    .flag-icon-ms.flag-icon-squared {
        background-image: url(../images/flags/1x1/ms.svg)
    }

.flag-icon-mt {
    background-image: url(../images/flags/4x3/mt.svg)
}

    .flag-icon-mt.flag-icon-squared {
        background-image: url(../images/flags/1x1/mt.svg)
    }

.flag-icon-mu {
    background-image: url(../images/flags/4x3/mu.svg)
}

    .flag-icon-mu.flag-icon-squared {
        background-image: url(../images/flags/1x1/mu.svg)
    }

.flag-icon-mv {
    background-image: url(../images/flags/4x3/mv.svg)
}

    .flag-icon-mv.flag-icon-squared {
        background-image: url(../images/flags/1x1/mv.svg)
    }

.flag-icon-mw {
    background-image: url(../images/flags/4x3/mw.svg)
}

    .flag-icon-mw.flag-icon-squared {
        background-image: url(../images/flags/1x1/mw.svg)
    }

.flag-icon-mx {
    background-image: url(../images/flags/4x3/mx.svg)
}

    .flag-icon-mx.flag-icon-squared {
        background-image: url(../images/flags/1x1/mx.svg)
    }

.flag-icon-my {
    background-image: url(../images/flags/4x3/my.svg)
}

    .flag-icon-my.flag-icon-squared {
        background-image: url(../images/flags/1x1/my.svg)
    }

.flag-icon-mz {
    background-image: url(../images/flags/4x3/mz.svg)
}

    .flag-icon-mz.flag-icon-squared {
        background-image: url(../images/flags/1x1/mz.svg)
    }

.flag-icon-na {
    background-image: url(../images/flags/4x3/na.svg)
}

    .flag-icon-na.flag-icon-squared {
        background-image: url(../images/flags/1x1/na.svg)
    }

.flag-icon-nc {
    background-image: url(../images/flags/4x3/nc.svg)
}

    .flag-icon-nc.flag-icon-squared {
        background-image: url(../images/flags/1x1/nc.svg)
    }

.flag-icon-ne {
    background-image: url(../images/flags/4x3/ne.svg)
}

    .flag-icon-ne.flag-icon-squared {
        background-image: url(../images/flags/1x1/ne.svg)
    }

.flag-icon-nf {
    background-image: url(../images/flags/4x3/nf.svg)
}

    .flag-icon-nf.flag-icon-squared {
        background-image: url(../images/flags/1x1/nf.svg)
    }

.flag-icon-ng {
    background-image: url(../images/flags/4x3/ng.svg)
}

    .flag-icon-ng.flag-icon-squared {
        background-image: url(../images/flags/1x1/ng.svg)
    }

.flag-icon-ni {
    background-image: url(../images/flags/4x3/ni.svg)
}

    .flag-icon-ni.flag-icon-squared {
        background-image: url(../images/flags/1x1/ni.svg)
    }

.flag-icon-nl {
    background-image: url(../images/flags/4x3/nl.svg)
}

    .flag-icon-nl.flag-icon-squared {
        background-image: url(../images/flags/1x1/nl.svg)
    }

.flag-icon-no {
    background-image: url(../images/flags/4x3/no.svg)
}

    .flag-icon-no.flag-icon-squared {
        background-image: url(../images/flags/1x1/no.svg)
    }

.flag-icon-np {
    background-image: url(../images/flags/4x3/np.svg)
}

    .flag-icon-np.flag-icon-squared {
        background-image: url(../images/flags/1x1/np.svg)
    }

.flag-icon-nr {
    background-image: url(../images/flags/4x3/nr.svg)
}

    .flag-icon-nr.flag-icon-squared {
        background-image: url(../images/flags/1x1/nr.svg)
    }

.flag-icon-nu {
    background-image: url(../images/flags/4x3/nu.svg)
}

    .flag-icon-nu.flag-icon-squared {
        background-image: url(../images/flags/1x1/nu.svg)
    }

.flag-icon-nz {
    background-image: url(../images/flags/4x3/nz.svg)
}

    .flag-icon-nz.flag-icon-squared {
        background-image: url(../images/flags/1x1/nz.svg)
    }

.flag-icon-om {
    background-image: url(../images/flags/4x3/om.svg)
}

    .flag-icon-om.flag-icon-squared {
        background-image: url(../images/flags/1x1/om.svg)
    }

.flag-icon-pa {
    background-image: url(../images/flags/4x3/pa.svg)
}

    .flag-icon-pa.flag-icon-squared {
        background-image: url(../images/flags/1x1/pa.svg)
    }

.flag-icon-pe {
    background-image: url(../images/flags/4x3/pe.svg)
}

    .flag-icon-pe.flag-icon-squared {
        background-image: url(../images/flags/1x1/pe.svg)
    }

.flag-icon-pf {
    background-image: url(../images/flags/4x3/pf.svg)
}

    .flag-icon-pf.flag-icon-squared {
        background-image: url(../images/flags/1x1/pf.svg)
    }

.flag-icon-pg {
    background-image: url(../images/flags/4x3/pg.svg)
}

    .flag-icon-pg.flag-icon-squared {
        background-image: url(../images/flags/1x1/pg.svg)
    }

.flag-icon-ph {
    background-image: url(../images/flags/4x3/ph.svg)
}

    .flag-icon-ph.flag-icon-squared {
        background-image: url(../images/flags/1x1/ph.svg)
    }

.flag-icon-pk {
    background-image: url(../images/flags/4x3/pk.svg)
}

    .flag-icon-pk.flag-icon-squared {
        background-image: url(../images/flags/1x1/pk.svg)
    }

.flag-icon-pl {
    background-image: url(../images/flags/4x3/pl.svg)
}

    .flag-icon-pl.flag-icon-squared {
        background-image: url(../images/flags/1x1/pl.svg)
    }

.flag-icon-pm {
    background-image: url(../images/flags/4x3/pm.svg)
}

    .flag-icon-pm.flag-icon-squared {
        background-image: url(../images/flags/1x1/pm.svg)
    }

.flag-icon-pn {
    background-image: url(../images/flags/4x3/pn.svg)
}

    .flag-icon-pn.flag-icon-squared {
        background-image: url(../images/flags/1x1/pn.svg)
    }

.flag-icon-pr {
    background-image: url(../images/flags/4x3/pr.svg)
}

    .flag-icon-pr.flag-icon-squared {
        background-image: url(../images/flags/1x1/pr.svg)
    }

.flag-icon-ps {
    background-image: url(../images/flags/4x3/ps.svg)
}

    .flag-icon-ps.flag-icon-squared {
        background-image: url(../images/flags/1x1/ps.svg)
    }

.flag-icon-pt {
    background-image: url(../images/flags/4x3/pt.svg)
}

    .flag-icon-pt.flag-icon-squared {
        background-image: url(../images/flags/1x1/pt.svg)
    }

.flag-icon-pw {
    background-image: url(../images/flags/4x3/pw.svg)
}

    .flag-icon-pw.flag-icon-squared {
        background-image: url(../images/flags/1x1/pw.svg)
    }

.flag-icon-py {
    background-image: url(../images/flags/4x3/py.svg)
}

    .flag-icon-py.flag-icon-squared {
        background-image: url(../images/flags/1x1/py.svg)
    }

.flag-icon-qa {
    background-image: url(../images/flags/4x3/qa.svg)
}

    .flag-icon-qa.flag-icon-squared {
        background-image: url(../images/flags/1x1/qa.svg)
    }

.flag-icon-re {
    background-image: url(../images/flags/4x3/re.svg)
}

    .flag-icon-re.flag-icon-squared {
        background-image: url(../images/flags/1x1/re.svg)
    }

.flag-icon-ro {
    background-image: url(../images/flags/4x3/ro.svg)
}

    .flag-icon-ro.flag-icon-squared {
        background-image: url(../images/flags/1x1/ro.svg)
    }

.flag-icon-rs {
    background-image: url(../images/flags/4x3/rs.svg)
}

    .flag-icon-rs.flag-icon-squared {
        background-image: url(../images/flags/1x1/rs.svg)
    }

.flag-icon-ru {
    background-image: url(../images/flags/4x3/ru.svg)
}

    .flag-icon-ru.flag-icon-squared {
        background-image: url(../images/flags/1x1/ru.svg)
    }

.flag-icon-rw {
    background-image: url(../images/flags/4x3/rw.svg)
}

    .flag-icon-rw.flag-icon-squared {
        background-image: url(../images/flags/1x1/rw.svg)
    }

.flag-icon-sa {
    background-image: url(../images/flags/4x3/sa.svg)
}

    .flag-icon-sa.flag-icon-squared {
        background-image: url(../images/flags/1x1/sa.svg)
    }

.flag-icon-sb {
    background-image: url(../images/flags/4x3/sb.svg)
}

    .flag-icon-sb.flag-icon-squared {
        background-image: url(../images/flags/1x1/sb.svg)
    }

.flag-icon-sc {
    background-image: url(../images/flags/4x3/sc.svg)
}

    .flag-icon-sc.flag-icon-squared {
        background-image: url(../images/flags/1x1/sc.svg)
    }

.flag-icon-sd {
    background-image: url(../images/flags/4x3/sd.svg)
}

    .flag-icon-sd.flag-icon-squared {
        background-image: url(../images/flags/1x1/sd.svg)
    }

.flag-icon-se {
    background-image: url(../images/flags/4x3/se.svg)
}

    .flag-icon-se.flag-icon-squared {
        background-image: url(../images/flags/1x1/se.svg)
    }

.flag-icon-sg {
    background-image: url(../images/flags/4x3/sg.svg)
}

    .flag-icon-sg.flag-icon-squared {
        background-image: url(../images/flags/1x1/sg.svg)
    }

.flag-icon-sh {
    background-image: url(../images/flags/4x3/sh.svg)
}

    .flag-icon-sh.flag-icon-squared {
        background-image: url(../images/flags/1x1/sh.svg)
    }

.flag-icon-si {
    background-image: url(../images/flags/4x3/si.svg)
}

    .flag-icon-si.flag-icon-squared {
        background-image: url(../images/flags/1x1/si.svg)
    }

.flag-icon-sj {
    background-image: url(../images/flags/4x3/sj.svg)
}

    .flag-icon-sj.flag-icon-squared {
        background-image: url(../images/flags/1x1/sj.svg)
    }

.flag-icon-sk {
    background-image: url(../images/flags/4x3/sk.svg)
}

    .flag-icon-sk.flag-icon-squared {
        background-image: url(../images/flags/1x1/sk.svg)
    }

.flag-icon-sl {
    background-image: url(../images/flags/4x3/sl.svg)
}

    .flag-icon-sl.flag-icon-squared {
        background-image: url(../images/flags/1x1/sl.svg)
    }

.flag-icon-sm {
    background-image: url(../images/flags/4x3/sm.svg)
}

    .flag-icon-sm.flag-icon-squared {
        background-image: url(../images/flags/1x1/sm.svg)
    }

.flag-icon-sn {
    background-image: url(../images/flags/4x3/sn.svg)
}

    .flag-icon-sn.flag-icon-squared {
        background-image: url(../images/flags/1x1/sn.svg)
    }

.flag-icon-so {
    background-image: url(../images/flags/4x3/so.svg)
}

    .flag-icon-so.flag-icon-squared {
        background-image: url(../images/flags/1x1/so.svg)
    }

.flag-icon-sr {
    background-image: url(../images/flags/4x3/sr.svg)
}

    .flag-icon-sr.flag-icon-squared {
        background-image: url(../images/flags/1x1/sr.svg)
    }

.flag-icon-ss {
    background-image: url(../images/flags/4x3/ss.svg)
}

    .flag-icon-ss.flag-icon-squared {
        background-image: url(../images/flags/1x1/ss.svg)
    }

.flag-icon-st {
    background-image: url(../images/flags/4x3/st.svg)
}

    .flag-icon-st.flag-icon-squared {
        background-image: url(../images/flags/1x1/st.svg)
    }

.flag-icon-sv {
    background-image: url(../images/flags/4x3/sv.svg)
}

    .flag-icon-sv.flag-icon-squared {
        background-image: url(../images/flags/1x1/sv.svg)
    }

.flag-icon-sx {
    background-image: url(../images/flags/4x3/sx.svg)
}

    .flag-icon-sx.flag-icon-squared {
        background-image: url(../images/flags/1x1/sx.svg)
    }

.flag-icon-sy {
    background-image: url(../images/flags/4x3/sy.svg)
}

    .flag-icon-sy.flag-icon-squared {
        background-image: url(../images/flags/1x1/sy.svg)
    }

.flag-icon-sz {
    background-image: url(../images/flags/4x3/sz.svg)
}

    .flag-icon-sz.flag-icon-squared {
        background-image: url(../images/flags/1x1/sz.svg)
    }

.flag-icon-tc {
    background-image: url(../images/flags/4x3/tc.svg)
}

    .flag-icon-tc.flag-icon-squared {
        background-image: url(../images/flags/1x1/tc.svg)
    }

.flag-icon-td {
    background-image: url(../images/flags/4x3/td.svg)
}

    .flag-icon-td.flag-icon-squared {
        background-image: url(../images/flags/1x1/td.svg)
    }

.flag-icon-tf {
    background-image: url(../images/flags/4x3/tf.svg)
}

    .flag-icon-tf.flag-icon-squared {
        background-image: url(../images/flags/1x1/tf.svg)
    }

.flag-icon-tg {
    background-image: url(../images/flags/4x3/tg.svg)
}

    .flag-icon-tg.flag-icon-squared {
        background-image: url(../images/flags/1x1/tg.svg)
    }

.flag-icon-th {
    background-image: url(../images/flags/4x3/th.svg)
}

    .flag-icon-th.flag-icon-squared {
        background-image: url(../images/flags/1x1/th.svg)
    }

.flag-icon-tj {
    background-image: url(../images/flags/4x3/tj.svg)
}

    .flag-icon-tj.flag-icon-squared {
        background-image: url(../images/flags/1x1/tj.svg)
    }

.flag-icon-tk {
    background-image: url(../images/flags/4x3/tk.svg)
}

    .flag-icon-tk.flag-icon-squared {
        background-image: url(../images/flags/1x1/tk.svg)
    }

.flag-icon-tl {
    background-image: url(../images/flags/4x3/tl.svg)
}

    .flag-icon-tl.flag-icon-squared {
        background-image: url(../images/flags/1x1/tl.svg)
    }

.flag-icon-tm {
    background-image: url(../images/flags/4x3/tm.svg)
}

    .flag-icon-tm.flag-icon-squared {
        background-image: url(../images/flags/1x1/tm.svg)
    }

.flag-icon-tn {
    background-image: url(../images/flags/4x3/tn.svg)
}

    .flag-icon-tn.flag-icon-squared {
        background-image: url(../images/flags/1x1/tn.svg)
    }

.flag-icon-to {
    background-image: url(../images/flags/4x3/to.svg)
}

    .flag-icon-to.flag-icon-squared {
        background-image: url(../images/flags/1x1/to.svg)
    }

.flag-icon-tr {
    background-image: url(../images/flags/4x3/tr.svg)
}

    .flag-icon-tr.flag-icon-squared {
        background-image: url(../images/flags/1x1/tr.svg)
    }

.flag-icon-tt {
    background-image: url(../images/flags/4x3/tt.svg)
}

    .flag-icon-tt.flag-icon-squared {
        background-image: url(../images/flags/1x1/tt.svg)
    }

.flag-icon-tv {
    background-image: url(../images/flags/4x3/tv.svg)
}

    .flag-icon-tv.flag-icon-squared {
        background-image: url(../images/flags/1x1/tv.svg)
    }

.flag-icon-tw {
    background-image: url(../images/flags/4x3/tw.svg)
}

    .flag-icon-tw.flag-icon-squared {
        background-image: url(../images/flags/1x1/tw.svg)
    }

.flag-icon-tz {
    background-image: url(../images/flags/4x3/tz.svg)
}

    .flag-icon-tz.flag-icon-squared {
        background-image: url(../images/flags/1x1/tz.svg)
    }

.flag-icon-ua {
    background-image: url(../images/flags/4x3/ua.svg)
}

    .flag-icon-ua.flag-icon-squared {
        background-image: url(../images/flags/1x1/ua.svg)
    }

.flag-icon-ug {
    background-image: url(../images/flags/4x3/ug.svg)
}

    .flag-icon-ug.flag-icon-squared {
        background-image: url(../images/flags/1x1/ug.svg)
    }

.flag-icon-um {
    background-image: url(../images/flags/4x3/um.svg)
}

    .flag-icon-um.flag-icon-squared {
        background-image: url(../images/flags/1x1/um.svg)
    }

.flag-icon-us {
    background-image: url(../images/flags/4x3/us.svg)
}

    .flag-icon-us.flag-icon-squared {
        background-image: url(../images/flags/1x1/us.svg)
    }

.flag-icon-uy {
    background-image: url(../images/flags/4x3/uy.svg)
}

    .flag-icon-uy.flag-icon-squared {
        background-image: url(../images/flags/1x1/uy.svg)
    }

.flag-icon-uz {
    background-image: url(../images/flags/4x3/uz.svg)
}

    .flag-icon-uz.flag-icon-squared {
        background-image: url(../images/flags/1x1/uz.svg)
    }

.flag-icon-va {
    background-image: url(../images/flags/4x3/va.svg)
}

    .flag-icon-va.flag-icon-squared {
        background-image: url(../images/flags/1x1/va.svg)
    }

.flag-icon-vc {
    background-image: url(../images/flags/4x3/vc.svg)
}

    .flag-icon-vc.flag-icon-squared {
        background-image: url(../images/flags/1x1/vc.svg)
    }

.flag-icon-ve {
    background-image: url(../images/flags/4x3/ve.svg)
}

    .flag-icon-ve.flag-icon-squared {
        background-image: url(../images/flags/1x1/ve.svg)
    }

.flag-icon-vg {
    background-image: url(../images/flags/4x3/vg.svg)
}

    .flag-icon-vg.flag-icon-squared {
        background-image: url(../images/flags/1x1/vg.svg)
    }

.flag-icon-vi {
    background-image: url(../images/flags/4x3/vi.svg)
}

    .flag-icon-vi.flag-icon-squared {
        background-image: url(../images/flags/1x1/vi.svg)
    }

.flag-icon-vn {
    background-image: url(../images/flags/4x3/vn.svg)
}

    .flag-icon-vn.flag-icon-squared {
        background-image: url(../images/flags/1x1/vn.svg)
    }

.flag-icon-vu {
    background-image: url(../images/flags/4x3/vu.svg)
}

    .flag-icon-vu.flag-icon-squared {
        background-image: url(../images/flags/1x1/vu.svg)
    }

.flag-icon-wf {
    background-image: url(../images/flags/4x3/wf.svg)
}

    .flag-icon-wf.flag-icon-squared {
        background-image: url(../images/flags/1x1/wf.svg)
    }

.flag-icon-ws {
    background-image: url(../images/flags/4x3/ws.svg)
}

    .flag-icon-ws.flag-icon-squared {
        background-image: url(../images/flags/1x1/ws.svg)
    }

.flag-icon-ye {
    background-image: url(../images/flags/4x3/ye.svg)
}

    .flag-icon-ye.flag-icon-squared {
        background-image: url(../images/flags/1x1/ye.svg)
    }

.flag-icon-yt {
    background-image: url(../images/flags/4x3/yt.svg)
}

    .flag-icon-yt.flag-icon-squared {
        background-image: url(../images/flags/1x1/yt.svg)
    }

.flag-icon-za {
    background-image: url(../images/flags/4x3/za.svg)
}

    .flag-icon-za.flag-icon-squared {
        background-image: url(../images/flags/1x1/za.svg)
    }

.flag-icon-zm {
    background-image: url(../images/flags/4x3/zm.svg)
}

    .flag-icon-zm.flag-icon-squared {
        background-image: url(../images/flags/1x1/zm.svg)
    }

.flag-icon-zw {
    background-image: url(../images/flags/4x3/zw.svg)
}

    .flag-icon-zw.flag-icon-squared {
        background-image: url(../images/flags/1x1/zw.svg)
    }

.flag-icon-es-ct {
    background-image: url(../images/flags/4x3/es-ct.svg)
}

    .flag-icon-es-ct.flag-icon-squared {
        background-image: url(../images/flags/1x1/es-ct.svg)
    }

.flag-icon-eu {
    background-image: url(../images/flags/4x3/eu.svg)
}

    .flag-icon-eu.flag-icon-squared {
        background-image: url(../images/flags/1x1/eu.svg)
    }

.flag-icon-gb-eng {
    background-image: url(../images/flags/4x3/gb-eng.svg)
}

    .flag-icon-gb-eng.flag-icon-squared {
        background-image: url(../images/flags/1x1/gb-eng.svg)
    }

.flag-icon-gb-nir {
    background-image: url(../images/flags/4x3/gb-nir.svg)
}

    .flag-icon-gb-nir.flag-icon-squared {
        background-image: url(../images/flags/1x1/gb-nir.svg)
    }

.flag-icon-gb-sct {
    background-image: url(../images/flags/4x3/gb-sct.svg)
}

    .flag-icon-gb-sct.flag-icon-squared {
        background-image: url(../images/flags/1x1/gb-sct.svg)
    }

.flag-icon-gb-wls {
    background-image: url(../images/flags/4x3/gb-wls.svg)
}

    .flag-icon-gb-wls.flag-icon-squared {
        background-image: url(../images/flags/1x1/gb-wls.svg)
    }

.flag-icon-un {
    background-image: url(../images/flags/4x3/un.svg)
}

    .flag-icon-un.flag-icon-squared {
        background-image: url(../images/flags/1x1/un.svg)
    }

@font-face {
    font-family: flexslider-icon;
    src: url(fonts/flexslider-icon.html);
    src: url(fonts/flexslider-icond41d.html?#iefix) format("embedded-opentype"),url(fonts/flexslider-icon-2.html) format("woff"),url(fonts/flexslider-icon-3.html) format("truetype"),url(fonts/flexslider-icon-4.html#flexslider-icon) format("svg");
   
    font-style: normal
}

.flex-container a:hover, .flex-slider a:hover {
    outline: 0
}

.flex-control-nav, .flex-direction-nav, .slides, .slides > li {
    margin: 0;
    padding: 0;
    list-style: none
}

.flex-pauseplay span {
    text-transform: capitalize
}

.flexslider {
    margin: 0;
    padding: 0
}

    .flexslider .slides > li {
        display: none;
        -webkit-backface-visibility: hidden
    }

    .flexslider .slides img {
        width: 100%;
        display: block
    }

    .flexslider .slides:after {
        content: "\0020";
        display: block;
        clear: both;
        visibility: hidden;
        line-height: 0;
        height: 0
    }

html[xmlns] .flexslider .slides {
    display: block
}

* html .flexslider .slides {
    height: 1%
}

.no-js .flexslider .slides > li:first-child {
    display: block
}

.flexslider {
    margin: 0 0 60px;
    background: #fff;
    border: 4px solid #fff;
    position: relative;
    zoom: 1;
    border-radius: 4px;
    -webkit-box-shadow: "" 0 1px 4px rgba(0,0,0,.2);
    -o-box-shadow: "" 0 1px 4px rgba(0,0,0,.2);
    box-shadow: "" 0 1px 4px rgba(0,0,0,.2)
}

    .flexslider .slides {
        zoom: 1
    }

        .flexslider .slides img {
            height: auto;
            -moz-user-select: none
        }

.flex-viewport {
    max-height: 2000px;
    -webkit-transition: all 1s ease;
    transition: all 1s ease
}

.loading .flex-viewport {
    max-height: 300px
}

@-moz-document url-prefix() {
    .loading .flex-viewport {
        max-height: none
    }
}

.carousel li {
    margin-right: 5px
}

.flex-direction-nav a {
    text-decoration: none;
    display: block;
    width: 40px;
    height: 40px;
    margin: -20px 0 0;
    position: absolute;
    top: 50%;
    z-index: 10;
    overflow: hidden;
    opacity: 0;
    cursor: pointer;
    color: rgba(0,0,0,.8);
    text-shadow: 1px 1px 0 rgba(255,255,255,.3);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

    .flex-direction-nav a:before {
        font-family: flexslider-icon;
        font-size: 40px;
        display: inline-block;
        content: '\f001';
        color: rgba(0,0,0,.8);
        text-shadow: 1px 1px 0 rgba(255,255,255,.3)
    }

    .flex-direction-nav a.flex-next:before {
        content: '\f002'
    }

.flex-direction-nav .flex-prev {
    left: -50px
}

.flex-direction-nav .flex-next {
    right: -50px;
    text-align: right
}

.flexslider:hover .flex-direction-nav .flex-prev {
    opacity: .7;
    left: 10px
}

    .flexslider:hover .flex-direction-nav .flex-prev:hover {
        opacity: 1
    }

.flexslider:hover .flex-direction-nav .flex-next {
    opacity: .7;
    right: 10px
}

    .flexslider:hover .flex-direction-nav .flex-next:hover {
        opacity: 1
    }

.flex-direction-nav .flex-disabled {
    opacity: 0 !important;
    cursor: default;
    z-index: -1
}

.flex-pauseplay a {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 5px;
    left: 10px;
    opacity: .8;
    z-index: 10;
    overflow: hidden;
    cursor: pointer;
    color: #000
}

    .flex-pauseplay a:before {
        font-family: flexslider-icon;
        font-size: 20px;
        display: inline-block;
        content: '\f004'
    }

    .flex-pauseplay a:hover {
        opacity: 1
    }

    .flex-pauseplay a.flex-play:before {
        content: '\f003'
    }

.flex-control-nav {
    width: 100%;
    position: absolute;
    bottom: -40px;
    text-align: center
}

    .flex-control-nav li {
        margin: 0 6px;
        display: inline-block;
        zoom: 1
    }

.flex-control-paging li a {
    width: 11px;
    height: 11px;
    display: block;
    background: #666;
    background: rgba(0,0,0,.5);
    cursor: pointer;
    text-indent: -9999px;
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
    -o-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
    box-shadow: inset 0 0 3px rgba(0,0,0,.3);
    border-radius: 20px
}

    .flex-control-paging li a:hover {
        background: #333;
        background: rgba(0,0,0,.7)
    }

    .flex-control-paging li a.flex-active {
        background: #000;
        background: rgba(0,0,0,.9);
        cursor: default
    }

.flex-control-thumbs {
    margin: 5px 0 0;
    position: static;
    overflow: hidden
}

    .flex-control-thumbs li {
        width: 25%;
        float: left;
        margin: 0
    }

    .flex-control-thumbs img {
        width: 100%;
        height: auto;
        display: block;
        opacity: .7;
        cursor: pointer;
        -moz-user-select: none;
        -webkit-transition: all 1s ease;
        transition: all 1s ease
    }

        .flex-control-thumbs img:hover {
            opacity: 1
        }

    .flex-control-thumbs .flex-active {
        opacity: 1;
        cursor: default
    }

@media screen and (max-width:860px) {
    .flex-direction-nav .flex-prev {
        opacity: 1;
        left: 10px
    }

    .flex-direction-nav .flex-next {
        opacity: 1;
        right: 10px
    }
}

@font-face {
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
   
    src: url(../fonts/fa-regular-400.eot);
    src: url(../fonts/fa-regular-400d41d.eot?#iefix) format("embedded-opentype"),url(../fonts/fa-regular-400.woff2) format("woff2"),url(../fonts/fa-regular-400.woff) format("woff"),url(../fonts/fa-regular-400.ttf) format("truetype"),url(../fonts/fa-regular-400.svg#fontawesome) 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;
    src: url(../fonts/fa-solid-900.eot);
    src: url(../fonts/fa-solid-900d41d.eot?#iefix) format("embedded-opentype"),url(../fonts/fa-solid-900.woff2) format("woff2"),url(../fonts/fa-solid-900.woff) format("woff"),url(../fonts/fa-solid-900.ttf) format("truetype"),url(../fonts/fa-solid-900.svg#fontawesome) format("svg")
}

.fa, .fas {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900
}

@font-face {
    font-family: 'Font Awesome 5 Brands';
    font-style: normal;
   
    src: url(../fonts/fa-brands-400.eot);
    src: url(../fonts/fa-brands-400d41d.eot?#iefix) format("embedded-opentype"),url(../fonts/fa-brands-400.woff2) format("woff2"),url(../fonts/fa-brands-400.woff) format("woff"),url(../fonts/fa-brands-400.ttf) format("truetype"),url(../fonts/fa-brands-400.svg#fontawesome) format("svg")
}

.fab {
    font-family: 'Font Awesome 5 Brands'
}

.fa, .fab, .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 {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -webkit-transform: scale(-1,1);
    transform: scale(-1,1)
}

.fa-flip-vertical {
    -webkit-transform: scale(1,-1);
    transform: scale(1,-1)
}

.fa-flip-horizontal.fa-flip-vertical {
    -webkit-transform: scale(-1,-1);
    transform: scale(-1,-1)
}

: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: 2em
}

.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: "\f26e"
}

.fa-accessible-icon:before {
    content: "\f368"
}

.fa-accusoft:before {
    content: "\f369"
}

.fa-address-book:before {
    content: "\f2b9"
}

.fa-address-card:before {
    content: "\f2bb"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-adn:before {
    content: "\f170"
}

.fa-adversal:before {
    content: "\f36a"
}

.fa-affiliatetheme:before {
    content: "\f36b"
}

.fa-algolia:before {
    content: "\f36c"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-allergies:before {
    content: "\f461"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-amazon-pay:before {
    content: "\f42c"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-american-sign-language-interpreting:before {
    content: "\f2a3"
}

.fa-amilia:before {
    content: "\f36d"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-android:before {
    content: "\f17b"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angrycreative:before {
    content: "\f36e"
}

.fa-angular:before {
    content: "\f420"
}

.fa-app-store:before {
    content: "\f36f"
}

.fa-app-store-ios:before {
    content: "\f370"
}

.fa-apper:before {
    content: "\f371"
}

.fa-apple:before {
    content: "\f179"
}

.fa-apple-pay:before {
    content: "\f415"
}

.fa-archive:before {
    content: "\f187"
}

.fa-arrow-alt-circle-down:before {
    content: "\f358"
}

.fa-arrow-alt-circle-left:before {
    content: "\f359"
}

.fa-arrow-alt-circle-right:before {
    content: "\f35a"
}

.fa-arrow-alt-circle-up:before {
    content: "\f35b"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-arrows-alt-h:before {
    content: "\f337"
}

.fa-arrows-alt-v:before {
    content: "\f338"
}

.fa-assistive-listening-systems:before {
    content: "\f2a2"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-asymmetrik:before {
    content: "\f372"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-audible:before {
    content: "\f373"
}

.fa-audio-description:before {
    content: "\f29e"
}

.fa-autoprefixer:before {
    content: "\f41c"
}

.fa-avianex:before {
    content: "\f374"
}

.fa-aviato:before {
    content: "\f421"
}

.fa-aws:before {
    content: "\f375"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-band-aid:before {
    content: "\f462"
}

.fa-bandcamp:before {
    content: "\f2d5"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-bars:before {
    content: "\f0c9"
}

.fa-baseball-ball:before {
    content: "\f433"
}

.fa-basketball-ball:before {
    content: "\f434"
}

.fa-bath:before {
    content: "\f2cd"
}

.fa-battery-empty:before {
    content: "\f244"
}

.fa-battery-full:before {
    content: "\f240"
}

.fa-battery-half:before {
    content: "\f242"
}

.fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-bed:before {
    content: "\f236"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bimobject:before {
    content: "\f378"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitcoin:before {
    content: "\f379"
}

.fa-bity:before {
    content: "\f37a"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-blackberry:before {
    content: "\f37b"
}

.fa-blender:before {
    content: "\f517"
}

.fa-blind:before {
    content: "\f29d"
}

.fa-blogger:before {
    content: "\f37c"
}

.fa-blogger-b:before {
    content: "\f37d"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-bold:before {
    content: "\f032"
}

.fa-bolt:before {
    content: "\f0e7"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-book:before {
    content: "\f02d"
}

.fa-book-open:before {
    content: "\f518"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-bowling-ball:before {
    content: "\f436"
}

.fa-box:before {
    content: "\f466"
}

.fa-box-open:before {
    content: "\f49e"
}

.fa-boxes:before {
    content: "\f468"
}

.fa-braille:before {
    content: "\f2a1"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-briefcase-medical:before {
    content: "\f469"
}

.fa-broadcast-tower:before {
    content: "\f519"
}

.fa-broom:before {
    content: "\f51a"
}

.fa-btc:before {
    content: "\f15a"
}

.fa-bug:before {
    content: "\f188"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-burn:before {
    content: "\f46a"
}

.fa-buromobelexperte:before {
    content: "\f37f"
}

.fa-bus:before {
    content: "\f207"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-calendar:before {
    content: "\f133"
}

.fa-calendar-alt:before {
    content: "\f073"
}

.fa-calendar-check:before {
    content: "\f274"
}

.fa-calendar-minus:before {
    content: "\f272"
}

.fa-calendar-plus:before {
    content: "\f271"
}

.fa-calendar-times:before {
    content: "\f273"
}

.fa-camera:before {
    content: "\f030"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-capsules:before {
    content: "\f46b"
}

.fa-car:before {
    content: "\f1b9"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-caret-square-down:before {
    content: "\f150"
}

.fa-caret-square-left:before {
    content: "\f191"
}

.fa-caret-square-right:before {
    content: "\f152"
}

.fa-caret-square-up:before {
    content: "\f151"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cc-amazon-pay:before {
    content: "\f42d"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-apple-pay:before {
    content: "\f416"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-centercode:before {
    content: "\f380"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-chalkboard:before {
    content: "\f51b"
}

.fa-chalkboard-teacher:before {
    content: "\f51c"
}

.fa-chart-area:before {
    content: "\f1fe"
}

.fa-chart-bar:before {
    content: "\f080"
}

.fa-chart-line:before {
    content: "\f201"
}

.fa-chart-pie:before {
    content: "\f200"
}

.fa-check:before {
    content: "\f00c"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-chess:before {
    content: "\f439"
}

.fa-chess-bishop:before {
    content: "\f43a"
}

.fa-chess-board:before {
    content: "\f43c"
}

.fa-chess-king:before {
    content: "\f43f"
}

.fa-chess-knight:before {
    content: "\f441"
}

.fa-chess-pawn:before {
    content: "\f443"
}

.fa-chess-queen:before {
    content: "\f445"
}

.fa-chess-rook:before {
    content: "\f447"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-church:before {
    content: "\f51d"
}

.fa-circle:before {
    content: "\f111"
}

.fa-circle-notch:before {
    content: "\f1ce"
}

.fa-clipboard:before {
    content: "\f328"
}

.fa-clipboard-check:before {
    content: "\f46c"
}

.fa-clipboard-list:before {
    content: "\f46d"
}

.fa-clock:before {
    content: "\f017"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-closed-captioning:before {
    content: "\f20a"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-cloud-download-alt:before {
    content: "\f381"
}

.fa-cloud-upload-alt:before {
    content: "\f382"
}

.fa-cloudscale:before {
    content: "\f383"
}

.fa-cloudsmith:before {
    content: "\f384"
}

.fa-cloudversify:before {
    content: "\f385"
}

.fa-code:before {
    content: "\f121"
}

.fa-code-branch:before {
    content: "\f126"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cog:before {
    content: "\f013"
}

.fa-cogs:before {
    content: "\f085"
}

.fa-coins:before {
    content: "\f51e"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-comment:before {
    content: "\f075"
}

.fa-comment-alt:before {
    content: "\f27a"
}

.fa-comment-dots:before {
    content: "\f4ad"
}

.fa-comment-slash:before {
    content: "\f4b3"
}

.fa-comments:before {
    content: "\f086"
}

.fa-compact-disc:before {
    content: "\f51f"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-compress:before {
    content: "\f066"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-copy:before {
    content: "\f0c5"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-couch:before {
    content: "\f4b8"
}

.fa-cpanel:before {
    content: "\f388"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-creative-commons-by:before {
    content: "\f4e7"
}

.fa-creative-commons-nc:before {
    content: "\f4e8"
}

.fa-creative-commons-nc-eu:before {
    content: "\f4e9"
}

.fa-creative-commons-nc-jp:before {
    content: "\f4ea"
}

.fa-creative-commons-nd:before {
    content: "\f4eb"
}

.fa-creative-commons-pd:before {
    content: "\f4ec"
}

.fa-creative-commons-pd-alt:before {
    content: "\f4ed"
}

.fa-creative-commons-remix:before {
    content: "\f4ee"
}

.fa-creative-commons-sa:before {
    content: "\f4ef"
}

.fa-creative-commons-sampling:before {
    content: "\f4f0"
}

.fa-creative-commons-sampling-plus:before {
    content: "\f4f1"
}

.fa-creative-commons-share:before {
    content: "\f4f2"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-crop:before {
    content: "\f125"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-crow:before {
    content: "\f520"
}

.fa-crown:before {
    content: "\f521"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-css3-alt:before {
    content: "\f38b"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-cut:before {
    content: "\f0c4"
}

.fa-cuttlefish:before {
    content: "\f38c"
}

.fa-d-and-d:before {
    content: "\f38d"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-deaf:before {
    content: "\f2a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-deploydog:before {
    content: "\f38e"
}

.fa-deskpro:before {
    content: "\f38f"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-diagnoses:before {
    content: "\f470"
}

.fa-dice:before {
    content: "\f522"
}

.fa-dice-five:before {
    content: "\f523"
}

.fa-dice-four:before {
    content: "\f524"
}

.fa-dice-one:before {
    content: "\f525"
}

.fa-dice-six:before {
    content: "\f526"
}

.fa-dice-three:before {
    content: "\f527"
}

.fa-dice-two:before {
    content: "\f528"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-digital-ocean:before {
    content: "\f391"
}

.fa-discord:before {
    content: "\f392"
}

.fa-discourse:before {
    content: "\f393"
}

.fa-divide:before {
    content: "\f529"
}

.fa-dna:before {
    content: "\f471"
}

.fa-dochub:before {
    content: "\f394"
}

.fa-docker:before {
    content: "\f395"
}

.fa-dollar-sign:before {
    content: "\f155"
}

.fa-dolly:before {
    content: "\f472"
}

.fa-dolly-flatbed:before {
    content: "\f474"
}

.fa-donate:before {
    content: "\f4b9"
}

.fa-door-closed:before {
    content: "\f52a"
}

.fa-door-open:before {
    content: "\f52b"
}

.fa-dot-circle:before {
    content: "\f192"
}

.fa-dove:before {
    content: "\f4ba"
}

.fa-download:before {
    content: "\f019"
}

.fa-draft2digital:before {
    content: "\f396"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-dribbble-square:before {
    content: "\f397"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-dumbbell:before {
    content: "\f44b"
}

.fa-dyalog:before {
    content: "\f399"
}

.fa-earlybirds:before {
    content: "\f39a"
}

.fa-ebay:before {
    content: "\f4f4"
}

.fa-edge:before {
    content: "\f282"
}

.fa-edit:before {
    content: "\f044"
}

.fa-eject:before {
    content: "\f052"
}

.fa-elementor:before {
    content: "\f430"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-ember:before {
    content: "\f423"
}

.fa-empire:before {
    content: "\f1d1"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-envelope-open:before {
    content: "\f2b6"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-envira:before {
    content: "\f299"
}

.fa-equals:before {
    content: "\f52c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-erlang:before {
    content: "\f39d"
}

.fa-ethereum:before {
    content: "\f42e"
}

.fa-etsy:before {
    content: "\f2d7"
}

.fa-euro-sign:before {
    content: "\f153"
}

.fa-exchange-alt:before {
    content: "\f362"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-expand:before {
    content: "\f065"
}

.fa-expand-arrows-alt:before {
    content: "\f31e"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-external-link-alt:before {
    content: "\f35d"
}

.fa-external-link-square-alt:before {
    content: "\f360"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-dropper:before {
    content: "\f1fb"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-facebook:before {
    content: "\f09a"
}

.fa-facebook-f:before {
    content: "\f39e"
}

.fa-facebook-messenger:before {
    content: "\f39f"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-feather:before {
    content: "\f52d"
}

.fa-female:before {
    content: "\f182"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-alt:before {
    content: "\f15c"
}

.fa-file-archive:before {
    content: "\f1c6"
}

.fa-file-audio:before {
    content: "\f1c7"
}

.fa-file-code:before {
    content: "\f1c9"
}

.fa-file-excel:before {
    content: "\f1c3"
}

.fa-file-image:before {
    content: "\f1c5"
}

.fa-file-medical:before {
    content: "\f477"
}

.fa-file-medical-alt:before {
    content: "\f478"
}

.fa-file-pdf:before {
    content: "\f1c1"
}

.fa-file-powerpoint:before {
    content: "\f1c4"
}

.fa-file-video:before {
    content: "\f1c8"
}

.fa-file-word:before {
    content: "\f1c2"
}

.fa-film:before {
    content: "\f008"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-first-aid:before {
    content: "\f479"
}

.fa-first-order:before {
    content: "\f2b0"
}

.fa-first-order-alt:before {
    content: "\f50a"
}

.fa-firstdraft:before {
    content: "\f3a1"
}

.fa-flag:before {
    content: "\f024"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-flipboard:before {
    content: "\f44d"
}

.fa-fly:before {
    content: "\f417"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-font:before {
    content: "\f031"
}

.fa-font-awesome:before {
    content: "\f2b4"
}

.fa-font-awesome-alt:before {
    content: "\f35c"
}

.fa-font-awesome-flag:before {
    content: "\f425"
}

.fa-font-awesome-logo-full:before {
    content: "\f4e6"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-fonticons-fi:before {
    content: "\f3a2"
}

.fa-football-ball:before {
    content: "\f44e"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-fort-awesome-alt:before {
    content: "\f3a3"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-free-code-camp:before {
    content: "\f2c5"
}

.fa-freebsd:before {
    content: "\f3a4"
}

.fa-frog:before {
    content: "\f52e"
}

.fa-frown:before {
    content: "\f119"
}

.fa-fulcrum:before {
    content: "\f50b"
}

.fa-futbol:before {
    content: "\f1e3"
}

.fa-galactic-republic:before {
    content: "\f50c"
}

.fa-galactic-senate:before {
    content: "\f50d"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-gas-pump:before {
    content: "\f52f"
}

.fa-gavel:before {
    content: "\f0e3"
}

.fa-gem:before {
    content: "\f3a5"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-github:before {
    content: "\f09b"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-gitkraken:before {
    content: "\f3a6"
}

.fa-gitlab:before {
    content: "\f296"
}

.fa-gitter:before {
    content: "\f426"
}

.fa-glass-martini:before {
    content: "\f000"
}

.fa-glasses:before {
    content: "\f530"
}

.fa-glide:before {
    content: "\f2a5"
}

.fa-glide-g:before {
    content: "\f2a6"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-gofore:before {
    content: "\f3a7"
}

.fa-golf-ball:before {
    content: "\f450"
}

.fa-goodreads:before {
    content: "\f3a8"
}

.fa-goodreads-g:before {
    content: "\f3a9"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-google-drive:before {
    content: "\f3aa"
}

.fa-google-play:before {
    content: "\f3ab"
}

.fa-google-plus:before {
    content: "\f2b3"
}

.fa-google-plus-g:before {
    content: "\f0d5"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-graduation-cap:before {
    content: "\f19d"
}

.fa-gratipay:before {
    content: "\f184"
}

.fa-grav:before {
    content: "\f2d6"
}

.fa-greater-than:before {
    content: "\f531"
}

.fa-greater-than-equal:before {
    content: "\f532"
}

.fa-gripfire:before {
    content: "\f3ac"
}

.fa-grunt:before {
    content: "\f3ad"
}

.fa-gulp:before {
    content: "\f3ae"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-hacker-news:before {
    content: "\f1d4"
}

.fa-hacker-news-square:before {
    content: "\f3af"
}

.fa-hand-holding:before {
    content: "\f4bd"
}

.fa-hand-holding-heart:before {
    content: "\f4be"
}

.fa-hand-holding-usd:before {
    content: "\f4c0"
}

.fa-hand-lizard:before {
    content: "\f258"
}

.fa-hand-paper:before {
    content: "\f256"
}

.fa-hand-peace:before {
    content: "\f25b"
}

.fa-hand-point-down:before {
    content: "\f0a7"
}

.fa-hand-point-left:before {
    content: "\f0a5"
}

.fa-hand-point-right:before {
    content: "\f0a4"
}

.fa-hand-point-up:before {
    content: "\f0a6"
}

.fa-hand-pointer:before {
    content: "\f25a"
}

.fa-hand-rock:before {
    content: "\f255"
}

.fa-hand-scissors:before {
    content: "\f257"
}

.fa-hand-spock:before {
    content: "\f259"
}

.fa-hands:before {
    content: "\f4c2"
}

.fa-hands-helping:before {
    content: "\f4c4"
}

.fa-handshake:before {
    content: "\f2b5"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-hdd:before {
    content: "\f0a0"
}

.fa-heading:before {
    content: "\f1dc"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-heart:before {
    content: "\f004"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-helicopter:before {
    content: "\f533"
}

.fa-hips:before {
    content: "\f452"
}

.fa-hire-a-helper:before {
    content: "\f3b0"
}

.fa-history:before {
    content: "\f1da"
}

.fa-hockey-puck:before {
    content: "\f453"
}

.fa-home:before {
    content: "\f015"
}

.fa-hooli:before {
    content: "\f427"
}

.fa-hospital:before {
    content: "\f0f8"
}

.fa-hospital-alt:before {
    content: "\f47d"
}

.fa-hospital-symbol:before {
    content: "\f47e"
}

.fa-hotjar:before {
    content: "\f3b1"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-start:before {
    content: "\f251"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-hubspot:before {
    content: "\f3b2"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-id-badge:before {
    content: "\f2c1"
}

.fa-id-card:before {
    content: "\f2c2"
}

.fa-id-card-alt:before {
    content: "\f47f"
}

.fa-image:before {
    content: "\f03e"
}

.fa-images:before {
    content: "\f302"
}

.fa-imdb:before {
    content: "\f2d8"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-industry:before {
    content: "\f275"
}

.fa-infinity:before {
    content: "\f534"
}

.fa-info:before {
    content: "\f129"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-italic:before {
    content: "\f033"
}

.fa-itunes:before {
    content: "\f3b4"
}

.fa-itunes-note:before {
    content: "\f3b5"
}

.fa-java:before {
    content: "\f4e4"
}

.fa-jedi-order:before {
    content: "\f50e"
}

.fa-jenkins:before {
    content: "\f3b6"
}

.fa-joget:before {
    content: "\f3b7"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-js:before {
    content: "\f3b8"
}

.fa-js-square:before {
    content: "\f3b9"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-key:before {
    content: "\f084"
}

.fa-keybase:before {
    content: "\f4f5"
}

.fa-keyboard:before {
    content: "\f11c"
}

.fa-keycdn:before {
    content: "\f3ba"
}

.fa-kickstarter:before {
    content: "\f3bb"
}

.fa-kickstarter-k:before {
    content: "\f3bc"
}

.fa-kiwi-bird:before {
    content: "\f535"
}

.fa-korvue:before {
    content: "\f42f"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-laravel:before {
    content: "\f3bd"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-lemon:before {
    content: "\f094"
}

.fa-less:before {
    content: "\f41d"
}

.fa-less-than:before {
    content: "\f536"
}

.fa-less-than-equal:before {
    content: "\f537"
}

.fa-level-down-alt:before {
    content: "\f3be"
}

.fa-level-up-alt:before {
    content: "\f3bf"
}

.fa-life-ring:before {
    content: "\f1cd"
}

.fa-lightbulb:before {
    content: "\f0eb"
}

.fa-line:before {
    content: "\f3c0"
}

.fa-link:before {
    content: "\f0c1"
}

.fa-linkedin:before {
    content: "\f08c"
}

.fa-linkedin-in:before {
    content: "\f0e1"
}

.fa-linode:before {
    content: "\f2b8"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-lira-sign:before {
    content: "\f195"
}

.fa-list:before {
    content: "\f03a"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-lock:before {
    content: "\f023"
}

.fa-lock-open:before {
    content: "\f3c1"
}

.fa-long-arrow-alt-down:before {
    content: "\f309"
}

.fa-long-arrow-alt-left:before {
    content: "\f30a"
}

.fa-long-arrow-alt-right:before {
    content: "\f30b"
}

.fa-long-arrow-alt-up:before {
    content: "\f30c"
}

.fa-low-vision:before {
    content: "\f2a8"
}

.fa-lyft:before {
    content: "\f3c3"
}

.fa-magento:before {
    content: "\f3c4"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-male:before {
    content: "\f183"
}

.fa-mandalorian:before {
    content: "\f50f"
}

.fa-map:before {
    content: "\f279"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-map-marker-alt:before {
    content: "\f3c5"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mastodon:before {
    content: "\f4f6"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-medapps:before {
    content: "\f3c6"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-medium-m:before {
    content: "\f3c7"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-medrt:before {
    content: "\f3c8"
}

.fa-meetup:before {
    content: "\f2e0"
}

.fa-meh:before {
    content: "\f11a"
}

.fa-memory:before {
    content: "\f538"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-microchip:before {
    content: "\f2db"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-alt:before {
    content: "\f3c9"
}

.fa-microphone-alt-slash:before {
    content: "\f539"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-microsoft:before {
    content: "\f3ca"
}

.fa-minus:before {
    content: "\f068"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-mix:before {
    content: "\f3cb"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-mizuni:before {
    content: "\f3cc"
}

.fa-mobile:before {
    content: "\f10b"
}

.fa-mobile-alt:before {
    content: "\f3cd"
}

.fa-modx:before {
    content: "\f285"
}

.fa-monero:before {
    content: "\f3d0"
}

.fa-money-bill:before {
    content: "\f0d6"
}

.fa-money-bill-alt:before {
    content: "\f3d1"
}

.fa-money-bill-wave:before {
    content: "\f53a"
}

.fa-money-bill-wave-alt:before {
    content: "\f53b"
}

.fa-money-check:before {
    content: "\f53c"
}

.fa-money-check-alt:before {
    content: "\f53d"
}

.fa-moon:before {
    content: "\f186"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-music:before {
    content: "\f001"
}

.fa-napster:before {
    content: "\f3d2"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-newspaper:before {
    content: "\f1ea"
}

.fa-nintendo-switch:before {
    content: "\f418"
}

.fa-node:before {
    content: "\f419"
}

.fa-node-js:before {
    content: "\f3d3"
}

.fa-not-equal:before {
    content: "\f53e"
}

.fa-notes-medical:before {
    content: "\f481"
}

.fa-npm:before {
    content: "\f3d4"
}

.fa-ns8:before {
    content: "\f3d5"
}

.fa-nutritionix:before {
    content: "\f3d6"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-old-republic:before {
    content: "\f510"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-osi:before {
    content: "\f41a"
}

.fa-outdent:before {
    content: "\f03b"
}

.fa-page4:before {
    content: "\f3d7"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-palette:before {
    content: "\f53f"
}

.fa-palfed:before {
    content: "\f3d8"
}

.fa-pallet:before {
    content: "\f482"
}

.fa-paper-plane:before {
    content: "\f1d8"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-parachute-box:before {
    content: "\f4cd"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-parking:before {
    content: "\f540"
}

.fa-paste:before {
    content: "\f0ea"
}

.fa-patreon:before {
    content: "\f3d9"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-pen-square:before {
    content: "\f14b"
}

.fa-pencil-alt:before {
    content: "\f303"
}

.fa-people-carry:before {
    content: "\f4ce"
}

.fa-percent:before {
    content: "\f295"
}

.fa-percentage:before {
    content: "\f541"
}

.fa-periscope:before {
    content: "\f3da"
}

.fa-phabricator:before {
    content: "\f3db"
}

.fa-phoenix-framework:before {
    content: "\f3dc"
}

.fa-phoenix-squadron:before {
    content: "\f511"
}

.fa-phone:before {
    content: "\f095"
}

.fa-phone-slash:before {
    content: "\f3dd"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-phone-volume:before {
    content: "\f2a0"
}

.fa-php:before {
    content: "\f457"
}

.fa-pied-piper:before {
    content: "\f2ae"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-pied-piper-hat:before {
    content: "\f4e5"
}

.fa-pied-piper-pp:before {
    content: "\f1a7"
}

.fa-piggy-bank:before {
    content: "\f4d3"
}

.fa-pills:before {
    content: "\f484"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-plane:before {
    content: "\f072"
}

.fa-play:before {
    content: "\f04b"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-playstation:before {
    content: "\f3df"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-plus:before {
    content: "\f067"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-podcast:before {
    content: "\f2ce"
}

.fa-poo:before {
    content: "\f2fe"
}

.fa-portrait:before {
    content: "\f3e0"
}

.fa-pound-sign:before {
    content: "\f154"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-prescription-bottle:before {
    content: "\f485"
}

.fa-prescription-bottle-alt:before {
    content: "\f486"
}

.fa-print:before {
    content: "\f02f"
}

.fa-procedures:before {
    content: "\f487"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-project-diagram:before {
    content: "\f542"
}

.fa-pushed:before {
    content: "\f3e1"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-python:before {
    content: "\f3e2"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-question:before {
    content: "\f128"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-quidditch:before {
    content: "\f458"
}

.fa-quinscape:before {
    content: "\f459"
}

.fa-quora:before {
    content: "\f2c4"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-r-project:before {
    content: "\f4f7"
}

.fa-random:before {
    content: "\f074"
}

.fa-ravelry:before {
    content: "\f2d9"
}

.fa-react:before {
    content: "\f41b"
}

.fa-readme:before {
    content: "\f4d5"
}

.fa-rebel:before {
    content: "\f1d0"
}

.fa-receipt:before {
    content: "\f543"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-red-river:before {
    content: "\f3e3"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-redo:before {
    content: "\f01e"
}

.fa-redo-alt:before {
    content: "\f2f9"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-rendact:before {
    content: "\f3e4"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-reply:before {
    content: "\f3e5"
}

.fa-reply-all:before {
    content: "\f122"
}

.fa-replyd:before {
    content: "\f3e6"
}

.fa-researchgate:before {
    content: "\f4f8"
}

.fa-resolving:before {
    content: "\f3e7"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-ribbon:before {
    content: "\f4d6"
}

.fa-road:before {
    content: "\f018"
}

.fa-robot:before {
    content: "\f544"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-rocketchat:before {
    content: "\f3e8"
}

.fa-rockrms:before {
    content: "\f3e9"
}

.fa-rss:before {
    content: "\f09e"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-ruble-sign:before {
    content: "\f158"
}

.fa-ruler:before {
    content: "\f545"
}

.fa-ruler-combined:before {
    content: "\f546"
}

.fa-ruler-horizontal:before {
    content: "\f547"
}

.fa-ruler-vertical:before {
    content: "\f548"
}

.fa-rupee-sign:before {
    content: "\f156"
}

.fa-safari:before {
    content: "\f267"
}

.fa-sass:before {
    content: "\f41e"
}

.fa-save:before {
    content: "\f0c7"
}

.fa-schlix:before {
    content: "\f3ea"
}

.fa-school:before {
    content: "\f549"
}

.fa-screwdriver:before {
    content: "\f54a"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-search:before {
    content: "\f002"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-searchengin:before {
    content: "\f3eb"
}

.fa-seedling:before {
    content: "\f4d8"
}

.fa-sellcast:before {
    content: "\f2da"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-server:before {
    content: "\f233"
}

.fa-servicestack:before {
    content: "\f3ec"
}

.fa-share:before {
    content: "\f064"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-shekel-sign:before {
    content: "\f20b"
}

.fa-shield-alt:before {
    content: "\f3ed"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-shipping-fast:before {
    content: "\f48b"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-shoe-prints:before {
    content: "\f54b"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-shower:before {
    content: "\f2cc"
}

.fa-sign:before {
    content: "\f4d9"
}

.fa-sign-in-alt:before {
    content: "\f2f6"
}

.fa-sign-language:before {
    content: "\f2a7"
}

.fa-sign-out-alt:before {
    content: "\f2f5"
}

.fa-signal:before {
    content: "\f012"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-sistrix:before {
    content: "\f3ee"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-sith:before {
    content: "\f512"
}

.fa-skull:before {
    content: "\f54c"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-slack:before {
    content: "\f198"
}

.fa-slack-hash:before {
    content: "\f3ef"
}

.fa-sliders-h:before {
    content: "\f1de"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-smile:before {
    content: "\f118"
}

.fa-smoking:before {
    content: "\f48d"
}

.fa-smoking-ban:before {
    content: "\f54d"
}

.fa-snapchat:before {
    content: "\f2ab"
}

.fa-snapchat-ghost:before {
    content: "\f2ac"
}

.fa-snapchat-square:before {
    content: "\f2ad"
}

.fa-snowflake:before {
    content: "\f2dc"
}

.fa-sort:before {
    content: "\f0dc"
}

.fa-sort-alpha-down:before {
    content: "\f15d"
}

.fa-sort-alpha-up:before {
    content: "\f15e"
}

.fa-sort-amount-down:before {
    content: "\f160"
}

.fa-sort-amount-up:before {
    content: "\f161"
}

.fa-sort-down:before {
    content: "\f0dd"
}

.fa-sort-numeric-down:before {
    content: "\f162"
}

.fa-sort-numeric-up:before {
    content: "\f163"
}

.fa-sort-up:before {
    content: "\f0de"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-speakap:before {
    content: "\f3f3"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-square-full:before {
    content: "\f45c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-staylinked:before {
    content: "\f3f5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-steam-symbol:before {
    content: "\f3f6"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-sticker-mule:before {
    content: "\f3f7"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stopwatch:before {
    content: "\f2f2"
}

.fa-store:before {
    content: "\f54e"
}

.fa-store-alt:before {
    content: "\f54f"
}

.fa-strava:before {
    content: "\f428"
}

.fa-stream:before {
    content: "\f550"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-stripe:before {
    content: "\f429"
}

.fa-stripe-s:before {
    content: "\f42a"
}

.fa-stroopwafel:before {
    content: "\f551"
}

.fa-studiovinari:before {
    content: "\f3f8"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-subway:before {
    content: "\f239"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-sun:before {
    content: "\f185"
}

.fa-superpowers:before {
    content: "\f2dd"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-supple:before {
    content: "\f3f9"
}

.fa-sync:before {
    content: "\f021"
}

.fa-sync-alt:before {
    content: "\f2f1"
}

.fa-syringe:before {
    content: "\f48e"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-table-tennis:before {
    content: "\f45d"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-tablet-alt:before {
    content: "\f3fa"
}

.fa-tablets:before {
    content: "\f490"
}

.fa-tachometer-alt:before {
    content: "\f3fd"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-tape:before {
    content: "\f4db"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-taxi:before {
    content: "\f1ba"
}

.fa-teamspeak:before {
    content: "\f4f9"
}

.fa-telegram:before {
    content: "\f2c6"
}

.fa-telegram-plane:before {
    content: "\f3fe"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-themeisle:before {
    content: "\f2b2"
}

.fa-thermometer:before {
    content: "\f491"
}

.fa-thermometer-empty:before {
    content: "\f2cb"
}

.fa-thermometer-full:before {
    content: "\f2c7"
}

.fa-thermometer-half:before {
    content: "\f2c9"
}

.fa-thermometer-quarter:before {
    content: "\f2ca"
}

.fa-thermometer-three-quarters:before {
    content: "\f2c8"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbtack:before {
    content: "\f08d"
}

.fa-ticket-alt:before {
    content: "\f3ff"
}

.fa-times:before {
    content: "\f00d"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-tint:before {
    content: "\f043"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-toolbox:before {
    content: "\f552"
}

.fa-trade-federation:before {
    content: "\f513"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-train:before {
    content: "\f238"
}

.fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-trash-alt:before {
    content: "\f2ed"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-trello:before {
    content: "\f181"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-truck-loading:before {
    content: "\f4de"
}

.fa-truck-moving:before {
    content: "\f4df"
}

.fa-tshirt:before {
    content: "\f553"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-tv:before {
    content: "\f26c"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-typo3:before {
    content: "\f42b"
}

.fa-uber:before {
    content: "\f402"
}

.fa-uikit:before {
    content: "\f403"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-undo:before {
    content: "\f0e2"
}

.fa-undo-alt:before {
    content: "\f2ea"
}

.fa-uniregistry:before {
    content: "\f404"
}

.fa-universal-access:before {
    content: "\f29a"
}

.fa-university:before {
    content: "\f19c"
}

.fa-unlink:before {
    content: "\f127"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-untappd:before {
    content: "\f405"
}

.fa-upload:before {
    content: "\f093"
}

.fa-usb:before {
    content: "\f287"
}

.fa-user:before {
    content: "\f007"
}

.fa-user-alt:before {
    content: "\f406"
}

.fa-user-alt-slash:before {
    content: "\f4fa"
}

.fa-user-astronaut:before {
    content: "\f4fb"
}

.fa-user-check:before {
    content: "\f4fc"
}

.fa-user-circle:before {
    content: "\f2bd"
}

.fa-user-clock:before {
    content: "\f4fd"
}

.fa-user-cog:before {
    content: "\f4fe"
}

.fa-user-edit:before {
    content: "\f4ff"
}

.fa-user-friends:before {
    content: "\f500"
}

.fa-user-graduate:before {
    content: "\f501"
}

.fa-user-lock:before {
    content: "\f502"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-user-minus:before {
    content: "\f503"
}

.fa-user-ninja:before {
    content: "\f504"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-user-shield:before {
    content: "\f505"
}

.fa-user-slash:before {
    content: "\f506"
}

.fa-user-tag:before {
    content: "\f507"
}

.fa-user-tie:before {
    content: "\f508"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-users:before {
    content: "\f0c0"
}

.fa-users-cog:before {
    content: "\f509"
}

.fa-ussunnah:before {
    content: "\f407"
}

.fa-utensil-spoon:before {
    content: "\f2e5"
}

.fa-utensils:before {
    content: "\f2e7"
}

.fa-vaadin:before {
    content: "\f408"
}

.fa-venus:before {
    content: "\f221"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-viadeo:before {
    content: "\f2a9"
}

.fa-viadeo-square:before {
    content: "\f2aa"
}

.fa-vial:before {
    content: "\f492"
}

.fa-vials:before {
    content: "\f493"
}

.fa-viber:before {
    content: "\f409"
}

.fa-video:before {
    content: "\f03d"
}

.fa-video-slash:before {
    content: "\f4e2"
}

.fa-vimeo:before {
    content: "\f40a"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-vimeo-v:before {
    content: "\f27d"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-vk:before {
    content: "\f189"
}

.fa-vnv:before {
    content: "\f40b"
}

.fa-volleyball-ball:before {
    content: "\f45f"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-vuejs:before {
    content: "\f41f"
}

.fa-walking:before {
    content: "\f554"
}

.fa-wallet:before {
    content: "\f555"
}

.fa-warehouse:before {
    content: "\f494"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-weight:before {
    content: "\f496"
}

.fa-weixin:before {
    content: "\f1d7"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-whatsapp-square:before {
    content: "\f40c"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-whmcs:before {
    content: "\f40d"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-window-close:before {
    content: "\f410"
}

.fa-window-maximize:before {
    content: "\f2d0"
}

.fa-window-minimize:before {
    content: "\f2d1"
}

.fa-window-restore:before {
    content: "\f2d2"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-wine-glass:before {
    content: "\f4e3"
}

.fa-wolf-pack-battalion:before {
    content: "\f514"
}

.fa-won-sign:before {
    content: "\f159"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-wordpress-simple:before {
    content: "\f411"
}

.fa-wpbeginner:before {
    content: "\f297"
}

.fa-wpexplorer:before {
    content: "\f2de"
}

.fa-wpforms:before {
    content: "\f298"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-x-ray:before {
    content: "\f497"
}

.fa-xbox:before {
    content: "\f412"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-y-combinator:before {
    content: "\f23b"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-yandex:before {
    content: "\f413"
}

.fa-yandex-international:before {
    content: "\f414"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-yen-sign:before {
    content: "\f157"
}

.fa-yoast:before {
    content: "\f2b1"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-youtube-square:before {
    content: "\f431"
}

.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: Ionicons;
    src: url(../fonts/ioniconsc7f2.eot?v=3.0.0-alpha.3);
    src: url(../fonts/ioniconsc7f2.eot?v=3.0.0-alpha.3#iefix) format("embedded-opentype"),url(../fonts/ioniconsc7f2.woff2?v=3.0.0-alpha.3) format("woff2"),url(../fonts/ioniconsc7f2.woff?v=3.0.0-alpha.3) format("woff"),url(../fonts/ioniconsc7f2.ttf?v=3.0.0-alpha.3) format("truetype"),url(../fonts/ioniconsc7f2.svg?v=3.0.0-alpha.3#Ionicons) format("svg");
   
    font-style: normal
}

.ion, .ion-ios-add-circle-outline:before, .ion-ios-add-circle:before, .ion-ios-add-outline:before, .ion-ios-add:before, .ion-ios-alarm-outline:before, .ion-ios-alarm:before, .ion-ios-albums-outline:before, .ion-ios-albums:before, .ion-ios-alert-outline:before, .ion-ios-alert:before, .ion-ios-american-football-outline:before, .ion-ios-american-football:before, .ion-ios-analytics-outline:before, .ion-ios-analytics:before, .ion-ios-aperture-outline:before, .ion-ios-aperture:before, .ion-ios-apps-outline:before, .ion-ios-apps:before, .ion-ios-appstore-outline:before, .ion-ios-appstore:before, .ion-ios-archive-outline:before, .ion-ios-archive:before, .ion-ios-arrow-back-outline:before, .ion-ios-arrow-back:before, .ion-ios-arrow-down-outline:before, .ion-ios-arrow-down:before, .ion-ios-arrow-dropdown-circle-outline:before, .ion-ios-arrow-dropdown-circle:before, .ion-ios-arrow-dropdown-outline:before, .ion-ios-arrow-dropdown:before, .ion-ios-arrow-dropleft-circle-outline:before, .ion-ios-arrow-dropleft-circle:before, .ion-ios-arrow-dropleft-outline:before, .ion-ios-arrow-dropleft:before, .ion-ios-arrow-dropright-circle-outline:before, .ion-ios-arrow-dropright-circle:before, .ion-ios-arrow-dropright-outline:before, .ion-ios-arrow-dropright:before, .ion-ios-arrow-dropup-circle-outline:before, .ion-ios-arrow-dropup-circle:before, .ion-ios-arrow-dropup-outline:before, .ion-ios-arrow-dropup:before, .ion-ios-arrow-forward-outline:before, .ion-ios-arrow-forward:before, .ion-ios-arrow-round-back-outline:before, .ion-ios-arrow-round-back:before, .ion-ios-arrow-round-down-outline:before, .ion-ios-arrow-round-down:before, .ion-ios-arrow-round-forward-outline:before, .ion-ios-arrow-round-forward:before, .ion-ios-arrow-round-up-outline:before, .ion-ios-arrow-round-up:before, .ion-ios-arrow-up-outline:before, .ion-ios-arrow-up:before, .ion-ios-at-outline:before, .ion-ios-at:before, .ion-ios-attach-outline:before, .ion-ios-attach:before, .ion-ios-backspace-outline:before, .ion-ios-backspace:before, .ion-ios-barcode-outline:before, .ion-ios-barcode:before, .ion-ios-baseball-outline:before, .ion-ios-baseball:before, .ion-ios-basket-outline:before, .ion-ios-basket:before, .ion-ios-basketball-outline:before, .ion-ios-basketball:before, .ion-ios-battery-charging-outline:before, .ion-ios-battery-charging:before, .ion-ios-battery-dead-outline:before, .ion-ios-battery-dead:before, .ion-ios-battery-full-outline:before, .ion-ios-battery-full:before, .ion-ios-beaker-outline:before, .ion-ios-beaker:before, .ion-ios-beer-outline:before, .ion-ios-beer:before, .ion-ios-bicycle-outline:before, .ion-ios-bicycle:before, .ion-ios-bluetooth-outline:before, .ion-ios-bluetooth:before, .ion-ios-boat-outline:before, .ion-ios-boat:before, .ion-ios-body-outline:before, .ion-ios-body:before, .ion-ios-bonfire-outline:before, .ion-ios-bonfire:before, .ion-ios-book-outline:before, .ion-ios-book:before, .ion-ios-bookmark-outline:before, .ion-ios-bookmark:before, .ion-ios-bookmarks-outline:before, .ion-ios-bookmarks:before, .ion-ios-bowtie-outline:before, .ion-ios-bowtie:before, .ion-ios-briefcase-outline:before, .ion-ios-briefcase:before, .ion-ios-browsers-outline:before, .ion-ios-browsers:before, .ion-ios-brush-outline:before, .ion-ios-brush:before, .ion-ios-bug-outline:before, .ion-ios-bug:before, .ion-ios-build-outline:before, .ion-ios-build:before, .ion-ios-bulb-outline:before, .ion-ios-bulb:before, .ion-ios-bus-outline:before, .ion-ios-bus:before, .ion-ios-cafe-outline:before, .ion-ios-cafe:before, .ion-ios-calculator-outline:before, .ion-ios-calculator:before, .ion-ios-calendar-outline:before, .ion-ios-calendar:before, .ion-ios-call-outline:before, .ion-ios-call:before, .ion-ios-camera-outline:before, .ion-ios-camera:before, .ion-ios-car-outline:before, .ion-ios-car:before, .ion-ios-card-outline:before, .ion-ios-card:before, .ion-ios-cart-outline:before, .ion-ios-cart:before, .ion-ios-cash-outline:before, .ion-ios-cash:before, .ion-ios-chatboxes-outline:before, .ion-ios-chatboxes:before, .ion-ios-chatbubbles-outline:before, .ion-ios-chatbubbles:before, .ion-ios-checkbox-outline:before, .ion-ios-checkbox:before, .ion-ios-checkmark-circle-outline:before, .ion-ios-checkmark-circle:before, .ion-ios-checkmark-outline:before, .ion-ios-checkmark:before, .ion-ios-clipboard-outline:before, .ion-ios-clipboard:before, .ion-ios-clock-outline:before, .ion-ios-clock:before, .ion-ios-close-circle-outline:before, .ion-ios-close-circle:before, .ion-ios-close-outline:before, .ion-ios-close:before, .ion-ios-closed-captioning-outline:before, .ion-ios-closed-captioning:before, .ion-ios-cloud-circle-outline:before, .ion-ios-cloud-circle:before, .ion-ios-cloud-done-outline:before, .ion-ios-cloud-done:before, .ion-ios-cloud-download-outline:before, .ion-ios-cloud-download:before, .ion-ios-cloud-outline:before, .ion-ios-cloud-upload-outline:before, .ion-ios-cloud-upload:before, .ion-ios-cloud:before, .ion-ios-cloudy-night-outline:before, .ion-ios-cloudy-night:before, .ion-ios-cloudy-outline:before, .ion-ios-cloudy:before, .ion-ios-code-download-outline:before, .ion-ios-code-download:before, .ion-ios-code-outline:before, .ion-ios-code-working-outline:before, .ion-ios-code-working:before, .ion-ios-code:before, .ion-ios-cog-outline:before, .ion-ios-cog:before, .ion-ios-color-fill-outline:before, .ion-ios-color-fill:before, .ion-ios-color-filter-outline:before, .ion-ios-color-filter:before, .ion-ios-color-palette-outline:before, .ion-ios-color-palette:before, .ion-ios-color-wand-outline:before, .ion-ios-color-wand:before, .ion-ios-compass-outline:before, .ion-ios-compass:before, .ion-ios-construct-outline:before, .ion-ios-construct:before, .ion-ios-contact-outline:before, .ion-ios-contact:before, .ion-ios-contacts-outline:before, .ion-ios-contacts:before, .ion-ios-contract-outline:before, .ion-ios-contract:before, .ion-ios-contrast-outline:before, .ion-ios-contrast:before, .ion-ios-copy-outline:before, .ion-ios-copy:before, .ion-ios-create-outline:before, .ion-ios-create:before, .ion-ios-crop-outline:before, .ion-ios-crop:before, .ion-ios-cube-outline:before, .ion-ios-cube:before, .ion-ios-cut-outline:before, .ion-ios-cut:before, .ion-ios-desktop-outline:before, .ion-ios-desktop:before, .ion-ios-disc-outline:before, .ion-ios-disc:before, .ion-ios-document-outline:before, .ion-ios-document:before, .ion-ios-done-all-outline:before, .ion-ios-done-all:before, .ion-ios-download-outline:before, .ion-ios-download:before, .ion-ios-easel-outline:before, .ion-ios-easel:before, .ion-ios-egg-outline:before, .ion-ios-egg:before, .ion-ios-exit-outline:before, .ion-ios-exit:before, .ion-ios-expand-outline:before, .ion-ios-expand:before, .ion-ios-eye-off-outline:before, .ion-ios-eye-off:before, .ion-ios-eye-outline:before, .ion-ios-eye:before, .ion-ios-fastforward-outline:before, .ion-ios-fastforward:before, .ion-ios-female-outline:before, .ion-ios-female:before, .ion-ios-filing-outline:before, .ion-ios-filing:before, .ion-ios-film-outline:before, .ion-ios-film:before, .ion-ios-finger-print-outline:before, .ion-ios-finger-print:before, .ion-ios-flag-outline:before, .ion-ios-flag:before, .ion-ios-flame-outline:before, .ion-ios-flame:before, .ion-ios-flash-outline:before, .ion-ios-flash:before, .ion-ios-flask-outline:before, .ion-ios-flask:before, .ion-ios-flower-outline:before, .ion-ios-flower:before, .ion-ios-folder-open-outline:before, .ion-ios-folder-open:before, .ion-ios-folder-outline:before, .ion-ios-folder:before, .ion-ios-football-outline:before, .ion-ios-football:before, .ion-ios-funnel-outline:before, .ion-ios-funnel:before, .ion-ios-game-controller-a-outline:before, .ion-ios-game-controller-a:before, .ion-ios-game-controller-b-outline:before, .ion-ios-game-controller-b:before, .ion-ios-git-branch-outline:before, .ion-ios-git-branch:before, .ion-ios-git-commit-outline:before, .ion-ios-git-commit:before, .ion-ios-git-compare-outline:before, .ion-ios-git-compare:before, .ion-ios-git-merge-outline:before, .ion-ios-git-merge:before, .ion-ios-git-network-outline:before, .ion-ios-git-network:before, .ion-ios-git-pull-request-outline:before, .ion-ios-git-pull-request:before, .ion-ios-glasses-outline:before, .ion-ios-glasses:before, .ion-ios-globe-outline:before, .ion-ios-globe:before, .ion-ios-grid-outline:before, .ion-ios-grid:before, .ion-ios-hammer-outline:before, .ion-ios-hammer:before, .ion-ios-hand-outline:before, .ion-ios-hand:before, .ion-ios-happy-outline:before, .ion-ios-happy:before, .ion-ios-headset-outline:before, .ion-ios-headset:before, .ion-ios-heart-outline:before, .ion-ios-heart:before, .ion-ios-help-buoy-outline:before, .ion-ios-help-buoy:before, .ion-ios-help-circle-outline:before, .ion-ios-help-circle:before, .ion-ios-help-outline:before, .ion-ios-help:before, .ion-ios-home-outline:before, .ion-ios-home:before, .ion-ios-ice-cream-outline:before, .ion-ios-ice-cream:before, .ion-ios-image-outline:before, .ion-ios-image:before, .ion-ios-images-outline:before, .ion-ios-images:before, .ion-ios-infinite-outline:before, .ion-ios-infinite:before, .ion-ios-information-circle-outline:before, .ion-ios-information-circle:before, .ion-ios-information-outline:before, .ion-ios-information:before, .ion-ios-ionic-outline:before, .ion-ios-ionic:before, .ion-ios-ionitron-outline:before, .ion-ios-ionitron:before, .ion-ios-jet-outline:before, .ion-ios-jet:before, .ion-ios-key-outline:before, .ion-ios-key:before, .ion-ios-keypad-outline:before, .ion-ios-keypad:before, .ion-ios-laptop-outline:before, .ion-ios-laptop:before, .ion-ios-leaf-outline:before, .ion-ios-leaf:before, .ion-ios-link-outline:before, .ion-ios-link:before, .ion-ios-list-box-outline:before, .ion-ios-list-box:before, .ion-ios-list-outline:before, .ion-ios-list:before, .ion-ios-locate-outline:before, .ion-ios-locate:before, .ion-ios-lock-outline:before, .ion-ios-lock:before, .ion-ios-log-in-outline:before, .ion-ios-log-in:before, .ion-ios-log-out-outline:before, .ion-ios-log-out:before, .ion-ios-magnet-outline:before, .ion-ios-magnet:before, .ion-ios-mail-open-outline:before, .ion-ios-mail-open:before, .ion-ios-mail-outline:before, .ion-ios-mail:before, .ion-ios-male-outline:before, .ion-ios-male:before, .ion-ios-man-outline:before, .ion-ios-man:before, .ion-ios-map-outline:before, .ion-ios-map:before, .ion-ios-medal-outline:before, .ion-ios-medal:before, .ion-ios-medical-outline:before, .ion-ios-medical:before, .ion-ios-medkit-outline:before, .ion-ios-medkit:before, .ion-ios-megaphone-outline:before, .ion-ios-megaphone:before, .ion-ios-menu-outline:before, .ion-ios-menu:before, .ion-ios-mic-off-outline:before, .ion-ios-mic-off:before, .ion-ios-mic-outline:before, .ion-ios-mic:before, .ion-ios-microphone-outline:before, .ion-ios-microphone:before, .ion-ios-moon-outline:before, .ion-ios-moon:before, .ion-ios-more-outline:before, .ion-ios-more:before, .ion-ios-move-outline:before, .ion-ios-move:before, .ion-ios-musical-note-outline:before, .ion-ios-musical-note:before, .ion-ios-musical-notes-outline:before, .ion-ios-musical-notes:before, .ion-ios-navigate-outline:before, .ion-ios-navigate:before, .ion-ios-no-smoking-outline:before, .ion-ios-no-smoking:before, .ion-ios-notifications-off-outline:before, .ion-ios-notifications-off:before, .ion-ios-notifications-outline:before, .ion-ios-notifications:before, .ion-ios-nuclear-outline:before, .ion-ios-nuclear:before, .ion-ios-nutrition-outline:before, .ion-ios-nutrition:before, .ion-ios-open-outline:before, .ion-ios-open:before, .ion-ios-options-outline:before, .ion-ios-options:before, .ion-ios-outlet-outline:before, .ion-ios-outlet:before, .ion-ios-paper-outline:before, .ion-ios-paper-plane-outline:before, .ion-ios-paper-plane:before, .ion-ios-paper:before, .ion-ios-partly-sunny-outline:before, .ion-ios-partly-sunny:before, .ion-ios-pause-outline:before, .ion-ios-pause:before, .ion-ios-paw-outline:before, .ion-ios-paw:before, .ion-ios-people-outline:before, .ion-ios-people:before, .ion-ios-person-add-outline:before, .ion-ios-person-add:before, .ion-ios-person-outline:before, .ion-ios-person:before, .ion-ios-phone-landscape-outline:before, .ion-ios-phone-landscape:before, .ion-ios-phone-portrait-outline:before, .ion-ios-phone-portrait:before, .ion-ios-photos-outline:before, .ion-ios-photos:before, .ion-ios-pie-outline:before, .ion-ios-pie:before, .ion-ios-pin-outline:before, .ion-ios-pin:before, .ion-ios-pint-outline:before, .ion-ios-pint:before, .ion-ios-pizza-outline:before, .ion-ios-pizza:before, .ion-ios-plane-outline:before, .ion-ios-plane:before, .ion-ios-planet-outline:before, .ion-ios-planet:before, .ion-ios-play-outline:before, .ion-ios-play:before, .ion-ios-podium-outline:before, .ion-ios-podium:before, .ion-ios-power-outline:before, .ion-ios-power:before, .ion-ios-pricetag-outline:before, .ion-ios-pricetag:before, .ion-ios-pricetags-outline:before, .ion-ios-pricetags:before, .ion-ios-print-outline:before, .ion-ios-print:before, .ion-ios-pulse-outline:before, .ion-ios-pulse:before, .ion-ios-qr-scanner-outline:before, .ion-ios-qr-scanner:before, .ion-ios-quote-outline:before, .ion-ios-quote:before, .ion-ios-radio-button-off-outline:before, .ion-ios-radio-button-off:before, .ion-ios-radio-button-on-outline:before, .ion-ios-radio-button-on:before, .ion-ios-radio-outline:before, .ion-ios-radio:before, .ion-ios-rainy-outline:before, .ion-ios-rainy:before, .ion-ios-recording-outline:before, .ion-ios-recording:before, .ion-ios-redo-outline:before, .ion-ios-redo:before, .ion-ios-refresh-circle-outline:before, .ion-ios-refresh-circle:before, .ion-ios-refresh-outline:before, .ion-ios-refresh:before, .ion-ios-remove-circle-outline:before, .ion-ios-remove-circle:before, .ion-ios-remove-outline:before, .ion-ios-remove:before, .ion-ios-reorder-outline:before, .ion-ios-reorder:before, .ion-ios-repeat-outline:before, .ion-ios-repeat:before, .ion-ios-resize-outline:before, .ion-ios-resize:before, .ion-ios-restaurant-outline:before, .ion-ios-restaurant:before, .ion-ios-return-left-outline:before, .ion-ios-return-left:before, .ion-ios-return-right-outline:before, .ion-ios-return-right:before, .ion-ios-reverse-camera-outline:before, .ion-ios-reverse-camera:before, .ion-ios-rewind-outline:before, .ion-ios-rewind:before, .ion-ios-ribbon-outline:before, .ion-ios-ribbon:before, .ion-ios-rose-outline:before, .ion-ios-rose:before, .ion-ios-sad-outline:before, .ion-ios-sad:before, .ion-ios-school-outline:before, .ion-ios-school:before, .ion-ios-search-outline:before, .ion-ios-search:before, .ion-ios-send-outline:before, .ion-ios-send:before, .ion-ios-settings-outline:before, .ion-ios-settings:before, .ion-ios-share-alt-outline:before, .ion-ios-share-alt:before, .ion-ios-share-outline:before, .ion-ios-share:before, .ion-ios-shirt-outline:before, .ion-ios-shirt:before, .ion-ios-shuffle-outline:before, .ion-ios-shuffle:before, .ion-ios-skip-backward-outline:before, .ion-ios-skip-backward:before, .ion-ios-skip-forward-outline:before, .ion-ios-skip-forward:before, .ion-ios-snow-outline:before, .ion-ios-snow:before, .ion-ios-speedometer-outline:before, .ion-ios-speedometer:before, .ion-ios-square-outline:before, .ion-ios-square:before, .ion-ios-star-half-outline:before, .ion-ios-star-half:before, .ion-ios-star-outline:before, .ion-ios-star:before, .ion-ios-stats-outline:before, .ion-ios-stats:before, .ion-ios-stopwatch-outline:before, .ion-ios-stopwatch:before, .ion-ios-subway-outline:before, .ion-ios-subway:before, .ion-ios-sunny-outline:before, .ion-ios-sunny:before, .ion-ios-swap-outline:before, .ion-ios-swap:before, .ion-ios-switch-outline:before, .ion-ios-switch:before, .ion-ios-sync-outline:before, .ion-ios-sync:before, .ion-ios-tablet-landscape-outline:before, .ion-ios-tablet-landscape:before, .ion-ios-tablet-portrait-outline:before, .ion-ios-tablet-portrait:before, .ion-ios-tennisball-outline:before, .ion-ios-tennisball:before, .ion-ios-text-outline:before, .ion-ios-text:before, .ion-ios-thermometer-outline:before, .ion-ios-thermometer:before, .ion-ios-thumbs-down-outline:before, .ion-ios-thumbs-down:before, .ion-ios-thumbs-up-outline:before, .ion-ios-thumbs-up:before, .ion-ios-thunderstorm-outline:before, .ion-ios-thunderstorm:before, .ion-ios-time-outline:before, .ion-ios-time:before, .ion-ios-timer-outline:before, .ion-ios-timer:before, .ion-ios-train-outline:before, .ion-ios-train:before, .ion-ios-transgender-outline:before, .ion-ios-transgender:before, .ion-ios-trash-outline:before, .ion-ios-trash:before, .ion-ios-trending-down-outline:before, .ion-ios-trending-down:before, .ion-ios-trending-up-outline:before, .ion-ios-trending-up:before, .ion-ios-trophy-outline:before, .ion-ios-trophy:before, .ion-ios-umbrella-outline:before, .ion-ios-umbrella:before, .ion-ios-undo-outline:before, .ion-ios-undo:before, .ion-ios-unlock-outline:before, .ion-ios-unlock:before, .ion-ios-videocam-outline:before, .ion-ios-videocam:before, .ion-ios-volume-down-outline:before, .ion-ios-volume-down:before, .ion-ios-volume-mute-outline:before, .ion-ios-volume-mute:before, .ion-ios-volume-off-outline:before, .ion-ios-volume-off:before, .ion-ios-volume-up-outline:before, .ion-ios-volume-up:before, .ion-ios-walk-outline:before, .ion-ios-walk:before, .ion-ios-warning-outline:before, .ion-ios-warning:before, .ion-ios-watch-outline:before, .ion-ios-watch:before, .ion-ios-water-outline:before, .ion-ios-water:before, .ion-ios-wifi-outline:before, .ion-ios-wifi:before, .ion-ios-wine-outline:before, .ion-ios-wine:before, .ion-ios-woman-outline:before, .ion-ios-woman:before, .ion-logo-android:before, .ion-logo-angular:before, .ion-logo-apple:before, .ion-logo-bitcoin:before, .ion-logo-buffer:before, .ion-logo-chrome:before, .ion-logo-codepen:before, .ion-logo-css3:before, .ion-logo-designernews:before, .ion-logo-dribbble:before, .ion-logo-dropbox:before, .ion-logo-euro:before, .ion-logo-facebook:before, .ion-logo-foursquare:before, .ion-logo-freebsd-devil:before, .ion-logo-github:before, .ion-logo-google:before, .ion-logo-googleplus:before, .ion-logo-hackernews:before, .ion-logo-html5:before, .ion-logo-instagram:before, .ion-logo-javascript:before, .ion-logo-linkedin:before, .ion-logo-markdown:before, .ion-logo-nodejs:before, .ion-logo-octocat:before, .ion-logo-pinterest:before, .ion-logo-playstation:before, .ion-logo-python:before, .ion-logo-reddit:before, .ion-logo-rss:before, .ion-logo-sass:before, .ion-logo-skype:before, .ion-logo-snapchat:before, .ion-logo-steam:before, .ion-logo-tumblr:before, .ion-logo-tux:before, .ion-logo-twitch:before, .ion-logo-twitter:before, .ion-logo-usd:before, .ion-logo-vimeo:before, .ion-logo-whatsapp:before, .ion-logo-windows:before, .ion-logo-wordpress:before, .ion-logo-xbox:before, .ion-logo-yahoo:before, .ion-logo-yen:before, .ion-logo-youtube:before, .ion-md-add-circle:before, .ion-md-add:before, .ion-md-alarm:before, .ion-md-albums:before, .ion-md-alert:before, .ion-md-american-football:before, .ion-md-analytics:before, .ion-md-aperture:before, .ion-md-apps:before, .ion-md-appstore:before, .ion-md-archive:before, .ion-md-arrow-back:before, .ion-md-arrow-down:before, .ion-md-arrow-dropdown-circle:before, .ion-md-arrow-dropdown:before, .ion-md-arrow-dropleft-circle:before, .ion-md-arrow-dropleft:before, .ion-md-arrow-dropright-circle:before, .ion-md-arrow-dropright:before, .ion-md-arrow-dropup-circle:before, .ion-md-arrow-dropup:before, .ion-md-arrow-forward:before, .ion-md-arrow-round-back:before, .ion-md-arrow-round-down:before, .ion-md-arrow-round-forward:before, .ion-md-arrow-round-up:before, .ion-md-arrow-up:before, .ion-md-at:before, .ion-md-attach:before, .ion-md-backspace:before, .ion-md-barcode:before, .ion-md-baseball:before, .ion-md-basket:before, .ion-md-basketball:before, .ion-md-battery-charging:before, .ion-md-battery-dead:before, .ion-md-battery-full:before, .ion-md-beaker:before, .ion-md-beer:before, .ion-md-bicycle:before, .ion-md-bluetooth:before, .ion-md-boat:before, .ion-md-body:before, .ion-md-bonfire:before, .ion-md-book:before, .ion-md-bookmark:before, .ion-md-bookmarks:before, .ion-md-bowtie:before, .ion-md-briefcase:before, .ion-md-browsers:before, .ion-md-brush:before, .ion-md-bug:before, .ion-md-build:before, .ion-md-bulb:before, .ion-md-bus:before, .ion-md-cafe:before, .ion-md-calculator:before, .ion-md-calendar:before, .ion-md-call:before, .ion-md-camera:before, .ion-md-car:before, .ion-md-card:before, .ion-md-cart:before, .ion-md-cash:before, .ion-md-chatboxes:before, .ion-md-chatbubbles:before, .ion-md-checkbox-outline:before, .ion-md-checkbox:before, .ion-md-checkmark-circle-outline:before, .ion-md-checkmark-circle:before, .ion-md-checkmark:before, .ion-md-clipboard:before, .ion-md-clock:before, .ion-md-close-circle:before, .ion-md-close:before, .ion-md-closed-captioning:before, .ion-md-cloud-circle:before, .ion-md-cloud-done:before, .ion-md-cloud-download:before, .ion-md-cloud-outline:before, .ion-md-cloud-upload:before, .ion-md-cloud:before, .ion-md-cloudy-night:before, .ion-md-cloudy:before, .ion-md-code-download:before, .ion-md-code-working:before, .ion-md-code:before, .ion-md-cog:before, .ion-md-color-fill:before, .ion-md-color-filter:before, .ion-md-color-palette:before, .ion-md-color-wand:before, .ion-md-compass:before, .ion-md-construct:before, .ion-md-contact:before, .ion-md-contacts:before, .ion-md-contract:before, .ion-md-contrast:before, .ion-md-copy:before, .ion-md-create:before, .ion-md-crop:before, .ion-md-cube:before, .ion-md-cut:before, .ion-md-desktop:before, .ion-md-disc:before, .ion-md-document:before, .ion-md-done-all:before, .ion-md-download:before, .ion-md-easel:before, .ion-md-egg:before, .ion-md-exit:before, .ion-md-expand:before, .ion-md-eye-off:before, .ion-md-eye:before, .ion-md-fastforward:before, .ion-md-female:before, .ion-md-filing:before, .ion-md-film:before, .ion-md-finger-print:before, .ion-md-flag:before, .ion-md-flame:before, .ion-md-flash:before, .ion-md-flask:before, .ion-md-flower:before, .ion-md-folder-open:before, .ion-md-folder:before, .ion-md-football:before, .ion-md-funnel:before, .ion-md-game-controller-a:before, .ion-md-game-controller-b:before, .ion-md-git-branch:before, .ion-md-git-commit:before, .ion-md-git-compare:before, .ion-md-git-merge:before, .ion-md-git-network:before, .ion-md-git-pull-request:before, .ion-md-glasses:before, .ion-md-globe:before, .ion-md-grid:before, .ion-md-hammer:before, .ion-md-hand:before, .ion-md-happy:before, .ion-md-headset:before, .ion-md-heart-outline:before, .ion-md-heart:before, .ion-md-help-buoy:before, .ion-md-help-circle:before, .ion-md-help:before, .ion-md-home:before, .ion-md-ice-cream:before, .ion-md-image:before, .ion-md-images:before, .ion-md-infinite:before, .ion-md-information-circle:before, .ion-md-information:before, .ion-md-ionic:before, .ion-md-ionitron:before, .ion-md-jet:before, .ion-md-key:before, .ion-md-keypad:before, .ion-md-laptop:before, .ion-md-leaf:before, .ion-md-link:before, .ion-md-list-box:before, .ion-md-list:before, .ion-md-locate:before, .ion-md-lock:before, .ion-md-log-in:before, .ion-md-log-out:before, .ion-md-magnet:before, .ion-md-mail-open:before, .ion-md-mail:before, .ion-md-male:before, .ion-md-man:before, .ion-md-map:before, .ion-md-medal:before, .ion-md-medical:before, .ion-md-medkit:before, .ion-md-megaphone:before, .ion-md-menu:before, .ion-md-mic-off:before, .ion-md-mic:before, .ion-md-microphone:before, .ion-md-moon:before, .ion-md-more:before, .ion-md-move:before, .ion-md-musical-note:before, .ion-md-musical-notes:before, .ion-md-navigate:before, .ion-md-no-smoking:before, .ion-md-notifications-off:before, .ion-md-notifications-outline:before, .ion-md-notifications:before, .ion-md-nuclear:before, .ion-md-nutrition:before, .ion-md-open:before, .ion-md-options:before, .ion-md-outlet:before, .ion-md-paper-plane:before, .ion-md-paper:before, .ion-md-partly-sunny:before, .ion-md-pause:before, .ion-md-paw:before, .ion-md-people:before, .ion-md-person-add:before, .ion-md-person:before, .ion-md-phone-landscape:before, .ion-md-phone-portrait:before, .ion-md-photos:before, .ion-md-pie:before, .ion-md-pin:before, .ion-md-pint:before, .ion-md-pizza:before, .ion-md-plane:before, .ion-md-planet:before, .ion-md-play:before, .ion-md-podium:before, .ion-md-power:before, .ion-md-pricetag:before, .ion-md-pricetags:before, .ion-md-print:before, .ion-md-pulse:before, .ion-md-qr-scanner:before, .ion-md-quote:before, .ion-md-radio-button-off:before, .ion-md-radio-button-on:before, .ion-md-radio:before, .ion-md-rainy:before, .ion-md-recording:before, .ion-md-redo:before, .ion-md-refresh-circle:before, .ion-md-refresh:before, .ion-md-remove-circle:before, .ion-md-remove:before, .ion-md-reorder:before, .ion-md-repeat:before, .ion-md-resize:before, .ion-md-restaurant:before, .ion-md-return-left:before, .ion-md-return-right:before, .ion-md-reverse-camera:before, .ion-md-rewind:before, .ion-md-ribbon:before, .ion-md-rose:before, .ion-md-sad:before, .ion-md-school:before, .ion-md-search:before, .ion-md-send:before, .ion-md-settings:before, .ion-md-share-alt:before, .ion-md-share:before, .ion-md-shirt:before, .ion-md-shuffle:before, .ion-md-skip-backward:before, .ion-md-skip-forward:before, .ion-md-snow:before, .ion-md-speedometer:before, .ion-md-square-outline:before, .ion-md-square:before, .ion-md-star-half:before, .ion-md-star-outline:before, .ion-md-star:before, .ion-md-stats:before, .ion-md-stopwatch:before, .ion-md-subway:before, .ion-md-sunny:before, .ion-md-swap:before, .ion-md-switch:before, .ion-md-sync:before, .ion-md-tablet-landscape:before, .ion-md-tablet-portrait:before, .ion-md-tennisball:before, .ion-md-text:before, .ion-md-thermometer:before, .ion-md-thumbs-down:before, .ion-md-thumbs-up:before, .ion-md-thunderstorm:before, .ion-md-time:before, .ion-md-timer:before, .ion-md-train:before, .ion-md-transgender:before, .ion-md-trash:before, .ion-md-trending-down:before, .ion-md-trending-up:before, .ion-md-trophy:before, .ion-md-umbrella:before, .ion-md-undo:before, .ion-md-unlock:before, .ion-md-videocam:before, .ion-md-volume-down:before, .ion-md-volume-mute:before, .ion-md-volume-off:before, .ion-md-volume-up:before, .ion-md-walk:before, .ion-md-warning:before, .ion-md-watch:before, .ion-md-water:before, .ion-md-wifi:before, .ion-md-wine:before, .ion-md-woman:before, .ionicons {
    display: inline-block;
    font-family: Ionicons;
    speak: none;
    font-style: normal;
   
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.ion-ios-add:before {
    content: "\f102"
}

.ion-ios-add-circle:before {
    content: "\f101"
}

.ion-ios-add-circle-outline:before {
    content: "\f100"
}

.ion-ios-add-outline:before {
    content: "\f102"
}

.ion-ios-alarm:before {
    content: "\f3c8"
}

.ion-ios-alarm-outline:before {
    content: "\f3c7"
}

.ion-ios-albums:before {
    content: "\f3ca"
}

.ion-ios-albums-outline:before {
    content: "\f3c9"
}

.ion-ios-alert:before {
    content: "\f104"
}

.ion-ios-alert-outline:before {
    content: "\f103"
}

.ion-ios-american-football:before {
    content: "\f106"
}

.ion-ios-american-football-outline:before {
    content: "\f105"
}

.ion-ios-analytics:before {
    content: "\f3ce"
}

.ion-ios-analytics-outline:before {
    content: "\f3cd"
}

.ion-ios-aperture:before {
    content: "\f108"
}

.ion-ios-aperture-outline:before {
    content: "\f107"
}

.ion-ios-apps:before {
    content: "\f10a"
}

.ion-ios-apps-outline:before {
    content: "\f109"
}

.ion-ios-appstore:before {
    content: "\f10c"
}

.ion-ios-appstore-outline:before {
    content: "\f10b"
}

.ion-ios-archive:before {
    content: "\f10e"
}

.ion-ios-archive-outline:before {
    content: "\f10d"
}

.ion-ios-arrow-back:before {
    content: "\f3cf"
}

.ion-ios-arrow-back-outline:before {
    content: "\f3cf"
}

.ion-ios-arrow-down:before {
    content: "\f3d0"
}

.ion-ios-arrow-down-outline:before {
    content: "\f3d0"
}

.ion-ios-arrow-dropdown:before {
    content: "\f110"
}

.ion-ios-arrow-dropdown-circle:before {
    content: "\f10f"
}

.ion-ios-arrow-dropdown-circle-outline:before {
    content: "\f10f"
}

.ion-ios-arrow-dropdown-outline:before {
    content: "\f110"
}

.ion-ios-arrow-dropleft:before {
    content: "\f112"
}

.ion-ios-arrow-dropleft-circle:before {
    content: "\f111"
}

.ion-ios-arrow-dropleft-circle-outline:before {
    content: "\f111"
}

.ion-ios-arrow-dropleft-outline:before {
    content: "\f112"
}

.ion-ios-arrow-dropright:before {
    content: "\f114"
}

.ion-ios-arrow-dropright-circle:before {
    content: "\f113"
}

.ion-ios-arrow-dropright-circle-outline:before {
    content: "\f113"
}

.ion-ios-arrow-dropright-outline:before {
    content: "\f114"
}

.ion-ios-arrow-dropup:before {
    content: "\f116"
}

.ion-ios-arrow-dropup-circle:before {
    content: "\f115"
}

.ion-ios-arrow-dropup-circle-outline:before {
    content: "\f115"
}

.ion-ios-arrow-dropup-outline:before {
    content: "\f116"
}

.ion-ios-arrow-forward:before {
    content: "\f3d1"
}

.ion-ios-arrow-forward-outline:before {
    content: "\f3d1"
}

.ion-ios-arrow-round-back:before {
    content: "\f117"
}

.ion-ios-arrow-round-back-outline:before {
    content: "\f117"
}

.ion-ios-arrow-round-down:before {
    content: "\f118"
}

.ion-ios-arrow-round-down-outline:before {
    content: "\f118"
}

.ion-ios-arrow-round-forward:before {
    content: "\f119"
}

.ion-ios-arrow-round-forward-outline:before {
    content: "\f119"
}

.ion-ios-arrow-round-up:before {
    content: "\f11a"
}

.ion-ios-arrow-round-up-outline:before {
    content: "\f11a"
}

.ion-ios-arrow-up:before {
    content: "\f3d8"
}

.ion-ios-arrow-up-outline:before {
    content: "\f3d8"
}

.ion-ios-at:before {
    content: "\f3da"
}

.ion-ios-at-outline:before {
    content: "\f3d9"
}

.ion-ios-attach:before {
    content: "\f11b"
}

.ion-ios-attach-outline:before {
    content: "\f11b"
}

.ion-ios-backspace:before {
    content: "\f11d"
}

.ion-ios-backspace-outline:before {
    content: "\f11c"
}

.ion-ios-barcode:before {
    content: "\f3dc"
}

.ion-ios-barcode-outline:before {
    content: "\f3db"
}

.ion-ios-baseball:before {
    content: "\f3de"
}

.ion-ios-baseball-outline:before {
    content: "\f3dd"
}

.ion-ios-basket:before {
    content: "\f11f"
}

.ion-ios-basket-outline:before {
    content: "\f11e"
}

.ion-ios-basketball:before {
    content: "\f3e0"
}

.ion-ios-basketball-outline:before {
    content: "\f3df"
}

.ion-ios-battery-charging:before {
    content: "\f120"
}

.ion-ios-battery-charging-outline:before {
    content: "\f120"
}

.ion-ios-battery-dead:before {
    content: "\f121"
}

.ion-ios-battery-dead-outline:before {
    content: "\f121"
}

.ion-ios-battery-full:before {
    content: "\f122"
}

.ion-ios-battery-full-outline:before {
    content: "\f122"
}

.ion-ios-beaker:before {
    content: "\f124"
}

.ion-ios-beaker-outline:before {
    content: "\f123"
}

.ion-ios-beer:before {
    content: "\f126"
}

.ion-ios-beer-outline:before {
    content: "\f125"
}

.ion-ios-bicycle:before {
    content: "\f127"
}

.ion-ios-bicycle-outline:before {
    content: "\f127"
}

.ion-ios-bluetooth:before {
    content: "\f128"
}

.ion-ios-bluetooth-outline:before {
    content: "\f128"
}

.ion-ios-boat:before {
    content: "\f12a"
}

.ion-ios-boat-outline:before {
    content: "\f129"
}

.ion-ios-body:before {
    content: "\f3e4"
}

.ion-ios-body-outline:before {
    content: "\f3e3"
}

.ion-ios-bonfire:before {
    content: "\f12c"
}

.ion-ios-bonfire-outline:before {
    content: "\f12b"
}

.ion-ios-book:before {
    content: "\f3e8"
}

.ion-ios-book-outline:before {
    content: "\f3e7"
}

.ion-ios-bookmark:before {
    content: "\f12e"
}

.ion-ios-bookmark-outline:before {
    content: "\f12d"
}

.ion-ios-bookmarks:before {
    content: "\f3ea"
}

.ion-ios-bookmarks-outline:before {
    content: "\f3e9"
}

.ion-ios-bowtie:before {
    content: "\f130"
}

.ion-ios-bowtie-outline:before {
    content: "\f12f"
}

.ion-ios-briefcase:before {
    content: "\f3ee"
}

.ion-ios-briefcase-outline:before {
    content: "\f3ed"
}

.ion-ios-browsers:before {
    content: "\f3f0"
}

.ion-ios-browsers-outline:before {
    content: "\f3ef"
}

.ion-ios-brush:before {
    content: "\f132"
}

.ion-ios-brush-outline:before {
    content: "\f131"
}

.ion-ios-bug:before {
    content: "\f134"
}

.ion-ios-bug-outline:before {
    content: "\f133"
}

.ion-ios-build:before {
    content: "\f136"
}

.ion-ios-build-outline:before {
    content: "\f135"
}

.ion-ios-bulb:before {
    content: "\f138"
}

.ion-ios-bulb-outline:before {
    content: "\f137"
}

.ion-ios-bus:before {
    content: "\f13a"
}

.ion-ios-bus-outline:before {
    content: "\f139"
}

.ion-ios-cafe:before {
    content: "\f13c"
}

.ion-ios-cafe-outline:before {
    content: "\f13b"
}

.ion-ios-calculator:before {
    content: "\f3f2"
}

.ion-ios-calculator-outline:before {
    content: "\f3f1"
}

.ion-ios-calendar:before {
    content: "\f3f4"
}

.ion-ios-calendar-outline:before {
    content: "\f3f3"
}

.ion-ios-call:before {
    content: "\f13e"
}

.ion-ios-call-outline:before {
    content: "\f13d"
}

.ion-ios-camera:before {
    content: "\f3f6"
}

.ion-ios-camera-outline:before {
    content: "\f3f5"
}

.ion-ios-car:before {
    content: "\f140"
}

.ion-ios-car-outline:before {
    content: "\f13f"
}

.ion-ios-card:before {
    content: "\f142"
}

.ion-ios-card-outline:before {
    content: "\f141"
}

.ion-ios-cart:before {
    content: "\f3f8"
}

.ion-ios-cart-outline:before {
    content: "\f3f7"
}

.ion-ios-cash:before {
    content: "\f144"
}

.ion-ios-cash-outline:before {
    content: "\f143"
}

.ion-ios-chatboxes:before {
    content: "\f3fa"
}

.ion-ios-chatboxes-outline:before {
    content: "\f3f9"
}

.ion-ios-chatbubbles:before {
    content: "\f146"
}

.ion-ios-chatbubbles-outline:before {
    content: "\f145"
}

.ion-ios-checkbox:before {
    content: "\f148"
}

.ion-ios-checkbox-outline:before {
    content: "\f147"
}

.ion-ios-checkmark:before {
    content: "\f3ff"
}

.ion-ios-checkmark-circle:before {
    content: "\f14a"
}

.ion-ios-checkmark-circle-outline:before {
    content: "\f149"
}

.ion-ios-checkmark-outline:before {
    content: "\f3ff"
}

.ion-ios-clipboard:before {
    content: "\f14c"
}

.ion-ios-clipboard-outline:before {
    content: "\f14b"
}

.ion-ios-clock:before {
    content: "\f403"
}

.ion-ios-clock-outline:before {
    content: "\f402"
}

.ion-ios-close:before {
    content: "\f406"
}

.ion-ios-close-circle:before {
    content: "\f14e"
}

.ion-ios-close-circle-outline:before {
    content: "\f14d"
}

.ion-ios-close-outline:before {
    content: "\f406"
}

.ion-ios-closed-captioning:before {
    content: "\f150"
}

.ion-ios-closed-captioning-outline:before {
    content: "\f14f"
}

.ion-ios-cloud:before {
    content: "\f40c"
}

.ion-ios-cloud-circle:before {
    content: "\f152"
}

.ion-ios-cloud-circle-outline:before {
    content: "\f151"
}

.ion-ios-cloud-done:before {
    content: "\f154"
}

.ion-ios-cloud-done-outline:before {
    content: "\f153"
}

.ion-ios-cloud-download:before {
    content: "\f408"
}

.ion-ios-cloud-download-outline:before {
    content: "\f407"
}

.ion-ios-cloud-outline:before {
    content: "\f409"
}

.ion-ios-cloud-upload:before {
    content: "\f40b"
}

.ion-ios-cloud-upload-outline:before {
    content: "\f40a"
}

.ion-ios-cloudy:before {
    content: "\f410"
}

.ion-ios-cloudy-night:before {
    content: "\f40e"
}

.ion-ios-cloudy-night-outline:before {
    content: "\f40d"
}

.ion-ios-cloudy-outline:before {
    content: "\f40f"
}

.ion-ios-code:before {
    content: "\f157"
}

.ion-ios-code-download:before {
    content: "\f155"
}

.ion-ios-code-download-outline:before {
    content: "\f155"
}

.ion-ios-code-outline:before {
    content: "\f157"
}

.ion-ios-code-working:before {
    content: "\f156"
}

.ion-ios-code-working-outline:before {
    content: "\f156"
}

.ion-ios-cog:before {
    content: "\f412"
}

.ion-ios-cog-outline:before {
    content: "\f411"
}

.ion-ios-color-fill:before {
    content: "\f159"
}

.ion-ios-color-fill-outline:before {
    content: "\f158"
}

.ion-ios-color-filter:before {
    content: "\f414"
}

.ion-ios-color-filter-outline:before {
    content: "\f413"
}

.ion-ios-color-palette:before {
    content: "\f15b"
}

.ion-ios-color-palette-outline:before {
    content: "\f15a"
}

.ion-ios-color-wand:before {
    content: "\f416"
}

.ion-ios-color-wand-outline:before {
    content: "\f415"
}

.ion-ios-compass:before {
    content: "\f15d"
}

.ion-ios-compass-outline:before {
    content: "\f15c"
}

.ion-ios-construct:before {
    content: "\f15f"
}

.ion-ios-construct-outline:before {
    content: "\f15e"
}

.ion-ios-contact:before {
    content: "\f41a"
}

.ion-ios-contact-outline:before {
    content: "\f419"
}

.ion-ios-contacts:before {
    content: "\f161"
}

.ion-ios-contacts-outline:before {
    content: "\f160"
}

.ion-ios-contract:before {
    content: "\f162"
}

.ion-ios-contract-outline:before {
    content: "\f162"
}

.ion-ios-contrast:before {
    content: "\f163"
}

.ion-ios-contrast-outline:before {
    content: "\f163"
}

.ion-ios-copy:before {
    content: "\f41c"
}

.ion-ios-copy-outline:before {
    content: "\f41b"
}

.ion-ios-create:before {
    content: "\f165"
}

.ion-ios-create-outline:before {
    content: "\f164"
}

.ion-ios-crop:before {
    content: "\f41e"
}

.ion-ios-crop-outline:before {
    content: "\f166"
}

.ion-ios-cube:before {
    content: "\f168"
}

.ion-ios-cube-outline:before {
    content: "\f167"
}

.ion-ios-cut:before {
    content: "\f16a"
}

.ion-ios-cut-outline:before {
    content: "\f169"
}

.ion-ios-desktop:before {
    content: "\f16c"
}

.ion-ios-desktop-outline:before {
    content: "\f16b"
}

.ion-ios-disc:before {
    content: "\f16e"
}

.ion-ios-disc-outline:before {
    content: "\f16d"
}

.ion-ios-document:before {
    content: "\f170"
}

.ion-ios-document-outline:before {
    content: "\f16f"
}

.ion-ios-done-all:before {
    content: "\f171"
}

.ion-ios-done-all-outline:before {
    content: "\f171"
}

.ion-ios-download:before {
    content: "\f420"
}

.ion-ios-download-outline:before {
    content: "\f41f"
}

.ion-ios-easel:before {
    content: "\f173"
}

.ion-ios-easel-outline:before {
    content: "\f172"
}

.ion-ios-egg:before {
    content: "\f175"
}

.ion-ios-egg-outline:before {
    content: "\f174"
}

.ion-ios-exit:before {
    content: "\f177"
}

.ion-ios-exit-outline:before {
    content: "\f176"
}

.ion-ios-expand:before {
    content: "\f178"
}

.ion-ios-expand-outline:before {
    content: "\f178"
}

.ion-ios-eye:before {
    content: "\f425"
}

.ion-ios-eye-off:before {
    content: "\f17a"
}

.ion-ios-eye-off-outline:before {
    content: "\f179"
}

.ion-ios-eye-outline:before {
    content: "\f424"
}

.ion-ios-fastforward:before {
    content: "\f427"
}

.ion-ios-fastforward-outline:before {
    content: "\f426"
}

.ion-ios-female:before {
    content: "\f17b"
}

.ion-ios-female-outline:before {
    content: "\f17b"
}

.ion-ios-filing:before {
    content: "\f429"
}

.ion-ios-filing-outline:before {
    content: "\f428"
}

.ion-ios-film:before {
    content: "\f42b"
}

.ion-ios-film-outline:before {
    content: "\f42a"
}

.ion-ios-finger-print:before {
    content: "\f17c"
}

.ion-ios-finger-print-outline:before {
    content: "\f17c"
}

.ion-ios-flag:before {
    content: "\f42d"
}

.ion-ios-flag-outline:before {
    content: "\f42c"
}

.ion-ios-flame:before {
    content: "\f42f"
}

.ion-ios-flame-outline:before {
    content: "\f42e"
}

.ion-ios-flash:before {
    content: "\f17e"
}

.ion-ios-flash-outline:before {
    content: "\f17d"
}

.ion-ios-flask:before {
    content: "\f431"
}

.ion-ios-flask-outline:before {
    content: "\f430"
}

.ion-ios-flower:before {
    content: "\f433"
}

.ion-ios-flower-outline:before {
    content: "\f432"
}

.ion-ios-folder:before {
    content: "\f435"
}

.ion-ios-folder-open:before {
    content: "\f180"
}

.ion-ios-folder-open-outline:before {
    content: "\f17f"
}

.ion-ios-folder-outline:before {
    content: "\f434"
}

.ion-ios-football:before {
    content: "\f437"
}

.ion-ios-football-outline:before {
    content: "\f436"
}

.ion-ios-funnel:before {
    content: "\f182"
}

.ion-ios-funnel-outline:before {
    content: "\f181"
}

.ion-ios-game-controller-a:before {
    content: "\f439"
}

.ion-ios-game-controller-a-outline:before {
    content: "\f438"
}

.ion-ios-game-controller-b:before {
    content: "\f43b"
}

.ion-ios-game-controller-b-outline:before {
    content: "\f43a"
}

.ion-ios-git-branch:before {
    content: "\f183"
}

.ion-ios-git-branch-outline:before {
    content: "\f183"
}

.ion-ios-git-commit:before {
    content: "\f184"
}

.ion-ios-git-commit-outline:before {
    content: "\f184"
}

.ion-ios-git-compare:before {
    content: "\f185"
}

.ion-ios-git-compare-outline:before {
    content: "\f185"
}

.ion-ios-git-merge:before {
    content: "\f186"
}

.ion-ios-git-merge-outline:before {
    content: "\f186"
}

.ion-ios-git-network:before {
    content: "\f187"
}

.ion-ios-git-network-outline:before {
    content: "\f187"
}

.ion-ios-git-pull-request:before {
    content: "\f188"
}

.ion-ios-git-pull-request-outline:before {
    content: "\f188"
}

.ion-ios-glasses:before {
    content: "\f43f"
}

.ion-ios-glasses-outline:before {
    content: "\f43e"
}

.ion-ios-globe:before {
    content: "\f18a"
}

.ion-ios-globe-outline:before {
    content: "\f189"
}

.ion-ios-grid:before {
    content: "\f18c"
}

.ion-ios-grid-outline:before {
    content: "\f18b"
}

.ion-ios-hammer:before {
    content: "\f18e"
}

.ion-ios-hammer-outline:before {
    content: "\f18d"
}

.ion-ios-hand:before {
    content: "\f190"
}

.ion-ios-hand-outline:before {
    content: "\f18f"
}

.ion-ios-happy:before {
    content: "\f192"
}

.ion-ios-happy-outline:before {
    content: "\f191"
}

.ion-ios-headset:before {
    content: "\f194"
}

.ion-ios-headset-outline:before {
    content: "\f193"
}

.ion-ios-heart:before {
    content: "\f443"
}

.ion-ios-heart-outline:before {
    content: "\f442"
}

.ion-ios-help:before {
    content: "\f446"
}

.ion-ios-help-buoy:before {
    content: "\f196"
}

.ion-ios-help-buoy-outline:before {
    content: "\f195"
}

.ion-ios-help-circle:before {
    content: "\f198"
}

.ion-ios-help-circle-outline:before {
    content: "\f197"
}

.ion-ios-help-outline:before {
    content: "\f446"
}

.ion-ios-home:before {
    content: "\f448"
}

.ion-ios-home-outline:before {
    content: "\f447"
}

.ion-ios-ice-cream:before {
    content: "\f19a"
}

.ion-ios-ice-cream-outline:before {
    content: "\f199"
}

.ion-ios-image:before {
    content: "\f19c"
}

.ion-ios-image-outline:before {
    content: "\f19b"
}

.ion-ios-images:before {
    content: "\f19e"
}

.ion-ios-images-outline:before {
    content: "\f19d"
}

.ion-ios-infinite:before {
    content: "\f44a"
}

.ion-ios-infinite-outline:before {
    content: "\f449"
}

.ion-ios-information:before {
    content: "\f44d"
}

.ion-ios-information-circle:before {
    content: "\f1a0"
}

.ion-ios-information-circle-outline:before {
    content: "\f19f"
}

.ion-ios-information-outline:before {
    content: "\f44d"
}

.ion-ios-ionic:before {
    content: "\f1a1"
}

.ion-ios-ionic-outline:before {
    content: "\f44e"
}

.ion-ios-ionitron:before {
    content: "\f1a3"
}

.ion-ios-ionitron-outline:before {
    content: "\f1a2"
}

.ion-ios-jet:before {
    content: "\f1a5"
}

.ion-ios-jet-outline:before {
    content: "\f1a4"
}

.ion-ios-key:before {
    content: "\f1a7"
}

.ion-ios-key-outline:before {
    content: "\f1a6"
}

.ion-ios-keypad:before {
    content: "\f450"
}

.ion-ios-keypad-outline:before {
    content: "\f44f"
}

.ion-ios-laptop:before {
    content: "\f1a8"
}

.ion-ios-laptop-outline:before {
    content: "\f1a8"
}

.ion-ios-leaf:before {
    content: "\f1aa"
}

.ion-ios-leaf-outline:before {
    content: "\f1a9"
}

.ion-ios-link:before {
    content: "\f22a"
}

.ion-ios-link-outline:before {
    content: "\f1ca"
}

.ion-ios-list:before {
    content: "\f454"
}

.ion-ios-list-box:before {
    content: "\f1ac"
}

.ion-ios-list-box-outline:before {
    content: "\f1ab"
}

.ion-ios-list-outline:before {
    content: "\f454"
}

.ion-ios-locate:before {
    content: "\f1ae"
}

.ion-ios-locate-outline:before {
    content: "\f1ad"
}

.ion-ios-lock:before {
    content: "\f1b0"
}

.ion-ios-lock-outline:before {
    content: "\f1af"
}

.ion-ios-log-in:before {
    content: "\f1b1"
}

.ion-ios-log-in-outline:before {
    content: "\f1b1"
}

.ion-ios-log-out:before {
    content: "\f1b2"
}

.ion-ios-log-out-outline:before {
    content: "\f1b2"
}

.ion-ios-magnet:before {
    content: "\f1b4"
}

.ion-ios-magnet-outline:before {
    content: "\f1b3"
}

.ion-ios-mail:before {
    content: "\f1b8"
}

.ion-ios-mail-open:before {
    content: "\f1b6"
}

.ion-ios-mail-open-outline:before {
    content: "\f1b5"
}

.ion-ios-mail-outline:before {
    content: "\f1b7"
}

.ion-ios-male:before {
    content: "\f1b9"
}

.ion-ios-male-outline:before {
    content: "\f1b9"
}

.ion-ios-man:before {
    content: "\f1bb"
}

.ion-ios-man-outline:before {
    content: "\f1ba"
}

.ion-ios-map:before {
    content: "\f1bd"
}

.ion-ios-map-outline:before {
    content: "\f1bc"
}

.ion-ios-medal:before {
    content: "\f1bf"
}

.ion-ios-medal-outline:before {
    content: "\f1be"
}

.ion-ios-medical:before {
    content: "\f45c"
}

.ion-ios-medical-outline:before {
    content: "\f45b"
}

.ion-ios-medkit:before {
    content: "\f45e"
}

.ion-ios-medkit-outline:before {
    content: "\f45d"
}

.ion-ios-megaphone:before {
    content: "\f1c1"
}

.ion-ios-megaphone-outline:before {
    content: "\f1c0"
}

.ion-ios-menu:before {
    content: "\f1c3"
}

.ion-ios-menu-outline:before {
    content: "\f1c2"
}

.ion-ios-mic:before {
    content: "\f461"
}

.ion-ios-mic-off:before {
    content: "\f45f"
}

.ion-ios-mic-off-outline:before {
    content: "\f1c4"
}

.ion-ios-mic-outline:before {
    content: "\f460"
}

.ion-ios-microphone:before {
    content: "\f1c6"
}

.ion-ios-microphone-outline:before {
    content: "\f1c5"
}

.ion-ios-moon:before {
    content: "\f468"
}

.ion-ios-moon-outline:before {
    content: "\f467"
}

.ion-ios-more:before {
    content: "\f1c8"
}

.ion-ios-more-outline:before {
    content: "\f1c7"
}

.ion-ios-move:before {
    content: "\f1cb"
}

.ion-ios-move-outline:before {
    content: "\f1cb"
}

.ion-ios-musical-note:before {
    content: "\f46b"
}

.ion-ios-musical-note-outline:before {
    content: "\f1cc"
}

.ion-ios-musical-notes:before {
    content: "\f46c"
}

.ion-ios-musical-notes-outline:before {
    content: "\f1cd"
}

.ion-ios-navigate:before {
    content: "\f46e"
}

.ion-ios-navigate-outline:before {
    content: "\f46d"
}

.ion-ios-no-smoking:before {
    content: "\f1cf"
}

.ion-ios-no-smoking-outline:before {
    content: "\f1ce"
}

.ion-ios-notifications:before {
    content: "\f1d3"
}

.ion-ios-notifications-off:before {
    content: "\f1d1"
}

.ion-ios-notifications-off-outline:before {
    content: "\f1d0"
}

.ion-ios-notifications-outline:before {
    content: "\f1d2"
}

.ion-ios-nuclear:before {
    content: "\f1d5"
}

.ion-ios-nuclear-outline:before {
    content: "\f1d4"
}

.ion-ios-nutrition:before {
    content: "\f470"
}

.ion-ios-nutrition-outline:before {
    content: "\f46f"
}

.ion-ios-open:before {
    content: "\f1d7"
}

.ion-ios-open-outline:before {
    content: "\f1d6"
}

.ion-ios-options:before {
    content: "\f1d9"
}

.ion-ios-options-outline:before {
    content: "\f1d8"
}

.ion-ios-outlet:before {
    content: "\f1db"
}

.ion-ios-outlet-outline:before {
    content: "\f1da"
}

.ion-ios-paper:before {
    content: "\f472"
}

.ion-ios-paper-outline:before {
    content: "\f471"
}

.ion-ios-paper-plane:before {
    content: "\f1dd"
}

.ion-ios-paper-plane-outline:before {
    content: "\f1dc"
}

.ion-ios-partly-sunny:before {
    content: "\f1df"
}

.ion-ios-partly-sunny-outline:before {
    content: "\f1de"
}

.ion-ios-pause:before {
    content: "\f478"
}

.ion-ios-pause-outline:before {
    content: "\f477"
}

.ion-ios-paw:before {
    content: "\f47a"
}

.ion-ios-paw-outline:before {
    content: "\f479"
}

.ion-ios-people:before {
    content: "\f47c"
}

.ion-ios-people-outline:before {
    content: "\f47b"
}

.ion-ios-person:before {
    content: "\f47e"
}

.ion-ios-person-add:before {
    content: "\f1e1"
}

.ion-ios-person-add-outline:before {
    content: "\f1e0"
}

.ion-ios-person-outline:before {
    content: "\f47d"
}

.ion-ios-phone-landscape:before {
    content: "\f1e2"
}

.ion-ios-phone-landscape-outline:before {
    content: "\f1e2"
}

.ion-ios-phone-portrait:before {
    content: "\f1e3"
}

.ion-ios-phone-portrait-outline:before {
    content: "\f1e3"
}

.ion-ios-photos:before {
    content: "\f482"
}

.ion-ios-photos-outline:before {
    content: "\f481"
}

.ion-ios-pie:before {
    content: "\f484"
}

.ion-ios-pie-outline:before {
    content: "\f483"
}

.ion-ios-pin:before {
    content: "\f1e5"
}

.ion-ios-pin-outline:before {
    content: "\f1e4"
}

.ion-ios-pint:before {
    content: "\f486"
}

.ion-ios-pint-outline:before {
    content: "\f485"
}

.ion-ios-pizza:before {
    content: "\f1e7"
}

.ion-ios-pizza-outline:before {
    content: "\f1e6"
}

.ion-ios-plane:before {
    content: "\f1e9"
}

.ion-ios-plane-outline:before {
    content: "\f1e8"
}

.ion-ios-planet:before {
    content: "\f1eb"
}

.ion-ios-planet-outline:before {
    content: "\f1ea"
}

.ion-ios-play:before {
    content: "\f488"
}

.ion-ios-play-outline:before {
    content: "\f487"
}

.ion-ios-podium:before {
    content: "\f1ed"
}

.ion-ios-podium-outline:before {
    content: "\f1ec"
}

.ion-ios-power:before {
    content: "\f1ef"
}

.ion-ios-power-outline:before {
    content: "\f1ee"
}

.ion-ios-pricetag:before {
    content: "\f48d"
}

.ion-ios-pricetag-outline:before {
    content: "\f48c"
}

.ion-ios-pricetags:before {
    content: "\f48f"
}

.ion-ios-pricetags-outline:before {
    content: "\f48e"
}

.ion-ios-print:before {
    content: "\f1f1"
}

.ion-ios-print-outline:before {
    content: "\f1f0"
}

.ion-ios-pulse:before {
    content: "\f493"
}

.ion-ios-pulse-outline:before {
    content: "\f1f2"
}

.ion-ios-qr-scanner:before {
    content: "\f1f3"
}

.ion-ios-qr-scanner-outline:before {
    content: "\f1f3"
}

.ion-ios-quote:before {
    content: "\f1f5"
}

.ion-ios-quote-outline:before {
    content: "\f1f4"
}

.ion-ios-radio:before {
    content: "\f1f9"
}

.ion-ios-radio-button-off:before {
    content: "\f1f6"
}

.ion-ios-radio-button-off-outline:before {
    content: "\f1f6"
}

.ion-ios-radio-button-on:before {
    content: "\f1f7"
}

.ion-ios-radio-button-on-outline:before {
    content: "\f1f7"
}

.ion-ios-radio-outline:before {
    content: "\f1f8"
}

.ion-ios-rainy:before {
    content: "\f495"
}

.ion-ios-rainy-outline:before {
    content: "\f494"
}

.ion-ios-recording:before {
    content: "\f497"
}

.ion-ios-recording-outline:before {
    content: "\f496"
}

.ion-ios-redo:before {
    content: "\f499"
}

.ion-ios-redo-outline:before {
    content: "\f498"
}

.ion-ios-refresh:before {
    content: "\f49c"
}

.ion-ios-refresh-circle:before {
    content: "\f226"
}

.ion-ios-refresh-circle-outline:before {
    content: "\f224"
}

.ion-ios-refresh-outline:before {
    content: "\f49c"
}

.ion-ios-remove:before {
    content: "\f1fc"
}

.ion-ios-remove-circle:before {
    content: "\f1fb"
}

.ion-ios-remove-circle-outline:before {
    content: "\f1fa"
}

.ion-ios-remove-outline:before {
    content: "\f1fc"
}

.ion-ios-reorder:before {
    content: "\f1fd"
}

.ion-ios-reorder-outline:before {
    content: "\f1fd"
}

.ion-ios-repeat:before {
    content: "\f1fe"
}

.ion-ios-repeat-outline:before {
    content: "\f1fe"
}

.ion-ios-resize:before {
    content: "\f1ff"
}

.ion-ios-resize-outline:before {
    content: "\f1ff"
}

.ion-ios-restaurant:before {
    content: "\f201"
}

.ion-ios-restaurant-outline:before {
    content: "\f200"
}

.ion-ios-return-left:before {
    content: "\f202"
}

.ion-ios-return-left-outline:before {
    content: "\f202"
}

.ion-ios-return-right:before {
    content: "\f203"
}

.ion-ios-return-right-outline:before {
    content: "\f203"
}

.ion-ios-reverse-camera:before {
    content: "\f49f"
}

.ion-ios-reverse-camera-outline:before {
    content: "\f49e"
}

.ion-ios-rewind:before {
    content: "\f4a1"
}

.ion-ios-rewind-outline:before {
    content: "\f4a0"
}

.ion-ios-ribbon:before {
    content: "\f205"
}

.ion-ios-ribbon-outline:before {
    content: "\f204"
}

.ion-ios-rose:before {
    content: "\f4a3"
}

.ion-ios-rose-outline:before {
    content: "\f4a2"
}

.ion-ios-sad:before {
    content: "\f207"
}

.ion-ios-sad-outline:before {
    content: "\f206"
}

.ion-ios-school:before {
    content: "\f209"
}

.ion-ios-school-outline:before {
    content: "\f208"
}

.ion-ios-search:before {
    content: "\f4a5"
}

.ion-ios-search-outline:before {
    content: "\f20a"
}

.ion-ios-send:before {
    content: "\f20c"
}

.ion-ios-send-outline:before {
    content: "\f20b"
}

.ion-ios-settings:before {
    content: "\f4a7"
}

.ion-ios-settings-outline:before {
    content: "\f20d"
}

.ion-ios-share:before {
    content: "\f211"
}

.ion-ios-share-alt:before {
    content: "\f20f"
}

.ion-ios-share-alt-outline:before {
    content: "\f20e"
}

.ion-ios-share-outline:before {
    content: "\f210"
}

.ion-ios-shirt:before {
    content: "\f213"
}

.ion-ios-shirt-outline:before {
    content: "\f212"
}

.ion-ios-shuffle:before {
    content: "\f4a9"
}

.ion-ios-shuffle-outline:before {
    content: "\f4a9"
}

.ion-ios-skip-backward:before {
    content: "\f215"
}

.ion-ios-skip-backward-outline:before {
    content: "\f214"
}

.ion-ios-skip-forward:before {
    content: "\f217"
}

.ion-ios-skip-forward-outline:before {
    content: "\f216"
}

.ion-ios-snow:before {
    content: "\f218"
}

.ion-ios-snow-outline:before {
    content: "\f22c"
}

.ion-ios-speedometer:before {
    content: "\f4b0"
}

.ion-ios-speedometer-outline:before {
    content: "\f4af"
}

.ion-ios-square:before {
    content: "\f21a"
}

.ion-ios-square-outline:before {
    content: "\f219"
}

.ion-ios-star:before {
    content: "\f4b3"
}

.ion-ios-star-half:before {
    content: "\f4b1"
}

.ion-ios-star-half-outline:before {
    content: "\f4b1"
}

.ion-ios-star-outline:before {
    content: "\f4b2"
}

.ion-ios-stats:before {
    content: "\f21c"
}

.ion-ios-stats-outline:before {
    content: "\f21b"
}

.ion-ios-stopwatch:before {
    content: "\f4b5"
}

.ion-ios-stopwatch-outline:before {
    content: "\f4b4"
}

.ion-ios-subway:before {
    content: "\f21e"
}

.ion-ios-subway-outline:before {
    content: "\f21d"
}

.ion-ios-sunny:before {
    content: "\f4b7"
}

.ion-ios-sunny-outline:before {
    content: "\f4b6"
}

.ion-ios-swap:before {
    content: "\f21f"
}

.ion-ios-swap-outline:before {
    content: "\f21f"
}

.ion-ios-switch:before {
    content: "\f221"
}

.ion-ios-switch-outline:before {
    content: "\f220"
}

.ion-ios-sync:before {
    content: "\f222"
}

.ion-ios-sync-outline:before {
    content: "\f222"
}

.ion-ios-tablet-landscape:before {
    content: "\f223"
}

.ion-ios-tablet-landscape-outline:before {
    content: "\f223"
}

.ion-ios-tablet-portrait:before {
    content: "\f24e"
}

.ion-ios-tablet-portrait-outline:before {
    content: "\f24e"
}

.ion-ios-tennisball:before {
    content: "\f4bb"
}

.ion-ios-tennisball-outline:before {
    content: "\f4ba"
}

.ion-ios-text:before {
    content: "\f250"
}

.ion-ios-text-outline:before {
    content: "\f24f"
}

.ion-ios-thermometer:before {
    content: "\f252"
}

.ion-ios-thermometer-outline:before {
    content: "\f251"
}

.ion-ios-thumbs-down:before {
    content: "\f254"
}

.ion-ios-thumbs-down-outline:before {
    content: "\f253"
}

.ion-ios-thumbs-up:before {
    content: "\f256"
}

.ion-ios-thumbs-up-outline:before {
    content: "\f255"
}

.ion-ios-thunderstorm:before {
    content: "\f4bd"
}

.ion-ios-thunderstorm-outline:before {
    content: "\f4bc"
}

.ion-ios-time:before {
    content: "\f4bf"
}

.ion-ios-time-outline:before {
    content: "\f4be"
}

.ion-ios-timer:before {
    content: "\f4c1"
}

.ion-ios-timer-outline:before {
    content: "\f4c0"
}

.ion-ios-train:before {
    content: "\f258"
}

.ion-ios-train-outline:before {
    content: "\f257"
}

.ion-ios-transgender:before {
    content: "\f259"
}

.ion-ios-transgender-outline:before {
    content: "\f259"
}

.ion-ios-trash:before {
    content: "\f4c5"
}

.ion-ios-trash-outline:before {
    content: "\f4c4"
}

.ion-ios-trending-down:before {
    content: "\f25a"
}

.ion-ios-trending-down-outline:before {
    content: "\f25a"
}

.ion-ios-trending-up:before {
    content: "\f25b"
}

.ion-ios-trending-up-outline:before {
    content: "\f25b"
}

.ion-ios-trophy:before {
    content: "\f25d"
}

.ion-ios-trophy-outline:before {
    content: "\f25c"
}

.ion-ios-umbrella:before {
    content: "\f25f"
}

.ion-ios-umbrella-outline:before {
    content: "\f25e"
}

.ion-ios-undo:before {
    content: "\f4c7"
}

.ion-ios-undo-outline:before {
    content: "\f4c6"
}

.ion-ios-unlock:before {
    content: "\f261"
}

.ion-ios-unlock-outline:before {
    content: "\f260"
}

.ion-ios-videocam:before {
    content: "\f4cd"
}

.ion-ios-videocam-outline:before {
    content: "\f4cc"
}

.ion-ios-volume-down:before {
    content: "\f262"
}

.ion-ios-volume-down-outline:before {
    content: "\f262"
}

.ion-ios-volume-mute:before {
    content: "\f263"
}

.ion-ios-volume-mute-outline:before {
    content: "\f263"
}

.ion-ios-volume-off:before {
    content: "\f264"
}

.ion-ios-volume-off-outline:before {
    content: "\f264"
}

.ion-ios-volume-up:before {
    content: "\f265"
}

.ion-ios-volume-up-outline:before {
    content: "\f265"
}

.ion-ios-walk:before {
    content: "\f266"
}

.ion-ios-walk-outline:before {
    content: "\f266"
}

.ion-ios-warning:before {
    content: "\f268"
}

.ion-ios-warning-outline:before {
    content: "\f267"
}

.ion-ios-watch:before {
    content: "\f269"
}

.ion-ios-watch-outline:before {
    content: "\f269"
}

.ion-ios-water:before {
    content: "\f26b"
}

.ion-ios-water-outline:before {
    content: "\f26a"
}

.ion-ios-wifi:before {
    content: "\f26d"
}

.ion-ios-wifi-outline:before {
    content: "\f26c"
}

.ion-ios-wine:before {
    content: "\f26f"
}

.ion-ios-wine-outline:before {
    content: "\f26e"
}

.ion-ios-woman:before {
    content: "\f271"
}

.ion-ios-woman-outline:before {
    content: "\f270"
}

.ion-logo-android:before {
    content: "\f225"
}

.ion-logo-angular:before {
    content: "\f227"
}

.ion-logo-apple:before {
    content: "\f229"
}

.ion-logo-bitcoin:before {
    content: "\f22b"
}

.ion-logo-buffer:before {
    content: "\f22d"
}

.ion-logo-chrome:before {
    content: "\f22f"
}

.ion-logo-codepen:before {
    content: "\f230"
}

.ion-logo-css3:before {
    content: "\f231"
}

.ion-logo-designernews:before {
    content: "\f232"
}

.ion-logo-dribbble:before {
    content: "\f233"
}

.ion-logo-dropbox:before {
    content: "\f234"
}

.ion-logo-euro:before {
    content: "\f235"
}

.ion-logo-facebook:before {
    content: "\f236"
}

.ion-logo-foursquare:before {
    content: "\f237"
}

.ion-logo-freebsd-devil:before {
    content: "\f238"
}

.ion-logo-github:before {
    content: "\f239"
}

.ion-logo-google:before {
    content: "\f23a"
}

.ion-logo-googleplus:before {
    content: "\f23b"
}

.ion-logo-hackernews:before {
    content: "\f23c"
}

.ion-logo-html5:before {
    content: "\f23d"
}

.ion-logo-instagram:before {
    content: "\f23e"
}

.ion-logo-javascript:before {
    content: "\f23f"
}

.ion-logo-linkedin:before {
    content: "\f240"
}

.ion-logo-markdown:before {
    content: "\f241"
}

.ion-logo-nodejs:before {
    content: "\f242"
}

.ion-logo-octocat:before {
    content: "\f243"
}

.ion-logo-pinterest:before {
    content: "\f244"
}

.ion-logo-playstation:before {
    content: "\f245"
}

.ion-logo-python:before {
    content: "\f246"
}

.ion-logo-reddit:before {
    content: "\f247"
}

.ion-logo-rss:before {
    content: "\f248"
}

.ion-logo-sass:before {
    content: "\f249"
}

.ion-logo-skype:before {
    content: "\f24a"
}

.ion-logo-snapchat:before {
    content: "\f24b"
}

.ion-logo-steam:before {
    content: "\f24c"
}

.ion-logo-tumblr:before {
    content: "\f24d"
}

.ion-logo-tux:before {
    content: "\f2ae"
}

.ion-logo-twitch:before {
    content: "\f2af"
}

.ion-logo-twitter:before {
    content: "\f2b0"
}

.ion-logo-usd:before {
    content: "\f2b1"
}

.ion-logo-vimeo:before {
    content: "\f2c4"
}

.ion-logo-whatsapp:before {
    content: "\f2c5"
}

.ion-logo-windows:before {
    content: "\f32f"
}

.ion-logo-wordpress:before {
    content: "\f330"
}

.ion-logo-xbox:before {
    content: "\f34c"
}

.ion-logo-yahoo:before {
    content: "\f34d"
}

.ion-logo-yen:before {
    content: "\f34e"
}

.ion-logo-youtube:before {
    content: "\f34f"
}

.ion-md-add:before {
    content: "\f273"
}

.ion-md-add-circle:before {
    content: "\f272"
}

.ion-md-alarm:before {
    content: "\f274"
}

.ion-md-albums:before {
    content: "\f275"
}

.ion-md-alert:before {
    content: "\f276"
}

.ion-md-american-football:before {
    content: "\f277"
}

.ion-md-analytics:before {
    content: "\f278"
}

.ion-md-aperture:before {
    content: "\f279"
}

.ion-md-apps:before {
    content: "\f27a"
}

.ion-md-appstore:before {
    content: "\f27b"
}

.ion-md-archive:before {
    content: "\f27c"
}

.ion-md-arrow-back:before {
    content: "\f27d"
}

.ion-md-arrow-down:before {
    content: "\f27e"
}

.ion-md-arrow-dropdown:before {
    content: "\f280"
}

.ion-md-arrow-dropdown-circle:before {
    content: "\f27f"
}

.ion-md-arrow-dropleft:before {
    content: "\f282"
}

.ion-md-arrow-dropleft-circle:before {
    content: "\f281"
}

.ion-md-arrow-dropright:before {
    content: "\f284"
}

.ion-md-arrow-dropright-circle:before {
    content: "\f283"
}

.ion-md-arrow-dropup:before {
    content: "\f286"
}

.ion-md-arrow-dropup-circle:before {
    content: "\f285"
}

.ion-md-arrow-forward:before {
    content: "\f287"
}

.ion-md-arrow-round-back:before {
    content: "\f288"
}

.ion-md-arrow-round-down:before {
    content: "\f289"
}

.ion-md-arrow-round-forward:before {
    content: "\f28a"
}

.ion-md-arrow-round-up:before {
    content: "\f28b"
}

.ion-md-arrow-up:before {
    content: "\f28c"
}

.ion-md-at:before {
    content: "\f28d"
}

.ion-md-attach:before {
    content: "\f28e"
}

.ion-md-backspace:before {
    content: "\f28f"
}

.ion-md-barcode:before {
    content: "\f290"
}

.ion-md-baseball:before {
    content: "\f291"
}

.ion-md-basket:before {
    content: "\f292"
}

.ion-md-basketball:before {
    content: "\f293"
}

.ion-md-battery-charging:before {
    content: "\f294"
}

.ion-md-battery-dead:before {
    content: "\f295"
}

.ion-md-battery-full:before {
    content: "\f296"
}

.ion-md-beaker:before {
    content: "\f297"
}

.ion-md-beer:before {
    content: "\f298"
}

.ion-md-bicycle:before {
    content: "\f299"
}

.ion-md-bluetooth:before {
    content: "\f29a"
}

.ion-md-boat:before {
    content: "\f29b"
}

.ion-md-body:before {
    content: "\f29c"
}

.ion-md-bonfire:before {
    content: "\f29d"
}

.ion-md-book:before {
    content: "\f29e"
}

.ion-md-bookmark:before {
    content: "\f29f"
}

.ion-md-bookmarks:before {
    content: "\f2a0"
}

.ion-md-bowtie:before {
    content: "\f2a1"
}

.ion-md-briefcase:before {
    content: "\f2a2"
}

.ion-md-browsers:before {
    content: "\f2a3"
}

.ion-md-brush:before {
    content: "\f2a4"
}

.ion-md-bug:before {
    content: "\f2a5"
}

.ion-md-build:before {
    content: "\f2a6"
}

.ion-md-bulb:before {
    content: "\f2a7"
}

.ion-md-bus:before {
    content: "\f2a8"
}

.ion-md-cafe:before {
    content: "\f2a9"
}

.ion-md-calculator:before {
    content: "\f2aa"
}

.ion-md-calendar:before {
    content: "\f2ab"
}

.ion-md-call:before {
    content: "\f2ac"
}

.ion-md-camera:before {
    content: "\f2ad"
}

.ion-md-car:before {
    content: "\f2b2"
}

.ion-md-card:before {
    content: "\f2b3"
}

.ion-md-cart:before {
    content: "\f2b4"
}

.ion-md-cash:before {
    content: "\f2b5"
}

.ion-md-chatboxes:before {
    content: "\f2b6"
}

.ion-md-chatbubbles:before {
    content: "\f2b7"
}

.ion-md-checkbox:before {
    content: "\f2b9"
}

.ion-md-checkbox-outline:before {
    content: "\f2b8"
}

.ion-md-checkmark:before {
    content: "\f2bc"
}

.ion-md-checkmark-circle:before {
    content: "\f2bb"
}

.ion-md-checkmark-circle-outline:before {
    content: "\f2ba"
}

.ion-md-clipboard:before {
    content: "\f2bd"
}

.ion-md-clock:before {
    content: "\f2be"
}

.ion-md-close:before {
    content: "\f2c0"
}

.ion-md-close-circle:before {
    content: "\f2bf"
}

.ion-md-closed-captioning:before {
    content: "\f2c1"
}

.ion-md-cloud:before {
    content: "\f2c9"
}

.ion-md-cloud-circle:before {
    content: "\f2c2"
}

.ion-md-cloud-done:before {
    content: "\f2c3"
}

.ion-md-cloud-download:before {
    content: "\f2c6"
}

.ion-md-cloud-outline:before {
    content: "\f2c7"
}

.ion-md-cloud-upload:before {
    content: "\f2c8"
}

.ion-md-cloudy:before {
    content: "\f2cb"
}

.ion-md-cloudy-night:before {
    content: "\f2ca"
}

.ion-md-code:before {
    content: "\f2ce"
}

.ion-md-code-download:before {
    content: "\f2cc"
}

.ion-md-code-working:before {
    content: "\f2cd"
}

.ion-md-cog:before {
    content: "\f2cf"
}

.ion-md-color-fill:before {
    content: "\f2d0"
}

.ion-md-color-filter:before {
    content: "\f2d1"
}

.ion-md-color-palette:before {
    content: "\f2d2"
}

.ion-md-color-wand:before {
    content: "\f2d3"
}

.ion-md-compass:before {
    content: "\f2d4"
}

.ion-md-construct:before {
    content: "\f2d5"
}

.ion-md-contact:before {
    content: "\f2d6"
}

.ion-md-contacts:before {
    content: "\f2d7"
}

.ion-md-contract:before {
    content: "\f2d8"
}

.ion-md-contrast:before {
    content: "\f2d9"
}

.ion-md-copy:before {
    content: "\f2da"
}

.ion-md-create:before {
    content: "\f2db"
}

.ion-md-crop:before {
    content: "\f2dc"
}

.ion-md-cube:before {
    content: "\f2dd"
}

.ion-md-cut:before {
    content: "\f2de"
}

.ion-md-desktop:before {
    content: "\f2df"
}

.ion-md-disc:before {
    content: "\f2e0"
}

.ion-md-document:before {
    content: "\f2e1"
}

.ion-md-done-all:before {
    content: "\f2e2"
}

.ion-md-download:before {
    content: "\f2e3"
}

.ion-md-easel:before {
    content: "\f2e4"
}

.ion-md-egg:before {
    content: "\f2e5"
}

.ion-md-exit:before {
    content: "\f2e6"
}

.ion-md-expand:before {
    content: "\f2e7"
}

.ion-md-eye:before {
    content: "\f2e9"
}

.ion-md-eye-off:before {
    content: "\f2e8"
}

.ion-md-fastforward:before {
    content: "\f2ea"
}

.ion-md-female:before {
    content: "\f2eb"
}

.ion-md-filing:before {
    content: "\f2ec"
}

.ion-md-film:before {
    content: "\f2ed"
}

.ion-md-finger-print:before {
    content: "\f2ee"
}

.ion-md-flag:before {
    content: "\f2ef"
}

.ion-md-flame:before {
    content: "\f2f0"
}

.ion-md-flash:before {
    content: "\f2f1"
}

.ion-md-flask:before {
    content: "\f2f2"
}

.ion-md-flower:before {
    content: "\f2f3"
}

.ion-md-folder:before {
    content: "\f2f5"
}

.ion-md-folder-open:before {
    content: "\f2f4"
}

.ion-md-football:before {
    content: "\f2f6"
}

.ion-md-funnel:before {
    content: "\f2f7"
}

.ion-md-game-controller-a:before {
    content: "\f2f8"
}

.ion-md-game-controller-b:before {
    content: "\f2f9"
}

.ion-md-git-branch:before {
    content: "\f2fa"
}

.ion-md-git-commit:before {
    content: "\f2fb"
}

.ion-md-git-compare:before {
    content: "\f2fc"
}

.ion-md-git-merge:before {
    content: "\f2fd"
}

.ion-md-git-network:before {
    content: "\f2fe"
}

.ion-md-git-pull-request:before {
    content: "\f2ff"
}

.ion-md-glasses:before {
    content: "\f300"
}

.ion-md-globe:before {
    content: "\f301"
}

.ion-md-grid:before {
    content: "\f302"
}

.ion-md-hammer:before {
    content: "\f303"
}

.ion-md-hand:before {
    content: "\f304"
}

.ion-md-happy:before {
    content: "\f305"
}

.ion-md-headset:before {
    content: "\f306"
}

.ion-md-heart:before {
    content: "\f308"
}

.ion-md-heart-outline:before {
    content: "\f307"
}

.ion-md-help:before {
    content: "\f30b"
}

.ion-md-help-buoy:before {
    content: "\f309"
}

.ion-md-help-circle:before {
    content: "\f30a"
}

.ion-md-home:before {
    content: "\f30c"
}

.ion-md-ice-cream:before {
    content: "\f30d"
}

.ion-md-image:before {
    content: "\f30e"
}

.ion-md-images:before {
    content: "\f30f"
}

.ion-md-infinite:before {
    content: "\f310"
}

.ion-md-information:before {
    content: "\f312"
}

.ion-md-information-circle:before {
    content: "\f311"
}

.ion-md-ionic:before {
    content: "\f313"
}

.ion-md-ionitron:before {
    content: "\f314"
}

.ion-md-jet:before {
    content: "\f315"
}

.ion-md-key:before {
    content: "\f316"
}

.ion-md-keypad:before {
    content: "\f317"
}

.ion-md-laptop:before {
    content: "\f318"
}

.ion-md-leaf:before {
    content: "\f319"
}

.ion-md-link:before {
    content: "\f22e"
}

.ion-md-list:before {
    content: "\f31b"
}

.ion-md-list-box:before {
    content: "\f31a"
}

.ion-md-locate:before {
    content: "\f31c"
}

.ion-md-lock:before {
    content: "\f31d"
}

.ion-md-log-in:before {
    content: "\f31e"
}

.ion-md-log-out:before {
    content: "\f31f"
}

.ion-md-magnet:before {
    content: "\f320"
}

.ion-md-mail:before {
    content: "\f322"
}

.ion-md-mail-open:before {
    content: "\f321"
}

.ion-md-male:before {
    content: "\f323"
}

.ion-md-man:before {
    content: "\f324"
}

.ion-md-map:before {
    content: "\f325"
}

.ion-md-medal:before {
    content: "\f326"
}

.ion-md-medical:before {
    content: "\f327"
}

.ion-md-medkit:before {
    content: "\f328"
}

.ion-md-megaphone:before {
    content: "\f329"
}

.ion-md-menu:before {
    content: "\f32a"
}

.ion-md-mic:before {
    content: "\f32c"
}

.ion-md-mic-off:before {
    content: "\f32b"
}

.ion-md-microphone:before {
    content: "\f32d"
}

.ion-md-moon:before {
    content: "\f32e"
}

.ion-md-more:before {
    content: "\f1c9"
}

.ion-md-move:before {
    content: "\f331"
}

.ion-md-musical-note:before {
    content: "\f332"
}

.ion-md-musical-notes:before {
    content: "\f333"
}

.ion-md-navigate:before {
    content: "\f334"
}

.ion-md-no-smoking:before {
    content: "\f335"
}

.ion-md-notifications:before {
    content: "\f338"
}

.ion-md-notifications-off:before {
    content: "\f336"
}

.ion-md-notifications-outline:before {
    content: "\f337"
}

.ion-md-nuclear:before {
    content: "\f339"
}

.ion-md-nutrition:before {
    content: "\f33a"
}

.ion-md-open:before {
    content: "\f33b"
}

.ion-md-options:before {
    content: "\f33c"
}

.ion-md-outlet:before {
    content: "\f33d"
}

.ion-md-paper:before {
    content: "\f33f"
}

.ion-md-paper-plane:before {
    content: "\f33e"
}

.ion-md-partly-sunny:before {
    content: "\f340"
}

.ion-md-pause:before {
    content: "\f341"
}

.ion-md-paw:before {
    content: "\f342"
}

.ion-md-people:before {
    content: "\f343"
}

.ion-md-person:before {
    content: "\f345"
}

.ion-md-person-add:before {
    content: "\f344"
}

.ion-md-phone-landscape:before {
    content: "\f346"
}

.ion-md-phone-portrait:before {
    content: "\f347"
}

.ion-md-photos:before {
    content: "\f348"
}

.ion-md-pie:before {
    content: "\f349"
}

.ion-md-pin:before {
    content: "\f34a"
}

.ion-md-pint:before {
    content: "\f34b"
}

.ion-md-pizza:before {
    content: "\f354"
}

.ion-md-plane:before {
    content: "\f355"
}

.ion-md-planet:before {
    content: "\f356"
}

.ion-md-play:before {
    content: "\f357"
}

.ion-md-podium:before {
    content: "\f358"
}

.ion-md-power:before {
    content: "\f359"
}

.ion-md-pricetag:before {
    content: "\f35a"
}

.ion-md-pricetags:before {
    content: "\f35b"
}

.ion-md-print:before {
    content: "\f35c"
}

.ion-md-pulse:before {
    content: "\f35d"
}

.ion-md-qr-scanner:before {
    content: "\f35e"
}

.ion-md-quote:before {
    content: "\f35f"
}

.ion-md-radio:before {
    content: "\f362"
}

.ion-md-radio-button-off:before {
    content: "\f360"
}

.ion-md-radio-button-on:before {
    content: "\f361"
}

.ion-md-rainy:before {
    content: "\f363"
}

.ion-md-recording:before {
    content: "\f364"
}

.ion-md-redo:before {
    content: "\f365"
}

.ion-md-refresh:before {
    content: "\f366"
}

.ion-md-refresh-circle:before {
    content: "\f228"
}

.ion-md-remove:before {
    content: "\f368"
}

.ion-md-remove-circle:before {
    content: "\f367"
}

.ion-md-reorder:before {
    content: "\f369"
}

.ion-md-repeat:before {
    content: "\f36a"
}

.ion-md-resize:before {
    content: "\f36b"
}

.ion-md-restaurant:before {
    content: "\f36c"
}

.ion-md-return-left:before {
    content: "\f36d"
}

.ion-md-return-right:before {
    content: "\f36e"
}

.ion-md-reverse-camera:before {
    content: "\f36f"
}

.ion-md-rewind:before {
    content: "\f370"
}

.ion-md-ribbon:before {
    content: "\f371"
}

.ion-md-rose:before {
    content: "\f372"
}

.ion-md-sad:before {
    content: "\f373"
}

.ion-md-school:before {
    content: "\f374"
}

.ion-md-search:before {
    content: "\f375"
}

.ion-md-send:before {
    content: "\f376"
}

.ion-md-settings:before {
    content: "\f377"
}

.ion-md-share:before {
    content: "\f379"
}

.ion-md-share-alt:before {
    content: "\f378"
}

.ion-md-shirt:before {
    content: "\f37a"
}

.ion-md-shuffle:before {
    content: "\f37b"
}

.ion-md-skip-backward:before {
    content: "\f37c"
}

.ion-md-skip-forward:before {
    content: "\f37d"
}

.ion-md-snow:before {
    content: "\f37e"
}

.ion-md-speedometer:before {
    content: "\f37f"
}

.ion-md-square:before {
    content: "\f381"
}

.ion-md-square-outline:before {
    content: "\f380"
}

.ion-md-star:before {
    content: "\f384"
}

.ion-md-star-half:before {
    content: "\f382"
}

.ion-md-star-outline:before {
    content: "\f383"
}

.ion-md-stats:before {
    content: "\f385"
}

.ion-md-stopwatch:before {
    content: "\f386"
}

.ion-md-subway:before {
    content: "\f387"
}

.ion-md-sunny:before {
    content: "\f388"
}

.ion-md-swap:before {
    content: "\f389"
}

.ion-md-switch:before {
    content: "\f38a"
}

.ion-md-sync:before {
    content: "\f38b"
}

.ion-md-tablet-landscape:before {
    content: "\f38c"
}

.ion-md-tablet-portrait:before {
    content: "\f38d"
}

.ion-md-tennisball:before {
    content: "\f38e"
}

.ion-md-text:before {
    content: "\f38f"
}

.ion-md-thermometer:before {
    content: "\f390"
}

.ion-md-thumbs-down:before {
    content: "\f391"
}

.ion-md-thumbs-up:before {
    content: "\f392"
}

.ion-md-thunderstorm:before {
    content: "\f393"
}

.ion-md-time:before {
    content: "\f394"
}

.ion-md-timer:before {
    content: "\f395"
}

.ion-md-train:before {
    content: "\f396"
}

.ion-md-transgender:before {
    content: "\f397"
}

.ion-md-trash:before {
    content: "\f398"
}

.ion-md-trending-down:before {
    content: "\f399"
}

.ion-md-trending-up:before {
    content: "\f39a"
}

.ion-md-trophy:before {
    content: "\f39b"
}

.ion-md-umbrella:before {
    content: "\f39c"
}

.ion-md-undo:before {
    content: "\f39d"
}

.ion-md-unlock:before {
    content: "\f39e"
}

.ion-md-videocam:before {
    content: "\f39f"
}

.ion-md-volume-down:before {
    content: "\f3a0"
}

.ion-md-volume-mute:before {
    content: "\f3a1"
}

.ion-md-volume-off:before {
    content: "\f3a2"
}

.ion-md-volume-up:before {
    content: "\f3a3"
}

.ion-md-walk:before {
    content: "\f3a4"
}

.ion-md-warning:before {
    content: "\f3a5"
}

.ion-md-watch:before {
    content: "\f3a6"
}

.ion-md-water:before {
    content: "\f3a7"
}

.ion-md-wifi:before {
    content: "\f3a8"
}

.ion-md-wine:before {
    content: "\f3a9"
}

.ion-md-woman:before {
    content: "\f3aa"
}

.br-theme-bars-1to10 .br-widget {
    height: 50px;
    white-space: nowrap
}

    .br-theme-bars-1to10 .br-widget a {
        display: block;
        width: 12px;
        padding: 5px 0;
        height: 28px;
        float: left;
        background-color: #fbedd9;
        margin: 1px;
        text-align: center
    }

        .br-theme-bars-1to10 .br-widget a.br-active, .br-theme-bars-1to10 .br-widget a.br-selected {
            background-color: #edb867
        }

    .br-theme-bars-1to10 .br-widget .br-current-rating {
        font-size: 20px;
        line-height: 2;
        float: left;
        padding: 0 20px 0 20px;
        color: #edb867;
        font-weight: 400
    }

.br-theme-bars-1to10 .br-readonly a {
    cursor: default
}

    .br-theme-bars-1to10 .br-readonly a.br-active, .br-theme-bars-1to10 .br-readonly a.br-selected {
        background-color: #f2cd95
    }

.br-theme-bars-1to10 .br-readonly .br-current-rating {
    color: #f2cd95
}

@media print {
    .br-theme-bars-1to10 .br-widget a {
        border: 1px solid #b3b3b3;
        background: #fff;
        height: 38px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box
    }

        .br-theme-bars-1to10 .br-widget a.br-active, .br-theme-bars-1to10 .br-widget a.br-selected {
            border: 1px solid #000;
            background: #fff
        }

    .br-theme-bars-1to10 .br-widget .br-current-rating {
        color: #000
    }
}

.br-theme-bars-horizontal .br-widget {
    width: 120px;
    white-space: nowrap
}

    .br-theme-bars-horizontal .br-widget a {
        display: block;
        width: 120px;
        height: 5px;
        background-color: #fbedd9;
        margin: 1px
    }

        .br-theme-bars-horizontal .br-widget a.br-active, .br-theme-bars-horizontal .br-widget a.br-selected {
            background-color: #edb867
        }

    .br-theme-bars-horizontal .br-widget .br-current-rating {
        width: 120px;
        font-size: 18px;
       
        line-height: 2;
        text-align: center;
        color: #edb867
    }

.br-theme-bars-horizontal .br-readonly a {
    cursor: default
}

    .br-theme-bars-horizontal .br-readonly a.br-active, .br-theme-bars-horizontal .br-readonly a.br-selected {
        background-color: #f2cd95
    }

.br-theme-bars-horizontal .br-readonly .br-current-rating {
    color: #f2cd95
}

@media print {
    .br-theme-bars-horizontal .br-widget a {
        border: 1px solid #b3b3b3;
        background: #fff;
        -webkit-box-sizing: border-box;
        box-sizing: border-box
    }

        .br-theme-bars-horizontal .br-widget a.br-active, .br-theme-bars-horizontal .br-widget a.br-selected {
            border: 1px solid #000;
            background: #fff
        }

    .br-theme-bars-horizontal .br-widget .br-current-rating {
        color: #000
    }
}

.br-theme-bars-movie .br-widget {
    height: 10px;
    white-space: nowrap
}

    .br-theme-bars-movie .br-widget a {
        display: block;
        width: 60px;
        height: 8px;
        float: left;
        background-color: #bbcefb;
        margin: 1px
    }

        .br-theme-bars-movie .br-widget a.br-active, .br-theme-bars-movie .br-widget a.br-selected {
            background-color: #4278f5
        }

    .br-theme-bars-movie .br-widget .br-current-rating {
        clear: both;
        width: 240px;
        text-align: center;
       
        display: block;
        padding: .5em 0;
        color: #4278f5;
        font-weight: 400
    }

.br-theme-bars-movie .br-readonly a {
    cursor: default
}

    .br-theme-bars-movie .br-readonly a.br-active, .br-theme-bars-movie .br-readonly a.br-selected {
        background-color: #729bf8
    }

.br-theme-bars-movie .br-readonly .br-current-rating {
    color: #729bf8
}

@media print {
    .br-theme-bars-movie .br-widget a {
        border: 1px solid #b3b3b3;
        background: #fff;
        -webkit-box-sizing: border-box;
        box-sizing: border-box
    }

        .br-theme-bars-movie .br-widget a.br-active, .br-theme-bars-movie .br-widget a.br-selected {
            border: 1px solid #000;
            background: #fff
        }

    .br-theme-bars-movie .br-widget .br-current-rating {
        color: #000
    }
}

.br-theme-bars-pill .br-widget {
    white-space: nowrap
}

    .br-theme-bars-pill .br-widget a {
        padding: 7px 15px;
        background-color: #bef5e8;
        color: #50e3c2;
        text-decoration: none;
        font-size: 13px;
        line-height: 3;
        text-align: center;
        font-weight: 400
    }

        .br-theme-bars-pill .br-widget a:first-child {
            -webkit-border-top-left-radius: 999px;
            -webkit-border-bottom-left-radius: 999px;
            -moz-border-radius-topleft: 999px;
            -moz-border-radius-bottomleft: 999px;
            border-top-left-radius: 999px;
            border-bottom-left-radius: 999px
        }

        .br-theme-bars-pill .br-widget a:last-child {
            -webkit-border-top-right-radius: 999px;
            -webkit-border-bottom-right-radius: 999px;
            -moz-border-radius-topright: 999px;
            -moz-border-radius-bottomright: 999px;
            border-top-right-radius: 999px;
            border-bottom-right-radius: 999px
        }

        .br-theme-bars-pill .br-widget a.br-active, .br-theme-bars-pill .br-widget a.br-selected {
            background-color: #50e3c2;
            color: #fff
        }

.br-theme-bars-pill .br-readonly a {
    cursor: default
}

    .br-theme-bars-pill .br-readonly a.br-active, .br-theme-bars-pill .br-readonly a.br-selected {
        background-color: #7cead1
    }

@media print {
    .br-theme-bars-pill .br-widget a {
        border: 1px solid #b3b3b3;
        border-left: none;
        background: #fff;
        -webkit-box-sizing: border-box;
        box-sizing: border-box
    }

        .br-theme-bars-pill .br-widget a.br-active, .br-theme-bars-pill .br-widget a.br-selected {
            border: 1px solid #000;
            border-left: none;
            background: #fff;
            color: #000
        }

        .br-theme-bars-pill .br-widget a:first-child {
            border-left: 1px solid #000
        }
}

.br-theme-bars-reversed .br-widget {
    height: 25px;
    white-space: nowrap
}

    .br-theme-bars-reversed .br-widget a {
        display: block;
        width: 22px;
        height: 22px;
        float: left;
        background-color: #bef5e8;
        margin: 1px;
        font-size: 15px;
       
        line-height: 1.4;
        color: #50e3c2;
        text-align: center
    }

        .br-theme-bars-reversed .br-widget a.br-active, .br-theme-bars-reversed .br-widget a.br-selected {
            background-color: #50e3c2;
            color: #fff
        }

    .br-theme-bars-reversed .br-widget .br-current-rating {
        line-height: 1.3;
        float: left;
        padding: 0 20px 0 20px;
        color: #50e3c2;
        font-size: 17px;
        font-weight: 400
    }

.br-theme-bars-reversed .br-readonly a {
    cursor: default
}

    .br-theme-bars-reversed .br-readonly a.br-active, .br-theme-bars-reversed .br-readonly a.br-selected {
        background-color: #7cead1
    }

.br-theme-bars-reversed .br-readonly .br-current-rating {
    color: #7cead1
}

@media print {
    .br-theme-bars-reversed .br-widget a {
        border: 1px solid #b3b3b3;
        background: #fff;
        -webkit-box-sizing: border-box;
        box-sizing: border-box
    }

        .br-theme-bars-reversed .br-widget a.br-active, .br-theme-bars-reversed .br-widget a.br-selected {
            border: 1px solid #000;
            background: #fff
        }

    .br-theme-bars-reversed .br-widget .br-current-rating {
        color: #000
    }
}

.br-theme-bars-square .br-widget {
    height: 15px;
    white-space: nowrap
}

    .br-theme-bars-square .br-widget a {
        display: block;
        width: 30px;
        height: 30px;
        float: left;
        border: 2px solid #bbcefb;
        background-color: #fff;
        margin: 2px;
        text-decoration: none;
        font-size: 14px;
       
        line-height: 2;
        text-align: center;
        color: #bbcefb;
        font-weight: 600
    }

        .br-theme-bars-square .br-widget a.br-active, .br-theme-bars-square .br-widget a.br-selected {
            border: 2px solid #4278f5;
            color: #4278f5
        }

    .br-theme-bars-square .br-widget .br-current-rating {
        clear: both;
        width: 330px;
        text-align: center;
       
        display: block;
        padding: .5em 0;
        color: #646464
    }

.br-theme-bars-square .br-readonly a {
    cursor: default
}

    .br-theme-bars-square .br-readonly a.br-active, .br-theme-bars-square .br-readonly a.br-selected {
        border: 2px solid #729bf8;
        color: #729bf8
    }

@media print {
    .br-theme-bars-square .br-widget a {
        border: 2px solid #b3b3b3;
        color: #b3b3b3
    }

        .br-theme-bars-square .br-widget a.br-active, .br-theme-bars-square .br-widget a.br-selected {
            border: 2px solid #000;
            color: #000
        }
}

.br-theme-css-stars .br-widget {
    height: 28px;
    white-space: nowrap
}

    .br-theme-css-stars .br-widget a {
        text-decoration: none;
        height: 18px;
        width: 18px;
        float: left;
        font-size: 23px;
        margin-right: 5px
    }

        .br-theme-css-stars .br-widget a:after {
            content: "\2605";
            color: #d2d2d2
        }

        .br-theme-css-stars .br-widget a.br-active:after {
            color: #edb867
        }

        .br-theme-css-stars .br-widget a.br-selected:after {
            color: #edb867
        }

    .br-theme-css-stars .br-widget .br-current-rating {
        display: none
    }

.br-theme-css-stars .br-readonly a {
    cursor: default
}

@media print {
    .br-theme-css-stars .br-widget a:after {
        content: "\2606";
        color: #000
    }

    .br-theme-css-stars .br-widget a.br-active:after, .br-theme-css-stars .br-widget a.br-selected:after {
        content: "\2605";
        color: #000
    }
}

.br-theme-fontawesome-stars-o .br-widget {
    height: 28px;
    white-space: nowrap
}

    .br-theme-fontawesome-stars-o .br-widget a {
        font: normal normal normal 20px/1 FontAwesome;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        text-decoration: none;
        margin-right: 2px
    }

        .br-theme-fontawesome-stars-o .br-widget a:after {
            content: '\f006';
            color: #d2d2d2
        }

        .br-theme-fontawesome-stars-o .br-widget a.br-active:after {
            content: '\f005';
            color: #50e3c2
        }

        .br-theme-fontawesome-stars-o .br-widget a.br-selected:after {
            content: '\f005';
            color: #50e3c2
        }

        .br-theme-fontawesome-stars-o .br-widget a.br-fractional:after {
            content: '\f123';
            color: #50e3c2
        }

    .br-theme-fontawesome-stars-o .br-widget .br-current-rating {
        display: none
    }

.br-theme-fontawesome-stars-o .br-readonly a {
    cursor: default
}

.br-theme-fontawesome-stars-o .br-reverse a.br-fractional {
    display: inline-block;
    transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -webkit-filter: FlipH;
    filter: FlipH;
    -ms-filter: FlipH
}

@media print {
    .br-theme-fontawesome-stars-o .br-widget a:after {
        content: '\f006';
        color: #000
    }

    .br-theme-fontawesome-stars-o .br-widget a.br-active:after, .br-theme-fontawesome-stars-o .br-widget a.br-selected:after {
        content: '\f005';
        color: #000
    }

    .br-theme-fontawesome-stars-o .br-widget a.br-fractional:after {
        content: '\f123';
        color: #000
    }
}

.br-theme-fontawesome-stars .br-widget {
    height: 28px;
    white-space: nowrap
}

    .br-theme-fontawesome-stars .br-widget a {
        font: normal normal normal 20px/1 FontAwesome;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        text-decoration: none;
        margin-right: 2px
    }

        .br-theme-fontawesome-stars .br-widget a:after {
            content: '\f005';
            color: #d2d2d2
        }

        .br-theme-fontawesome-stars .br-widget a.br-active:after {
            color: #edb867
        }

        .br-theme-fontawesome-stars .br-widget a.br-selected:after {
            color: #edb867
        }

    .br-theme-fontawesome-stars .br-widget .br-current-rating {
        display: none
    }

.br-theme-fontawesome-stars .br-readonly a {
    cursor: default
}

@media print {
    .br-theme-fontawesome-stars .br-widget a:after {
        content: '\f006';
        color: #000
    }

    .br-theme-fontawesome-stars .br-widget a.br-active:after, .br-theme-fontawesome-stars .br-widget a.br-selected:after {
        content: '\f005';
        color: #000
    }
}

.beefup {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 1em 0;
    -webkit-transition: border .2s ease;
    transition: border .2s ease
}

    .beefup:first-child {
        margin-top: 0
    }

    .beefup:hover {
        border-color: #aaa
    }

.beefup__body, .beefup__head {
    padding: 10px 20px
}

.beefup__head {
    cursor: pointer;
    margin: 0;
    overflow: hidden;
    padding-right: 50px;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap
}

    .beefup__head::after {
        border-style: solid;
        border-width: 10px 10px 0;
        border-color: #ddd transparent transparent;
        content: '';
        position: absolute;
        right: 20px;
        height: 0;
        margin-top: -5px;
        top: 50%;
        -webkit-transition: border .2s ease;
        transition: border .2s ease;
        width: 0
    }

.beefup__body {
    padding-top: 20px
}

.beefup.is-open > .beefup__head::after {
    border-width: 0 10px 10px;
    border-color: transparent transparent #ddd
}

.vidbacking-active-body-back {
    position: fixed;
    z-index: -100;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    background-size: cover;
    overflow: hidden;
    opacity: 1;
    -webkit-transition: 2s opacity;
    transition: 2s opacity;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%)
}

.vidbacking-active-body-back-youtube {
    position: fixed;
    z-index: -100;
    top: 50%;
    left: 50%;
    overflow: hidden;
    opacity: 1;
    -webkit-transition: 2s opacity;
    transition: 2s opacity;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%)
}

.vidbacking-active-block-back {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    height: auto;
    width: auto;
    z-index: -100;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%)
}

.vidbacking-active-block-back-youtube {
    position: absolute;
    height: auto;
    width: auto;
    z-index: -100;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%)
}

.vidbacking {
    display: none
}

.vidmask-body-back {
    background: url(videooverlay1.html) repeat;
    opacity: .4;
    min-height: 100%;
    min-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -50;
    display: block
}

.vidmask-block-back {
    background: url(videooverlay1.html) repeat;
    opacity: 1;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    width: auto;
    z-index: -50;
    display: block
}

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: .8
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: 0 !important;
    -webkit-backface-visibility: hidden
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

    .mfp-container:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle
    }

.mfp-align-top .mfp-container:before {
    display: none
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045
}

.mfp-ajax-holder .mfp-content, .mfp-inline-holder .mfp-content {
    width: 100%;
    cursor: auto
}

.mfp-ajax-cur {
    cursor: progress
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -webkit-zoom-out;
    cursor: zoom-out
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: zoom-in
}

.mfp-auto-cursor .mfp-content {
    cursor: auto
}

.mfp-arrow, .mfp-close, .mfp-counter, .mfp-preloader {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.mfp-loading.mfp-figure {
    display: none
}

.mfp-hide {
    display: none !important
}

.mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -.8em;
    left: 8px;
    right: 8px;
    z-index: 1044
}

    .mfp-preloader a {
        color: #ccc
    }

        .mfp-preloader a:hover {
            color: #fff
        }

.mfp-s-ready .mfp-preloader {
    display: none
}

.mfp-s-error .mfp-content {
    display: none
}

button.mfp-arrow, button.mfp-close {
    overflow: visible;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: 0;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation
}

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

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: .65;
    padding: 0 0 18px 10px;
    color: #fff;
    font-style: normal;
    font-size: 28px;
    font-family: Arial,Baskerville,monospace
}

    .mfp-close:focus, .mfp-close:hover {
        opacity: 1
    }

    .mfp-close:active {
        top: 1px
    }

.mfp-close-btn-in .mfp-close {
    color: #333
}

.mfp-iframe-holder .mfp-close, .mfp-image-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #ccc;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap
}

.mfp-arrow {
    position: absolute;
    opacity: .65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent
}

    .mfp-arrow:active {
        margin-top: -54px
    }

    .mfp-arrow:focus, .mfp-arrow:hover {
        opacity: 1
    }

    .mfp-arrow:after, .mfp-arrow:before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        left: 0;
        top: 0;
        margin-top: 35px;
        margin-left: 35px;
        border: medium inset transparent
    }

    .mfp-arrow:after {
        border-top-width: 13px;
        border-bottom-width: 13px;
        top: 8px
    }

    .mfp-arrow:before {
        border-top-width: 21px;
        border-bottom-width: 21px;
        opacity: .7
    }

.mfp-arrow-left {
    left: 0
}

    .mfp-arrow-left:after {
        border-right: 17px solid #fff;
        margin-left: 31px
    }

    .mfp-arrow-left:before {
        margin-left: 25px;
        border-right: 27px solid #3f3f3f
    }

.mfp-arrow-right {
    right: 0
}

    .mfp-arrow-right:after {
        border-left: 17px solid #fff;
        margin-left: 39px
    }

    .mfp-arrow-right:before {
        border-left: 27px solid #3f3f3f
    }

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px
}

    .mfp-iframe-holder .mfp-content {
        line-height: 0;
        width: 100%;
        max-width: 900px
    }

    .mfp-iframe-holder .mfp-close {
        top: -40px
    }

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%
}

    .mfp-iframe-scaler 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
    }

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto
}

.mfp-figure {
    line-height: 0
}

    .mfp-figure:after {
        content: '';
        position: absolute;
        left: 0;
        top: 40px;
        bottom: 40px;
        display: block;
        right: 0;
        width: auto;
        height: auto;
        z-index: -1;
        -webkit-box-shadow: 0 0 8px rgba(0,0,0,.6);
        box-shadow: 0 0 8px rgba(0,0,0,.6);
        background: #444
    }

    .mfp-figure small {
        color: #bdbdbd;
        display: block;
        font-size: 12px;
        line-height: 14px
    }

    .mfp-figure figure {
        margin: 0
    }

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px
}

.mfp-image-holder .mfp-content {
    max-width: 100%
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer
}

@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0,0,0,.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        box-sizing: border-box
    }

        .mfp-img-mobile .mfp-bottom-bar:empty {
            padding: 0
        }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0,0,0,.6);
        position: fixed;
        text-align: center;
        padding: 0
    }
}

@media all and (max-width:900px) {
    .mfp-arrow {
        -webkit-transform: scale(.75);
        transform: scale(.75)
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px
    }
}

#noty_layout__bottom, #noty_layout__bottomCenter, #noty_layout__bottomLeft, #noty_layout__bottomRight, #noty_layout__center, #noty_layout__centerLeft, #noty_layout__centerRight, #noty_layout__top, #noty_layout__topCenter, #noty_layout__topLeft, #noty_layout__topRight, .noty_layout_mixin {
    position: fixed;
    margin: 0;
    padding: 0;
    z-index: 9999999;
    -webkit-transform: translateZ(0) scale(1,1);
    transform: translateZ(0) scale(1,1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    filter: blur(0);
    -webkit-filter: blur(0);
    max-width: 90%
}

#noty_layout__top {
    top: 0;
    left: 5%;
    width: 90%
}

#noty_layout__topLeft {
    top: 20px;
    left: 20px;
    width: 325px
}

#noty_layout__topCenter {
    top: 5%;
    left: 50%;
    width: 325px;
    -webkit-transform: translate(calc(-50% - .5px)) translateZ(0) scale(1,1);
    transform: translate(calc(-50% - .5px)) translateZ(0) scale(1,1)
}

#noty_layout__topRight {
    top: 20px;
    right: 20px;
    width: 325px
}

#noty_layout__bottom {
    bottom: 0;
    left: 5%;
    width: 90%
}

#noty_layout__bottomLeft {
    bottom: 20px;
    left: 20px;
    width: 325px
}

#noty_layout__bottomCenter {
    bottom: 5%;
    left: 50%;
    width: 325px;
    -webkit-transform: translate(calc(-50% - .5px)) translateZ(0) scale(1,1);
    transform: translate(calc(-50% - .5px)) translateZ(0) scale(1,1)
}

#noty_layout__bottomRight {
    bottom: 20px;
    right: 20px;
    width: 325px
}

#noty_layout__center {
    top: 50%;
    left: 50%;
    width: 325px;
    -webkit-transform: translate(calc(-50% - .5px),calc(-50% - .5px)) translateZ(0) scale(1,1);
    transform: translate(calc(-50% - .5px),calc(-50% - .5px)) translateZ(0) scale(1,1)
}

#noty_layout__centerLeft {
    top: 50%;
    left: 20px;
    width: 325px;
    -webkit-transform: translate(0,calc(-50% - .5px)) translateZ(0) scale(1,1);
    transform: translate(0,calc(-50% - .5px)) translateZ(0) scale(1,1)
}

#noty_layout__centerRight {
    top: 50%;
    right: 20px;
    width: 325px;
    -webkit-transform: translate(0,calc(-50% - .5px)) translateZ(0) scale(1,1);
    transform: translate(0,calc(-50% - .5px)) translateZ(0) scale(1,1)
}

.noty_progressbar {
    display: none
}

.noty_has_timeout.noty_has_progressbar .noty_progressbar {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background-color: #646464;
    opacity: .2
}

.noty_bar {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate(0,0) translateZ(0) scale(1,1);
    transform: translate(0,0) scale(1,1);
    -webkit-font-smoothing: subpixel-antialiased;
    overflow: hidden
}

.noty_effects_open {
    opacity: 0;
    -webkit-transform: translate(50%);
    transform: translate(50%);
    -webkit-animation: noty_anim_in .5s cubic-bezier(.68,-.55,.265,1.55);
    animation: noty_anim_in .5s cubic-bezier(.68,-.55,.265,1.55);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.noty_effects_close {
    -webkit-animation: noty_anim_out .5s cubic-bezier(.68,-.55,.265,1.55);
    animation: noty_anim_out .5s cubic-bezier(.68,-.55,.265,1.55);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.noty_fix_effects_height {
    -webkit-animation: noty_anim_height 75ms ease-out;
    animation: noty_anim_height 75ms ease-out
}

.noty_close_with_click {
    cursor: pointer
}

.noty_close_button {
    position: absolute;
    top: 2px;
    right: 2px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    background-color: rgba(0,0,0,.05);
    border-radius: 2px;
    cursor: pointer;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out
}

    .noty_close_button:hover {
        background-color: rgba(0,0,0,.1)
    }

.noty_modal {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 10000;
    opacity: .3;
    left: 0;
    top: 0
}

    .noty_modal.noty_modal_open {
        opacity: 0;
        -webkit-animation: noty_modal_in .3s ease-out;
        animation: noty_modal_in .3s ease-out
    }

    .noty_modal.noty_modal_close {
        -webkit-animation: noty_modal_out .3s ease-out;
        animation: noty_modal_out .3s ease-out;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards
    }

@-webkit-keyframes noty_modal_in {
    100% {
        opacity: .3
    }
}

@keyframes noty_modal_in {
    100% {
        opacity: .3
    }
}

@-webkit-keyframes noty_modal_out {
    100% {
        opacity: 0
    }
}

@keyframes noty_modal_out {
    100% {
        opacity: 0
    }
}

@keyframes noty_modal_out {
    100% {
        opacity: 0
    }
}

@-webkit-keyframes noty_anim_in {
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
        opacity: 1
    }
}

@keyframes noty_anim_in {
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
        opacity: 1
    }
}

@-webkit-keyframes noty_anim_out {
    100% {
        -webkit-transform: translate(50%);
        transform: translate(50%);
        opacity: 0
    }
}

@keyframes noty_anim_out {
    100% {
        -webkit-transform: translate(50%);
        transform: translate(50%);
        opacity: 0
    }
}

@-webkit-keyframes noty_anim_height {
    100% {
        height: 0
    }
}

@keyframes noty_anim_height {
    100% {
        height: 0
    }
}

.noty_theme__mint.noty_bar {
    margin: 4px 0;
    overflow: hidden;
    border-radius: 2px;
    position: relative
}

    .noty_theme__mint.noty_bar .noty_body {
        padding: 10px;
        font-size: 14px
    }

    .noty_theme__mint.noty_bar .noty_buttons {
        padding: 10px
    }

.noty_theme__mint.noty_type__alert, .noty_theme__mint.noty_type__notification {
    background-color: #fff;
    border-bottom: 1px solid #d1d1d1;
    color: #2f2f2f
}

.noty_theme__mint.noty_type__warning {
    background-color: #ffae42;
    border-bottom: 1px solid #e89f3c;
    color: #fff
}

.noty_theme__mint.noty_type__error {
    background-color: #de636f;
    border-bottom: 1px solid #ca5a65;
    color: #fff
}

.noty_theme__mint.noty_type__info, .noty_theme__mint.noty_type__information {
    background-color: #7f7eff;
    border-bottom: 1px solid #7473e8;
    color: #fff
}

.noty_theme__mint.noty_type__success {
    background-color: #afc765;
    border-bottom: 1px solid #a0b55c;
    color: #fff
}

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1
}

    .owl-carousel .owl-stage {
        position: relative;
        -ms-touch-action: pan-Y;
        touch-action: manipulation;
        -moz-backface-visibility: hidden
    }

        .owl-carousel .owl-stage:after {
            content: ".";
            display: block;
            clear: both;
            visibility: hidden;
            line-height: 0;
            height: 0
        }

    .owl-carousel .owl-stage-outer {
        position: relative;
        overflow: hidden;
        -webkit-transform: translate3d(0,0,0)
    }

    .owl-carousel .owl-item, .owl-carousel .owl-wrapper {
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        -webkit-transform: translate3d(0,0,0);
        -moz-transform: translate3d(0,0,0);
        -ms-transform: translate3d(0,0,0)
    }

    .owl-carousel .owl-item {
        position: relative;
        min-height: 1px;
        float: left;
        -webkit-backface-visibility: hidden;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none
    }

        .owl-carousel .owl-item img {
            display: block;
            width: 100%
        }

    .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
        display: none
    }

    .owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

    .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
        background: 0 0;
        color: inherit;
        border: none;
        padding: 0 !important;
        font: inherit
    }

    .owl-carousel.owl-loaded {
        display: block
    }

    .owl-carousel.owl-loading {
        opacity: 0;
        display: block
    }

    .owl-carousel.owl-hidden {
        opacity: 0
    }

    .owl-carousel.owl-refresh .owl-item {
        visibility: hidden
    }

    .owl-carousel.owl-drag .owl-item {
        -ms-touch-action: pan-y;
        touch-action: pan-y;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

    .owl-carousel.owl-grab {
        cursor: move;
        cursor: -webkit-grab;
        cursor: grab
    }

    .owl-carousel.owl-rtl {
        direction: rtl
    }

        .owl-carousel.owl-rtl .owl-item {
            float: right
        }

.no-js .owl-carousel {
    display: block
}

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

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

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

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

    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.owl-height {
    -webkit-transition: height .5s ease-in-out;
    transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease
}

    .owl-carousel .owl-item .owl-lazy:not([src]), .owl-carousel .owl-item .owl-lazy[src^=""] {
        max-height: 0
    }

.owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(owl.video.play.html) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform .1s ease;
    transition: -webkit-transform .1s ease;
    transition: transform .1s ease;
    transition: transform .1s ease,-webkit-transform .1s ease
}

    .owl-carousel .owl-video-play-icon:hover {
        -webkit-transform: scale(1.3,1.3);
        transform: scale(1.3,1.3)
    }

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%
}

.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

    .owl-theme .owl-nav [class*=owl-] {
        color: #fff;
        font-size: 14px;
        margin: 5px;
        padding: 4px 7px;
        background: #d6d6d6;
        display: inline-block;
        cursor: pointer;
        border-radius: 3px
    }

        .owl-theme .owl-nav [class*=owl-]:hover {
            background: #869791;
            color: #fff;
            text-decoration: none
        }

    .owl-theme .owl-nav .disabled {
        opacity: .5;
        cursor: default
    }

        .owl-theme .owl-nav.disabled + .owl-dots {
            margin-top: 10px
        }

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

    .owl-theme .owl-dots .owl-dot {
        display: inline-block;
        zoom: 1
    }

        .owl-theme .owl-dots .owl-dot span {
            width: 10px;
            height: 10px;
            margin: 5px 7px;
            background: #d6d6d6;
            display: block;
            -webkit-backface-visibility: visible;
            -webkit-transition: opacity .2s ease;
            transition: opacity .2s ease;
            border-radius: 30px
        }

        .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
            background: #869791
        }

code[class*=language-], pre[class*=language-] {
    color: #000;
    background: 0 0;
    text-shadow: 0 1px #fff;
    font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.5;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none
}

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

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

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

pre[class*=language-] {
    padding: 1em;
    margin: .5em 0;
    overflow: auto
}

:not(pre) > code[class*=language-], pre[class*=language-] {
    background: #f5f2f0
}

:not(pre) > code[class*=language-] {
    padding: .1em;
    border-radius: .3em;
    white-space: normal
}

.token.cdata, .token.comment, .token.doctype, .token.prolog {
    color: #708090
}

.token.punctuation {
    color: #999
}

.namespace {
    opacity: .7
}

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

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

.language-css .token.string, .style .token.string, .token.entity, .token.operator, .token.url {
    color: #9a6e3a;
    background: rgba(255,255,255,.5)
}

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

.token.class-name, .token.function {
    color: #dd4a68
}

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

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

.token.italic {
    font-style: italic
}

.token.entity {
    cursor: help
}

div.code-toolbar {
    position: relative
}

    div.code-toolbar > .toolbar {
        position: absolute;
        top: .3em;
        right: .2em;
        -webkit-transition: opacity .3s ease-in-out;
        transition: opacity .3s ease-in-out;
        opacity: 0
    }

    div.code-toolbar:hover > .toolbar {
        opacity: 1
    }

    div.code-toolbar > .toolbar .toolbar-item {
        display: inline-block
    }

    div.code-toolbar > .toolbar a {
        cursor: pointer
    }

    div.code-toolbar > .toolbar button {
        background: 0 0;
        border: 0;
        color: inherit;
        font: inherit;
        line-height: normal;
        overflow: visible;
        padding: 0;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none
    }

    div.code-toolbar > .toolbar a, div.code-toolbar > .toolbar button, div.code-toolbar > .toolbar span {
        color: #bbb;
        font-size: .8em;
        padding: 0 .5em;
        background: #f5f2f0;
        background: rgba(224,224,224,.2);
        -webkit-box-shadow: 0 2px 0 0 rgba(0,0,0,.2);
        box-shadow: 0 2px 0 0 rgba(0,0,0,.2);
        border-radius: .5em
    }

        div.code-toolbar > .toolbar a:focus, div.code-toolbar > .toolbar a:hover, div.code-toolbar > .toolbar button:focus, div.code-toolbar > .toolbar button:hover, div.code-toolbar > .toolbar span:focus, div.code-toolbar > .toolbar span:hover {
            color: inherit;
            text-decoration: none
        }

pre[class*=language-].line-numbers {
    position: relative;
    padding-left: 3.8em;
    counter-reset: linenumber
}

    pre[class*=language-].line-numbers > code {
        position: relative;
        white-space: inherit
    }

.line-numbers .line-numbers-rows {
    position: absolute;
    pointer-events: none;
    top: 0;
    font-size: 100%;
    left: -3.8em;
    width: 3em;
    letter-spacing: -1px;
    border-right: 1px solid #999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.line-numbers-rows > span {
    pointer-events: none;
    display: block;
    counter-increment: linenumber
}

    .line-numbers-rows > span:before {
        content: counter(linenumber);
        color: #999;
        display: block;
        padding-right: .8em;
        text-align: right
    }

.token a {
    color: inherit
}

code[class*=language-] a[href], pre[class*=language-] a[href] {
    cursor: help;
    text-decoration: none
}

    code[class*=language-] a[href]:hover, pre[class*=language-] a[href]:hover {
        cursor: help;
        text-decoration: underline
    }

.prism-previewer, .prism-previewer:after, .prism-previewer:before {
    position: absolute;
    pointer-events: none
}

    .prism-previewer, .prism-previewer:after {
        left: 50%
    }

.prism-previewer {
    margin-top: -48px;
    width: 32px;
    height: 32px;
    margin-left: -16px;
    opacity: 0;
    -webkit-transition: opacity .25s;
    transition: opacity .25s
}

    .prism-previewer.flipped {
        margin-top: 0;
        margin-bottom: -48px
    }

    .prism-previewer:after, .prism-previewer:before {
        content: '';
        position: absolute;
        pointer-events: none
    }

    .prism-previewer:before {
        top: -5px;
        right: -5px;
        left: -5px;
        bottom: -5px;
        border-radius: 10px;
        border: 5px solid #fff;
        -webkit-box-shadow: 0 0 3px rgba(0,0,0,.5) inset,0 0 10px rgba(0,0,0,.75);
        box-shadow: 0 0 3px rgba(0,0,0,.5) inset,0 0 10px rgba(0,0,0,.75)
    }

    .prism-previewer:after {
        top: 100%;
        width: 0;
        height: 0;
        margin: 5px 0 0 -7px;
        border: 7px solid transparent;
        border-color: rgba(255,0,0,0);
        border-top-color: #fff
    }

    .prism-previewer.flipped:after {
        top: auto;
        bottom: 100%;
        margin-top: 0;
        margin-bottom: 5px;
        border-top-color: rgba(255,0,0,0);
        border-bottom-color: #fff
    }

    .prism-previewer.active {
        opacity: 1
    }

.prism-previewer-angle:before {
    border-radius: 50%;
    background: #fff
}

.prism-previewer-angle:after {
    margin-top: 4px
}

.prism-previewer-angle svg {
    width: 32px;
    height: 32px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.prism-previewer-angle[data-negative] svg {
    -webkit-transform: scaleX(-1) rotate(-90deg);
    transform: scaleX(-1) rotate(-90deg)
}

.prism-previewer-angle circle {
    fill: transparent;
    stroke: #2e3538;
    stroke-opacity: .9;
    stroke-width: 32;
    stroke-dasharray: 0,500
}

.prism-previewer-gradient {
    background-image: linear-gradient(45deg,#bbb 25%,transparent 25%,transparent 75%,#bbb 75%,#bbb),linear-gradient(45deg,#bbb 25%,#eee 25%,#eee 75%,#bbb 75%,#bbb);
    background-size: 10px 10px;
    background-position: 0 0,5px 5px;
    width: 64px;
    margin-left: -32px
}

    .prism-previewer-gradient:before {
        content: none
    }

    .prism-previewer-gradient div {
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border-radius: 10px;
        border: 5px solid #fff;
        -webkit-box-shadow: 0 0 3px rgba(0,0,0,.5) inset,0 0 10px rgba(0,0,0,.75);
        box-shadow: 0 0 3px rgba(0,0,0,.5) inset,0 0 10px rgba(0,0,0,.75)
    }

.prism-previewer-color {
    background-image: linear-gradient(45deg,#bbb 25%,transparent 25%,transparent 75%,#bbb 75%,#bbb),linear-gradient(45deg,#bbb 25%,#eee 25%,#eee 75%,#bbb 75%,#bbb);
    background-size: 10px 10px;
    background-position: 0 0,5px 5px
}

    .prism-previewer-color:before {
        background-color: inherit;
        background-clip: padding-box
    }

.prism-previewer-easing {
    margin-top: -76px;
    margin-left: -30px;
    width: 60px;
    height: 60px;
    background: #333
}

    .prism-previewer-easing.flipped {
        margin-bottom: -116px
    }

    .prism-previewer-easing svg {
        width: 60px;
        height: 60px
    }

    .prism-previewer-easing circle {
        fill: #2e3538;
        stroke: #fff
    }

    .prism-previewer-easing path {
        fill: none;
        stroke: #fff;
        stroke-linecap: round;
        stroke-width: 4
    }

    .prism-previewer-easing line {
        stroke: #fff;
        stroke-opacity: .5;
        stroke-width: 2
    }

@-webkit-keyframes prism-previewer-time {
    0% {
        stroke-dasharray: 0,500;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 100,500;
        stroke-dashoffset: 0
    }

    100% {
        stroke-dasharray: 0,500;
        stroke-dashoffset: -100
    }
}

@keyframes prism-previewer-time {
    0% {
        stroke-dasharray: 0,500;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 100,500;
        stroke-dashoffset: 0
    }

    100% {
        stroke-dasharray: 0,500;
        stroke-dashoffset: -100
    }
}

.prism-previewer-time:before {
    border-radius: 50%;
    background: #fff
}

.prism-previewer-time:after {
    margin-top: 4px
}

.prism-previewer-time svg {
    width: 32px;
    height: 32px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.prism-previewer-time circle {
    fill: transparent;
    stroke: #2e3538;
    stroke-opacity: .9;
    stroke-width: 32;
    stroke-dasharray: 0,500;
    stroke-dashoffset: 0;
    -webkit-animation: prism-previewer-time linear infinite 3s;
    animation: prism-previewer-time linear infinite 3s
}

@font-face {
    font-family: simple-line-icons;
    src: url(../fonts/Simple-Line-Iconsb26c.eot?v=2.4.0);
    src: url(../fonts/Simple-Line-Iconsb26c.eot?v=2.4.0#iefix) format("embedded-opentype"),url(../fonts/Simple-Line-Iconsb26c.woff2?v=2.4.0) format("woff2"),url(../fonts/Simple-Line-Iconsb26c.ttf?v=2.4.0) format("truetype"),url(../fonts/Simple-Line-Iconsb26c.woff?v=2.4.0) format("woff"),url(../fonts/Simple-Line-Iconsb26c.svg?v=2.4.0#simple-line-icons) format("svg");
   
    font-style: normal
}

.icon-action-redo, .icon-action-undo, .icon-anchor, .icon-arrow-down, .icon-arrow-down-circle, .icon-arrow-left, .icon-arrow-left-circle, .icon-arrow-right, .icon-arrow-right-circle, .icon-arrow-up, .icon-arrow-up-circle, .icon-badge, .icon-bag, .icon-ban, .icon-basket, .icon-basket-loaded, .icon-bell, .icon-book-open, .icon-briefcase, .icon-bubble, .icon-bubbles, .icon-bulb, .icon-calculator, .icon-calendar, .icon-call-end, .icon-call-in, .icon-call-out, .icon-camera, .icon-camrecorder, .icon-chart, .icon-check, .icon-chemistry, .icon-clock, .icon-close, .icon-cloud-download, .icon-cloud-upload, .icon-compass, .icon-control-end, .icon-control-forward, .icon-control-pause, .icon-control-play, .icon-control-rewind, .icon-control-start, .icon-credit-card, .icon-crop, .icon-cup, .icon-cursor, .icon-cursor-move, .icon-diamond, .icon-direction, .icon-directions, .icon-disc, .icon-dislike, .icon-doc, .icon-docs, .icon-drawer, .icon-drop, .icon-earphones, .icon-earphones-alt, .icon-emotsmile, .icon-energy, .icon-envelope, .icon-envelope-letter, .icon-envelope-open, .icon-equalizer, .icon-event, .icon-exclamation, .icon-eye, .icon-eyeglass, .icon-feed, .icon-film, .icon-fire, .icon-flag, .icon-folder, .icon-folder-alt, .icon-frame, .icon-game-controller, .icon-ghost, .icon-globe, .icon-globe-alt, .icon-graduation, .icon-graph, .icon-grid, .icon-handbag, .icon-heart, .icon-home, .icon-hourglass, .icon-info, .icon-key, .icon-layers, .icon-like, .icon-link, .icon-list, .icon-location-pin, .icon-lock, .icon-lock-open, .icon-login, .icon-logout, .icon-loop, .icon-magic-wand, .icon-magnet, .icon-magnifier, .icon-magnifier-add, .icon-magnifier-remove, .icon-map, .icon-menu, .icon-microphone, .icon-minus, .icon-mouse, .icon-music-tone, .icon-music-tone-alt, .icon-mustache, .icon-note, .icon-notebook, .icon-options, .icon-options-vertical, .icon-organization, .icon-paper-clip, .icon-paper-plane, .icon-paypal, .icon-pencil, .icon-people, .icon-phone, .icon-picture, .icon-pie-chart, .icon-pin, .icon-plane, .icon-playlist, .icon-plus, .icon-power, .icon-present, .icon-printer, .icon-puzzle, .icon-question, .icon-refresh, .icon-reload, .icon-rocket, .icon-screen-desktop, .icon-screen-smartphone, .icon-screen-tablet, .icon-settings, .icon-share, .icon-share-alt, .icon-shield, .icon-shuffle, .icon-size-actual, .icon-size-fullscreen, .icon-social-behance, .icon-social-dribbble, .icon-social-dropbox, .icon-social-facebook, .icon-social-foursqare, .icon-social-github, .icon-social-google, .icon-social-instagram, .icon-social-linkedin, .icon-social-pinterest, .icon-social-reddit, .icon-social-skype, .icon-social-soundcloud, .icon-social-spotify, .icon-social-steam, .icon-social-stumbleupon, .icon-social-tumblr, .icon-social-twitter, .icon-social-vkontakte, .icon-social-youtube, .icon-speech, .icon-speedometer, .icon-star, .icon-support, .icon-symbol-female, .icon-symbol-male, .icon-tag, .icon-target, .icon-trash, .icon-trophy, .icon-umbrella, .icon-user, .icon-user-female, .icon-user-follow, .icon-user-following, .icon-user-unfollow, .icon-vector, .icon-volume-1, .icon-volume-2, .icon-volume-off, .icon-wallet, .icon-wrench {
    font-family: simple-line-icons;
    speak: none;
    font-style: normal;
   
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

    .icon-user:before {
        content: "\e005"
    }

    .icon-people:before {
        content: "\e001"
    }

    .icon-user-female:before {
        content: "\e000"
    }

    .icon-user-follow:before {
        content: "\e002"
    }

    .icon-user-following:before {
        content: "\e003"
    }

    .icon-user-unfollow:before {
        content: "\e004"
    }

    .icon-login:before {
        content: "\e066"
    }

    .icon-logout:before {
        content: "\e065"
    }

    .icon-emotsmile:before {
        content: "\e021"
    }

    .icon-phone:before {
        content: "\e600"
    }

    .icon-call-end:before {
        content: "\e048"
    }

    .icon-call-in:before {
        content: "\e047"
    }

    .icon-call-out:before {
        content: "\e046"
    }

    .icon-map:before {
        content: "\e033"
    }

    .icon-location-pin:before {
        content: "\e096"
    }

    .icon-direction:before {
        content: "\e042"
    }

    .icon-directions:before {
        content: "\e041"
    }

    .icon-compass:before {
        content: "\e045"
    }

    .icon-layers:before {
        content: "\e034"
    }

    .icon-menu:before {
        content: "\e601"
    }

    .icon-list:before {
        content: "\e067"
    }

    .icon-options-vertical:before {
        content: "\e602"
    }

    .icon-options:before {
        content: "\e603"
    }

    .icon-arrow-down:before {
        content: "\e604"
    }

    .icon-arrow-left:before {
        content: "\e605"
    }

    .icon-arrow-right:before {
        content: "\e606"
    }

    .icon-arrow-up:before {
        content: "\e607"
    }

    .icon-arrow-up-circle:before {
        content: "\e078"
    }

    .icon-arrow-left-circle:before {
        content: "\e07a"
    }

    .icon-arrow-right-circle:before {
        content: "\e079"
    }

    .icon-arrow-down-circle:before {
        content: "\e07b"
    }

    .icon-check:before {
        content: "\e080"
    }

    .icon-clock:before {
        content: "\e081"
    }

    .icon-plus:before {
        content: "\e095"
    }

    .icon-minus:before {
        content: "\e615"
    }

    .icon-close:before {
        content: "\e082"
    }

    .icon-event:before {
        content: "\e619"
    }

    .icon-exclamation:before {
        content: "\e617"
    }

    .icon-organization:before {
        content: "\e616"
    }

    .icon-trophy:before {
        content: "\e006"
    }

    .icon-screen-smartphone:before {
        content: "\e010"
    }

    .icon-screen-desktop:before {
        content: "\e011"
    }

    .icon-plane:before {
        content: "\e012"
    }

    .icon-notebook:before {
        content: "\e013"
    }

    .icon-mustache:before {
        content: "\e014"
    }

    .icon-mouse:before {
        content: "\e015"
    }

    .icon-magnet:before {
        content: "\e016"
    }

    .icon-energy:before {
        content: "\e020"
    }

    .icon-disc:before {
        content: "\e022"
    }

    .icon-cursor:before {
        content: "\e06e"
    }

    .icon-cursor-move:before {
        content: "\e023"
    }

    .icon-crop:before {
        content: "\e024"
    }

    .icon-chemistry:before {
        content: "\e026"
    }

    .icon-speedometer:before {
        content: "\e007"
    }

    .icon-shield:before {
        content: "\e00e"
    }

    .icon-screen-tablet:before {
        content: "\e00f"
    }

    .icon-magic-wand:before {
        content: "\e017"
    }

    .icon-hourglass:before {
        content: "\e018"
    }

    .icon-graduation:before {
        content: "\e019"
    }

    .icon-ghost:before {
        content: "\e01a"
    }

    .icon-game-controller:before {
        content: "\e01b"
    }

    .icon-fire:before {
        content: "\e01c"
    }

    .icon-eyeglass:before {
        content: "\e01d"
    }

    .icon-envelope-open:before {
        content: "\e01e"
    }

    .icon-envelope-letter:before {
        content: "\e01f"
    }

    .icon-bell:before {
        content: "\e027"
    }

    .icon-badge:before {
        content: "\e028"
    }

    .icon-anchor:before {
        content: "\e029"
    }

    .icon-wallet:before {
        content: "\e02a"
    }

    .icon-vector:before {
        content: "\e02b"
    }

    .icon-speech:before {
        content: "\e02c"
    }

    .icon-puzzle:before {
        content: "\e02d"
    }

    .icon-printer:before {
        content: "\e02e"
    }

    .icon-present:before {
        content: "\e02f"
    }

    .icon-playlist:before {
        content: "\e030"
    }

    .icon-pin:before {
        content: "\e031"
    }

    .icon-picture:before {
        content: "\e032"
    }

    .icon-handbag:before {
        content: "\e035"
    }

    .icon-globe-alt:before {
        content: "\e036"
    }

    .icon-globe:before {
        content: "\e037"
    }

    .icon-folder-alt:before {
        content: "\e039"
    }

    .icon-folder:before {
        content: "\e089"
    }

    .icon-film:before {
        content: "\e03a"
    }

    .icon-feed:before {
        content: "\e03b"
    }

    .icon-drop:before {
        content: "\e03e"
    }

    .icon-drawer:before {
        content: "\e03f"
    }

    .icon-docs:before {
        content: "\e040"
    }

    .icon-doc:before {
        content: "\e085"
    }

    .icon-diamond:before {
        content: "\e043"
    }

    .icon-cup:before {
        content: "\e044"
    }

    .icon-calculator:before {
        content: "\e049"
    }

    .icon-bubbles:before {
        content: "\e04a"
    }

    .icon-briefcase:before {
        content: "\e04b"
    }

    .icon-book-open:before {
        content: "\e04c"
    }

    .icon-basket-loaded:before {
        content: "\e04d"
    }

    .icon-basket:before {
        content: "\e04e"
    }

    .icon-bag:before {
        content: "\e04f"
    }

    .icon-action-undo:before {
        content: "\e050"
    }

    .icon-action-redo:before {
        content: "\e051"
    }

    .icon-wrench:before {
        content: "\e052"
    }

    .icon-umbrella:before {
        content: "\e053"
    }

    .icon-trash:before {
        content: "\e054"
    }

    .icon-tag:before {
        content: "\e055"
    }

    .icon-support:before {
        content: "\e056"
    }

    .icon-frame:before {
        content: "\e038"
    }

    .icon-size-fullscreen:before {
        content: "\e057"
    }

    .icon-size-actual:before {
        content: "\e058"
    }

    .icon-shuffle:before {
        content: "\e059"
    }

    .icon-share-alt:before {
        content: "\e05a"
    }

    .icon-share:before {
        content: "\e05b"
    }

    .icon-rocket:before {
        content: "\e05c"
    }

    .icon-question:before {
        content: "\e05d"
    }

    .icon-pie-chart:before {
        content: "\e05e"
    }

    .icon-pencil:before {
        content: "\e05f"
    }

    .icon-note:before {
        content: "\e060"
    }

    .icon-loop:before {
        content: "\e064"
    }

    .icon-home:before {
        content: "\e069"
    }

    .icon-grid:before {
        content: "\e06a"
    }

    .icon-graph:before {
        content: "\e06b"
    }

    .icon-microphone:before {
        content: "\e063"
    }

    .icon-music-tone-alt:before {
        content: "\e061"
    }

    .icon-music-tone:before {
        content: "\e062"
    }

    .icon-earphones-alt:before {
        content: "\e03c"
    }

    .icon-earphones:before {
        content: "\e03d"
    }

    .icon-equalizer:before {
        content: "\e06c"
    }

    .icon-like:before {
        content: "\e068"
    }

    .icon-dislike:before {
        content: "\e06d"
    }

    .icon-control-start:before {
        content: "\e06f"
    }

    .icon-control-rewind:before {
        content: "\e070"
    }

    .icon-control-play:before {
        content: "\e071"
    }

    .icon-control-pause:before {
        content: "\e072"
    }

    .icon-control-forward:before {
        content: "\e073"
    }

    .icon-control-end:before {
        content: "\e074"
    }

    .icon-volume-1:before {
        content: "\e09f"
    }

    .icon-volume-2:before {
        content: "\e0a0"
    }

    .icon-volume-off:before {
        content: "\e0a1"
    }

    .icon-calendar:before {
        content: "\e075"
    }

    .icon-bulb:before {
        content: "\e076"
    }

    .icon-chart:before {
        content: "\e077"
    }

    .icon-ban:before {
        content: "\e07c"
    }

    .icon-bubble:before {
        content: "\e07d"
    }

    .icon-camrecorder:before {
        content: "\e07e"
    }

    .icon-camera:before {
        content: "\e07f"
    }

    .icon-cloud-download:before {
        content: "\e083"
    }

    .icon-cloud-upload:before {
        content: "\e084"
    }

    .icon-envelope:before {
        content: "\e086"
    }

    .icon-eye:before {
        content: "\e087"
    }

    .icon-flag:before {
        content: "\e088"
    }

    .icon-heart:before {
        content: "\e08a"
    }

    .icon-info:before {
        content: "\e08b"
    }

    .icon-key:before {
        content: "\e08c"
    }

    .icon-link:before {
        content: "\e08d"
    }

    .icon-lock:before {
        content: "\e08e"
    }

    .icon-lock-open:before {
        content: "\e08f"
    }

    .icon-magnifier:before {
        content: "\e090"
    }

    .icon-magnifier-add:before {
        content: "\e091"
    }

    .icon-magnifier-remove:before {
        content: "\e092"
    }

    .icon-paper-clip:before {
        content: "\e093"
    }

    .icon-paper-plane:before {
        content: "\e094"
    }

    .icon-power:before {
        content: "\e097"
    }

    .icon-refresh:before {
        content: "\e098"
    }

    .icon-reload:before {
        content: "\e099"
    }

    .icon-settings:before {
        content: "\e09a"
    }

    .icon-star:before {
        content: "\e09b"
    }

    .icon-symbol-female:before {
        content: "\e09c"
    }

    .icon-symbol-male:before {
        content: "\e09d"
    }

    .icon-target:before {
        content: "\e09e"
    }

    .icon-credit-card:before {
        content: "\e025"
    }

    .icon-paypal:before {
        content: "\e608"
    }

    .icon-social-tumblr:before {
        content: "\e00a"
    }

    .icon-social-twitter:before {
        content: "\e009"
    }

    .icon-social-facebook:before {
        content: "\e00b"
    }

    .icon-social-instagram:before {
        content: "\e609"
    }

    .icon-social-linkedin:before {
        content: "\e60a"
    }

    .icon-social-pinterest:before {
        content: "\e60b"
    }

    .icon-social-github:before {
        content: "\e60c"
    }

    .icon-social-google:before {
        content: "\e60d"
    }

    .icon-social-reddit:before {
        content: "\e60e"
    }

    .icon-social-skype:before {
        content: "\e60f"
    }

    .icon-social-dribbble:before {
        content: "\e00d"
    }

    .icon-social-behance:before {
        content: "\e610"
    }

    .icon-social-foursqare:before {
        content: "\e611"
    }

    .icon-social-soundcloud:before {
        content: "\e612"
    }

    .icon-social-spotify:before {
        content: "\e613"
    }

    .icon-social-stumbleupon:before {
        content: "\e614"
    }

    .icon-social-youtube:before {
        content: "\e008"
    }

    .icon-social-dropbox:before {
        content: "\e00c"
    }

    .icon-social-vkontakte:before {
        content: "\e618"
    }

    .icon-social-steam:before {
        content: "\e620"
    }

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

.tp-caption.Twitter-Content a, .tp-caption.Twitter-Content a:visited {
    color: #0084b4 !important
}

    .tp-caption.Twitter-Content a:hover {
        color: #0084b4 !important;
        text-decoration: underline !important
    }

.medium_grey, .tp-caption.medium_grey {
    background-color: #888;
    border-style: none;
    border-width: 0;
    color: #fff;
    
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
    padding: 2px 4px;
    position: absolute;
    text-shadow: 0 2px 5px rgba(0,0,0,.5);
    white-space: nowrap
}

.small_text, .tp-caption.small_text {
    border-style: none;
    border-width: 0;
    color: #fff;
    
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
    position: absolute;
    text-shadow: 0 2px 5px rgba(0,0,0,.5);
    white-space: nowrap
}

.medium_text, .tp-caption.medium_text {
    border-style: none;
    border-width: 0;
    color: #fff;
    
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
    position: absolute;
    text-shadow: 0 2px 5px rgba(0,0,0,.5);
    white-space: nowrap
}

.large_text, .tp-caption.large_text {
    border-style: none;
    border-width: 0;
    color: #fff;
    
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    margin: 0;
    position: absolute;
    text-shadow: 0 2px 5px rgba(0,0,0,.5);
    white-space: nowrap
}

.tp-caption.very_large_text, .very_large_text {
    border-style: none;
    border-width: 0;
    color: #fff;
    
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 60px;
    margin: 0;
    position: absolute;
    text-shadow: 0 2px 5px rgba(0,0,0,.5);
    white-space: nowrap
}

.tp-caption.very_big_white, .very_big_white {
    background-color: #000;
    border-style: none;
    border-width: 0;
    color: #fff;
    
    font-size: 60px;
    font-weight: 800;
    line-height: 60px;
    margin: 0;
    padding: 1px 4px 0;
    position: absolute;
    text-shadow: none;
    white-space: nowrap
}

.tp-caption.very_big_black, .very_big_black {
    background-color: #fff;
    border-style: none;
    border-width: 0;
    color: #000;
    
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
    margin: 0;
    padding: 1px 4px 0;
    position: absolute;
    text-shadow: none;
    white-space: nowrap
}

.modern_medium_fat, .tp-caption.modern_medium_fat {
    border-style: none;
    border-width: 0;
    color: #000;
    font-family: "Open Sans",sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 20px;
    margin: 0;
    position: absolute;
    text-shadow: none;
    white-space: nowrap
}

.modern_medium_fat_white, .tp-caption.modern_medium_fat_white {
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Open Sans",sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 20px;
    margin: 0;
    position: absolute;
    text-shadow: none;
    white-space: nowrap
}

.modern_medium_light, .tp-caption.modern_medium_light {
    border-style: none;
    border-width: 0;
    color: #000;
    font-family: "Open Sans",sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 20px;
    margin: 0;
    position: absolute;
    text-shadow: none;
    white-space: nowrap
}

.modern_big_bluebg, .tp-caption.modern_big_bluebg {
    background-color: #4e5b6c;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Open Sans",sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 36px;
    margin: 0;
    padding: 3px 10px;
    position: absolute;
    text-shadow: none
}

.modern_big_redbg, .tp-caption.modern_big_redbg {
    background-color: #de543e;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Open Sans",sans-serif;
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 36px;
    margin: 0;
    padding: 1px 10px 3px;
    position: absolute;
    text-shadow: none
}

.modern_small_text_dark, .tp-caption.modern_small_text_dark {
    border-style: none;
    border-width: 0;
    color: #555;
    
    font-size: 14px;
    line-height: 22px;
    margin: 0;
    position: absolute;
    text-shadow: none;
    white-space: nowrap
}

.boxshadow, .tp-caption.boxshadow {
    -webkit-box-shadow: 0 0 20px rgba(0,0,0,.5);
    box-shadow: 0 0 20px rgba(0,0,0,.5)
}

.black, .tp-caption.black {
    color: #000;
    text-shadow: none
}

.noshadow, .tp-caption.noshadow {
    text-shadow: none
}

.thinheadline_dark, .tp-caption.thinheadline_dark {
    background-color: transparent;
    color: rgba(0,0,0,.85);
    font-family: "Open Sans";
    font-size: 30px;
    font-weight: 300;
    line-height: 30px;
    position: absolute;
    text-shadow: none
}

.thintext_dark, .tp-caption.thintext_dark {
    background-color: transparent;
    color: rgba(0,0,0,.85);
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    position: absolute;
    text-shadow: none
}

.largeblackbg, .tp-caption.largeblackbg {
    background-color: #000;
    border-radius: 0;
    color: #fff;
    font-family: "Open Sans";
    font-size: 50px;
    font-weight: 300;
    line-height: 70px;
    padding: 0 20px;
    position: absolute;
    text-shadow: none
}

.largepinkbg, .tp-caption.largepinkbg {
    background-color: #db4360;
    border-radius: 0;
    color: #fff;
    font-family: "Open Sans";
    font-size: 50px;
    font-weight: 300;
    line-height: 70px;
    padding: 0 20px;
    position: absolute;
    text-shadow: none
}

.largewhitebg, .tp-caption.largewhitebg {
    background-color: #fff;
    border-radius: 0;
    color: #000;
    font-family: "Open Sans";
    font-size: 50px;
    font-weight: 300;
    line-height: 70px;
    padding: 0 20px;
    position: absolute;
    text-shadow: none
}

.largegreenbg, .tp-caption.largegreenbg {
    background-color: #67ae73;
    border-radius: 0;
    color: #fff;
    font-family: "Open Sans";
    font-size: 50px;
    font-weight: 300;
    line-height: 70px;
    padding: 0 20px;
    position: absolute;
    text-shadow: none
}

.excerpt, .tp-caption.excerpt {
    background-color: #000;
    border-color: #fff;
    border-style: none;
    border-width: 0;
    color: #fff;
    
    font-size: 36px;
    font-weight: 700;
    height: auto;
    letter-spacing: -1.5px;
    line-height: 36px;
    margin: 0;
    padding: 1px 4px 0;
    text-decoration: none;
    text-shadow: none;
    white-space: normal !important;
    width: 150px
}

.large_bold_grey, .tp-caption.large_bold_grey {
    background-color: transparent;
    border-color: #ffd658;
    border-style: none;
    border-width: 0;
    color: #666;
    font-family: "Open Sans";
    font-size: 60px;
    font-weight: 800;
    line-height: 60px;
    margin: 0;
    padding: 1px 4px 0;
    text-decoration: none;
    text-shadow: none
}

.medium_thin_grey, .tp-caption.medium_thin_grey {
    background-color: transparent;
    border-color: #ffd658;
    border-style: none;
    border-width: 0;
    color: #666;
    font-family: "Open Sans";
    font-size: 34px;
    font-weight: 300;
    line-height: 30px;
    margin: 0;
    padding: 1px 4px 0;
    text-decoration: none;
    text-shadow: none
}

.small_thin_grey, .tp-caption.small_thin_grey {
    background-color: transparent;
    border-color: #ffd658;
    border-style: none;
    border-width: 0;
    color: #757575;
    font-family: "Open Sans";
    font-size: 18px;
    font-weight: 300;
    line-height: 26px;
    margin: 0;
    padding: 1px 4px 0;
    text-decoration: none;
    text-shadow: none
}

.lightgrey_divider, .tp-caption.lightgrey_divider {
    background-color: #ebebeb;
    background-position: initial;
    background-repeat: initial;
    border-color: #222;
    border-style: none;
    border-width: 0;
    height: 3px;
    text-decoration: none;
    width: 370px
}

.large_bold_darkblue, .tp-caption.large_bold_darkblue {
    background-color: transparent;
    border-color: #ffd658;
    border-style: none;
    border-width: 0;
    color: #34495e;
    font-family: "Open Sans";
    font-size: 58px;
    font-weight: 800;
    line-height: 60px;
    text-decoration: none
}

.medium_bg_darkblue, .tp-caption.medium_bg_darkblue {
    background-color: #34495e;
    border-color: #ffd658;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Open Sans";
    font-size: 20px;
    font-weight: 800;
    line-height: 20px;
    padding: 10px;
    text-decoration: none
}

.medium_bold_red, .tp-caption.medium_bold_red {
    background-color: transparent;
    border-color: #ffd658;
    border-style: none;
    border-width: 0;
    color: #e33a0c;
    font-family: "Open Sans";
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
    padding: 0;
    text-decoration: none
}

.medium_light_red, .tp-caption.medium_light_red {
    background-color: transparent;
    border-color: #ffd658;
    border-style: none;
    border-width: 0;
    color: #e33a0c;
    font-family: "Open Sans";
    font-size: 21px;
    font-weight: 300;
    line-height: 26px;
    padding: 0;
    text-decoration: none
}

.medium_bg_red, .tp-caption.medium_bg_red {
    background-color: #e33a0c;
    border-color: #ffd658;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Open Sans";
    font-size: 20px;
    font-weight: 800;
    line-height: 20px;
    padding: 10px;
    text-decoration: none
}

.medium_bold_orange, .tp-caption.medium_bold_orange {
    background-color: transparent;
    border-color: #ffd658;
    border-style: none;
    border-width: 0;
    color: #f39c12;
    font-family: "Open Sans";
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
    text-decoration: none
}

.medium_bg_orange, .tp-caption.medium_bg_orange {
    background-color: #f39c12;
    border-color: #ffd658;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Open Sans";
    font-size: 20px;
    font-weight: 800;
    line-height: 20px;
    padding: 10px;
    text-decoration: none
}

.grassfloor, .tp-caption.grassfloor {
    background-color: #a0b397;
    border-color: #222;
    border-style: none;
    border-width: 0;
    height: 150px;
    text-decoration: none;
    width: 4000px
}

.large_bold_white, .tp-caption.large_bold_white {
    background-color: transparent;
    border-color: #ffd658;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Open Sans";
    font-size: 58px;
    font-weight: 800;
    line-height: 60px;
    text-decoration: none
}

.medium_light_white, .tp-caption.medium_light_white {
    background-color: transparent;
    border-color: #ffd658;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Open Sans";
    font-size: 30px;
    font-weight: 300;
    line-height: 36px;
    padding: 0;
    text-decoration: none
}

.mediumlarge_light_white, .tp-caption.mediumlarge_light_white {
    background-color: transparent;
    border-color: #ffd658;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Open Sans";
    font-size: 34px;
    font-weight: 300;
    line-height: 40px;
    padding: 0;
    text-decoration: none
}

.mediumlarge_light_white_center, .tp-caption.mediumlarge_light_white_center {
    background-color: transparent;
    border-color: #ffd658;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Open Sans";
    font-size: 34px;
    font-weight: 300;
    line-height: 40px;
    padding: 0;
    text-align: center;
    text-decoration: none
}

.medium_bg_asbestos, .tp-caption.medium_bg_asbestos {
    background-color: #7f8c8d;
    border-color: #ffd658;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Open Sans";
    font-size: 20px;
    font-weight: 800;
    line-height: 20px;
    padding: 10px;
    text-decoration: none
}

.medium_light_black, .tp-caption.medium_light_black {
    background-color: transparent;
    border-color: #ffd658;
    border-style: none;
    border-width: 0;
    color: #000;
    font-family: "Open Sans";
    font-size: 30px;
    font-weight: 300;
    line-height: 36px;
    padding: 0;
    text-decoration: none
}

.large_bold_black, .tp-caption.large_bold_black {
    background-color: transparent;
    border-color: #ffd658;
    border-style: none;
    border-width: 0;
    color: #000;
    font-family: "Open Sans";
    font-size: 58px;
    font-weight: 800;
    line-height: 60px;
    text-decoration: none
}

.mediumlarge_light_darkblue, .tp-caption.mediumlarge_light_darkblue {
    background-color: transparent;
    border-color: #ffd658;
    border-style: none;
    border-width: 0;
    color: #34495e;
    font-family: "Open Sans";
    font-size: 34px;
    font-weight: 300;
    line-height: 40px;
    padding: 0;
    text-decoration: none
}

.small_light_white, .tp-caption.small_light_white {
    background-color: transparent;
    border-color: #ffd658;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Open Sans";
    font-size: 17px;
    font-weight: 300;
    line-height: 28px;
    padding: 0;
    text-decoration: none
}

.roundedimage, .tp-caption.roundedimage {
    border-color: #222;
    border-style: none;
    border-width: 0
}

.large_bg_black, .tp-caption.large_bg_black {
    background-color: #000;
    border-color: #ffd658;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Open Sans";
    font-size: 40px;
    font-weight: 800;
    line-height: 40px;
    padding: 10px 20px 15px;
    text-decoration: none
}

.mediumwhitebg, .tp-caption.mediumwhitebg {
    background-color: #fff;
    border-color: #000;
    border-style: none;
    border-width: 0;
    color: #000;
    font-family: "Open Sans";
    font-size: 30px;
    font-weight: 300;
    line-height: 30px;
    padding: 5px 15px 10px;
    text-decoration: none;
    text-shadow: none
}

.maincaption, .tp-caption.maincaption {
    background-color: transparent;
    border-color: #000;
    border-style: none;
    border-width: 0;
    color: #212a40;
   
    font-size: 33px;
    
    line-height: 43px;
    text-decoration: none;
    text-shadow: none
}

.miami_title_60px, .tp-caption.miami_title_60px {
    background-color: transparent;
    border-color: #000;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Source Sans Pro";
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 60px;
    text-decoration: none;
    text-shadow: none
}

.miami_subtitle, .tp-caption.miami_subtitle {
    background-color: transparent;
    border-color: #000;
    border-style: none;
    border-width: 0;
    color: rgba(255,255,255,.65);
    font-family: "Source Sans Pro";
    font-size: 17px;
   
    letter-spacing: 2px;
    line-height: 24px;
    text-decoration: none;
    text-shadow: none
}

.divideline30px, .tp-caption.divideline30px {
    background: #fff;
    background-color: #fff;
    border-color: #222;
    border-style: none;
    border-width: 0;
    height: 2px;
    min-width: 30px;
    text-decoration: none
}

.Miami_nostyle, .tp-caption.Miami_nostyle {
    border-color: #222;
    border-style: none;
    border-width: 0
}

.miami_content_light, .tp-caption.miami_content_light {
    background-color: transparent;
    border-color: #000;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Source Sans Pro";
    font-size: 22px;
   
    letter-spacing: 0;
    line-height: 28px;
    text-decoration: none;
    text-shadow: none
}

.miami_title_60px_dark, .tp-caption.miami_title_60px_dark {
    background-color: transparent;
    border-color: #000;
    border-style: none;
    border-width: 0;
    color: #333;
    font-family: "Source Sans Pro";
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 60px;
    text-decoration: none;
    text-shadow: none
}

.miami_content_dark, .tp-caption.miami_content_dark {
    background-color: transparent;
    border-color: #000;
    border-style: none;
    border-width: 0;
    color: #666;
    font-family: "Source Sans Pro";
    font-size: 22px;
   
    letter-spacing: 0;
    line-height: 28px;
    text-decoration: none;
    text-shadow: none
}

.divideline30px_dark, .tp-caption.divideline30px_dark {
    background-color: #333;
    border-color: #222;
    border-style: none;
    border-width: 0;
    height: 2px;
    min-width: 30px;
    text-decoration: none
}

.ellipse70px, .tp-caption.ellipse70px {
    background-color: rgba(0,0,0,.14902);
    border-color: #222;
    border-radius: 50px 50px 50px 50px;
    border-style: none;
    border-width: 0;
    cursor: pointer;
    line-height: 1px;
    min-height: 70px;
    min-width: 70px;
    text-decoration: none
}

.arrowicon, .tp-caption.arrowicon {
    border-color: #222;
    border-style: none;
    border-width: 0;
    line-height: 1px
}

.MarkerDisplay, .tp-caption.MarkerDisplay {
    background-color: transparent;
    border-color: #000;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    font-family: "Permanent Marker";
    font-style: normal;
    padding: 0;
    text-decoration: none;
    text-shadow: none
}

.Restaurant-Display, .tp-caption.Restaurant-Display {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
   
    font-size: 120px;
    font-style: normal;
    font-weight: 700;
    line-height: 120px;
    padding: 0;
    text-decoration: none
}

.Restaurant-Cursive, .tp-caption.Restaurant-Cursive {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Nothing you could do";
    font-size: 30px;
    font-style: normal;
   
    letter-spacing: 2px;
    line-height: 30px;
    padding: 0;
    text-decoration: none
}

.Restaurant-ScrollDownText, .tp-caption.Restaurant-ScrollDownText {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
   
    font-size: 17px;
    font-style: normal;
   
    letter-spacing: 2px;
    line-height: 17px;
    padding: 0;
    text-decoration: none
}

.Restaurant-Description, .tp-caption.Restaurant-Description {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
   
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 30px;
    padding: 0;
    text-decoration: none
}

.Restaurant-Price, .tp-caption.Restaurant-Price {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
   
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 30px;
    padding: 0;
    text-decoration: none
}

.Restaurant-Menuitem, .tp-caption.Restaurant-Menuitem {
    background-color: #000;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
   
    font-size: 17px;
    font-style: normal;
   
    letter-spacing: 2px;
    line-height: 17px;
    padding: 10px 30px;
    text-align: left;
    text-decoration: none
}

.Furniture-LogoText, .tp-caption.Furniture-LogoText {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #e6cfa3;
    font-family: Raleway;
    font-size: 160px;
    font-style: normal;
    font-weight: 300;
    line-height: 150px;
    padding: 0;
    text-decoration: none;
    text-shadow: none
}

.Furniture-Plus, .tp-caption.Furniture-Plus {
    background-color: #fff;
    border-color: transparent;
    border-radius: 30px 30px 30px 30px;
    border-style: none;
    border-width: 0;
    -webkit-box-shadow: rgba(0,0,0,.1) 0 1px 3px;
    box-shadow: rgba(0,0,0,.1) 0 1px 3px;
    color: #e6cfa3;
    font-family: Raleway;
    font-size: 20px;
    font-style: normal;
   
    line-height: 20px;
    padding: 6px 7px 4px;
    text-decoration: none;
    text-shadow: none
}

.Furniture-Title, .tp-caption.Furniture-Title {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #000;
    font-family: Raleway;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 20px;
    padding: 0;
    text-decoration: none;
    text-shadow: none
}

.Furniture-Subtitle, .tp-caption.Furniture-Subtitle {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #000;
    font-family: Raleway;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    padding: 0;
    text-decoration: none;
    text-shadow: none
}

.Gym-Display, .tp-caption.Gym-Display {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Raleway;
    font-size: 80px;
    font-style: normal;
    font-weight: 900;
    line-height: 70px;
    padding: 0;
    text-decoration: none
}

.Gym-Subline, .tp-caption.Gym-Subline {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Raleway;
    font-size: 30px;
    font-style: normal;
    font-weight: 100;
    letter-spacing: 5px;
    line-height: 30px;
    padding: 0;
    text-decoration: none
}

.Gym-SmallText, .tp-caption.Gym-SmallText {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Raleway;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 22;
    padding: 0;
    text-decoration: none;
    text-shadow: none
}

.Fashion-SmallText, .tp-caption.Fashion-SmallText {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Raleway;
    font-size: 12px;
    font-style: normal;
   
    letter-spacing: 2px;
    line-height: 20px;
    padding: 0;
    text-decoration: none
}

.Fashion-BigDisplay, .tp-caption.Fashion-BigDisplay {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #000;
    font-family: Raleway;
    font-size: 60px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 60px;
    padding: 0;
    text-decoration: none
}

.Fashion-TextBlock, .tp-caption.Fashion-TextBlock {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #000;
    font-family: Raleway;
    font-size: 20px;
    font-style: normal;
   
    letter-spacing: 2px;
    line-height: 40px;
    padding: 0;
    text-decoration: none
}

.Sports-Display, .tp-caption.Sports-Display {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Raleway;
    font-size: 130px;
    font-style: normal;
    font-weight: 100;
    letter-spacing: 13px;
    line-height: 130px;
    padding: 0;
    text-decoration: none
}

.Sports-DisplayFat, .tp-caption.Sports-DisplayFat {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Raleway;
    font-size: 130px;
    font-style: normal;
    font-weight: 900;
    line-height: 130px;
    padding: 0;
    text-decoration: none
}

.Sports-Subline, .tp-caption.Sports-Subline {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #000;
    font-family: Raleway;
    font-size: 32px;
    font-style: normal;
   
    letter-spacing: 4px;
    line-height: 32px;
    padding: 0;
    text-decoration: none
}

.Instagram-Caption, .tp-caption.Instagram-Caption {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
   
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 20px;
    padding: 0;
    text-decoration: none
}

.News-Title, .tp-caption.News-Title {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Roboto Slab";
    font-size: 70px;
    font-style: normal;
   
    line-height: 60px;
    padding: 0;
    text-decoration: none
}

.News-Subtitle, .tp-caption.News-Subtitle {
    background-color: rgba(255,255,255,0);
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Roboto Slab";
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    padding: 0;
    text-decoration: none
}

    .News-Subtitle:hover, .tp-caption.News-Subtitle:hover {
        background-color: rgba(255,255,255,0);
        border-color: transparent;
        border-radius: 0;
        border-style: solid;
        border-width: 0;
        color: rgba(255,255,255,.65);
        text-decoration: none
    }

.Photography-Display, .tp-caption.Photography-Display {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Raleway;
    font-size: 80px;
    font-style: normal;
    font-weight: 100;
    letter-spacing: 5px;
    line-height: 70px;
    padding: 0;
    text-decoration: none
}

.Photography-Subline, .tp-caption.Photography-Subline {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #777;
    font-family: Raleway;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 30px;
    padding: 0;
    text-decoration: none
}

.Photography-ImageHover, .tp-caption.Photography-ImageHover {
    background-color: transparent;
    border-color: rgba(255,255,255,0);
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-size: 20px;
    font-style: normal;
   
    line-height: 22;
    padding: 0;
    text-decoration: none
}

    .Photography-ImageHover:hover, .tp-caption.Photography-ImageHover:hover {
        background-color: transparent;
        border-color: transparent;
        border-radius: 0;
        border-style: none;
        border-width: 0;
        color: #fff;
        text-decoration: none
    }

.Photography-Menuitem, .tp-caption.Photography-Menuitem {
    background-color: rgba(0,0,0,.65);
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Raleway;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 20px;
    padding: 3px 5px 3px 8px;
    text-decoration: none
}

    .Photography-Menuitem:hover, .tp-caption.Photography-Menuitem:hover {
        background-color: rgba(0,255,222,.65);
        border-color: transparent;
        border-radius: 0;
        border-style: none;
        border-width: 0;
        color: #fff;
        text-decoration: none
    }

.Photography-Textblock, .tp-caption.Photography-Textblock {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Raleway;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 30px;
    padding: 0;
    text-decoration: none
}

.Photography-Subline-2, .tp-caption.Photography-Subline-2 {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: rgba(255,255,255,.35);
    font-family: Raleway;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 30px;
    padding: 0;
    text-decoration: none
}

.Photography-ImageHover2, .tp-caption.Photography-ImageHover2 {
    background-color: transparent;
    border-color: rgba(255,255,255,0);
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    
    font-size: 20px;
    font-style: normal;
   
    line-height: 22;
    padding: 0;
    text-decoration: none
}

    .Photography-ImageHover2:hover, .tp-caption.Photography-ImageHover2:hover {
        background-color: transparent;
        border-color: transparent;
        border-radius: 0;
        border-style: none;
        border-width: 0;
        color: #fff;
        text-decoration: none
    }

.WebProduct-Title, .tp-caption.WebProduct-Title {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #333;
    font-family: Raleway;
    font-size: 90px;
    font-style: normal;
    font-weight: 100;
    line-height: 90px;
    padding: 0;
    text-decoration: none
}

.WebProduct-SubTitle, .tp-caption.WebProduct-SubTitle {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #999;
    font-family: Raleway;
    font-size: 15px;
    font-style: normal;
   
    line-height: 20px;
    padding: 0;
    text-decoration: none
}

.WebProduct-Content, .tp-caption.WebProduct-Content {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #999;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
   
    line-height: 24px;
    padding: 0;
    text-decoration: none
}

.WebProduct-Menuitem, .tp-caption.WebProduct-Menuitem {
    background-color: #333;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Raleway;
    font-size: 15px;
    font-style: normal;
    
    letter-spacing: 2px;
    line-height: 20px;
    padding: 3px 5px 3px 8px;
    text-align: left;
    text-decoration: none
}

    .WebProduct-Menuitem:hover, .tp-caption.WebProduct-Menuitem:hover {
        background-color: #fff;
        border-color: transparent;
        border-radius: 0;
        border-style: none;
        border-width: 0;
        color: #999;
        text-decoration: none
    }

.WebProduct-Title-Light, .tp-caption.WebProduct-Title-Light {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Raleway;
    font-size: 90px;
    font-style: normal;
    font-weight: 100;
    line-height: 90px;
    padding: 0;
    text-align: left;
    text-decoration: none
}

.WebProduct-SubTitle-Light, .tp-caption.WebProduct-SubTitle-Light {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: rgba(255,255,255,.35);
    font-family: Raleway;
    font-size: 15px;
    font-style: normal;
   
    line-height: 20px;
    padding: 0;
    text-align: left;
    text-decoration: none
}

.WebProduct-Content-Light, .tp-caption.WebProduct-Content-Light {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: rgba(255,255,255,.65);
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
   
    line-height: 24px;
    padding: 0;
    text-align: left;
    text-decoration: none
}

.FatRounded, .tp-caption.FatRounded {
    background-color: rgba(0,0,0,.5);
    border-color: #d3d3d3;
    border-radius: 50px 50px 50px 50px;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Raleway;
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: 30px;
    padding: 20px 22px 20px 25px;
    text-align: left;
    text-decoration: none;
    text-shadow: none
}

    .FatRounded:hover, .tp-caption.FatRounded:hover {
        background-color: #000;
        border-color: #d3d3d3;
        border-radius: 50px 50px 50px 50px;
        border-style: none;
        border-width: 0;
        color: #fff;
        text-decoration: none
    }

.NotGeneric-Title, .tp-caption.NotGeneric-Title {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Raleway;
    font-size: 70px;
    font-style: normal;
    font-weight: 800;
    line-height: 70px;
    padding: 10px 0;
    text-decoration: none
}

.NotGeneric-SubTitle, .tp-caption.NotGeneric-SubTitle {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Raleway;
    font-size: 13px;
    font-style: normal;
    
    letter-spacing: 4px;
    line-height: 20px;
    padding: 0;
    text-align: left;
    text-decoration: none
}

.NotGeneric-CallToAction, .tp-caption.NotGeneric-CallToAction {
    background-color: rgba(0,0,0,0);
    border-color: rgba(255,255,255,.5);
    border-radius: 0;
    border-style: solid;
    border-width: 1px;
    color: #fff;
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    
    letter-spacing: 3px;
    line-height: 14px;
    padding: 10px 30px;
    text-align: left;
    text-decoration: none
}

    .NotGeneric-CallToAction:hover, .tp-caption.NotGeneric-CallToAction:hover {
        background-color: transparent;
        border-color: #fff;
        border-radius: 0;
        border-style: solid;
        border-width: 1px;
        color: #fff;
        text-decoration: none
    }

.NotGeneric-Icon, .tp-caption.NotGeneric-Icon {
    background-color: rgba(0,0,0,0);
    border-color: rgba(255,255,255,0);
    border-radius: 0;
    border-style: solid;
    border-width: 0;
    color: #fff;
    font-family: Raleway;
    font-size: 30px;
    font-style: normal;
   
    letter-spacing: 3px;
    line-height: 30px;
    padding: 0;
    text-align: left;
    text-decoration: none
}

.NotGeneric-Menuitem, .tp-caption.NotGeneric-Menuitem {
    background-color: rgba(0,0,0,0);
    border-color: rgba(255,255,255,.15);
    border-radius: 0;
    border-style: solid;
    border-width: 1px;
    color: #fff;
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    
    letter-spacing: 3px;
    line-height: 14px;
    padding: 27px 30px;
    text-align: left;
    text-decoration: none
}

    .NotGeneric-Menuitem:hover, .tp-caption.NotGeneric-Menuitem:hover {
        background-color: rgba(0,0,0,0);
        border-color: #fff;
        border-radius: 0;
        border-style: solid;
        border-width: 1px;
        color: #fff;
        text-decoration: none
    }

.MarkerStyle, .tp-caption.MarkerStyle {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Permanent Marker";
    font-size: 17px;
    font-style: normal;
    font-weight: 100;
    line-height: 30px;
    padding: 0;
    text-align: left;
    text-decoration: none
}

.Gym-Menuitem, .tp-caption.Gym-Menuitem {
    background-color: #000;
    border-color: rgba(255,255,255,0);
    border-radius: 3px 3px 3px 3px;
    border-style: solid;
    border-width: 2px;
    color: #fff;
    font-family: Raleway;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 20px;
    padding: 3px 5px 3px 8px;
    text-align: left;
    text-decoration: none
}

    .Gym-Menuitem:hover, .tp-caption.Gym-Menuitem:hover {
        background-color: #000;
        border-color: rgba(255,255,255,.25);
        border-radius: 3px 3px 3px 3px;
        border-style: solid;
        border-width: 2px;
        color: #fff;
        text-decoration: none
    }

.Newspaper-Button, .tp-caption.Newspaper-Button {
    background-color: rgba(255,255,255,0);
    border-color: rgba(255,255,255,.25);
    border-radius: 0;
    border-style: solid;
    border-width: 1px;
    color: #fff;
   
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 17px;
    padding: 12px 35px;
    text-align: left;
    text-decoration: none
}

    .Newspaper-Button:hover, .tp-caption.Newspaper-Button:hover {
        background-color: #fff;
        border-color: #fff;
        border-radius: 0;
        border-style: solid;
        border-width: 1px;
        color: #000;
        text-decoration: none
    }

.Newspaper-Subtitle, .tp-caption.Newspaper-Subtitle {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #a8d8ee;
   
    font-size: 15px;
    font-style: normal;
    font-weight: 900;
    line-height: 20px;
    padding: 0;
    text-align: left;
    text-decoration: none
}

.Newspaper-Title, .tp-caption.Newspaper-Title {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Roboto Slab";
    font-size: 50px;
    font-style: normal;
   
    line-height: 55px;
    padding: 0 0 10px;
    text-align: left;
    text-decoration: none
}

.Newspaper-Title-Centered, .tp-caption.Newspaper-Title-Centered {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Roboto Slab";
    font-size: 50px;
    font-style: normal;
   
    line-height: 55px;
    padding: 0 0 10px;
    text-align: center;
    text-decoration: none
}

.Hero-Button, .tp-caption.Hero-Button {
    background-color: rgba(0,0,0,0);
    border-color: rgba(255,255,255,.5);
    border-radius: 0;
    border-style: solid;
    border-width: 1px;
    color: #fff;
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    
    letter-spacing: 3px;
    line-height: 14px;
    padding: 10px 30px;
    text-align: left;
    text-decoration: none
}

    .Hero-Button:hover, .tp-caption.Hero-Button:hover {
        background-color: #fff;
        border-color: #fff;
        border-radius: 0;
        border-style: solid;
        border-width: 1px;
        color: #000;
        text-decoration: none
    }

.Video-Title, .tp-caption.Video-Title {
    background-color: #000;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Raleway;
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: 30px;
    padding: 5px;
    text-align: left;
    text-decoration: none
}

.Video-SubTitle, .tp-caption.Video-SubTitle {
    background-color: rgba(0,0,0,.35);
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Raleway;
    font-size: 12px;
    font-style: normal;
   
    letter-spacing: 2px;
    line-height: 12px;
    padding: 5px;
    text-align: left;
    text-decoration: none
}

.NotGeneric-Button, .tp-caption.NotGeneric-Button {
    background-color: rgba(0,0,0,0);
    border-color: rgba(255,255,255,.5);
    border-radius: 0;
    border-style: solid;
    border-width: 1px;
    color: #fff;
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    
    letter-spacing: 3px;
    line-height: 14px;
    padding: 10px 30px;
    text-align: left;
    text-decoration: none
}

    .NotGeneric-Button:hover, .tp-caption.NotGeneric-Button:hover {
        background-color: transparent;
        border-color: #fff;
        border-radius: 0;
        border-style: solid;
        border-width: 1px;
        color: #fff;
        text-decoration: none
    }

.NotGeneric-BigButton, .tp-caption.NotGeneric-BigButton {
    background-color: rgba(0,0,0,0);
    border-color: rgba(255,255,255,.15);
    border-radius: 0;
    border-style: solid;
    border-width: 1px;
    color: #fff;
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    
    letter-spacing: 3px;
    line-height: 14px;
    padding: 27px 30px;
    text-align: left;
    text-decoration: none
}

    .NotGeneric-BigButton:hover, .tp-caption.NotGeneric-BigButton:hover {
        background-color: rgba(0,0,0,0);
        border-color: #fff;
        border-radius: 0;
        border-style: solid;
        border-width: 1px;
        color: #fff;
        text-decoration: none
    }

.WebProduct-Button, .tp-caption.WebProduct-Button {
    background-color: #333;
    border-color: #000;
    border-radius: 0;
    border-style: none;
    border-width: 2px;
    color: #fff;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
   
    letter-spacing: 1px;
    line-height: 48px;
    padding: 0 40px;
    text-align: left;
    text-decoration: none
}

    .WebProduct-Button:hover, .tp-caption.WebProduct-Button:hover {
        background-color: #fff;
        border-color: #000;
        border-radius: 0;
        border-style: none;
        border-width: 2px;
        color: #333;
        text-decoration: none
    }

.Restaurant-Button, .tp-caption.Restaurant-Button {
    background-color: rgba(10,10,10,0);
    border-color: rgba(255,255,255,.5);
    border-radius: 0;
    border-style: solid;
    border-width: 2px;
    color: #fff;
   
    font-size: 17px;
    font-style: normal;
    
    letter-spacing: 3px;
    line-height: 17px;
    padding: 12px 35px;
    text-align: left;
    text-decoration: none
}

    .Restaurant-Button:hover, .tp-caption.Restaurant-Button:hover {
        background-color: rgba(0,0,0,0);
        border-color: #ffe081;
        border-radius: 0;
        border-style: solid;
        border-width: 2px;
        color: #fff;
        text-decoration: none
    }

.Gym-Button, .tp-caption.Gym-Button {
    background-color: #8bc027;
    border-color: transparent;
    border-radius: 30px 30px 30px 30px;
    border-style: solid;
    border-width: 0;
    color: #fff;
    font-family: Raleway;
    font-size: 15px;
    font-style: normal;
   
    letter-spacing: 1px;
    line-height: 15px;
    padding: 13px 35px;
    text-align: left;
    text-decoration: none
}

    .Gym-Button:hover, .tp-caption.Gym-Button:hover {
        background-color: #72a800;
        border-color: transparent;
        border-radius: 30px 30px 30px 30px;
        border-style: solid;
        border-width: 0;
        color: #fff;
        text-decoration: none
    }

.Gym-Button-Light, .tp-caption.Gym-Button-Light {
    background-color: transparent;
    border-color: rgba(255,255,255,.25);
    border-radius: 30px 30px 30px 30px;
    border-style: solid;
    border-width: 2px;
    color: #fff;
    font-family: Raleway;
    font-size: 15px;
    font-style: normal;
   
    line-height: 15px;
    padding: 12px 35px;
    text-align: left;
    text-decoration: none
}

    .Gym-Button-Light:hover, .tp-caption.Gym-Button-Light:hover {
        background-color: rgba(114,168,0,0);
        border-color: #8bc027;
        border-radius: 30px 30px 30px 30px;
        border-style: solid;
        border-width: 2px;
        color: #fff;
        text-decoration: none
    }

.Sports-Button-Light, .tp-caption.Sports-Button-Light {
    background-color: rgba(0,0,0,0);
    border-color: rgba(255,255,255,.5);
    border-radius: 0;
    border-style: solid;
    border-width: 2px;
    color: #fff;
    font-family: Raleway;
    font-size: 17px;
    font-style: normal;
   
    letter-spacing: 2px;
    line-height: 17px;
    padding: 12px 35px;
    text-align: left;
    text-decoration: none
}

    .Sports-Button-Light:hover, .tp-caption.Sports-Button-Light:hover {
        background-color: rgba(0,0,0,0);
        border-color: #fff;
        border-radius: 0;
        border-style: solid;
        border-width: 2px;
        color: #fff;
        text-decoration: none
    }

.Sports-Button-Red, .tp-caption.Sports-Button-Red {
    background-color: #db1c22;
    border-color: rgba(219,28,34,0);
    border-radius: 0;
    border-style: solid;
    border-width: 2px;
    color: #fff;
    font-family: Raleway;
    font-size: 17px;
    font-style: normal;
   
    letter-spacing: 2px;
    line-height: 17px;
    padding: 12px 35px;
    text-align: left;
    text-decoration: none
}

    .Sports-Button-Red:hover, .tp-caption.Sports-Button-Red:hover {
        background-color: #000;
        border-color: #000;
        border-radius: 0;
        border-style: solid;
        border-width: 2px;
        color: #fff;
        text-decoration: none
    }

.Photography-Button, .tp-caption.Photography-Button {
    background-color: rgba(0,0,0,0);
    border-color: rgba(255,255,255,.25);
    border-radius: 30px 30px 30px 30px;
    border-style: solid;
    border-width: 1px;
    color: #fff;
    font-family: Raleway;
    font-size: 15px;
    font-style: normal;
   
    letter-spacing: 1px;
    line-height: 15px;
    padding: 13px 35px;
    text-align: left;
    text-decoration: none
}

    .Photography-Button:hover, .tp-caption.Photography-Button:hover {
        background-color: rgba(0,0,0,0);
        border-color: #fff;
        border-radius: 30px 30px 30px 30px;
        border-style: solid;
        border-width: 1px;
        color: #fff;
        text-decoration: none
    }

.Newspaper-Button-2, .tp-caption.Newspaper-Button-2 {
    background-color: rgba(0,0,0,0);
    border-color: rgba(255,255,255,.5);
    border-radius: 3px 3px 3px 3px;
    border-style: solid;
    border-width: 2px;
    color: #fff;
   
    font-size: 15px;
    font-style: normal;
    font-weight: 900;
    line-height: 15px;
    padding: 10px 30px;
    text-align: left;
    text-decoration: none
}

    .Newspaper-Button-2:hover, .tp-caption.Newspaper-Button-2:hover {
        background-color: rgba(0,0,0,0);
        border-color: #fff;
        border-radius: 3px 3px 3px 3px;
        border-style: solid;
        border-width: 2px;
        color: #fff;
        text-decoration: none
    }

.Feature-Tour, .tp-caption.Feature-Tour {
    background-color: #8bc027;
    border-color: transparent;
    border-radius: 30px 30px 30px 30px;
    border-style: solid;
    border-width: 0;
    color: #fff;
   
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 17px;
    padding: 17px 35px;
    text-align: left;
    text-decoration: none
}

    .Feature-Tour:hover, .tp-caption.Feature-Tour:hover {
        background-color: #72a800;
        border-color: transparent;
        border-radius: 30px 30px 30px 30px;
        border-style: solid;
        border-width: 0;
        color: #fff;
        text-decoration: none
    }

.Feature-Examples, .tp-caption.Feature-Examples {
    background-color: transparent;
    border-color: rgba(33,42,64,.15);
    border-radius: 30px 30px 30px 30px;
    border-style: solid;
    border-width: 2px;
    color: rgba(33,42,64,.5);
   
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 17px;
    padding: 15px 35px;
    text-align: left;
    text-decoration: none
}

    .Feature-Examples:hover, .tp-caption.Feature-Examples:hover {
        background-color: transparent;
        border-color: #8bc027;
        border-radius: 30px 30px 30px 30px;
        border-style: solid;
        border-width: 2px;
        color: #8bc027;
        text-decoration: none
    }

.subcaption, .tp-caption.subcaption {
    background-color: transparent;
    border-color: #000;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #6f7c82;
   
    font-size: 19px;
    font-style: normal;
   
    line-height: 24px;
    padding: 0;
    text-align: left;
    text-decoration: none;
    text-shadow: none
}

.menutab, .tp-caption.menutab {
    background-color: transparent;
    border-color: #000;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #292e31;
   
    font-size: 25px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    padding: 0;
    text-align: left;
    text-decoration: none;
    text-shadow: none
}

    .menutab:hover, .tp-caption.menutab:hover {
        background-color: transparent;
        border-color: transparent;
        border-radius: 0;
        border-style: none;
        border-width: 0;
        color: #d50000;
        text-decoration: none
    }

.maincontent, .tp-caption.maincontent {
    background-color: transparent;
    border-color: #000;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #292e31;
   
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    padding: 0;
    text-align: left;
    text-decoration: none;
    text-shadow: none
}

.minitext, .tp-caption.minitext {
    background-color: transparent;
    border-color: #000;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #b9babb;
   
    font-size: 15px;
    font-style: normal;
   
    line-height: 20px;
    padding: 0;
    text-align: left;
    text-decoration: none;
    text-shadow: none
}

.Feature-Buy, .tp-caption.Feature-Buy {
    background-color: #009aee;
    border-color: transparent;
    border-radius: 30px 30px 30px 30px;
    border-style: solid;
    border-width: 0;
    color: #fff;
   
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 17px;
    padding: 17px 35px;
    text-align: left;
    text-decoration: none
}

    .Feature-Buy:hover, .tp-caption.Feature-Buy:hover {
        background-color: #0085d6;
        border-color: transparent;
        border-radius: 30px 30px 30px 30px;
        border-style: solid;
        border-width: 0;
        color: #fff;
        text-decoration: none
    }

.Feature-Examples-Light, .tp-caption.Feature-Examples-Light {
    background-color: transparent;
    border-color: rgba(255,255,255,.15);
    border-radius: 30px 30px 30px 30px;
    border-style: solid;
    border-width: 2px;
    color: #fff;
   
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 17px;
    padding: 15px 35px;
    text-align: left;
    text-decoration: none
}

    .Feature-Examples-Light:hover, .tp-caption.Feature-Examples-Light:hover {
        background-color: transparent;
        border-color: #fff;
        border-radius: 30px 30px 30px 30px;
        border-style: solid;
        border-width: 2px;
        color: #fff;
        text-decoration: none
    }

.Facebook-Likes, .tp-caption.Facebook-Likes {
    background-color: #3b5999;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #fff;
   
    font-size: 15px;
    font-style: normal;
    
    line-height: 22px;
    padding: 5px 15px;
    text-align: left;
    text-decoration: none
}

.Twitter-Favorites, .tp-caption.Twitter-Favorites {
    background-color: rgba(255,255,255,0);
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #8899a6;
   
    font-size: 15px;
    font-style: normal;
    
    line-height: 22px;
    padding: 0;
    text-align: left;
    text-decoration: none
}

.Twitter-Link, .tp-caption.Twitter-Link {
    background-color: #fff;
    border-color: transparent;
    border-radius: 30px 30px 30px 30px;
    border-style: none;
    border-width: 0;
    color: #8799a5;
   
    font-size: 15px;
    font-style: normal;
    
    line-height: 15px;
    padding: 11px 11px 9px;
    text-align: left;
    text-decoration: none
}

    .Twitter-Link:hover, .tp-caption.Twitter-Link:hover {
        background-color: #0084b4;
        border-color: transparent;
        border-radius: 30px 30px 30px 30px;
        border-style: none;
        border-width: 0;
        color: #fff;
        text-decoration: none
    }

.Twitter-Retweet, .tp-caption.Twitter-Retweet {
    background-color: rgba(255,255,255,0);
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #8899a6;
   
    font-size: 15px;
    font-style: normal;
    
    line-height: 22px;
    padding: 0;
    text-align: left;
    text-decoration: none
}

.Twitter-Content, .tp-caption.Twitter-Content {
    background-color: #fff;
    border-color: transparent;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    color: #292f33;
   
    font-size: 20px;
    font-style: normal;
    
    line-height: 28px;
    padding: 30px 30px 70px;
    text-align: left;
    text-decoration: none
}

.revtp-form input[type=email], .revtp-form input[type=text], .revtp-searchform input[type=email], .revtp-searchform input[type=text] {
    font-family: Arial,sans-serif;
    font-size: 15px;
    color: #000;
    background-color: #fff;
    line-height: 46px;
    padding: 0 20px;
    cursor: text;
    border: 0;
    width: 400px;
    margin-bottom: 0;
    -webkit-transition: background-color .5s;
    transition: background-color .5s;
    border-radius: 0
}

.BigBold-Title, .tp-caption.BigBold-Title {
    color: #fff;
    font-size: 110px;
    line-height: 100px;
    font-weight: 800;
    font-style: normal;
    font-family: Raleway;
    padding: 10px 0 10px 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.BigBold-SubTitle, .tp-caption.BigBold-SubTitle {
    color: rgba(255,255,255,.5);
    font-size: 15px;
    line-height: 24px;
    
    font-style: normal;
    font-family: Raleway;
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left;
    letter-spacing: 1px
}

.BigBold-Button, .tp-caption.BigBold-Button {
    color: #fff;
    font-size: 13px;
    line-height: 13px;
    
    font-style: normal;
    font-family: Raleway;
    padding: 15px 50px 15px 50px;
    text-decoration: none;
    background-color: rgba(0,0,0,0);
    border-color: rgba(255,255,255,.5);
    border-style: solid;
    border-width: 1px;
    border-radius: 0;
    text-align: left;
    letter-spacing: 1px
}

    .BigBold-Button:hover, .tp-caption.BigBold-Button:hover {
        color: #fff;
        text-decoration: none;
        background-color: transparent;
        border-color: #fff;
        border-style: solid;
        border-width: 1px;
        border-radius: 0
    }

.FoodCarousel-Content, .tp-caption.FoodCarousel-Content {
    color: #292e31;
    font-size: 17px;
    line-height: 28px;
    
    font-style: normal;
    font-family: Raleway;
    padding: 30px 30px 30px 30px;
    text-decoration: none;
    background-color: #fff;
    border-color: #292e31;
    border-style: solid;
    border-width: 1px;
    border-radius: 0;
    text-align: left
}

.FoodCarousel-Button, .tp-caption.FoodCarousel-Button {
    color: #292e31;
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 15px 70px 15px 50px;
    text-decoration: none;
    background-color: #fff;
    border-color: #292e31;
    border-style: solid;
    border-width: 1px;
    border-radius: 0;
    text-align: left;
    letter-spacing: 1px
}

    .FoodCarousel-Button:hover, .tp-caption.FoodCarousel-Button:hover {
        color: #fff;
        text-decoration: none;
        background-color: #292e31;
        border-color: #292e31;
        border-style: solid;
        border-width: 1px;
        border-radius: 0
    }

.FoodCarousel-CloseButton, .tp-caption.FoodCarousel-CloseButton {
    color: #292e31;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 14px 14px 14px 16px;
    text-decoration: none;
    background-color: rgba(0,0,0,0);
    border-color: rgba(41,46,49,0);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: left;
    letter-spacing: 1px
}

    .FoodCarousel-CloseButton:hover, .tp-caption.FoodCarousel-CloseButton:hover {
        color: #fff;
        text-decoration: none;
        background-color: #292e31;
        border-color: rgba(41,46,49,0);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px
    }

.Video-SubTitle, .tp-caption.Video-SubTitle {
    color: #fff;
    font-size: 12px;
    line-height: 12px;
   
    font-style: normal;
    font-family: Raleway;
    padding: 5px 5px 5px 5px;
    text-decoration: none;
    background-color: rgba(0,0,0,.35);
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    letter-spacing: 2px;
    text-align: left
}

.Video-Title, .tp-caption.Video-Title {
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    font-weight: 900;
    font-style: normal;
    font-family: Raleway;
    padding: 5px 5px 5px 5px;
    text-decoration: none;
    background-color: #000;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.Travel-BigCaption, .tp-caption.Travel-BigCaption {
    color: #fff;
    font-size: 50px;
    line-height: 50px;
    
    font-style: normal;
   
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.Travel-SmallCaption, .tp-caption.Travel-SmallCaption {
    color: #fff;
    font-size: 25px;
    line-height: 30px;
    font-weight: 300;
    font-style: normal;
   
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.Travel-CallToAction, .tp-caption.Travel-CallToAction {
    color: #fff;
    font-size: 25px;
    line-height: 25px;
    
    font-style: normal;
   
    padding: 12px 20px 12px 20px;
    text-decoration: none;
    background-color: rgba(255,255,255,.05);
    border-color: #fff;
    border-style: solid;
    border-width: 2px;
    border-radius: 5px 5px 5px 5px;
    text-align: left;
    letter-spacing: 1px
}

    .Travel-CallToAction:hover, .tp-caption.Travel-CallToAction:hover {
        color: #fff;
        text-decoration: none;
        background-color: rgba(255,255,255,.15);
        border-color: #fff;
        border-style: solid;
        border-width: 2px;
        border-radius: 5px 5px 5px 5px
    }

.RotatingWords-TitleWhite, .tp-caption.RotatingWords-TitleWhite {
    color: #fff;
    font-size: 70px;
    line-height: 70px;
    font-weight: 800;
    font-style: normal;
    font-family: Raleway;
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.RotatingWords-Button, .tp-caption.RotatingWords-Button {
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 20px 50px 20px 50px;
    text-decoration: none;
    background-color: rgba(0,0,0,0);
    border-color: rgba(255,255,255,.15);
    border-style: solid;
    border-width: 2px;
    border-radius: 0;
    text-align: left;
    letter-spacing: 3px
}

    .RotatingWords-Button:hover, .tp-caption.RotatingWords-Button:hover {
        color: #fff;
        text-decoration: none;
        background-color: transparent;
        border-color: #fff;
        border-style: solid;
        border-width: 2px;
        border-radius: 0
    }

.RotatingWords-SmallText, .tp-caption.RotatingWords-SmallText {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    
    font-style: normal;
    font-family: Raleway;
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left;
    text-shadow: none
}

.ContentZoom-SmallTitle, .tp-caption.ContentZoom-SmallTitle {
    color: #292e31;
    font-size: 33px;
    line-height: 45px;
   
    font-style: normal;
    font-family: Raleway;
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.ContentZoom-SmallSubtitle, .tp-caption.ContentZoom-SmallSubtitle {
    color: #6f7c82;
    font-size: 16px;
    line-height: 24px;
   
    font-style: normal;
    font-family: Raleway;
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.ContentZoom-SmallIcon, .tp-caption.ContentZoom-SmallIcon {
    color: #292e31;
    font-size: 20px;
    line-height: 20px;
    
    font-style: normal;
    font-family: Raleway;
    padding: 10px 10px 10px 10px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

    .ContentZoom-SmallIcon:hover, .tp-caption.ContentZoom-SmallIcon:hover {
        color: #6f7c82;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0;
        border-radius: 0
    }

.ContentZoom-DetailTitle, .tp-caption.ContentZoom-DetailTitle {
    color: #292e31;
    font-size: 70px;
    line-height: 70px;
    
    font-style: normal;
    font-family: Raleway;
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.ContentZoom-DetailSubTitle, .tp-caption.ContentZoom-DetailSubTitle {
    color: #6f7c82;
    font-size: 25px;
    line-height: 25px;
    
    font-style: normal;
    font-family: Raleway;
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.ContentZoom-DetailContent, .tp-caption.ContentZoom-DetailContent {
    color: #6f7c82;
    font-size: 17px;
    line-height: 28px;
    
    font-style: normal;
    font-family: Raleway;
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.ContentZoom-Button, .tp-caption.ContentZoom-Button {
    color: #292e31;
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 15px 50px 15px 50px;
    text-decoration: none;
    background-color: rgba(0,0,0,0);
    border-color: rgba(41,46,49,.5);
    border-style: solid;
    border-width: 1px;
    border-radius: 0;
    text-align: left;
    letter-spacing: 1px
}

    .ContentZoom-Button:hover, .tp-caption.ContentZoom-Button:hover {
        color: #fff;
        text-decoration: none;
        background-color: #292e31;
        border-color: #292e31;
        border-style: solid;
        border-width: 1px;
        border-radius: 0
    }

.ContentZoom-ButtonClose, .tp-caption.ContentZoom-ButtonClose {
    color: #292e31;
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 14px 14px 14px 16px;
    text-decoration: none;
    background-color: rgba(0,0,0,0);
    border-color: rgba(41,46,49,.5);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: left;
    letter-spacing: 1px
}

    .ContentZoom-ButtonClose:hover, .tp-caption.ContentZoom-ButtonClose:hover {
        color: #fff;
        text-decoration: none;
        background-color: #292e31;
        border-color: #292e31;
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px
    }

.Newspaper-Title, .tp-caption.Newspaper-Title {
    color: #fff;
    font-size: 50px;
    line-height: 55px;
    
    font-style: normal;
    font-family: "Roboto Slab";
    padding: 0 0 10px 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.Newspaper-Subtitle, .tp-caption.Newspaper-Subtitle {
    color: #a8d8ee;
    font-size: 15px;
    line-height: 20px;
    font-weight: 900;
    font-style: normal;
   
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.Newspaper-Button, .tp-caption.Newspaper-Button {
    color: #fff;
    font-size: 13px;
    line-height: 17px;
    font-weight: 700;
    font-style: normal;
   
    padding: 12px 35px 12px 35px;
    text-decoration: none;
    background-color: rgba(255,255,255,0);
    border-color: rgba(255,255,255,.25);
    border-style: solid;
    border-width: 1px;
    border-radius: 0;
    letter-spacing: 2px;
    text-align: left
}

    .Newspaper-Button:hover, .tp-caption.Newspaper-Button:hover {
        color: #000;
        text-decoration: none;
        background-color: #fff;
        border-color: #fff;
        border-style: solid;
        border-width: 1px;
        border-radius: 0
    }

.rtwhitemedium, .tp-caption.rtwhitemedium {
    font-size: 22px;
    line-height: 26px;
    color: #fff;
    text-decoration: none;
    background-color: transparent;
    border-width: 0;
    border-color: #000;
    border-style: none;
    text-shadow: none
}

@media only screen and (max-width:767px) {
    .revtp-form input[type=email], .revtp-form input[type=text], .revtp-searchform input[type=email], .revtp-searchform input[type=text] {
        width: 200px !important
    }
}

.revtp-form input[type=submit], .revtp-searchform input[type=submit] {
    font-family: Arial,sans-serif;
    line-height: 46px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    padding: 0 20px;
    border: 0;
    background: #009aee;
    color: #fff;
    border-radius: 0
}

.tp-caption.Twitter-Content a, .tp-caption.Twitter-Content a:visited {
    color: #0084b4 !important
}

    .tp-caption.Twitter-Content a:hover {
        color: #0084b4 !important;
        text-decoration: underline !important
    }

.Concept-Title, .tp-caption.Concept-Title {
    color: #fff;
    font-size: 70px;
    line-height: 70px;
    font-weight: 700;
    font-style: normal;
    font-family: "Roboto Condensed";
    padding: 0 0 10px 0;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    letter-spacing: 5px
}

.Concept-SubTitle, .tp-caption.Concept-SubTitle {
    border: 0 none transparent;
    color: rgba(255,255,255,.65);
    font-size: 25px;
    line-height: 25px;
    font-weight: 700;
    font-style: italic;
    font-family: "Playfair Display";
    padding: 0 0 10px 0;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-radius: 0
}

.Concept-Content, .tp-caption.Concept-Content {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    
    font-style: normal;
    font-family: "Roboto Condensed";
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: rgba(0,0,0,0);
    border-color: #fff;
    border-style: none;
    border-width: 2px;
    border-radius: 0
}

.Concept-MoreBtn, .tp-caption.Concept-MoreBtn {
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    font-weight: 300;
    font-style: normal;
   
    padding: 10px 8px 7px 10px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: rgba(255,255,255,0);
    border-style: solid;
    border-width: 0;
    border-radius: 50px 50px 50px 50px;
    letter-spacing: 1px;
    text-align: left
}

    .Concept-MoreBtn:hover, .tp-caption.Concept-MoreBtn:hover {
        color: #fff;
        text-decoration: none;
        background-color: rgba(255,255,255,.15);
        border-color: rgba(255,255,255,0);
        border-style: solid;
        border-width: 0;
        border-radius: 50px 50px 50px 50px
    }

.Concept-LessBtn, .tp-caption.Concept-LessBtn {
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    font-weight: 300;
    font-style: normal;
   
    padding: 10px 8px 7px 10px;
    text-decoration: none;
    text-align: left;
    background-color: #000;
    border-color: rgba(255,255,255,0);
    border-style: solid;
    border-width: 0;
    border-radius: 50px 50px 50px 50px;
    letter-spacing: 1px;
    text-align: left
}

    .Concept-LessBtn:hover, .tp-caption.Concept-LessBtn:hover {
        color: #000;
        text-decoration: none;
        background-color: #fff;
        border-color: rgba(255,255,255,0);
        border-style: solid;
        border-width: 0;
        border-radius: 50px 50px 50px 50px
    }

.Concept-SubTitle-Dark, .tp-caption.Concept-SubTitle-Dark {
    color: rgba(0,0,0,.65);
    font-size: 25px;
    line-height: 25px;
    font-weight: 700;
    font-style: italic;
    font-family: "Playfair Display";
    padding: 0 0 10px 0;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0
}

.Concept-Title-Dark, .tp-caption.Concept-Title-Dark {
    color: #000;
    font-size: 70px;
    line-height: 70px;
    font-weight: 700;
    font-style: normal;
    font-family: "Roboto Condensed";
    padding: 0 0 10px 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    letter-spacing: 5px
}

.Concept-MoreBtn-Dark, .tp-caption.Concept-MoreBtn-Dark {
    color: #000;
    font-size: 30px;
    line-height: 30px;
    font-weight: 300;
    font-style: normal;
   
    padding: 10px 8px 7px 10px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: rgba(255,255,255,0);
    border-style: solid;
    border-width: 0;
    border-radius: 50px 50px 50px 50px;
    letter-spacing: 1px;
    text-align: left
}

    .Concept-MoreBtn-Dark:hover, .tp-caption.Concept-MoreBtn-Dark:hover {
        color: #fff;
        text-decoration: none;
        background-color: #000;
        border-color: rgba(255,255,255,0);
        border-style: solid;
        border-width: 0;
        border-radius: 50px 50px 50px 50px
    }

.Concept-Content-Dark, .tp-caption.Concept-Content-Dark {
    color: #000;
    font-size: 20px;
    line-height: 30px;
    
    font-style: normal;
    font-family: "Roboto Condensed";
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: rgba(0,0,0,0);
    border-color: #fff;
    border-style: none;
    border-width: 2px;
    border-radius: 0
}

.Concept-Notice, .tp-caption.Concept-Notice {
    color: #fff;
    font-size: 15px;
    line-height: 15px;
    
    font-style: normal;
    font-family: "Roboto Condensed";
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: rgba(0,0,0,0);
    border-color: #fff;
    border-style: none;
    border-width: 2px;
    border-radius: 0;
    letter-spacing: 2px
}

.tp-caption.Concept-Content a, .tp-caption.Concept-Content a:visited {
    color: #fff !important;
    border-bottom: 1px solid #fff !important;
    font-weight: 700 !important
}

    .tp-caption.Concept-Content a:hover {
        border-bottom: 1px solid transparent !important
    }

.tp-caption.Concept-Content-Dark a, .tp-caption.Concept-Content-Dark a:visited {
    color: #000 !important;
    border-bottom: 1px solid #000 !important;
    font-weight: 700 !important
}

    .tp-caption.Concept-Content-Dark a:hover {
        border-bottom: 1px solid transparent !important
    }

.tp-caption.Twitter-Content a, .tp-caption.Twitter-Content a:visited {
    color: #0084b4 !important
}

    .tp-caption.Twitter-Content a:hover {
        color: #0084b4 !important;
        text-decoration: underline !important
    }

.Creative-Title, .tp-caption.Creative-Title {
    color: #fff;
    font-size: 70px;
    line-height: 70px;
    
    font-style: normal;
    font-family: "Playfair Display";
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0
}

.Creative-SubTitle, .tp-caption.Creative-SubTitle {
    color: #cdb083;
    font-size: 14px;
    line-height: 14px;
    
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    letter-spacing: 2px
}

.Creative-Button, .tp-caption.Creative-Button {
    color: #cdb083;
    font-size: 13px;
    line-height: 13px;
    
    font-style: normal;
    font-family: Lato;
    padding: 15px 50px 15px 50px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(0,0,0,0);
    border-color: rgba(205,176,131,.25);
    border-style: solid;
    border-width: 1px;
    border-radius: 0;
    letter-spacing: 2px
}

    .Creative-Button:hover, .tp-caption.Creative-Button:hover {
        color: #cdb083;
        text-decoration: none;
        background-color: rgba(0,0,0,0);
        border-color: #cdb083;
        border-style: solid;
        border-width: 1px;
        border-radius: 0
    }

.subcaption, .tp-caption.subcaption {
    color: #6f7c82;
    font-size: 19px;
    line-height: 24px;
    
    font-style: normal;
   
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: #000;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-shadow: none;
    text-align: left
}

.RedDot, .tp-caption.RedDot {
    color: #000;
    
    font-style: normal;
    padding: 0;
    text-decoration: none;
    text-align: left;
    background-color: #d50000;
    border-color: #fff;
    border-style: solid;
    border-width: 5px;
    border-radius: 50px 50px 50px 50px
}

    .RedDot:hover, .tp-caption.RedDot:hover {
        color: #000;
        text-decoration: none;
        background-color: rgba(255,255,255,.75);
        border-color: #d50000;
        border-style: solid;
        border-width: 5px;
        border-radius: 50px 50px 50px 50px
    }

.SlidingOverlays-Title, .tp-caption.SlidingOverlays-Title {
    color: #fff;
    font-size: 50px;
    line-height: 50px;
    
    font-style: normal;
    font-family: "Playfair Display";
    padding: 0;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0
}

.SlidingOverlays-Title, .tp-caption.SlidingOverlays-Title {
    color: #fff;
    font-size: 50px;
    line-height: 50px;
    
    font-style: normal;
    font-family: "Playfair Display";
    padding: 0;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0
}

.Woo-TitleLarge, .tp-caption.Woo-TitleLarge {
    color: #000;
    font-size: 40px;
    line-height: 40px;
    
    font-style: normal;
    font-family: "Playfair Display";
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.Woo-Rating, .tp-caption.Woo-Rating {
    color: #000;
    font-size: 14px;
    line-height: 30px;
    font-weight: 300;
    font-style: normal;
   
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.Woo-SubTitle, .tp-caption.Woo-SubTitle {
    color: #000;
    font-size: 18px;
    line-height: 18px;
    font-weight: 300;
    font-style: normal;
   
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center;
    letter-spacing: 2px
}

.Woo-PriceLarge, .tp-caption.Woo-PriceLarge {
    color: #000;
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    font-style: normal;
   
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.Woo-ProductInfo, .tp-caption.Woo-ProductInfo {
    color: #000;
    font-size: 15px;
    line-height: 15px;
    
    font-style: normal;
   
    padding: 12px 75px 12px 50px;
    text-decoration: none;
    background-color: #fecf72;
    border-color: #000;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px 4px 4px 4px;
    text-align: left
}

    .Woo-ProductInfo:hover, .tp-caption.Woo-ProductInfo:hover {
        color: #000;
        text-decoration: none;
        background-color: #f3a847;
        border-color: #000;
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px
    }

.Woo-AddToCart, .tp-caption.Woo-AddToCart {
    color: #000;
    font-size: 15px;
    line-height: 15px;
    
    font-style: normal;
   
    padding: 12px 35px 12px 35px;
    text-decoration: none;
    background-color: #fecf72;
    border-color: #000;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px 4px 4px 4px;
    text-align: left
}

    .Woo-AddToCart:hover, .tp-caption.Woo-AddToCart:hover {
        color: #000;
        text-decoration: none;
        background-color: #f3a847;
        border-color: #000;
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px
    }

.Woo-TitleLarge, .tp-caption.Woo-TitleLarge {
    color: #000;
    font-size: 40px;
    line-height: 40px;
    
    font-style: normal;
    font-family: "Playfair Display";
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.Woo-SubTitle, .tp-caption.Woo-SubTitle {
    color: #000;
    font-size: 18px;
    line-height: 18px;
    font-weight: 300;
    font-style: normal;
   
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center;
    letter-spacing: 2px
}

.Woo-PriceLarge, .tp-caption.Woo-PriceLarge {
    color: #000;
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    font-style: normal;
   
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.Woo-ProductInfo, .tp-caption.Woo-ProductInfo {
    color: #000;
    font-size: 15px;
    line-height: 15px;
    
    font-style: normal;
   
    padding: 12px 75px 12px 50px;
    text-decoration: none;
    background-color: #fecf72;
    border-color: #000;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px 4px 4px 4px;
    text-align: left
}

    .Woo-ProductInfo:hover, .tp-caption.Woo-ProductInfo:hover {
        color: #000;
        text-decoration: none;
        background-color: #f3a847;
        border-color: #000;
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px
    }

.Woo-AddToCart, .tp-caption.Woo-AddToCart {
    color: #000;
    font-size: 15px;
    line-height: 15px;
    
    font-style: normal;
   
    padding: 12px 35px 12px 35px;
    text-decoration: none;
    background-color: #fecf72;
    border-color: #000;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px 4px 4px 4px;
    text-align: left
}

    .Woo-AddToCart:hover, .tp-caption.Woo-AddToCart:hover {
        color: #000;
        text-decoration: none;
        background-color: #f3a847;
        border-color: #000;
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px
    }

.FullScreen-Toggle, .tp-caption.FullScreen-Toggle {
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    
    font-style: normal;
    font-family: Raleway;
    padding: 11px 8px 11px 12px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(0,0,0,.5);
    border-color: rgba(255,255,255,0);
    border-style: solid;
    border-width: 0;
    border-radius: 0;
    letter-spacing: 3px;
    text-align: left
}

    .FullScreen-Toggle:hover, .tp-caption.FullScreen-Toggle:hover {
        color: #fff;
        text-decoration: none;
        background-color: #000;
        border-color: rgba(255,255,255,0);
        border-style: solid;
        border-width: 0;
        border-radius: 0
    }

.Agency-Title, .tp-caption.Agency-Title {
    color: #fff;
    font-size: 70px;
    line-height: 70px;
    font-weight: 900;
    font-style: normal;
    font-family: lato;
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left;
    letter-spacing: 10px
}

.Agency-SubTitle, .tp-caption.Agency-SubTitle {
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    
    font-style: italic;
    font-family: Georgia,serif;
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.Agency-PlayBtn, .tp-caption.Agency-PlayBtn {
    color: #fff;
    font-size: 30px;
    line-height: 71px;
    
    font-style: normal;
   
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: #fff;
    border-style: solid;
    border-width: 2px;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}

    .Agency-PlayBtn:hover, .tp-caption.Agency-PlayBtn:hover {
        color: #fff;
        text-decoration: none;
        background-color: transparent;
        border-color: #fff;
        border-style: solid;
        border-width: 2px;
        border-radius: 100px 100px 100px 100px;
        cursor: pointer
    }

.Agency-SmallText, .tp-caption.Agency-SmallText {
    color: #fff;
    font-size: 12px;
    line-height: 12px;
    font-weight: 900;
    font-style: normal;
    font-family: lato;
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left;
    letter-spacing: 5px
}

.Agency-Social, .tp-caption.Agency-Social {
    color: #333;
    font-size: 25px;
    line-height: 50px;
    
    font-style: normal;
    font-family: Georgia,serif;
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: #333;
    border-style: solid;
    border-width: 2px;
    border-radius: 30px 30px 30px 30px;
    text-align: center
}

    .Agency-Social:hover, .tp-caption.Agency-Social:hover {
        color: #fff;
        text-decoration: none;
        background-color: #333;
        border-color: #333;
        border-style: solid;
        border-width: 2px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }

.Agency-CloseBtn, .tp-caption.Agency-CloseBtn {
    color: #fff;
    font-size: 50px;
    line-height: 50px;
    
    font-style: normal;
   
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255,255,255,0);
    border-style: none;
    border-width: 0;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}

    .Agency-CloseBtn:hover, .tp-caption.Agency-CloseBtn:hover {
        color: #fff;
        text-decoration: none;
        background-color: transparent;
        border-color: rgba(255,255,255,0);
        border-style: none;
        border-width: 0;
        border-radius: 100px 100px 100px 100px;
        cursor: pointer
    }

.Dining-Title, .tp-caption.Dining-Title {
    color: #fff;
    font-size: 70px;
    line-height: 70px;
    
    font-style: normal;
    font-family: Georgia,serif;
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left;
    letter-spacing: 10px
}

.Dining-SubTitle, .tp-caption.Dining-SubTitle {
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    
    font-style: normal;
    font-family: Georgia,serif;
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.Dining-BtnLight, .tp-caption.Dining-BtnLight {
    color: rgba(255,255,255,.5);
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    font-style: normal;
    font-family: Lato;
    padding: 17px 73px 17px 50px;
    text-decoration: none;
    background-color: rgba(0,0,0,0);
    border-color: rgba(255,255,255,.25);
    border-style: solid;
    border-width: 1px;
    border-radius: 0;
    text-align: left;
    letter-spacing: 2px
}

    .Dining-BtnLight:hover, .tp-caption.Dining-BtnLight:hover {
        color: #fff;
        text-decoration: none;
        background-color: rgba(0,0,0,0);
        border-color: #fff;
        border-style: solid;
        border-width: 1px;
        border-radius: 0
    }

.Dining-Social, .tp-caption.Dining-Social {
    color: #fff;
    font-size: 25px;
    line-height: 50px;
    
    font-style: normal;
    font-family: Georgia,serif;
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255,255,255,.25);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: center
}

    .Dining-Social:hover, .tp-caption.Dining-Social:hover {
        color: #fff;
        text-decoration: none;
        background-color: transparent;
        border-color: #fff;
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }

.Team-Thumb, tp-caption.Team-Thumb {
    color: #fff;
    font-size: 20px;
    line-height: 22px;
    
    font-style: normal;
    
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

    .Team-Thumb:hover, .tp-caption.Team-Thumb:hover {
        color: #fff;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0;
        border-radius: 0;
        cursor: pointer
    }

.Team-Name, .tp-caption.Team-Name {
    color: #fff;
    font-size: 70px;
    line-height: 70px;
    font-weight: 900;
    font-style: normal;
   
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.Team-Position, .tp-caption.Team-Position {
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    
    font-style: normal;
    font-family: Georgia,serif;
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.Team-Description, .tp-caption.Team-Description {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    
    font-style: normal;
   
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.Team-Social, .tp-caption.Team-Social {
    color: #fff;
    font-size: 50px;
    line-height: 50px;
    
    font-style: normal;
    
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

    .Team-Social:hover, .tp-caption.Team-Social:hover {
        color: #fff;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0;
        border-radius: 0;
        cursor: pointer
    }

.VideoControls-Play, .tp-caption.VideoControls-Play {
    color: #000;
    font-size: 50px;
    line-height: 120px;
    
    font-style: normal;
   
    padding: 0 0 0 7px;
    text-decoration: none;
    background-color: #fff;
    border-color: #000;
    border-style: solid;
    border-width: 0;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}

    .VideoControls-Play:hover, .tp-caption.VideoControls-Play:hover {
        color: #000;
        text-decoration: none;
        background-color: #fff;
        border-color: #000;
        border-style: solid;
        border-width: 0;
        border-radius: 100px 100px 100px 100px;
        cursor: pointer
    }

.VideoPlayer-Title, .tp-caption.VideoPlayer-Title {
    color: #fff;
    font-size: 40px;
    line-height: 40px;
    font-weight: 900;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left;
    letter-spacing: 10px
}

.VideoPlayer-SubTitle, .tp-caption.VideoPlayer-SubTitle {
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    
    font-style: italic;
    font-family: Georgia,serif;
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.VideoPlayer-Social, .tp-caption.VideoPlayer-Social {
    color: #fff;
    font-size: 50px;
    line-height: 50px;
    
    font-style: normal;
    
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

    .VideoPlayer-Social:hover, .tp-caption.VideoPlayer-Social:hover {
        color: #fff;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0;
        border-radius: 0;
        cursor: pointer
    }

.VideoControls-Mute, .tp-caption.VideoControls-Mute {
    color: #000;
    font-size: 20px;
    line-height: 50px;
    
    font-style: normal;
   
    padding: 0;
    text-decoration: none;
    background-color: #fff;
    border-color: #000;
    border-style: solid;
    border-width: 0;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}

    .VideoControls-Mute:hover, .tp-caption.VideoControls-Mute:hover {
        color: #000;
        text-decoration: none;
        background-color: #fff;
        border-color: #000;
        border-style: solid;
        border-width: 0;
        border-radius: 100px 100px 100px 100px;
        cursor: pointer
    }

.VideoControls-Pause, .tp-caption.VideoControls-Pause {
    color: #000;
    font-size: 20px;
    line-height: 50px;
    
    font-style: normal;
   
    padding: 0;
    text-decoration: none;
    background-color: #fff;
    border-color: #000;
    border-style: solid;
    border-width: 0;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}

    .VideoControls-Pause:hover, .tp-caption.VideoControls-Pause:hover {
        color: #000;
        text-decoration: none;
        background-color: #fff;
        border-color: #000;
        border-style: solid;
        border-width: 0;
        border-radius: 100px 100px 100px 100px;
        cursor: pointer
    }

.soundcloudwrapper iframe {
    width: 100% !important
}

.SleekLanding-Title, .tp-caption.SleekLanding-Title {
    color: #fff;
    font-size: 35px;
    line-height: 40px;
    
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left;
    letter-spacing: 5px
}

.SleekLanding-ButtonBG, .tp-caption.SleekLanding-ButtonBG {
    color: #000;
    font-weight: 700;
    font-style: normal;
    padding: 0;
    text-decoration: none;
    text-align: left;
    background-color: rgba(255,255,255,.1);
    border-color: transparent;
    border-style: solid;
    border-width: 0;
    border-radius: 5px 5px 5px 5px;
    text-align: left;
    -webkit-box-shadow: inset 0 2px 0 0 rgba(0,0,0,.15);
    box-shadow: inset 0 2px 0 0 rgba(0,0,0,.15)
}

.SleekLanding-SmallTitle, .tp-caption.SleekLanding-SmallTitle {
    color: #fff;
    font-size: 13px;
    line-height: 50px;
    font-weight: 900;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left;
    letter-spacing: 2px
}

.SleekLanding-BottomText, .tp-caption.SleekLanding-BottomText {
    color: #fff;
    font-size: 15px;
    line-height: 24px;
    
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.SleekLanding-Social, .tp-caption.SleekLanding-Social {
    color: #fff;
    font-size: 22px;
    line-height: 30px;
    
    font-style: normal;
    
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

    .SleekLanding-Social:hover, .tp-caption.SleekLanding-Social:hover {
        color: rgba(0,0,0,.25);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0;
        border-radius: 0;
        cursor: pointer
    }

#rev_slider_429_1_wrapper .tp-loader.spinner2 {
    background-color: #555 !important
}

.tp-fat {
    font-weight: 900 !important
}

.PostSlider-Category, .tp-caption.PostSlider-Category {
    color: #000;
    font-size: 15px;
    line-height: 15px;
    font-weight: 300;
    font-style: normal;
   
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    letter-spacing: 3px;
    text-align: left
}

.PostSlider-Title, .tp-caption.PostSlider-Title {
    color: #000;
    font-size: 40px;
    line-height: 40px;
    
    font-style: normal;
    font-family: "Playfair Display";
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.PostSlider-Content, .tp-caption.PostSlider-Content {
    color: #777;
    font-size: 15px;
    line-height: 23px;
    
    font-style: normal;
   
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.PostSlider-Button, .tp-caption.PostSlider-Button {
    color: #000;
    font-size: 15px;
    line-height: 40px;
    
    font-style: normal;
   
    padding: 1px 56px 1px 32px;
    text-decoration: none;
    background-color: #fff;
    border-color: #000;
    border-style: solid;
    border-width: 1px;
    border-radius: 0;
    text-align: left
}

    .PostSlider-Button:hover, .tp-caption.PostSlider-Button:hover {
        color: #000;
        text-decoration: none;
        background-color: #eee;
        border-color: #000;
        border-style: solid;
        border-width: 1px;
        border-radius: 0;
        cursor: pointer
    }

.LandingPage-Title, .tp-caption.LandingPage-Title {
    color: #fff;
    font-size: 70px;
    line-height: 80px;
    font-weight: 900;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left;
    letter-spacing: 10px
}

.LandingPage-SubTitle, .tp-caption.LandingPage-SubTitle {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    
    font-style: italic;
    font-family: Georgia,serif;
    padding: 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.LandingPage-Button, .tp-caption.LandingPage-Button {
    color: #000;
    font-size: 15px;
    line-height: 54px;
    
    font-style: normal;
   
    padding: 0 35px 0 35px;
    text-decoration: none;
    background-color: #fff;
    border-color: #000;
    border-style: solid;
    border-width: 0;
    border-radius: 0;
    text-align: left;
    letter-spacing: 3px
}

    .LandingPage-Button:hover, .tp-caption.LandingPage-Button:hover {
        color: #000;
        text-decoration: none;
        background-color: #fff;
        border-color: #000;
        border-style: solid;
        border-width: 0;
        border-radius: 0;
        cursor: pointer
    }

.tp-caption.App-Content a, .tp-caption.App-Content a:visited {
    color: #89124e !important;
    border-bottom: 1px solid transparent !important;
    font-weight: 700 !important
}

    .tp-caption.App-Content a:hover {
        border-bottom: 1px solid #89124e !important
    }

.RockBand-LogoText, .tp-caption.RockBand-LogoText {
    color: #fff;
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    font-style: normal;
    font-family: Oswald;
    padding: 0;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.tp-caption.Twitter-Content a, .tp-caption.Twitter-Content a:visited {
    color: #fff !important;
    text-decoration: underline !important
}

    .tp-caption.Twitter-Content a:hover {
        color: #fff !important;
        text-decoration: none !important
    }

.soundcloudwrapper iframe {
    width: 100% !important
}

.Agency-LogoText, .tp-caption.Agency-LogoText {
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center;
    letter-spacing: 1px
}

.ComingSoon-Highlight, .tp-caption.ComingSoon-Highlight {
    color: #fff;
    font-size: 20px;
    line-height: 37px;
    
    font-style: normal;
    font-family: Lato;
    padding: 0 20px 3px 20px;
    text-decoration: none;
    text-align: left;
    background-color: #009aee;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.ComingSoon-Count, .tp-caption.ComingSoon-Count {
    color: #fff;
    font-size: 50px;
    line-height: 50px;
    font-weight: 900;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.ComingSoon-CountUnit, .tp-caption.ComingSoon-CountUnit {
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.ComingSoon-NotifyMe, .tp-caption.ComingSoon-NotifyMe {
    color: #a49d8f;
    font-size: 27px;
    line-height: 35px;
   
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

#mc_embed_signup input#mce-EMAIL {
    font-family: Lato,sans-serif;
    font-size: 15px;
    color: #000;
    background-color: #fff;
    line-height: 46px;
    padding: 0 20px;
    cursor: text;
    border: 1px solid #fff;
    width: 400px;
    margin-bottom: 0;
    -webkit-transition: background-color .5s;
    transition: background-color .5s;
    border-radius: 0
}

    #mc_embed_signup input#mce-EMAIL[type=email]:focus {
        background-color: #fff;
        border: 1px solid #666;
        border-right: 0
    }

#mc_embed_signup input#mc-embedded-subscribe, #mc_embed_signup input#mc-embedded-subscribe:focus {
    font-family: Lato,sans-serif;
    line-height: 46px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
    padding: 0 20px;
    border: 1px solid #009aee;
    background: #009aee;
    color: #fff;
    border-radius: 0
}

    #mc_embed_signup input#mc-embedded-subscribe:hover {
        background: #0083d4
    }

@media only screen and (max-width:767px) {
    #mc_embed_signup input#mce-EMAIL {
        width: 200px
    }
}

.Agency-SmallTitle, .tp-caption.Agency-SmallTitle {
    color: #fff;
    font-size: 15px;
    line-height: 22px;
    
    font-style: normal;
    font-family: lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center;
    letter-spacing: 6px
}

.Agency-SmallContent, .tp-caption.Agency-SmallContent {
    color: #fff;
    font-size: 15px;
    line-height: 24px;
    
    font-style: normal;
    font-family: lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.Agency-SmallLink, .tp-caption.Agency-SmallLink {
    color: #f87c09;
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-style: normal;
    font-family: lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 1px solid #f87c09 !important
}

    .Agency-SmallLink:hover, .tp-caption.Agency-SmallLink:hover {
        color: #fff;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0;
        border-radius: 0;
        cursor: pointer
    }

.Agency-NavButton, .tp-caption.Agency-NavButton {
    color: #333;
    font-size: 17px;
    line-height: 50px;
    
    font-style: normal;
   
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: #fff;
    border-color: #000;
    border-style: solid;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

    .Agency-NavButton:hover, .tp-caption.Agency-NavButton:hover {
        color: #fff;
        text-decoration: none;
        background-color: #333;
        border-color: #000;
        border-style: solid;
        border-width: 0;
        border-radius: 0;
        cursor: pointer
    }

.Agency-SmallLinkGreen, .tp-caption.Agency-SmallLinkGreen {
    color: #6db19b;
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-style: normal;
    font-family: lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 1px solid #6db19b !important
}

    .Agency-SmallLinkGreen:hover, .tp-caption.Agency-SmallLinkGreen:hover {
        color: #fff;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0;
        border-radius: 0;
        cursor: pointer
    }

.Agency-SmallLinkBlue, .tp-caption.Agency-SmallLinkBlue {
    color: #999;
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-style: normal;
    font-family: lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 1px solid #999 !important
}

    .Agency-SmallLinkBlue:hover, .tp-caption.Agency-SmallLinkBlue:hover {
        color: #fff;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0;
        border-radius: 0;
        cursor: pointer
    }

.Agency-LogoText, .tp-caption.Agency-LogoText {
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center;
    letter-spacing: 1px
}

.Agency-ArrowTooltip, .tp-caption.Agency-ArrowTooltip {
    color: #333;
    font-size: 15px;
    line-height: 20px;
    
    font-style: normal;
    font-family: "Permanent Marker";
    padding: 0;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

.Agency-SmallSocial, .tp-caption.Agency-SmallSocial {
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    
    font-style: normal;
    
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

    .Agency-SmallSocial:hover, .tp-caption.Agency-SmallSocial:hover {
        color: #333;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0;
        border-radius: 0;
        cursor: pointer
    }

.tp-caption.Twitter-Content a, .tp-caption.Twitter-Content a:visited {
    color: #0084b4 !important
}

    .tp-caption.Twitter-Content a:hover {
        color: #0084b4 !important;
        text-decoration: underline !important
    }

.CreativeFrontPage-Btn, .tp-caption.CreativeFrontPage-Btn {
    color: #fff;
    font-size: 14px;
    line-height: 60px;
    font-weight: 900;
    font-style: normal;
   
    padding: 0 50px 0 50px;
    text-decoration: none;
    text-align: left;
    background-color: #00685c;
    border-color: #000;
    border-style: solid;
    border-width: 0;
    border-radius: 4px 4px 4px 4px;
    letter-spacing: 2px
}

    .CreativeFrontPage-Btn:hover, .tp-caption.CreativeFrontPage-Btn:hover {
        color: #fff;
        text-decoration: none;
        background-color: rgba(0,0,0,.25);
        border-color: #000;
        border-style: solid;
        border-width: 0;
        border-radius: 4px 4px 4px 4px;
        cursor: pointer
    }

.CreativeFrontPage-Menu, .tp-caption.CreativeFrontPage-Menu {
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    
    font-style: normal;
   
    padding: 0;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    letter-spacing: 2px
}

.tp-flip-index {
    z-index: 1000 !important
}

.tp-caption.Twitter-Content a, .tp-caption.Twitter-Content a:visited {
    color: #0084b4 !important
}

    .tp-caption.Twitter-Content a:hover {
        color: #0084b4 !important;
        text-decoration: underline !important
    }

.FullScreenMenu-Category, .tp-caption.FullScreenMenu-Category {
    color: #111;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    font-style: normal;
    font-family: BenchNine;
    padding: 21px 30px 16px 30px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(255,255,255,.9);
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    letter-spacing: 3px
}

.FullScreenMenu-Title, .tp-caption.FullScreenMenu-Title {
    color: #fff;
    font-size: 65px;
    line-height: 70px;
    font-weight: 700;
    font-style: normal;
    font-family: BenchNine;
    padding: 21px 30px 16px 30px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(17,17,17,.9);
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0
}

.tp-caption.Twitter-Content a, .tp-caption.Twitter-Content a:visited {
    color: #0084b4 !important
}

    .tp-caption.Twitter-Content a:hover {
        color: #0084b4 !important;
        text-decoration: underline !important
    }

.TechJournal-Button, .tp-caption.TechJournal-Button {
    color: #fff;
    font-size: 13px;
    line-height: 40px;
    font-weight: 900;
    font-style: normal;
    font-family: Raleway;
    padding: 1px 30px 1px 30px;
    text-decoration: none;
    text-align: left;
    background-color: #8a00ff;
    border-color: #000;
    border-style: solid;
    border-width: 0;
    border-radius: 0;
    letter-spacing: 3px
}

    .TechJournal-Button:hover, .tp-caption.TechJournal-Button:hover {
        color: #000;
        text-decoration: none;
        background-color: #fff;
        border-color: #000;
        border-style: solid;
        border-width: 0;
        border-radius: 0;
        cursor: pointer
    }

.TechJournal-Big, .tp-caption.TechJournal-Big {
    color: #fff;
    font-size: 120px;
    line-height: 120px;
    font-weight: 900;
    font-style: normal;
    font-family: Raleway;
    padding: 0;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    letter-spacing: 0
}

.rev_slider {
    overflow: hidden
}

.effect_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.tp-caption.Twitter-Content a, .tp-caption.Twitter-Content a:visited {
    color: #0084b4 !important
}

    .tp-caption.Twitter-Content a:hover {
        color: #0084b4 !important;
        text-decoration: underline !important
    }

#menu_forcefullwidth {
    z-index: 5000;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%
}

.FullSiteBlock-Title, .tp-caption.FullSiteBlock-Title {
    color: #333;
    font-size: 55px;
    line-height: 65px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.FullSiteBlock-SubTitle, .tp-caption.FullSiteBlock-SubTitle {
    color: #333;
    font-size: 25px;
    line-height: 34px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.FullSiteBlock-Link, .tp-caption.FullSiteBlock-Link {
    color: #0096ff;
    font-size: 25px;
    line-height: 24px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

    .FullSiteBlock-Link:hover, .tp-caption.FullSiteBlock-Link:hover {
        color: #333;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0;
        border-radius: 0;
        cursor: pointer
    }

.FullSiteBlock-DownButton, .tp-caption.FullSiteBlock-DownButton {
    color: #333;
    font-size: 25px;
    line-height: 32px;
    
    font-style: normal;
   
    padding: 1px 1px 1px 1px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: #333;
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: center
}

    .FullSiteBlock-DownButton:hover, .tp-caption.FullSiteBlock-DownButton:hover {
        color: #0096ff;
        text-decoration: none;
        background-color: transparent;
        border-color: #0096ff;
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }

.FullSiteBlock-Title, .tp-caption.FullSiteBlock-Title {
    color: #333;
    font-size: 55px;
    line-height: 65px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.FullSiteBlock-SubTitle, .tp-caption.FullSiteBlock-SubTitle {
    color: #333;
    font-size: 25px;
    line-height: 34px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.FullSiteBlock-Link, .tp-caption.FullSiteBlock-Link {
    color: #0096ff;
    font-size: 25px;
    line-height: 24px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

    .FullSiteBlock-Link:hover, .tp-caption.FullSiteBlock-Link:hover {
        color: #333;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0;
        border-radius: 0;
        cursor: pointer
    }

.FullSiteBlock-DownButton, .tp-caption.FullSiteBlock-DownButton {
    color: #333;
    font-size: 25px;
    line-height: 32px;
    
    font-style: normal;
   
    padding: 1px 1px 1px 1px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: #333;
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: center
}

    .FullSiteBlock-DownButton:hover, .tp-caption.FullSiteBlock-DownButton:hover {
        color: #0096ff;
        text-decoration: none;
        background-color: transparent;
        border-color: #0096ff;
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }

.FullSiteBlock-Title, .tp-caption.FullSiteBlock-Title {
    color: #333;
    font-size: 55px;
    line-height: 65px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.FullSiteBlock-SubTitle, .tp-caption.FullSiteBlock-SubTitle {
    color: #333;
    font-size: 25px;
    line-height: 34px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.FullSiteBlock-DownButton, .tp-caption.FullSiteBlock-DownButton {
    color: #333;
    font-size: 25px;
    line-height: 32px;
    
    font-style: normal;
   
    padding: 1px 1px 1px 1px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: #333;
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: center
}

    .FullSiteBlock-DownButton:hover, .tp-caption.FullSiteBlock-DownButton:hover {
        color: #0096ff;
        text-decoration: none;
        background-color: transparent;
        border-color: #0096ff;
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }

.FullSiteBlock-Title, .tp-caption.FullSiteBlock-Title {
    color: #333;
    font-size: 55px;
    line-height: 65px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.FullSiteBlock-SubTitle, .tp-caption.FullSiteBlock-SubTitle {
    color: #333;
    font-size: 25px;
    line-height: 34px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.FullSiteBlock-Link, .tp-caption.FullSiteBlock-Link {
    color: #0096ff;
    font-size: 25px;
    line-height: 24px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

    .FullSiteBlock-Link:hover, .tp-caption.FullSiteBlock-Link:hover {
        color: #333;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0;
        border-radius: 0;
        cursor: pointer
    }

.FullSiteBlock-DownButton, .tp-caption.FullSiteBlock-DownButton {
    color: #333;
    font-size: 25px;
    line-height: 32px;
    
    font-style: normal;
   
    padding: 1px 1px 1px 1px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: #333;
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: center
}

    .FullSiteBlock-DownButton:hover, .tp-caption.FullSiteBlock-DownButton:hover {
        color: #0096ff;
        text-decoration: none;
        background-color: transparent;
        border-color: #0096ff;
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }

.rev_slider {
    overflow: hidden
}

.effect_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.gyges .tp-thumb {
    opacity: 1
}

.gyges .tp-thumb-img-wrap {
    padding: 3px;
    background-color: rgba(0,0,0,.25);
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transition: all .3s;
    -webkit-transition: all .3s
}

.gyges .tp-thumb-image {
    padding: 3px;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    -webkit-box-shadow: inset 5px 5px 10px 0 rgba(0,0,0,.25);
    box-shadow: inset 5px 5px 10px 0 rgba(0,0,0,.25)
}

.gyges .tp-thumb.selected .tp-thumb-img-wrap, .gyges .tp-thumb:hover .tp-thumb-img-wrap {
    background: -webkit-gradient(left top,left bottom,color-stop(0,#fff),color-stop(100%,#fff));
    background: -webkit-gradient(linear,left top,left bottom,from(white),to(white));
    background: linear-gradient(to bottom,#fff 0,#fff 100%)
}

.FullSiteBlock-Title, .tp-caption.FullSiteBlock-Title {
    color: #333;
    font-size: 55px;
    line-height: 65px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.FullSiteBlock-SubTitle, .tp-caption.FullSiteBlock-SubTitle {
    color: #333;
    font-size: 25px;
    line-height: 34px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.FullSiteBlock-Link, .tp-caption.FullSiteBlock-Link {
    color: #0096ff;
    font-size: 25px;
    line-height: 24px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

    .FullSiteBlock-Link:hover, .tp-caption.FullSiteBlock-Link:hover {
        color: #333;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0;
        border-radius: 0;
        cursor: pointer
    }

.FullSiteBlock-SubTitle, .tp-caption.FullSiteBlock-SubTitle {
    color: #333;
    font-size: 25px;
    line-height: 34px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.FullSiteBlock-SubTitle, .tp-caption.FullSiteBlock-SubTitle {
    color: #333;
    font-size: 25px;
    line-height: 34px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.FullSiteBlock-FooterLink, .tp-caption.FullSiteBlock-FooterLink {
    color: #555;
    font-size: 15px;
    line-height: 20px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: left
}

    .FullSiteBlock-FooterLink:hover, .tp-caption.FullSiteBlock-FooterLink:hover {
        color: #0096ff;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0;
        border-radius: 0;
        cursor: pointer
    }

.fb-share-button.fb_iframe_widget iframe {
    width: 115px !important
}

#tp-socialwrapper {
    opacity: 0
}

.tp-caption.Twitter-Content a, .tp-caption.Twitter-Content a:visited {
    color: #0084b4 !important
}

    .tp-caption.Twitter-Content a:hover {
        color: #0084b4 !important;
        text-decoration: underline !important
    }

#menu_forcefullwidth {
    z-index: 5000;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%
}

#tp-menubg {
    background: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.75)),to(rgba(0,0,0,0)));
    background: linear-gradient(to bottom,rgba(0,0,0,.75) 0,rgba(0,0,0,0) 100%)
}

#mc_embed_signup input[type=email] {
    font-family: Lato,sans-serif;
    font-size: 16px;
    
    background-color: #fff;
    color: #888 !important;
    line-height: 46px;
    padding: 0 20px;
    cursor: text;
    border: 0;
    width: 400px;
    margin-bottom: 0;
    -webkit-transition: background-color .5s;
    transition: background-color .5s;
    border-radius: 3px
}

    #mc_embed_signup input[type=email]::-webkit-input-placeholder {
        color: #888 !important
    }

    #mc_embed_signup input[type=email]::-moz-placeholder {
        color: #888 !important
    }

    #mc_embed_signup input[type=email]:-ms-input-placeholder {
        color: #888 !important
    }

    #mc_embed_signup input[type=email]:focus {
        background-color: #f5f5f5;
        color: #454545
    }

#mc_embed_signup input#mc-embedded-subscribe, #mc_embed_signup input#mc-embedded-subscribe:focus {
    font-family: Lato,sans-serif;
    line-height: 46px;
    font-size: 16px;
    font-weight: 700;
    padding: 0 30px;
    border: 0;
    background: #f04531;
    text-transform: none;
    color: #fff;
    border-radius: 3px
}

    #mc_embed_signup input#mc-embedded-subscribe:hover {
        background: #e03727
    }

@media only screen and (max-width:767px) {
    #mc_embed_signup input[type=email] {
        width: 260px
    }
}

@media only screen and (max-width:480px) {
    #mc_embed_signup input[type=email] {
        width: 160px
    }
}

#rev_slider_167_6 .uranus.tparrows {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0)
}

    #rev_slider_167_6 .uranus.tparrows:before {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 40px;
        transition: all .3s;
        -webkit-transition: all .3s
    }

    #rev_slider_167_6 .uranus.tparrows:hover:before {
        opacity: .75
    }

.FullSiteBlock-SubTitle, .tp-caption.FullSiteBlock-SubTitle {
    color: #333;
    font-size: 25px;
    line-height: 34px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.ParallaxWebsite-FooterItem, .tp-caption.ParallaxWebsite-FooterItem {
    color: rgba(255,255,255,.5);
    font-size: 16px;
    line-height: 24px;
    
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0
}

    .ParallaxWebsite-FooterItem:hover, .tp-caption.ParallaxWebsite-FooterItem:hover {
        color: #fff;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0;
        border-radius: 0;
        cursor: pointer
    }

.fb-share-button.fb_iframe_widget iframe {
    width: 115px !important
}

iframe.twitter-share-button {
    display: none
}

.fb-share-button.fb_iframe_widget iframe {
    display: none
}

.FullSiteBlock-Link, .tp-caption.FullSiteBlock-Link {
    color: #0096ff;
    font-size: 25px;
    line-height: 24px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0;
    border-radius: 0;
    text-align: center
}

.ares.tparrows {
    cursor: pointer;
    background: #fff;
    min-width: 60px;
    min-height: 60px;
    position: absolute;
    display: block;
    z-index: 100;
    border-radius: 50%
}

    .ares.tparrows:before {
        font-family: revicons;
        font-size: 25px;
        color: #aaa;
        display: block;
        line-height: 60px;
        text-align: center;
        -webkit-transition: color .3s;
        transition: color .3s;
        z-index: 2;
        position: relative
    }

    .ares.tparrows.tp-leftarrow:before {
        content: "\e81f"
    }

    .ares.tparrows.tp-rightarrow:before {
        content: "\e81e"
    }

    .ares.tparrows:hover:before {
        color: #000
    }

.ares .tp-title-wrap {
    position: absolute;
    z-index: 1;
    display: inline-block;
    background: #fff;
    min-height: 60px;
    line-height: 60px;
    top: 0;
    margin-left: 30px;
    border-radius: 0 30px 30px 0;
    overflow: hidden;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s,-webkit-transform .3s;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%
}

.ares.tp-rightarrow .tp-title-wrap {
    right: 0;
    margin-right: 30px;
    margin-left: 0;
    -webkit-transform-origin: 100% 50%;
    border-radius: 30px 0 0 30px
}

.ares.tparrows:hover .tp-title-wrap {
    transform: scaleX(1) scaleY(1);
    -webkit-transform: scaleX(1) scaleY(1)
}

.ares .tp-arr-titleholder {
    position: relative;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s,-webkit-transform .3s;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    text-transform: uppercase;
    color: #000;
    
    font-size: 14px;
    line-height: 60px;
    white-space: nowrap;
    padding: 0 20px;
    margin-left: 10px;
    opacity: 0
}

.ares.tp-rightarrow .tp-arr-titleholder {
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
    margin-left: 0;
    margin-right: 10px
}

.ares.tparrows:hover .tp-arr-titleholder {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    opacity: 1
}

.ares.tp-bullets:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: 0 0;
    padding: 10px;
    margin-left: -10px;
    margin-top: -10px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.ares .tp-bullet {
    width: 13px;
    height: 13px;
    position: absolute;
    background: #e5e5e5;
    border-radius: 50%;
    cursor: pointer;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

    .ares .tp-bullet.selected, .ares .tp-bullet:hover {
        background: #fff
    }

.ares .tp-bullet-title {
    position: absolute;
    color: #888;
    font-size: 12px;
    padding: 0 10px;
   
    right: 27px;
    top: -4px;
    background: #fff;
    background: rgba(255,255,255,.75);
    visibility: hidden;
    transform: translateX(-20px);
    -webkit-transform: translateX(-20px);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s,-webkit-transform .3s;
    -webkit-transition: transform .3s;
    line-height: 20px;
    white-space: nowrap
}

    .ares .tp-bullet-title:after {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 0 10px 10px;
        border-color: transparent transparent transparent rgba(255,255,255,.75);
        content: " ";
        position: absolute;
        right: -10px;
        top: 0
    }

.ares .tp-bullet:hover .tp-bullet-title {
    visibility: visible;
    transform: translateX(0);
    -webkit-transform: translateX(0)
}

.ares .tp-bullet.selected:hover .tp-bullet-title {
    background: #fff
}

    .ares .tp-bullet.selected:hover .tp-bullet-title:after {
        border-color: transparent transparent transparent #fff
    }

.ares.tp-bullets:hover .tp-bullet-title {
    visibility: hidden
}

.ares.tp-bullets:hover .tp-bullet:hover .tp-bullet-title {
    visibility: visible
}

.ares .tp-tab {
    opacity: 1;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: Roboto,sans-serif;
    border-bottom: 1px solid #e5e5e5
}

.ares .tp-tab-image {
    width: 60px;
    height: 60px;
    max-height: 100%;
    max-width: 100%;
    position: relative;
    display: inline-block;
    float: left
}

.ares .tp-tab-content {
    background: rgba(0,0,0,0);
    position: relative;
    padding: 15px 15px 15px 85px;
    left: 0;
    overflow: hidden;
    margin-top: -15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #333;
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute
}

.ares .tp-tab-date {
    display: block;
    color: #aaa;
    
    font-size: 12px;
    margin-bottom: 0
}

.ares .tp-tab-title {
    display: block;
    text-align: left;
    color: #333;
    font-size: 14px;
    
    text-transform: none;
    line-height: 17px
}

.ares .tp-tab.selected, .ares .tp-tab:hover {
    background: #eee
}

.custom.tparrows {
    cursor: pointer;
    background: #000;
    background: rgba(0,0,0,.5);
    width: 40px;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 10000
}

    .custom.tparrows:hover {
        background: #000
    }

    .custom.tparrows:before {
        font-family: revicons;
        font-size: 15px;
        color: #fff;
        display: block;
        line-height: 40px;
        text-align: center
    }

    .custom.tparrows.tp-leftarrow:before {
        content: "\e824"
    }

    .custom.tparrows.tp-rightarrow:before {
        content: "\e825"
    }

.custom.tp-bullets:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: 0 0;
    padding: 10px;
    margin-left: -10px;
    margin-top: -10px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.custom .tp-bullet {
    width: 12px;
    height: 12px;
    position: absolute;
    background: #aaa;
    background: rgba(125,125,125,.5);
    cursor: pointer;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

    .custom .tp-bullet.selected, .custom .tp-bullet:hover {
        background: #7d7d7d
    }

.dione.tparrows {
    height: 100%;
    width: 100px;
    background: 0 0;
    background: rgba(0,0,0,0);
    line-height: 100%;
    transition: all .3s;
    -webkit-transition: all .3s
}

    .dione.tparrows:hover {
        background: rgba(0,0,0,.45)
    }

.dione .tp-arr-imgwrapper {
    width: 100px;
    left: 0;
    position: absolute;
    height: 100%;
    top: 0;
    overflow: hidden
}

.dione.tp-rightarrow .tp-arr-imgwrapper {
    left: auto;
    right: 0
}

.dione .tp-arr-imgholder {
    background-position: center center;
    background-size: cover;
    width: 100px;
    height: 100%;
    top: 0;
    visibility: hidden;
    transform: translateX(-50px);
    -webkit-transform: translateX(-50px);
    transition: all .3s;
    -webkit-transition: all .3s;
    opacity: 0;
    left: 0
}

.dione.tparrows.tp-rightarrow .tp-arr-imgholder {
    right: 0;
    left: auto;
    transform: translateX(50px);
    -webkit-transform: translateX(50px)
}

.dione.tparrows:before {
    position: absolute;
    line-height: 30px;
    margin-left: -22px;
    top: 50%;
    left: 50%;
    font-size: 30px;
    margin-top: -15px;
    transition: all .3s;
    -webkit-transition: all .3s
}

.dione.tparrows.tp-rightarrow:before {
    margin-left: 6px
}

.dione.tparrows:hover:before {
    transform: translateX(-20px);
    -webkit-transform: translateX(-20px);
    opacity: 0
}

.dione.tparrows.tp-rightarrow:hover:before {
    transform: translateX(20px);
    -webkit-transform: translateX(20px)
}

.dione.tparrows:hover .tp-arr-imgholder {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    opacity: 1;
    visibility: visible
}

.dione .tp-bullet {
    opacity: 1;
    width: 50px;
    height: 50px;
    padding: 3px;
    background: #000;
    background-color: rgba(0,0,0,.25);
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transition: all .3s;
    -webkit-transition: all .3s
}

.dione .tp-bullet-image {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    -webkit-box-shadow: inset 5px 5px 10px 0 rgba(0,0,0,.25);
    box-shadow: inset 5px 5px 10px 0 rgba(0,0,0,.25);
    width: 44px;
    height: 44px;
    background-size: cover;
    background-position: center center
}

.dione .tp-bullet-title {
    position: absolute;
    bottom: 65px;
    display: inline-block;
    left: 50%;
    background: #000;
    background: rgba(0,0,0,.75);
    color: #fff;
    padding: 10px 30px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    opacity: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
    transform: translateZ(.001px) translateX(-50%) translateY(14px);
    transform-origin: 50% 100%;
    -webkit-transform: translateZ(.001px) translateX(-50%) translateY(14px);
    -webkit-transform-origin: 50% 100%;
    opacity: 0;
    white-space: nowrap
}

.dione .tp-bullet:hover .tp-bullet-title {
    transform: rotateX(0) translateX(-50%);
    -webkit-transform: rotateX(0) translateX(-50%);
    opacity: 1
}

.dione .tp-bullet.selected, .dione .tp-bullet:hover {
    background: #fff;
    background: -webkit-gradient(left top,left bottom,color-stop(0,#fff),color-stop(100%,#777));
    background: -webkit-gradient(linear,left top,left bottom,from(white),to(#777));
    background: linear-gradient(to bottom,#fff 0,#777 100%)
}

.dione .tp-bullet-title:after {
    content: " ";
    position: absolute;
    left: 50%;
    margin-left: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: rgba(0,0,0,.75) transparent transparent transparent;
    bottom: -8px
}

.erinyen.tparrows {
    cursor: pointer;
    background: #000;
    background: rgba(0,0,0,.5);
    min-width: 70px;
    min-height: 70px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 35px
}

    .erinyen.tparrows:before {
        font-family: revicons;
        font-size: 20px;
        color: #fff;
        display: block;
        line-height: 70px;
        text-align: center;
        z-index: 2;
        position: relative
    }

    .erinyen.tparrows.tp-leftarrow:before {
        content: "\e824"
    }

    .erinyen.tparrows.tp-rightarrow:before {
        content: "\e825"
    }

.erinyen .tp-title-wrap {
    position: absolute;
    z-index: 1;
    display: inline-block;
    background: #000;
    background: rgba(0,0,0,.5);
    min-height: 70px;
    line-height: 70px;
    top: 0;
    margin-left: 0;
    border-radius: 35px;
    overflow: hidden;
    transition: opacity .3s;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -webkit-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
    opacity: 0
}

.erinyen.tparrows:hover .tp-title-wrap {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible
}

.erinyen.tp-rightarrow .tp-title-wrap {
    right: 0;
    margin-right: 0;
    margin-left: 0;
    -webkit-transform-origin: 100% 50%;
    border-radius: 35px;
    padding-right: 20px;
    padding-left: 10px
}

.erinyen.tp-leftarrow .tp-title-wrap {
    padding-left: 20px;
    padding-right: 10px
}

.erinyen .tp-arr-titleholder {
    letter-spacing: 3px;
    position: relative;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s,-webkit-transform .3s;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    text-transform: uppercase;
    color: #fff;
   
    font-size: 13px;
    line-height: 70px;
    white-space: nowrap;
    padding: 0 20px;
    margin-left: 11px;
    opacity: 0
}

.erinyen .tp-arr-imgholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center center;
    background-size: cover
}

.erinyen .tp-arr-img-over {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    background: rgba(0,0,0,.5)
}

.erinyen.tp-rightarrow .tp-arr-titleholder {
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
    margin-left: 0;
    margin-right: 11px
}

.erinyen.tparrows:hover .tp-arr-titleholder {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    opacity: 1
}

.erinyen.tp-bullets:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #555;
    background: -webkit-gradient(linear,left top,left bottom,from(#555),to(#222));
    background: linear-gradient(to bottom,#555 0,#222 100%);
    -webkit-filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#555555", endcolorstr="#222222",gradienttype=0 );
    padding: 10px 15px;
    margin-left: -15px;
    margin-top: -10px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 2px 1px rgba(33,33,33,.3);
    box-shadow: 0 0 2px 1px rgba(33,33,33,.3)
}

.erinyen .tp-bullet {
    width: 13px;
    height: 13px;
    position: absolute;
    background: #111;
    border-radius: 50%;
    cursor: pointer;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

    .erinyen .tp-bullet.selected, .erinyen .tp-bullet:hover {
        background: #e5e5e5;
        background: -webkit-gradient(linear,left top,left bottom,from(#e5e5e5),to(#999));
        background: linear-gradient(to bottom,#e5e5e5 0,#999 100%);
        -webkit-filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#e5e5e5", endcolorstr="#999999",gradienttype=0 );
        border: 1px solid #555;
        width: 12px;
        height: 12px
    }

.erinyen .tp-thumb {
    opacity: 1
}

.erinyen .tp-thumb-over {
    background: #000;
    background: rgba(0,0,0,.25);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transition: all .3s;
    transition: all .3s
}

.erinyen .tp-thumb-more:before {
    font-family: revicons;
    font-size: 12px;
    color: #aaa;
    color: rgba(255,255,255,.75);
    display: block;
    line-height: 12px;
    text-align: left;
    z-index: 2;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2
}

.erinyen .tp-thumb-more:before {
    content: "\e825"
}

.erinyen .tp-thumb-title {
    font-family: Raleway;
    letter-spacing: 1px;
    font-size: 12px;
    color: #fff;
    display: block;
    line-height: 15px;
    text-align: left;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 20px 35px 20px 20px;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transition: all .3s;
    -webkit-transition: all .3s;
    
}

.erinyen .tp-thumb.selected .tp-thumb-more:before, .erinyen .tp-thumb:hover .tp-thumb-more:before {
    color: #aaa
}

.erinyen .tp-thumb.selected .tp-thumb-over, .erinyen .tp-thumb:hover .tp-thumb-over {
    background: #fff
}

.erinyen .tp-thumb.selected .tp-thumb-title, .erinyen .tp-thumb:hover .tp-thumb-title {
    color: #000
}

.erinyen .tp-tab-title {
    color: #a8d8ee;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Roboto Slab";
    margin-bottom: 5px
}

.erinyen .tp-tab-desc {
    font-size: 18px;
    
    color: #fff;
    line-height: 25px;
    font-family: "Roboto Slab"
}

.gyges.tp-bullets:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #777;
    background: -webkit-gradient(linear,left top,left bottom,from(#777),to(#666));
    background: linear-gradient(to bottom,#777 0,#666 100%);
    padding: 10px;
    margin-left: -10px;
    margin-top: -10px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    border-radius: 10px
}

.gyges .tp-bullet {
    width: 12px;
    height: 12px;
    position: absolute;
    background: #333;
    border: 3px solid #444;
    border-radius: 50%;
    cursor: pointer;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

    .gyges .tp-bullet.selected, .gyges .tp-bullet:hover {
        background: #fff;
        background: -webkit-gradient(linear,left top,left bottom,from(#fff),to(#e1e1e1));
        background: linear-gradient(to bottom,#fff 0,#e1e1e1 100%)
    }

.gyges .tp-thumb {
    opacity: 1
}

.gyges .tp-thumb-img-wrap {
    padding: 3px;
    background: #000;
    background-color: rgba(0,0,0,.25);
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transition: all .3s;
    -webkit-transition: all .3s
}

.gyges .tp-thumb-image {
    padding: 3px;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    -webkit-box-shadow: inset 5px 5px 10px 0 rgba(0,0,0,.25);
    box-shadow: inset 5px 5px 10px 0 rgba(0,0,0,.25)
}

.gyges .tp-thumb-title {
    position: absolute;
    bottom: 100%;
    display: inline-block;
    left: 50%;
    background: rgba(255,255,255,.8);
    padding: 10px 30px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    margin-bottom: 20px;
    opacity: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
    transform: translateZ(.001px) translateX(-50%) translateY(14px);
    transform-origin: 50% 100%;
    -webkit-transform: translateZ(.001px) translateX(-50%) translateY(14px);
    -webkit-transform-origin: 50% 100%;
    white-space: nowrap
}

.gyges .tp-thumb:hover .tp-thumb-title {
    transform: rotateX(0) translateX(-50%);
    -webkit-transform: rotateX(0) translateX(-50%);
    opacity: 1
}

.gyges .tp-thumb.selected .tp-thumb-img-wrap, .gyges .tp-thumb:hover .tp-thumb-img-wrap {
    background: #fff;
    background: -webkit-gradient(left top,left bottom,color-stop(0,#fff),color-stop(100%,#777));
    background: -webkit-gradient(linear,left top,left bottom,from(white),to(#777));
    background: linear-gradient(to bottom,#fff 0,#777 100%)
}

.gyges .tp-thumb-title:after {
    content: " ";
    position: absolute;
    left: 50%;
    margin-left: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: rgba(255,255,255,.8) transparent transparent transparent;
    bottom: -8px
}

.gyges .tp-tab {
    opacity: 1;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: Roboto,sans-serif;
    border-bottom: 1px solid rgba(255,255,255,.15)
}

.gyges .tp-tab-image {
    width: 60px;
    height: 60px;
    max-height: 100%;
    max-width: 100%;
    position: relative;
    display: inline-block;
    float: left
}

.gyges .tp-tab-content {
    background: rgba(0,0,0,0);
    position: relative;
    padding: 15px 15px 15px 85px;
    left: 0;
    overflow: hidden;
    margin-top: -15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #333;
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute
}

.gyges .tp-tab-date {
    display: block;
    color: rgba(255,255,255,.25);
    
    font-size: 12px;
    margin-bottom: 0
}

.gyges .tp-tab-title {
    display: block;
    text-align: left;
    color: #fff;
    font-size: 14px;
    
    text-transform: none;
    line-height: 17px
}

.gyges .tp-tab.selected, .gyges .tp-tab:hover {
    background: rgba(0,0,0,.5)
}

.hades.tparrows {
    cursor: pointer;
    background: #000;
    background: rgba(0,0,0,.15);
    width: 100px;
    height: 100px;
    position: absolute;
    display: block;
    z-index: 1000
}

    .hades.tparrows:before {
        font-family: revicons;
        font-size: 30px;
        color: #fff;
        display: block;
        line-height: 100px;
        text-align: center;
        -webkit-transition: background .3s,color .3s;
        transition: background .3s,color .3s
    }

    .hades.tparrows.tp-leftarrow:before {
        content: "\e824"
    }

    .hades.tparrows.tp-rightarrow:before {
        content: "\e825"
    }

    .hades.tparrows:hover:before {
        color: #aaa;
        background: #fff;
        background: #fff
    }

.hades .tp-arr-allwrapper {
    position: absolute;
    left: 100%;
    top: 0;
    background: #888;
    width: 100px;
    height: 100px;
    -webkit-transition: all .3s;
    transition: all .3s;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    -webkit-transform: rotatey(-90deg);
    transform: rotatey(-90deg);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%
}

.hades.tp-rightarrow .tp-arr-allwrapper {
    left: auto;
    right: 100%;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: rotatey(90deg);
    transform: rotatey(90deg)
}

.hades:hover .tp-arr-allwrapper {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    -webkit-transform: rotatey(0);
    transform: rotatey(0)
}

.hades .tp-arr-imgholder {
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.hades.tp-bullets:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: 0 0;
    padding: 10px;
    margin-left: -10px;
    margin-top: -10px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.hades .tp-bullet {
    width: 3px;
    height: 3px;
    position: absolute;
    background: #888;
    cursor: pointer;
    border: 5px solid #fff;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-box-shadow: 0 0 3px 1px rgba(0,0,0,.2);
    box-shadow: 0 0 3px 1px rgba(0,0,0,.2);
    -webkit-perspective: 400;
    perspective: 400;
    -webkit-transform: translatez(.01px);
    transform: translatez(.01px)
}

    .hades .tp-bullet.selected, .hades .tp-bullet:hover {
        background: #555
    }

.hades .tp-bullet-image {
    position: absolute;
    top: -80px;
    left: -60px;
    width: 120px;
    height: 60px;
    background-position: center center;
    background-size: cover;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-transform-style: flat;
    transform-style: flat;
    perspective: 600;
    -webkit-perspective: 600;
    transform: rotatex(-90deg);
    -webkit-transform: rotatex(-90deg);
    -webkit-box-shadow: 0 0 3px 1px rgba(0,0,0,.2);
    box-shadow: 0 0 3px 1px rgba(0,0,0,.2);
    transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%
}

.hades .tp-bullet:hover .tp-bullet-image {
    display: block;
    opacity: 1;
    transform: rotatex(0);
    -webkit-transform: rotatex(0);
    visibility: visible
}

.hades .tp-thumb {
    opacity: 1
}

.hades .tp-thumb-img-wrap {
    border-radius: 50%;
    padding: 3px;
    display: inline-block;
    background: #000;
    background-color: rgba(0,0,0,.25);
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transition: all .3s;
    -webkit-transition: all .3s
}

.hades .tp-thumb-image {
    padding: 3px;
    border-radius: 50%;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    -webkit-box-shadow: inset 5px 5px 10px 0 rgba(0,0,0,.25);
    box-shadow: inset 5px 5px 10px 0 rgba(0,0,0,.25)
}

.hades .tp-thumb.selected .tp-thumb-img-wrap, .hades .tp-thumb:hover .tp-thumb-img-wrap {
    background: #fff;
    background: -webkit-gradient(left top,left bottom,color-stop(0,#fff),color-stop(100%,#777));
    background: -webkit-gradient(linear,left top,left bottom,from(white),to(#777));
    background: linear-gradient(to bottom,#fff 0,#777 100%)
}

.hades .tp-thumb-title:after {
    content: " ";
    position: absolute;
    left: 50%;
    margin-left: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: rgba(0,0,0,.75) transparent transparent transparent;
    bottom: -8px
}

.hades .tp-tab {
    opacity: 1
}

.hades .tp-tab-title {
    display: block;
    color: #333;
   
    font-size: 18px;
    text-align: center;
    line-height: 25px
}

.hades .tp-tab-price {
    display: block;
    text-align: center;
    color: #999;
    font-size: 16px;
    margin-top: 10px;
    line-height: 20px
}

.hades .tp-tab-button {
    display: inline-block;
    margin-top: 15px;
    text-align: center;
    padding: 5px 15px;
    color: #fff;
    font-size: 14px;
    background: #219bd7;
    border-radius: 4px;
    font-weight: 400
}

.hades .tp-tab-inner {
    text-align: center
}

.hebe.tparrows {
    cursor: pointer;
    background: #fff;
    min-width: 70px;
    min-height: 70px;
    position: absolute;
    display: block;
    z-index: 1000
}

    .hebe.tparrows:before {
        font-family: revicons;
        font-size: 30px;
        color: #aaa;
        display: block;
        line-height: 70px;
        text-align: center;
        -webkit-transition: color .3s;
        transition: color .3s;
        z-index: 2;
        position: relative;
        background: #fff;
        min-width: 70px;
        min-height: 70px
    }

    .hebe.tparrows.tp-leftarrow:before {
        content: "\e824"
    }

    .hebe.tparrows.tp-rightarrow:before {
        content: "\e825"
    }

    .hebe.tparrows:hover:before {
        color: #000
    }

.hebe .tp-title-wrap {
    position: absolute;
    z-index: 0;
    display: inline-block;
    background: #000;
    background: rgba(0,0,0,.75);
    min-height: 60px;
    line-height: 60px;
    top: -10px;
    margin-left: 0;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s,-webkit-transform .3s;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%
}

.hebe.tp-rightarrow .tp-title-wrap {
    right: 0;
    -webkit-transform-origin: 100% 50%
}

.hebe.tparrows:hover .tp-title-wrap {
    transform: scaleX(1);
    -webkit-transform: scaleX(1)
}

.hebe .tp-arr-titleholder {
    position: relative;
    text-transform: uppercase;
    color: #fff;
   
    font-size: 12px;
    line-height: 90px;
    white-space: nowrap;
    padding: 0 20px 0 90px
}

.hebe.tp-rightarrow .tp-arr-titleholder {
    margin-left: 0;
    padding: 0 90px 0 20px
}

.hebe.tparrows:hover .tp-arr-titleholder {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    opacity: 1
}

.hebe .tp-arr-imgholder {
    width: 90px;
    height: 90px;
    position: absolute;
    left: 100%;
    display: block;
    background-size: cover;
    background-position: center center;
    top: 0;
    right: -90px
}

.hebe.tp-rightarrow .tp-arr-imgholder {
    right: auto;
    left: -90px
}

.hebe.tp-bullets:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: 0 0;
    padding: 10px;
    margin-left: -10px;
    margin-top: -10px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.hebe .tp-bullet {
    width: 3px;
    height: 3px;
    position: absolute;
    background: #fff;
    cursor: pointer;
    border: 5px solid #222;
    border-radius: 50%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-perspective: 400;
    perspective: 400;
    -webkit-transform: translateZ(.01px);
    transform: translateZ(.01px);
    -webkit-transition: all .3s;
    transition: all .3s
}

    .hebe .tp-bullet.selected, .hebe .tp-bullet:hover {
        background: #222;
        border-color: #fff
    }

.hebe .tp-bullet-image {
    position: absolute;
    top: -90px;
    left: -40px;
    width: 70px;
    height: 70px;
    background-position: center center;
    background-size: cover;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-transform-style: flat;
    transform-style: flat;
    perspective: 600;
    -webkit-perspective: 600;
    transform: scale(0);
    -webkit-transform: scale(0);
    transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    border-radius: 6px
}

.hebe .tp-bullet:hover .tp-bullet-image {
    display: block;
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    visibility: visible
}

.hebe .tp-tab-title {
    color: #a8d8ee;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Roboto Slab";
    margin-bottom: 5px
}

.hebe .tp-tab-desc {
    font-size: 18px;
    
    color: #fff;
    line-height: 25px;
    font-family: "Roboto Slab"
}

.hephaistos.tparrows {
    cursor: pointer;
    background: #000;
    background: rgba(0,0,0,.5);
    width: 40px;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 50%
}

    .hephaistos.tparrows:hover {
        background: #000
    }

    .hephaistos.tparrows:before {
        font-family: revicons;
        font-size: 18px;
        color: #fff;
        display: block;
        line-height: 40px;
        text-align: center
    }

    .hephaistos.tparrows.tp-leftarrow:before {
        content: "\e82c";
        margin-left: -2px
    }

    .hephaistos.tparrows.tp-rightarrow:before {
        content: "\e82d";
        margin-right: -2px
    }

.hephaistos.tp-bullets:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: 0 0;
    padding: 10px;
    margin-left: -10px;
    margin-top: -10px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.hephaistos .tp-bullet {
    width: 12px;
    height: 12px;
    position: absolute;
    background: #999;
    border: 3px solid #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-box-shadow: 0 0 2px 1px rgba(130,130,130,.3);
    box-shadow: 0 0 2px 1px rgba(130,130,130,.3)
}

    .hephaistos .tp-bullet.selected, .hephaistos .tp-bullet:hover {
        background: #fff;
        border-color: #000
    }

.hermes.tparrows {
    cursor: pointer;
    background: #000;
    background: rgba(0,0,0,.5);
    width: 30px;
    height: 110px;
    position: absolute;
    display: block;
    z-index: 1000
}

    .hermes.tparrows:before {
        font-family: revicons;
        font-size: 15px;
        color: #fff;
        display: block;
        line-height: 110px;
        text-align: center;
        transform: translateX(0);
        -webkit-transform: translateX(0);
        transition: all .3s;
        -webkit-transition: all .3s
    }

    .hermes.tparrows.tp-leftarrow:before {
        content: "\e824"
    }

    .hermes.tparrows.tp-rightarrow:before {
        content: "\e825"
    }

    .hermes.tparrows.tp-leftarrow:hover:before {
        transform: translateX(-20px);
        -webkit-transform: translateX(-20px);
        opacity: 0
    }

    .hermes.tparrows.tp-rightarrow:hover:before {
        transform: translateX(20px);
        -webkit-transform: translateX(20px);
        opacity: 0
    }

.hermes .tp-arr-allwrapper {
    overflow: hidden;
    position: absolute;
    width: 180px;
    height: 140px;
    top: 0;
    left: 0;
    visibility: hidden;
    -webkit-transition: -webkit-transform .3s .3s;
    transition: -webkit-transform .3s .3s;
    transition: transform .3s .3s;
    transition: transform .3s .3s,-webkit-transform .3s .3s;
    -webkit-perspective: 1000px;
    perspective: 1000px
}

.hermes.tp-rightarrow .tp-arr-allwrapper {
    right: 0;
    left: auto
}

.hermes.tparrows:hover .tp-arr-allwrapper {
    visibility: visible
}

.hermes .tp-arr-imgholder {
    width: 180px;
    position: absolute;
    left: 0;
    top: 0;
    height: 110px;
    transform: translateX(-180px);
    -webkit-transform: translateX(-180px);
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-transition-delay: .3s;
    transition-delay: .3s
}

.hermes.tp-rightarrow .tp-arr-imgholder {
    transform: translateX(180px);
    -webkit-transform: translateX(180px)
}

.hermes.tparrows:hover .tp-arr-imgholder {
    transform: translateX(0);
    -webkit-transform: translateX(0)
}

.hermes .tp-arr-titleholder {
    top: 110px;
    width: 180px;
    text-align: left;
    display: block;
    padding: 0 10px;
    line-height: 30px;
    background: #000;
    background: rgba(0,0,0,.75);
    color: #fff;
   
    position: absolute;
    font-size: 12px;
    white-space: nowrap;
    letter-spacing: 1px;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.hermes.tparrows:hover .tp-arr-titleholder {
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
    -webkit-transform: rotateX(0);
    transform: rotateX(0)
}

.hermes .tp-bullet {
    overflow: hidden;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    background-color: rgba(0,0,0,0);
    -webkit-box-shadow: inset 0 0 0 2px #fff;
    box-shadow: inset 0 0 0 2px #fff;
    -webkit-transition: background .3s ease;
    transition: background .3s ease;
    position: absolute
}

    .hermes .tp-bullet:hover {
        background-color: rgba(0,0,0,.2)
    }

    .hermes .tp-bullet:after {
        content: ' ';
        position: absolute;
        bottom: 0;
        height: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        -webkit-box-shadow: 0 0 1px #fff;
        box-shadow: 0 0 1px #fff;
        -webkit-transition: height .3s ease;
        transition: height .3s ease
    }

    .hermes .tp-bullet.selected:after {
        height: 100%
    }

.hermes .tp-tab {
    opacity: 1;
    padding-right: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.hermes .tp-tab-image {
    width: 100%;
    height: 60%;
    position: relative
}

.hermes .tp-tab-content {
    background: #363636;
    position: absolute;
    padding: 20px 20px 20px 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    display: block;
    width: 100%;
    min-height: 40%;
    bottom: 0;
    left: -10px
}

.hermes .tp-tab-date {
    display: block;
    color: #888;
   
    font-size: 12px;
    margin-bottom: 10px
}

.hermes .tp-tab-title {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 19px
}

.hermes .tp-tab.selected .tp-tab-title:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 0 30px 10px;
    border-color: transparent transparent transparent #363636;
    content: " ";
    position: absolute;
    right: -9px;
    bottom: 50%;
    margin-bottom: -30px
}

.hermes .tp-tab-mask {
    padding-right: 10px !important
}

@media only screen and (max-width:960px) {
    .hermes .tp-tab .tp-tab-title {
        font-size: 14px;
        line-height: 16px
    }

    .hermes .tp-tab-date {
        font-size: 11px;
        line-height: 13px;
        margin-bottom: 10px
    }

    .hermes .tp-tab-content {
        padding: 15px 15px 15px 25px
    }
}

@media only screen and (max-width:768px) {
    .hermes .tp-tab .tp-tab-title {
        font-size: 12px;
        line-height: 14px
    }

    .hermes .tp-tab-date {
        font-size: 10px;
        line-height: 12px;
        margin-bottom: 5px
    }

    .hermes .tp-tab-content {
        padding: 10px 10px 10px 20px
    }
}

.hesperiden.tparrows {
    cursor: pointer;
    background: #000;
    background: rgba(0,0,0,.5);
    width: 40px;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 50%
}

    .hesperiden.tparrows:hover {
        background: #000
    }

    .hesperiden.tparrows:before {
        font-family: revicons;
        font-size: 20px;
        color: #fff;
        display: block;
        line-height: 40px;
        text-align: center
    }

    .hesperiden.tparrows.tp-leftarrow:before {
        content: "\e82c";
        margin-left: -3px
    }

    .hesperiden.tparrows.tp-rightarrow:before {
        content: "\e82d";
        margin-right: -3px
    }

.hesperiden.tp-bullets:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: 0 0;
    padding: 10px;
    margin-left: -10px;
    margin-top: -10px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    border-radius: 8px
}

.hesperiden .tp-bullet {
    width: 12px;
    height: 12px;
    position: absolute;
    background: #999;
    background: -webkit-gradient(linear,left top,left bottom,from(#999),to(#e1e1e1));
    background: linear-gradient(to bottom,#999 0,#e1e1e1 100%);
    -webkit-filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#999999", endcolorstr="#e1e1e1",gradienttype=0 );
    border: 3px solid #e5e5e5;
    border-radius: 50%;
    cursor: pointer;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

    .hesperiden .tp-bullet.selected, .hesperiden .tp-bullet:hover {
        background: #666
    }

.hesperiden .tp-thumb {
    opacity: 1;
    -webkit-perspective: 600px;
    perspective: 600px
}

    .hesperiden .tp-thumb .tp-thumb-title {
        font-size: 12px;
        position: absolute;
        margin-top: -10px;
        color: #fff;
        display: block;
        z-index: 10000;
        background-color: #000;
        padding: 5px 10px;
        bottom: 0;
        left: 0;
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        text-align: center;
        overflow: hidden;
        white-space: nowrap;
        transition: all .3s;
        -webkit-transition: all .3s;
        transform: rotatex(90deg) translatez(.001px);
        transform-origin: 50% 100%;
        -webkit-transform: rotatex(90deg) translatez(.001px);
        -webkit-transform-origin: 50% 100%;
        opacity: 0
    }

    .hesperiden .tp-thumb:hover .tp-thumb-title {
        transform: rotatex(0);
        -webkit-transform: rotatex(0);
        opacity: 1
    }

.hesperiden .tp-tab {
    opacity: 1;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: Roboto,sans-serif;
    border-bottom: 1px solid #e5e5e5
}

.hesperiden .tp-tab-image {
    width: 60px;
    height: 60px;
    max-height: 100%;
    max-width: 100%;
    position: relative;
    display: inline-block;
    float: left
}

.hesperiden .tp-tab-content {
    background: rgba(0,0,0,0);
    position: relative;
    padding: 15px 15px 15px 85px;
    left: 0;
    overflow: hidden;
    margin-top: -15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #333;
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute
}

.hesperiden .tp-tab-date {
    display: block;
    color: #aaa;
    
    font-size: 12px;
    margin-bottom: 0
}

.hesperiden .tp-tab-title {
    display: block;
    text-align: left;
    color: #333;
    font-size: 14px;
    
    text-transform: none;
    line-height: 17px
}

.hesperiden .tp-tab.selected, .hesperiden .tp-tab:hover {
    background: #eee
}

.metis.tparrows {
    background: #fff;
    padding: 10px;
    transition: all .3s;
    -webkit-transition: all .3s;
    width: 60px;
    height: 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

    .metis.tparrows:hover {
        background: #fff;
        background: rgba(255,255,255,.75)
    }

    .metis.tparrows:before {
        color: #000;
        transition: all .3s;
        -webkit-transition: all .3s
    }

    .metis.tparrows:hover:before {
        -webkit-transform: scale(1.5);
        transform: scale(1.5)
    }

.metis .tp-bullet {
    opacity: 1;
    width: 50px;
    height: 50px;
    padding: 3px;
    background: #000;
    background-color: rgba(0,0,0,.25);
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transition: all .3s;
    -webkit-transition: all .3s;
    border-radius: 50%
}

.metis .tp-bullet-image {
    border-radius: 50%;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    -webkit-box-shadow: inset 5px 5px 10px 0 rgba(0,0,0,.25);
    box-shadow: inset 5px 5px 10px 0 rgba(0,0,0,.25);
    width: 44px;
    height: 44px;
    background-size: cover;
    background-position: center center
}

.metis .tp-bullet-title {
    position: absolute;
    bottom: 65px;
    display: inline-block;
    left: 50%;
    background: #000;
    background: rgba(0,0,0,.75);
    color: #fff;
    padding: 10px 30px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    opacity: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
    transform: translateZ(.001px) translateX(-50%) translateY(14px);
    transform-origin: 50% 100%;
    -webkit-transform: translateZ(.001px) translateX(-50%) translateY(14px);
    -webkit-transform-origin: 50% 100%;
    opacity: 0;
    white-space: nowrap
}

.metis .tp-bullet:hover .tp-bullet-title {
    transform: rotateX(0) translateX(-50%);
    -webkit-transform: rotateX(0) translateX(-50%);
    opacity: 1
}

.metis .tp-bullet.selected, .metis .tp-bullet:hover {
    background: #fff;
    background: -webkit-gradient(left top,left bottom,color-stop(0,#fff),color-stop(100%,#777));
    background: -webkit-gradient(linear,left top,left bottom,from(white),to(#777));
    background: linear-gradient(to bottom,#fff 0,#777 100%)
}

.metis .tp-bullet-title:after {
    content: " ";
    position: absolute;
    left: 50%;
    margin-left: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: rgba(0,0,0,.75) transparent transparent transparent;
    bottom: -8px
}

.metis .tp-tab-number {
    color: #fff;
    font-size: 40px;
    line-height: 30px;
    
    font-family: "Playfair Display";
    width: 50px;
    margin-right: 17px;
    display: inline-block;
    float: left
}

.metis .tp-tab-mask {
    padding-left: 20px;
    left: 0;
    max-width: 90px !important;
    -webkit-transition: .4s padding-left,.4s left,.4s max-width;
    transition: .4s padding-left,.4s left,.4s max-width
}

.metis:hover .tp-tab-mask {
    padding-left: 0;
    left: 50px;
    max-width: 500px !important
}

.metis .tp-tab-divider {
    border-right: 1px solid transparent;
    height: 30px;
    width: 1px;
    margin-top: 5px;
    display: inline-block;
    float: left
}

.metis .tp-tab-title {
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    
    font-family: "Playfair Display";
    position: relative;
    padding-top: 10px;
    padding-left: 30px;
    display: inline-block;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: .4s all;
    transition: .4s all
}

.metis .tp-tab-title-mask {
    position: absolute;
    overflow: hidden;
    left: 67px
}

.metis:hover .tp-tab-title {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.metis .tp-tab {
    opacity: .15;
    -webkit-transition: .4s all;
    transition: .4s all
}

    .metis .tp-tab.selected, .metis .tp-tab:hover {
        opacity: 1
    }

        .metis .tp-tab.selected .tp-tab-divider {
            border-right: 1px solid #cdb083
        }

.metis.tp-tabs {
    max-width: 118px !important;
    padding-left: 50px
}

    .metis.tp-tabs:before {
        content: " ";
        height: 100%;
        width: 88px;
        background: rgba(0,0,0,.15);
        border-right: 1px solid rgba(255,255,255,.1);
        left: 0;
        top: 0;
        position: absolute;
        -webkit-transition: .4s all;
        transition: .4s all
    }

    .metis.tp-tabs:hover:before {
        width: 118px
    }

@media (max-width:499px) {
    .metis.tp-tabs:before {
        background: rgba(0,0,0,.75)
    }
}

.persephone.tparrows {
    cursor: pointer;
    background: #aaa;
    background: rgba(200,200,200,.5);
    width: 40px;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 100;
    border: 1px solid #f5f5f5
}

    .persephone.tparrows:hover {
        background: #333
    }

    .persephone.tparrows:before {
        font-family: revicons;
        font-size: 15px;
        color: #fff;
        display: block;
        line-height: 40px;
        text-align: center
    }

    .persephone.tparrows.tp-leftarrow:before {
        content: "\e824"
    }

    .persephone.tparrows.tp-rightarrow:before {
        content: "\e825"
    }

.persephone.tp-bullets:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #transparent;
    padding: 10px;
    margin-left: -10px;
    margin-top: -10px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.persephone .tp-bullet {
    width: 12px;
    height: 12px;
    position: absolute;
    background: #aaa;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

    .persephone .tp-bullet.selected, .persephone .tp-bullet:hover {
        background: #222
    }

.uranus.tparrows {
    width: 50px;
    height: 50px;
    background: 0 0
}

    .uranus.tparrows:before {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 40px;
        transition: all .3s;
        -webkit-transition: all .3s
    }

    .uranus.tparrows:hover:before {
        opacity: .75
    }

.uranus .tp-bullet {
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 2px rgba(255,255,255,0);
    box-shadow: 0 0 0 2px rgba(255,255,255,0);
    -webkit-transition: box-shadow .3s ease;
    -webkit-transition: -webkit-box-shadow .3s ease;
    transition: -webkit-box-shadow .3s ease;
    transition: box-shadow .3s ease;
    transition: box-shadow .3s ease,-webkit-box-shadow .3s ease;
    background: 0 0
}

    .uranus .tp-bullet.selected, .uranus .tp-bullet:hover {
        -webkit-box-shadow: 0 0 0 2px #fff;
        box-shadow: 0 0 0 2px #fff;
        border: none;
        border-radius: 50%;
        background: 0 0
    }

.uranus .tp-bullet-inner {
    background-color: rgba(255,255,255,.7);
    -webkit-transition: background-color .3s ease,-webkit-transform .3s ease;
    transition: background-color .3s ease,-webkit-transform .3s ease;
    transition: background-color .3s ease,transform .3s ease;
    transition: background-color .3s ease,transform .3s ease,-webkit-transform .3s ease;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: 0;
    border-radius: 50%;
    background-color: #fff;
    background-color: rgba(255,255,255,.3);
    text-indent: -999em;
    cursor: pointer;
    position: absolute
}

.uranus .tp-bullet.selected .tp-bullet-inner, .uranus .tp-bullet:hover .tp-bullet-inner {
    transform: scale(.4);
    -webkit-transform: scale(.4);
    background-color: #fff
}

.zeus.tparrows {
    cursor: pointer;
    min-width: 70px;
    min-height: 70px;
    position: absolute;
    display: block;
    z-index: 100;
    border-radius: 35px;
    overflow: hidden;
    background: rgba(0,0,0,.1)
}

    .zeus.tparrows:before {
        font-family: revicons;
        font-size: 20px;
        color: #fff;
        display: block;
        line-height: 70px;
        text-align: center;
        z-index: 2;
        position: relative
    }

    .zeus.tparrows.tp-leftarrow:before {
        content: "\e824"
    }

    .zeus.tparrows.tp-rightarrow:before {
        content: "\e825"
    }

.zeus .tp-title-wrap {
    background: #000;
    background: rgba(0,0,0,.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    border-radius: 50%
}

.zeus .tp-arr-imgholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    border-radius: 50%;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s
}

.zeus.tp-rightarrow .tp-arr-imgholder {
    transform: translateX(100%);
    -webkit-transform: translateX(100%)
}

.zeus.tparrows:hover .tp-arr-imgholder {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    opacity: 1
}

.zeus.tparrows:hover .tp-title-wrap {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 1
}

.zeus .tp-bullet {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    border-radius: 50%;
    background-color: rgba(0,0,0,0);
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    width: 13px;
    height: 13px;
    border: 2px solid #fff
}

    .zeus .tp-bullet:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        border-radius: 50%;
        background-color: #fff;
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transition: -webkit-transform .3s ease;
        transition: -webkit-transform .3s ease;
        transition: transform .3s ease;
        transition: transform .3s ease,-webkit-transform .3s ease
    }

    .zeus .tp-bullet.selected:after, .zeus .tp-bullet:hover:after {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }

.zeus .tp-bullet-image, .zeus .tp-bullet-imageoverlay {
    width: 135px;
    height: 60px;
    position: absolute;
    background: #000;
    background: rgba(0,0,0,.5);
    bottom: 25px;
    left: 50%;
    margin-left: -65px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-size: cover;
    background-position: center center;
    visibility: hidden;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    border-radius: 4px
}

.zeus .tp-bullet-imageoverlay, .zeus .tp-bullet-title {
    z-index: 2;
    -webkit-transition: all .5s ease;
    transition: all .5s ease
}

.zeus .tp-bullet-title {
    color: #fff;
    text-align: center;
    line-height: 15px;
    font-size: 13px;
   
    z-index: 3;
    visibility: hidden;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    position: absolute;
    bottom: 45px;
    width: 135px;
    vertical-align: middle;
    left: -57px
}

.zeus .tp-bullet:hover .tp-bullet-image, .zeus .tp-bullet:hover .tp-bullet-imageoverlay, .zeus .tp-bullet:hover .tp-bullet-title {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.zeus .tp-thumb {
    opacity: 1
}

.zeus .tp-thumb-over {
    background: #000;
    background: rgba(0,0,0,.25);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transition: all .3s;
    transition: all .3s
}

.zeus .tp-thumb-more:before {
    font-family: revicons;
    font-size: 12px;
    color: #aaa;
    color: rgba(255,255,255,.75);
    display: block;
    line-height: 12px;
    text-align: left;
    z-index: 2;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2
}

.zeus .tp-thumb-more:before {
    content: "\e825"
}

.zeus .tp-thumb-title {
    font-family: Raleway;
    letter-spacing: 1px;
    font-size: 12px;
    color: #fff;
    display: block;
    line-height: 15px;
    text-align: left;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 20px 35px 20px 20px;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transition: all .3s;
    -webkit-transition: all .3s;
    
}

.zeus .tp-thumb.selected .tp-thumb-more:before, .zeus .tp-thumb:hover .tp-thumb-more:before {
    color: #aaa
}

.zeus .tp-thumb.selected .tp-thumb-over, .zeus .tp-thumb:hover .tp-thumb-over {
    background: #000
}

.zeus .tp-thumb.selected .tp-thumb-title, .zeus .tp-thumb:hover .tp-thumb-title {
    color: #fff
}

.zeus .tp-tab {
    opacity: 1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.zeus .tp-tab-title {
    display: block;
    text-align: center;
    background: rgba(0,0,0,.25);
    font-family: "Roboto Slab",serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 13px;
    color: #fff;
    padding: 9px 10px
}

.zeus .tp-tab.selected .tp-tab-title, .zeus .tp-tab:hover .tp-tab-title {
    color: #000;
    background: #fff
}

.post-tabs .tp-thumb {
    opacity: 1
}

.post-tabs .tp-thumb-over {
    background: #252525;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transition: all .3s;
    transition: all .3s
}

.post-tabs .tp-thumb-more:before {
    font-family: revicons;
    font-size: 12px;
    color: #aaa;
    color: rgba(255,255,255,.75);
    display: block;
    line-height: 12px;
    text-align: left;
    z-index: 2;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2
}

.post-tabs .tp-thumb-more:before {
    content: "\e825"
}

.post-tabs .tp-thumb-title {
    font-family: raleway;
    letter-spacing: 1px;
    font-size: 12px;
    color: #fff;
    display: block;
    line-height: 15px;
    text-align: left;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 15px 30px 15px 15px;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transition: all .3s;
    -webkit-transition: all .3s;
    
}

.post-tabs .tp-thumb.selected .tp-thumb-more:before, .post-tabs .tp-thumb:hover .tp-thumb-more:before {
    color: #aaa
}

.post-tabs .tp-thumb.selected .tp-thumb-over, .post-tabs .tp-thumb:hover .tp-thumb-over {
    background: #fff
}

.post-tabs .tp-thumb.selected .tp-thumb-title, .post-tabs .tp-thumb:hover .tp-thumb-title {
    color: #000
}

#debungcontrolls {
    z-index: 100000;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: auto;
    background: rgba(0,0,0,.6);
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.debugtimeline {
    width: 100%;
    height: 10px;
    position: relative;
    display: block;
    margin-bottom: 3px;
    display: none;
    white-space: nowrap;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

    .debugtimeline:hover {
        height: 15px
    }

.the_timeline_tester {
    background: #e74c3c;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0
}

.rs-go-fullscreen {
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 9999999 !important;
    background: #fff !important
}

.debugtimeline.tl_slide .the_timeline_tester {
    background: #f39c12
}

.debugtimeline.tl_frame .the_timeline_tester {
    background: #3498db
}

.debugtimline_txt {
    color: #fff;
    
    font-size: 7px;
    position: absolute;
    left: 10px;
    top: 0;
    white-space: nowrap;
    line-height: 10px
}

.rtl {
    direction: rtl
}

@font-face {
    font-family: revicons;
    src: url(../fonts/revicons90c6.eot?5510888);
    src: url(../fonts/revicons90c6.eot?5510888#iefix) format("embedded-opentype"),url(../fonts/revicons90c6.woff?5510888) format("woff"),url(../fonts/revicons90c6.ttf?5510888) format("truetype"),url(../fonts/revicons90c6.svg?5510888#revicons) format("svg");
    
    font-style: normal
}

[class*=" revicon-"]:before, [class^=revicon-]:before {
    font-family: revicons;
    font-style: normal;
    
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em
}

.revicon-search-1:before {
    content: '\e802'
}

.revicon-pencil-1:before {
    content: '\e831'
}

.revicon-picture-1:before {
    content: '\e803'
}

.revicon-cancel:before {
    content: '\e80a'
}

.revicon-info-circled:before {
    content: '\e80f'
}

.revicon-trash:before {
    content: '\e801'
}

.revicon-left-dir:before {
    content: '\e817'
}

.revicon-right-dir:before {
    content: '\e818'
}

.revicon-down-open:before {
    content: '\e83b'
}

.revicon-left-open:before {
    content: '\e819'
}

.revicon-right-open:before {
    content: '\e81a'
}

.revicon-angle-left:before {
    content: '\e820'
}

.revicon-angle-right:before {
    content: '\e81d'
}

.revicon-left-big:before {
    content: '\e81f'
}

.revicon-right-big:before {
    content: '\e81e'
}

.revicon-magic:before {
    content: '\e807'
}

.revicon-picture:before {
    content: '\e800'
}

.revicon-export:before {
    content: '\e80b'
}

.revicon-cog:before {
    content: '\e832'
}

.revicon-login:before {
    content: '\e833'
}

.revicon-logout:before {
    content: '\e834'
}

.revicon-video:before {
    content: '\e805'
}

.revicon-arrow-combo:before {
    content: '\e827'
}

.revicon-left-open-1:before {
    content: '\e82a'
}

.revicon-right-open-1:before {
    content: '\e82b'
}

.revicon-left-open-mini:before {
    content: '\e822'
}

.revicon-right-open-mini:before {
    content: '\e823'
}

.revicon-left-open-big:before {
    content: '\e824'
}

.revicon-right-open-big:before {
    content: '\e825'
}

.revicon-left:before {
    content: '\e836'
}

.revicon-right:before {
    content: '\e826'
}

.revicon-ccw:before {
    content: '\e808'
}

.revicon-arrows-ccw:before {
    content: '\e806'
}

.revicon-palette:before {
    content: '\e829'
}

.revicon-list-add:before {
    content: '\e80c'
}

.revicon-doc:before {
    content: '\e809'
}

.revicon-left-open-outline:before {
    content: '\e82e'
}

.revicon-left-open-2:before {
    content: '\e82c'
}

.revicon-right-open-outline:before {
    content: '\e82f'
}

.revicon-right-open-2:before {
    content: '\e82d'
}

.revicon-equalizer:before {
    content: '\e83a'
}

.revicon-layers-alt:before {
    content: '\e804'
}

.revicon-popup:before {
    content: '\e828'
}

.rev_slider_wrapper {
    position: relative;
    z-index: 0;
    width: 100%
}

.rev_slider {
    position: relative;
    overflow: visible
}

    .entry-content .rev_slider a, .rev_slider a {
        -webkit-box-shadow: none;
        box-shadow: none
    }

.tp-overflow-hidden {
    overflow: hidden !important
}

.group_ov_hidden {
    overflow: hidden
}

.rev_slider img, .tp-simpleresponsive img {
    max-width: none !important;
    -webkit-transition: none;
    transition: none;
    margin: 0;
    padding: 0;
    border: none
}

.rev_slider .no-slides-text {
    font-weight: 700;
    text-align: center;
    padding-top: 80px
}

.rev_slider > ul, .rev_slider > ul > li, .rev_slider > ul > li:before, .rev_slider_wrapper > ul, .tp-revslider-mainul > li, .tp-revslider-mainul > li:before, .tp-simpleresponsive > ul, .tp-simpleresponsive > ul > li, .tp-simpleresponsive > ul > li:before {
    list-style: none !important;
    position: absolute;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: visible;
    overflow-y: visible;
    list-style-type: none !important;
    background-image: none;
    background-position: 0 0;
    text-indent: 0;
    top: 0;
    left: 0
}

    .rev_slider > ul > li, .rev_slider > ul > li:before, .tp-revslider-mainul > li, .tp-revslider-mainul > li:before, .tp-simpleresponsive > ul > li, .tp-simpleresponsive > ul > li:before {
        visibility: hidden
    }

.tp-revslider-mainul, .tp-revslider-slidesli {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important
}

.rev_slider li.tp-revslider-slidesli {
    position: absolute !important
}

.tp-caption .rs-untoggled-content {
    display: block
}

.tp-caption .rs-toggled-content {
    display: none
}

.rs-toggle-content-active.tp-caption .rs-toggled-content {
    display: block
}

.rs-toggle-content-active.tp-caption .rs-untoggled-content {
    display: none
}

.rev_slider .caption, .rev_slider .tp-caption {
    position: relative;
    visibility: hidden;
    white-space: nowrap;
    display: block;
    -webkit-font-smoothing: antialiased !important;
    z-index: 1
}

.rev_slider .caption, .rev_slider .tp-caption, .tp-simpleresponsive img {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none
}

.rev_slider .tp-mask-wrap .tp-caption, .rev_slider .tp-mask-wrap :last-child, .wpb_text_column .rev_slider .tp-mask-wrap .tp-caption, .wpb_text_column .rev_slider .tp-mask-wrap :last-child {
    margin-bottom: 0
}

.tp-svg-layer svg {
    width: 100%;
    height: 100%;
    position: relative;
    vertical-align: top
}

.tp-carousel-wrapper {
    cursor: url(openhand.html),move
}

    .tp-carousel-wrapper.dragged {
        cursor: url(closedhand.html),move
    }

.tp_inner_padding {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-height: none !important
}

.tp-caption.tp-layer-selectable {
    -moz-user-select: all;
    -khtml-user-select: all;
    -webkit-user-select: all;
    -o-user-select: all
}

.tp-caption.tp-hidden-caption, .tp-forcenotvisible, .tp-hide-revslider, .tp-parallax-wrap.tp-hidden-caption {
    visibility: hidden !important;
    display: none !important
}

.rev_slider audio, .rev_slider embed, .rev_slider iframe, .rev_slider object, .rev_slider video {
    max-width: none !important
}

.tp-element-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0
}

.tp-blockmask, .tp-blockmask_in, .tp-blockmask_out {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1000;
    -webkit-transform: scaleX(0) scaleY(0);
    transform: scaleX(0) scaleY(0)
}

.tp-parallax-wrap {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.rev_row_zone {
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 50px;
    font-size: 0
}

.rev_row_zone_top {
    top: 0
}

.rev_row_zone_middle {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.rev_row_zone_bottom {
    bottom: 0
}

.rev_column .tp-parallax-wrap {
    vertical-align: top
}

.rev_slider .tp-caption.rev_row {
    display: table;
    position: relative;
    width: 100% !important;
    table-layout: fixed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: top;
    height: auto !important;
    font-size: 0
}

.rev_column {
    display: table-cell;
    position: relative;
    vertical-align: top;
    height: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 0
}

.rev_column_inner {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    position: relative;
    width: 100% !important;
    height: auto !important;
    white-space: normal !important
}

.rev_column_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-clip: content-box;
    border: 0 solid transparent
}

.rev_column_inner .tp-loop-wrap, .rev_column_inner .tp-mask-wrap, .rev_column_inner .tp-parallax-wrap {
    text-align: inherit
}

.rev_column_inner .tp-mask-wrap {
    display: inline-block
}

.rev_column_inner .tp-parallax-wrap, .rev_column_inner .tp-parallax-wrap .tp-loop-wrap, .rev_column_inner .tp-parallax-wrap .tp-mask-wrap {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    line-height: 0
}

    .rev_column_inner .rev_layer_in_column, .rev_column_inner .tp-parallax-wrap, .rev_column_inner .tp-parallax-wrap .tp-loop-wrap, .rev_column_inner .tp-parallax-wrap .tp-mask-wrap {
        vertical-align: top
    }

.rev_break_columns {
    display: block !important
}

    .rev_break_columns .tp-parallax-wrap.rev_column {
        display: block !important;
        width: 100% !important
    }

.fullscreen-container {
    position: relative;
    padding: 0
}

.fullwidthbanner-container {
    position: relative;
    padding: 0;
    overflow: hidden
}

    .fullwidthbanner-container .fullwidthabanner {
        width: 100%;
        position: relative
    }

.tp-static-layers {
    position: absolute;
    z-index: 101;
    top: 0;
    left: 0
}

.tp-caption .frontcorner {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 0 solid transparent;
    border-top: 40px solid #00a8ff;
    position: absolute;
    left: -40px;
    top: 0
}

.tp-caption .backcorner {
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 40px solid #00a8ff;
    position: absolute;
    right: 0;
    top: 0
}

.tp-caption .frontcornertop {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 40px solid #00a8ff;
    position: absolute;
    left: -40px;
    top: 0
}

.tp-caption .backcornertop {
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 40px solid transparent;
    border-top: 40px solid #00a8ff;
    position: absolute;
    right: 0;
    top: 0
}

.tp-layer-inner-rotation {
    position: relative !important
}

img.tp-slider-alternative-image {
    width: 100%;
    height: auto
}

.noFilterClass {
    -webkit-filter: none !important;
    filter: none !important
}

.rs-background-video-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 0
}

.tp-caption.coverscreenvideo {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute
}

.caption.fullscreenvideo, .tp-caption.fullscreenvideo {
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%
}

    .caption.fullscreenvideo audio, .caption.fullscreenvideo iframe, .caption.fullscreenvideo video, .tp-caption.fullscreenvideo iframe, .tp-caption.fullscreenvideo iframe audio, .tp-caption.fullscreenvideo iframe video {
        width: 100% !important;
        height: 100% !important;
        display: none
    }

.fullcoveredvideo audio, .fullscreenvideo audio .fullcoveredvideo video, .fullscreenvideo video {
    background: #000
}

.fullcoveredvideo .tp-poster {
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.videoisplaying .html5vid .tp-poster {
    display: none
}

.tp-video-play-button {
    background: #000;
    background: rgba(0,0,0,.3);
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    z-index: 3;
    margin-top: -25px;
    margin-left: -25px;
    line-height: 50px !important;
    text-align: center;
    cursor: pointer;
    width: 50px;
    height: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    z-index: 4;
    opacity: 0;
    -webkit-transition: opacity .3s ease-out !important;
    transition: opacity .3s ease-out !important
}

.tp-audio-html5 .tp-video-play-button, .tp-hiddenaudio {
    display: none !important
}

.tp-caption .html5vid {
    width: 100% !important;
    height: 100% !important
}

.tp-video-play-button i {
    width: 50px;
    height: 50px;
    display: inline-block;
    text-align: center;
    vertical-align: top;
    line-height: 50px !important;
    font-size: 40px !important
}

.tp-caption:hover .tp-video-play-button {
    opacity: 1;
    display: block
}

.tp-caption .tp-revstop {
    display: none;
    border-left: 5px solid #fff !important;
    border-right: 5px solid #fff !important;
    margin-top: 15px !important;
    line-height: 20px !important;
    vertical-align: top;
    font-size: 25px !important
}

.videoisplaying .revicon-right-dir {
    display: none
}

.videoisplaying .tp-revstop {
    display: inline-block
}

.videoisplaying .tp-video-play-button {
    display: none
}

.fullcoveredvideo .tp-video-play-button {
    display: none !important
}

.fullscreenvideo .fullscreenvideo audio {
    -o-object-fit: contain !important;
    object-fit: contain !important
}

.fullscreenvideo .fullscreenvideo video {
    -o-object-fit: contain !important;
    object-fit: contain !important
}

.fullscreenvideo .fullcoveredvideo audio {
    -o-object-fit: cover !important;
    object-fit: cover !important
}

.fullscreenvideo .fullcoveredvideo video {
    -o-object-fit: cover !important;
    object-fit: cover !important
}

.tp-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px;
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    background-image: -webkit-gradient(linear,left top,left bottom,color-stop(13%,#000),to(#323232));
    background-image: linear-gradient(to bottom,#000 13%,#323232 100%);
    display: table;
    max-width: 100%;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.tp-caption:hover .tp-video-controls {
    opacity: .9
}

.tp-video-button {
    background: rgba(0,0,0,.5);
    border: 0;
    color: #eee;
    border-radius: 3px;
    cursor: pointer;
    line-height: 12px;
    font-size: 12px;
    color: #fff;
    padding: 0;
    margin: 0;
    outline: 0
}

    .tp-video-button:hover {
        cursor: pointer
    }

.tp-video-button-wrap, .tp-video-seek-bar-wrap, .tp-video-vol-bar-wrap {
    padding: 0 5px;
    display: table-cell;
    vertical-align: middle
}

.tp-video-seek-bar-wrap {
    width: 80%
}

.tp-video-vol-bar-wrap {
    width: 20%
}

.tp-seek-bar, .tp-volume-bar {
    width: 100%;
    cursor: pointer;
    outline: 0;
    line-height: 12px;
    margin: 0;
    padding: 0
}

.rs-fullvideo-cover {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: 0 0;
    z-index: 5
}

.disabled_lc .tp-video-play-button, .rs-background-video-layer audio::-webkit-media-controls, .rs-background-video-layer video::-webkit-media-controls, .rs-background-video-layer video::-webkit-media-controls-start-playback-button {
    display: none !important
}

.tp-audio-html5 .tp-video-controls {
    opacity: 1 !important;
    visibility: visible !important
}

.tp-dottedoverlay {
    background-repeat: repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3
}

    .tp-dottedoverlay.twoxtwo {
        background: url(../assets/gridtile.html)
    }

    .tp-dottedoverlay.twoxtwowhite {
        background: url(../assets/gridtile_white.html)
    }

    .tp-dottedoverlay.threexthree {
        background: url(../assets/gridtile_3x3.html)
    }

    .tp-dottedoverlay.threexthreewhite {
        background: url(../assets/gridtile_3x3_white.html)
    }

.tp-shadowcover {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    position: absolute;
    z-index: -1
}

.tp-shadow1 {
    -webkit-box-shadow: 0 10px 6px -6px rgba(0,0,0,.8);
    box-shadow: 0 10px 6px -6px rgba(0,0,0,.8)
}

.tp-shadow2:after, .tp-shadow2:before, .tp-shadow3:before, .tp-shadow4:after {
    z-index: -2;
    position: absolute;
    content: "";
    bottom: 10px;
    left: 10px;
    width: 50%;
    top: 85%;
    max-width: 300px;
    background: 0 0;
    -webkit-box-shadow: 0 15px 10px rgba(0,0,0,.8);
    box-shadow: 0 15px 10px rgba(0,0,0,.8);
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg)
}

.tp-shadow2:after, .tp-shadow4:after {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
    right: 10px;
    left: auto
}

.tp-shadow5 {
    position: relative;
    -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.3),0 0 40px rgba(0,0,0,.1) inset;
    box-shadow: 0 1px 4px rgba(0,0,0,.3),0 0 40px rgba(0,0,0,.1) inset
}

    .tp-shadow5:after, .tp-shadow5:before {
        content: "";
        position: absolute;
        z-index: -2;
        -webkit-box-shadow: 0 0 25px 0 rgba(0,0,0,.6);
        box-shadow: 0 0 25px 0 rgba(0,0,0,.6);
        top: 30%;
        bottom: 0;
        left: 20px;
        right: 20px;
        border-radius: 100px/20px
    }

.tp-button {
    padding: 6px 13px 5px;
    border-radius: 3px;
    height: 30px;
    cursor: pointer;
    color: #fff !important;
    text-shadow: 0 1px 1px rgba(0,0,0,.6) !important;
    font-size: 15px;
    line-height: 45px !important;
    font-family: arial,sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
    text-decoration: none
}

    .tp-button.big {
        color: #fff;
        text-shadow: 0 1px 1px rgba(0,0,0,.6);
        font-weight: 700;
        padding: 9px 20px;
        font-size: 19px;
        line-height: 57px !important
    }

        .purchase:hover, .tp-button.big:hover, .tp-button:hover {
            background-position: bottom,15px 11px
        }

            .purchase.green, .purchase:hover.green, .tp-button.green, .tp-button:hover.green {
                background-color: #21a117;
                -webkit-box-shadow: 0 3px 0 0 #104d0b;
                box-shadow: 0 3px 0 0 #104d0b
            }

            .purchase.blue, .purchase:hover.blue, .tp-button.blue, .tp-button:hover.blue {
                background-color: #1d78cb;
                -webkit-box-shadow: 0 3px 0 0 #0f3e68;
                box-shadow: 0 3px 0 0 #0f3e68
            }

            .purchase.red, .purchase:hover.red, .tp-button.red, .tp-button:hover.red {
                background-color: #cb1d1d;
                -webkit-box-shadow: 0 3px 0 0 #7c1212;
                box-shadow: 0 3px 0 0 #7c1212
            }

            .purchase.orange, .purchase:hover.orange, .tp-button.orange, .tp-button:hover.orange {
                background-color: #f70;
                -webkit-box-shadow: 0 3px 0 0 #a34c00;
                box-shadow: 0 3px 0 0 #a34c00
            }

            .purchase.darkgrey, .purchase:hover.darkgrey, .tp-button.darkgrey, .tp-button.grey, .tp-button:hover.darkgrey, .tp-button:hover.grey {
                background-color: #555;
                -webkit-box-shadow: 0 3px 0 0 #222;
                box-shadow: 0 3px 0 0 #222
            }

            .purchase.lightgrey, .purchase:hover.lightgrey, .tp-button.lightgrey, .tp-button:hover.lightgrey {
                background-color: #888;
                -webkit-box-shadow: 0 3px 0 0 #555;
                box-shadow: 0 3px 0 0 #555
            }

.rev-btn, .rev-btn:visited {
    outline: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    line-height: 44px;
    font-size: 17px;
    
    padding: 12px 35px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: Roboto,sans-serif;
    cursor: pointer
}

    .rev-btn.rev-uppercase, .rev-btn.rev-uppercase:visited {
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 15px;
        font-weight: 900
    }

    .rev-btn.rev-withicon i {
        font-size: 15px;
        
        position: relative;
        top: 0;
        -webkit-transition: all .2s ease-out !important;
        transition: all .2s ease-out !important;
        margin-left: 10px !important
    }

    .rev-btn.rev-hiddenicon i {
        font-size: 15px;
        
        position: relative;
        top: 0;
        -webkit-transition: all .2s ease-out !important;
        transition: all .2s ease-out !important;
        opacity: 0;
        margin-left: 0 !important;
        width: 0 !important
    }

    .rev-btn.rev-hiddenicon:hover i {
        opacity: 1 !important;
        margin-left: 10px !important;
        width: auto !important
    }

    .rev-btn.rev-medium, .rev-btn.rev-medium:visited {
        line-height: 36px;
        font-size: 14px;
        padding: 10px 30px
    }

        .rev-btn.rev-medium.rev-withicon i {
            font-size: 14px;
            top: 0
        }

        .rev-btn.rev-medium.rev-hiddenicon i {
            font-size: 14px;
            top: 0
        }

    .rev-btn.rev-small, .rev-btn.rev-small:visited {
        line-height: 28px;
        font-size: 12px;
        padding: 7px 20px
    }

        .rev-btn.rev-small.rev-withicon i {
            font-size: 12px;
            top: 0
        }

        .rev-btn.rev-small.rev-hiddenicon i {
            font-size: 12px;
            top: 0
        }

.rev-maxround {
    border-radius: 30px
}

.rev-minround {
    border-radius: 3px
}

.rev-burger {
    position: relative;
    width: 60px;
    height: 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 22px 0 0 14px;
    border-radius: 50%;
    border: 1px solid rgba(51,51,51,.25);
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer
}

    .rev-burger span {
        display: block;
        width: 30px;
        height: 3px;
        background: #333;
        -webkit-transition: .7s;
        transition: .7s;
        pointer-events: none;
        -webkit-transform-style: flat !important;
        transform-style: flat !important
    }

        .rev-burger span:nth-child(2) {
            margin: 3px 0
        }

#dialog_addbutton .rev-burger:hover :first-child, .open .rev-burger :first-child, .open.rev-burger :first-child {
    -webkit-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg)
}

#dialog_addbutton .rev-burger:hover :nth-child(2), .open .rev-burger :nth-child(2), .open.rev-burger :nth-child(2) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0
}

#dialog_addbutton .rev-burger:hover :last-child, .open .rev-burger :last-child, .open.rev-burger :last-child {
    -webkit-transform: translateY(-6px) rotate(-135deg);
    transform: translateY(-6px) rotate(-135deg)
}

.rev-burger.revb-white {
    border: 2px solid rgba(255,255,255,.2)
}

    .rev-burger.revb-white span {
        background: #fff
    }

.rev-burger.revb-whitenoborder {
    border: 0
}

    .rev-burger.revb-whitenoborder span {
        background: #fff
    }

.rev-burger.revb-darknoborder {
    border: 0
}

    .rev-burger.revb-darknoborder span {
        background: #333
    }

.rev-burger.revb-whitefull {
    background: #fff;
    border: none
}

    .rev-burger.revb-whitefull span {
        background: #333
    }

.rev-burger.revb-darkfull {
    background: #333;
    border: none
}

    .rev-burger.revb-darkfull span {
        background: #fff
    }

@-webkit-keyframes rev-ani-mouse {
    0% {
        opacity: 1;
        top: 29%
    }

    15% {
        opacity: 1;
        top: 50%
    }

    50% {
        opacity: 0;
        top: 50%
    }

    100% {
        opacity: 0;
        top: 29%
    }
}

@keyframes rev-ani-mouse {
    0% {
        opacity: 1;
        top: 29%
    }

    15% {
        opacity: 1;
        top: 50%
    }

    50% {
        opacity: 0;
        top: 50%
    }

    100% {
        opacity: 0;
        top: 29%
    }
}

.rev-scroll-btn {
    display: inline-block;
    position: relative;
    left: 0;
    right: 0;
    text-align: center;
    cursor: pointer;
    width: 35px;
    height: 55px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 3px solid #fff;
    border-radius: 23px
}

    .rev-scroll-btn > * {
        display: inline-block;
        line-height: 18px;
        font-size: 13px;
        
        color: #7f8c8d;
        color: #fff;
        font-family: proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;
        letter-spacing: 2px
    }

    .rev-scroll-btn > .active, .rev-scroll-btn > :focus, .rev-scroll-btn > :hover {
        color: #fff
    }

    .rev-scroll-btn > .active, .rev-scroll-btn > :active, .rev-scroll-btn > :focus, .rev-scroll-btn > :hover {
        opacity: .8
    }

    .rev-scroll-btn.revs-fullwhite {
        background: #fff
    }

        .rev-scroll-btn.revs-fullwhite span {
            background: #333
        }

    .rev-scroll-btn.revs-fulldark {
        background: #333;
        border: none
    }

        .rev-scroll-btn.revs-fulldark span {
            background: #fff
        }

    .rev-scroll-btn span {
        position: absolute;
        display: block;
        top: 29%;
        left: 50%;
        width: 8px;
        height: 8px;
        margin: -4px 0 0 -4px;
        background: #fff;
        border-radius: 50%;
        -webkit-animation: rev-ani-mouse 2.5s linear infinite;
        animation: rev-ani-mouse 2.5s linear infinite
    }

    .rev-scroll-btn.revs-dark {
        border-color: #333
    }

        .rev-scroll-btn.revs-dark span {
            background: #333
        }

.rev-control-btn {
    position: relative;
    display: inline-block;
    z-index: 5;
    color: #fff;
    font-size: 20px;
    line-height: 60px;
    
    font-style: normal;
    font-family: Raleway;
    text-decoration: none;
    text-align: center;
    background-color: #000;
    border-radius: 50px;
    text-shadow: none;
    background-color: rgba(0,0,0,.5);
    width: 60px;
    height: 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer
}

.rev-cbutton-dark-sr {
    border-radius: 3px
}

.rev-cbutton-light {
    color: #333;
    background-color: rgba(255,255,255,.75)
}

.rev-cbutton-light-sr {
    color: #333;
    border-radius: 3px;
    background-color: rgba(255,255,255,.75)
}

.rev-sbutton {
    line-height: 37px;
    width: 37px;
    height: 37px
}

.rev-sbutton-blue {
    background-color: #3b5998
}

.rev-sbutton-lightblue {
    background-color: #00a0d1
}

.rev-sbutton-red {
    background-color: #dd4b39
}

.tp-bannertimer {
    visibility: hidden;
    width: 100%;
    height: 5px;
    background: #000;
    background: rgba(0,0,0,.15);
    position: absolute;
    z-index: 200;
    top: 0
}

    .tp-bannertimer.tp-bottom {
        top: auto;
        bottom: 0 !important;
        height: 5px
    }

.tp-caption img {
    background: 0 0;
    zoom: 1
}

.caption.slidelink a div, .tp-caption.slidelink a div {
    width: 3000px;
    height: 1500px;
    background: url(../assets/coloredbg.html) repeat
}

.tp-caption.slidelink a span {
    background: url(../assets/coloredbg.html) repeat
}

.tp-shape {
    width: 100%;
    height: 100%
}

.tp-caption .rs-starring {
    display: inline-block
}

    .tp-caption .rs-starring .star-rating {
        float: none;
        display: inline-block;
        vertical-align: top;
        color: #ffc321 !important
    }

    .tp-caption .rs-starring .star-rating, .tp-caption .rs-starring-page .star-rating {
        position: relative;
        height: 1em;
        width: 5.4em;
        font-family: star;
        font-size: 1em !important
    }

        .tp-caption .rs-starring .star-rating:before, .tp-caption .rs-starring-page .star-rating:before {
            content: "\73\73\73\73\73";
            color: #e0dadf;
            float: left;
            top: 0;
            left: 0;
            position: absolute
        }

        .tp-caption .rs-starring .star-rating span {
            overflow: hidden;
            float: left;
            top: 0;
            left: 0;
            position: absolute;
            padding-top: 1.5em;
            font-size: 1em !important
        }

            .tp-caption .rs-starring .star-rating span:before {
                content: "\53\53\53\53\53";
                top: 0;
                position: absolute;
                left: 0
            }

.tp-loader {
    top: 50%;
    left: 50%;
    z-index: 10000;
    position: absolute
}

    .tp-loader.spinner0 {
        width: 40px;
        height: 40px;
        background-color: #fff;
        background-image: url(../assets/loader.html);
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
        box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
        margin-top: -20px;
        margin-left: -20px;
        -webkit-animation: tp-rotateplane 1.2s infinite ease-in-out;
        animation: tp-rotateplane 1.2s infinite ease-in-out;
        border-radius: 3px
    }

    .tp-loader.spinner1 {
        width: 40px;
        height: 40px;
        background-color: #fff;
        -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
        box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
        margin-top: -20px;
        margin-left: -20px;
        -webkit-animation: tp-rotateplane 1.2s infinite ease-in-out;
        animation: tp-rotateplane 1.2s infinite ease-in-out;
        border-radius: 3px
    }

    .tp-loader.spinner5 {
        background-image: url(../assets/loader.html);
        background-repeat: no-repeat;
        background-position: 10px 10px;
        background-color: #fff;
        margin: -22px -22px;
        width: 44px;
        height: 44px;
        border-radius: 3px
    }

@-webkit-keyframes tp-rotateplane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0) rotateY(0);
        transform: perspective(120px) rotateX(0) rotateY(0)
    }

    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0)
    }

    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg)
    }
}

@keyframes tp-rotateplane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0) rotateY(0);
        transform: perspective(120px) rotateX(0) rotateY(0)
    }

    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0)
    }

    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg)
    }
}

.tp-loader.spinner2 {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    background-color: red;
    -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
    box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
    border-radius: 100%;
    -webkit-animation: tp-scaleout 1s infinite ease-in-out;
    animation: tp-scaleout 1s infinite ease-in-out
}

@-webkit-keyframes tp-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

@keyframes tp-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

.tp-loader.spinner3 {
    margin: -9px 0 0 -35px;
    width: 70px;
    text-align: center
}

    .tp-loader.spinner3 .bounce1, .tp-loader.spinner3 .bounce2, .tp-loader.spinner3 .bounce3 {
        width: 18px;
        height: 18px;
        background-color: #fff;
        -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
        box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
        border-radius: 100%;
        display: inline-block;
        -webkit-animation: tp-bouncedelay 1.4s infinite ease-in-out;
        animation: tp-bouncedelay 1.4s infinite ease-in-out;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both
    }

    .tp-loader.spinner3 .bounce1 {
        -webkit-animation-delay: -.32s;
        animation-delay: -.32s
    }

    .tp-loader.spinner3 .bounce2 {
        -webkit-animation-delay: -.16s;
        animation-delay: -.16s
    }

@-webkit-keyframes tp-bouncedelay {
    0%,100%,80% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes tp-bouncedelay {
    0%,100%,80% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.tp-loader.spinner4 {
    margin: -20px 0 0 -20px;
    width: 40px;
    height: 40px;
    text-align: center;
    -webkit-animation: tp-rotate 2s infinite linear;
    animation: tp-rotate 2s infinite linear
}

    .tp-loader.spinner4 .dot1, .tp-loader.spinner4 .dot2 {
        width: 60%;
        height: 60%;
        display: inline-block;
        position: absolute;
        top: 0;
        background-color: #fff;
        border-radius: 100%;
        -webkit-animation: tp-bounce 2s infinite ease-in-out;
        animation: tp-bounce 2s infinite ease-in-out;
        -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
        box-shadow: 0 0 20px 0 rgba(0,0,0,.15)
    }

    .tp-loader.spinner4 .dot2 {
        top: auto;
        bottom: 0;
        -webkit-animation-delay: -1s;
        animation-delay: -1s
    }

@-webkit-keyframes tp-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes tp-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes tp-bounce {
    0%,100% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes tp-bounce {
    0%,100% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.tp-bullets.navbar, .tp-tabs.navbar, .tp-thumbs.navbar {
    border: none;
    min-height: 0;
    margin: 0;
    border-radius: 0
}

.tp-bullets, .tp-tabs, .tp-thumbs {
    position: absolute;
    display: block;
    z-index: 1000;
    top: 0;
    left: 0
}

.tp-tab, .tp-thumb {
    cursor: pointer;
    position: absolute;
    opacity: .5;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.tp-arr-imgholder, .tp-tab-image, .tp-thumb-image, .tp-videoposter {
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0
}

.tp-tab.selected, .tp-tab:hover, .tp-thumb.selected, .tp-thumb:hover {
    opacity: 1
}

.tp-tab-mask, .tp-thumb-mask {
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important
}

.tp-tabs, .tp-thumbs {
    -webkit-box-sizing: content-box !important;
    box-sizing: content-box !important
}

.tp-bullet {
    width: 15px;
    height: 15px;
    position: absolute;
    background: #fff;
    background: rgba(255,255,255,.3);
    cursor: pointer
}

    .tp-bullet.selected, .tp-bullet:hover {
        background: #fff
    }

.tparrows {
    cursor: pointer;
    background: #000;
    background: rgba(0,0,0,.5);
    width: 40px;
    height: 40px;
    position: absolute;
    display: none;
    z-index: 1000
}

    .tparrows:hover {
        background: #000
    }

    .tparrows:before {
        font-family: revicons;
        font-size: 15px;
        color: #fff;
        display: block;
        line-height: 40px;
        text-align: center
    }

    .tparrows.tp-leftarrow:before {
        content: '\e824'
    }

    .tparrows.tp-rightarrow:before {
        content: '\e825'
    }

body.rtl .tp-kbimg {
    left: 0 !important
}

.dddwrappershadow {
    -webkit-box-shadow: 0 45px 100px rgba(0,0,0,.4);
    box-shadow: 0 45px 100px rgba(0,0,0,.4)
}

.hglayerinfo {
    position: fixed;
    bottom: 0;
    left: 0;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
   
    background: rgba(0,0,0,.75);
    padding: 5px 10px;
    z-index: 2000;
    white-space: normal
}

.hginfo {
    position: absolute;
    top: -2px;
    left: -2px;
    color: #e74c3c;
    font-size: 12px;
   
    background: #000;
    padding: 2px 5px
}

.indebugmode .tp-caption:hover {
    border: 1px dashed #c0392b !important
}

.helpgrid {
    border: 2px dashed #c0392b;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0
}

#revsliderlogloglog {
    padding: 15px;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 150px;
    background: rgba(0,0,0,.7);
    z-index: 100000;
    font-size: 10px;
    overflow: scroll
}

.aden {
    -webkit-filter: hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2);
    filter: hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2)
}

    .aden::after {
        background: -webkit-gradient(linear,left top,right top,from(rgba(66,10,14,.2)),to(transparent));
        background: linear-gradient(to right,rgba(66,10,14,.2),transparent);
        mix-blend-mode: darken
    }

.perpetua::after, .reyes::after {
    mix-blend-mode: soft-light;
    opacity: .5
}

.inkwell {
    -webkit-filter: sepia(.3) contrast(1.1) brightness(1.1) grayscale(1);
    filter: sepia(.3) contrast(1.1) brightness(1.1) grayscale(1)
}

.perpetua::after {
    background: -webkit-gradient(linear,left top,left bottom,from(#005b9a),to(#e6c13d));
    background: linear-gradient(to bottom,#005b9a,#e6c13d)
}

.reyes {
    -webkit-filter: sepia(.22) brightness(1.1) contrast(.85) saturate(.75);
    filter: sepia(.22) brightness(1.1) contrast(.85) saturate(.75)
}

    .reyes::after {
        background: #efcdad
    }

.gingham {
    -webkit-filter: brightness(1.05) hue-rotate(-10deg);
    filter: brightness(1.05) hue-rotate(-10deg)
}

    .gingham::after {
        background: -webkit-gradient(linear,left top,right top,from(rgba(66,10,14,.2)),to(transparent));
        background: linear-gradient(to right,rgba(66,10,14,.2),transparent);
        mix-blend-mode: darken
    }

.toaster {
    -webkit-filter: contrast(1.5) brightness(.9);
    filter: contrast(1.5) brightness(.9)
}

    .toaster::after {
        background: radial-gradient(circle,#804e0f,#3b003b);
        mix-blend-mode: screen
    }

.walden {
    -webkit-filter: brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6);
    filter: brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6)
}

    .walden::after {
        background: #04c;
        mix-blend-mode: screen;
        opacity: .3
    }

.hudson {
    -webkit-filter: brightness(1.2) contrast(.9) saturate(1.1);
    filter: brightness(1.2) contrast(.9) saturate(1.1)
}

    .hudson::after {
        background: radial-gradient(circle,#a6b1ff 50%,#342134);
        mix-blend-mode: multiply;
        opacity: .5
    }

.earlybird {
    -webkit-filter: contrast(.9) sepia(.2);
    filter: contrast(.9) sepia(.2)
}

    .earlybird::after {
        background: radial-gradient(circle,#d0ba8e 20%,#360309 85%,#1d0210 100%);
        mix-blend-mode: overlay
    }

.mayfair {
    -webkit-filter: contrast(1.1) saturate(1.1);
    filter: contrast(1.1) saturate(1.1)
}

    .mayfair::after {
        background: radial-gradient(circle at 40% 40%,rgba(255,255,255,.8),rgba(255,200,200,.6),#111 60%);
        mix-blend-mode: overlay;
        opacity: .4
    }

.lofi {
    -webkit-filter: saturate(1.1) contrast(1.5);
    filter: saturate(1.1) contrast(1.5)
}

    .lofi::after {
        background: radial-gradient(circle,transparent 70%,#222 150%);
        mix-blend-mode: multiply
    }

._1977 {
    -webkit-filter: contrast(1.1) brightness(1.1) saturate(1.3);
    filter: contrast(1.1) brightness(1.1) saturate(1.3)
}

    ._1977:after {
        background: rgba(243,106,188,.3);
        mix-blend-mode: screen
    }

.brooklyn {
    -webkit-filter: contrast(.9) brightness(1.1);
    filter: contrast(.9) brightness(1.1)
}

    .brooklyn::after {
        background: radial-gradient(circle,rgba(168,223,193,.4) 70%,#c4b7c8);
        mix-blend-mode: overlay
    }

.xpro2 {
    -webkit-filter: sepia(.3);
    filter: sepia(.3)
}

    .xpro2::after {
        background: radial-gradient(circle,#e6e7e0 40%,rgba(43,42,161,.6) 110%);
        mix-blend-mode: color-burn
    }

.nashville {
    -webkit-filter: sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2);
    filter: sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2)
}

    .nashville::after {
        background: rgba(0,70,150,.4);
        mix-blend-mode: lighten
    }

    .nashville::before {
        background: rgba(247,176,153,.56);
        mix-blend-mode: darken
    }

.lark {
    -webkit-filter: contrast(.9);
    filter: contrast(.9)
}

    .lark::after {
        background: rgba(242,242,242,.8);
        mix-blend-mode: darken
    }

    .lark::before {
        background: #22253f;
        mix-blend-mode: color-dodge
    }

.moon {
    -webkit-filter: grayscale(1) contrast(1.1) brightness(1.1);
    filter: grayscale(1) contrast(1.1) brightness(1.1)
}

    .moon::before {
        background: #a0a0a0;
        mix-blend-mode: soft-light
    }

    .moon::after {
        background: #383838;
        mix-blend-mode: lighten
    }

.clarendon {
    -webkit-filter: contrast(1.2) saturate(1.35);
    filter: contrast(1.2) saturate(1.35)
}

    .clarendon:before {
        background: rgba(127,187,227,.2);
        mix-blend-mode: overlay
    }

.willow {
    -webkit-filter: grayscale(.5) contrast(.95) brightness(.9);
    filter: grayscale(.5) contrast(.95) brightness(.9)
}

    .willow::before {
        background-color: radial-gradient(40%,circle,#d4a9af 55%,#000 150%);
        mix-blend-mode: overlay
    }

    .willow::after {
        background-color: #d8cdcb;
        mix-blend-mode: color
    }

.rise {
    -webkit-filter: brightness(1.05) sepia(.2) contrast(.9) saturate(.9);
    filter: brightness(1.05) sepia(.2) contrast(.9) saturate(.9)
}

    .rise::after {
        background: radial-gradient(circle,rgba(232,197,152,.8),transparent 90%);
        mix-blend-mode: overlay;
        opacity: .6
    }

    .rise::before {
        background: radial-gradient(circle,rgba(236,205,169,.15) 55%,rgba(50,30,7,.4));
        mix-blend-mode: multiply
    }

    ._1977:after, ._1977:before, .aden:after, .aden:before, .brooklyn:after, .brooklyn:before, .clarendon:after, .clarendon:before, .earlybird:after, .earlybird:before, .gingham:after, .gingham:before, .hudson:after, .hudson:before, .inkwell:after, .inkwell:before, .lark:after, .lark:before, .lofi:after, .lofi:before, .mayfair:after, .mayfair:before, .moon:after, .moon:before, .nashville:after, .nashville:before, .perpetua:after, .perpetua:before, .reyes:after, .reyes:before, .rise:after, .rise:before, .slumber:after, .slumber:before, .toaster:after, .toaster:before, .walden:after, .walden:before, .willow:after, .willow:before, .xpro2:after, .xpro2:before {
        content: '';
        display: block;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        position: absolute;
        pointer-events: none
    }

._1977, .aden, .brooklyn, .clarendon, .earlybird, .gingham, .hudson, .inkwell, .lark, .lofi, .mayfair, .moon, .nashville, .perpetua, .reyes, .rise, .slumber, .toaster, .walden, .willow, .xpro2 {
    position: relative
}

    ._1977 img, .aden img, .brooklyn img, .clarendon img, .earlybird img, .gingham img, .hudson img, .inkwell img, .lark img, .lofi img, .mayfair img, .moon img, .nashville img, .perpetua img, .reyes img, .rise img, .slumber img, .toaster img, .walden img, .willow img, .xpro2 img {
        width: 100%;
        z-index: 1
    }

    ._1977:before, .aden:before, .brooklyn:before, .clarendon:before, .earlybird:before, .gingham:before, .hudson:before, .inkwell:before, .lark:before, .lofi:before, .mayfair:before, .moon:before, .nashville:before, .perpetua:before, .reyes:before, .rise:before, .slumber:before, .toaster:before, .walden:before, .willow:before, .xpro2:before {
        z-index: 2
    }

    ._1977:after, .aden:after, .brooklyn:after, .clarendon:after, .earlybird:after, .gingham:after, .hudson:after, .inkwell:after, .lark:after, .lofi:after, .mayfair:after, .moon:after, .nashville:after, .perpetua:after, .reyes:after, .rise:after, .slumber:after, .toaster:after, .walden:after, .willow:after, .xpro2:after {
        z-index: 3
    }

.slumber {
    -webkit-filter: saturate(.66) brightness(1.05);
    filter: saturate(.66) brightness(1.05)
}

    .slumber::after {
        background: rgba(125,105,24,.5);
        mix-blend-mode: soft-light
    }

    .slumber::before {
        background: rgba(69,41,12,.4);
        mix-blend-mode: lighten
    }

.tp-kbimg-wrap:after, .tp-kbimg-wrap:before {
    height: 500%;
    width: 500%
}
/*# sourceMappingURL=vendor.min.css.map */
