<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@-webkit-keyframes bounce {
    from,
  20%,
  53%,
  80%,
  to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%,
  43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes bounce {
    from,
  20%,
  53%,
  80%,
  to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%,
  43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

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

@-webkit-keyframes flash {
    from,
  50%,
  to {
        opacity: 1;
    }

    25%,
  75% {
        opacity: 0;
    }
}

@keyframes flash {
    from,
  50%,
  to {
        opacity: 1;
    }

    25%,
  75% {
        opacity: 0;
    }
}

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

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

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

@-webkit-keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

@-webkit-keyframes shake {
    from,
  to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%,
  30%,
  50%,
  70%,
  90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%,
  40%,
  60%,
  80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

@keyframes shake {
    from,
  to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%,
  30%,
  50%,
  70%,
  90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%,
  40%,
  60%,
  80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

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

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

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

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%,
  20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%,
  50%,
  70%,
  90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%,
  60%,
  80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%,
  20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%,
  50%,
  70%,
  90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%,
  60%,
  80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

@-webkit-keyframes wobble {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes wobble {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

@-webkit-keyframes jello {
    from,
  11.1%,
  to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
        transform: skewX(0.39062deg) skewY(0.39062deg);
    }

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

@keyframes jello {
    from,
  11.1%,
  to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
        transform: skewX(0.39062deg) skewY(0.39062deg);
    }

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

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

@-webkit-keyframes 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 {
    from,
  20%,
  40%,
  60%,
  80%,
  to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    from,
  20%,
  40%,
  60%,
  80%,
  to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

@-webkit-keyframes bounceInDown {
    from,
  60%,
  75%,
  90%,
  to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInDown {
    from,
  60%,
  75%,
  90%,
  to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

@-webkit-keyframes bounceInLeft {
    from,
  60%,
  75%,
  90%,
  to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInLeft {
    from,
  60%,
  75%,
  90%,
  to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

@-webkit-keyframes bounceInRight {
    from,
  60%,
  75%,
  90%,
  to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInRight {
    from,
  60%,
  75%,
  90%,
  to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

@-webkit-keyframes bounceInUp {
    from,
  60%,
  75%,
  90%,
  to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInUp {
    from,
  60%,
  75%,
  90%,
  to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    50%,
  55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    50%,
  55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

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

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%,
  45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%,
  45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

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

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

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

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

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

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

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

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

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

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

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

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%,
  45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%,
  45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

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

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

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

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

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

@-webkit-keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

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

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

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

@-webkit-keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

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

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

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

@-webkit-keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

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

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

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

@-webkit-keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

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

@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) 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(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.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(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.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: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

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

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

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
    }

    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(0.1) rotate(30deg);
        transform: scale(0.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        -webkit-transform: scale(0.1) rotate(30deg);
        transform: scale(0.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

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

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

@-webkit-keyframes rollOut {
    from {
        opacity: 1;
    }

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

@keyframes rollOut {
    from {
        opacity: 1;
    }

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

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

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

    50% {
        opacity: 1;
    }
}

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

    50% {
        opacity: 1;
    }
}

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

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

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

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

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

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

@-webkit-keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

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

@-webkit-keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

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

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

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

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

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

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

@-webkit-keyframes zoomOut {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    to {
        opacity: 0;
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    to {
        opacity: 0;
    }
}

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

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

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

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

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

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

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

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

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

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

@-webkit-keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

@keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

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

@-webkit-keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

@keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

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

@-webkit-keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

@keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

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

@-webkit-keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

@keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

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

.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: 800ms;
    animation-duration: 800ms;
}

.animated.faster {
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
}

.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(0.25, 0.25, 0.75, 0.75);
    transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.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(0.6, -0.28, 0.735, 0.045);
    transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.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(0.175, 0.885, 0.32, 1.275);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.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(0.68, -0.55, 0.265, 1.55);
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.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(0.47, 0, 0.745, 0.715);
    transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.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(0.39, 0.575, 0.565, 1);
    transition-timing-function: cubic-bezier(0.39, 0.575, 0.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(0.445, 0.05, 0.55, 0.95);
    transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.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(0.55, 0.085, 0.68, 0.53);
    transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.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(0.25, 0.46, 0.45, 0.94);
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.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(0.455, 0.03, 0.515, 0.955);
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.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(0.55, 0.085, 0.68, 0.53);
    transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.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(0.25, 0.46, 0.45, 0.94);
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.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(0.455, 0.03, 0.515, 0.955);
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.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(0.55, 0.085, 0.68, 0.53);
    transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.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(0.25, 0.46, 0.45, 0.94);
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.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(0.455, 0.03, 0.515, 0.955);
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.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(0.6);
    transform: scale(0.6);
}

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

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

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

[data-aos=zoom-in-left] {
    -webkit-transform: translate3d(100px, 0, 0) scale(0.6);
    transform: translate3d(100px, 0, 0) scale(0.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(0deg);
        transform: rotate(0deg);
    }

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

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

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

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

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

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

.delete, .modal-close {
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: rgba(10, 10, 10, 0.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: none;
    position: relative;
    vertical-align: top;
    width: 20px;
}

.delete::before, .modal-close::before, .delete::after, .modal-close::after {
    background-color: white;
    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:hover, .modal-close:hover, .delete:focus, .modal-close:focus {
    background-color: rgba(10, 10, 10, 0.3);
}

.delete:active, .modal-close:active {
    background-color: rgba(10, 10, 10, 0.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, .select.is-loading::after, .control.is-loading::after, .loader {
    -webkit-animation: spinAround 500ms infinite linear;
    animation: spinAround 500ms 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;
}

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

.button, .input,
.textarea, .select select, .file-cta,
.file-name, .pagination-previous,
.pagination-next,
.pagination-link,
.pagination-ellipsis {
    -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(0.375em - 1px);
    padding-left: calc(0.625em - 1px);
    padding-right: calc(0.625em - 1px);
    padding-top: calc(0.375em - 1px);
    position: relative;
    vertical-align: top;
}

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

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

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

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

ul {
    list-style: none;
}

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

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

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

img,
audio,
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: white;
    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: "Poppins", sans-serif;
}

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

body {
    color: #5c5c5c;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

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

a strong {
    color: currentColor;
}

a:hover {
    color: #363636;
}

code {
    background-color: whitesmoke;
    color: #ff3860;
    font-size: initial;
    font-weight: normal;
    padding: 0.25em 0.5em 0.25em;
}

hr {
    background-color: whitesmoke;
    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: 0.875em;
}

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

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

pre {
    -webkit-overflow-scrolling: touch;
    background-color: whitesmoke;
    color: #4a4a4a;
    font-size: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: 0.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: white !important;
}

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

.has-background-white {
    background-color: white !important;
}

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

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

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

.has-text-light {
    color: whitesmoke !important;
}

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

.has-background-light {
    background-color: whitesmoke !important;
}

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

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

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

.has-text-primary {
    color: #f80036 !important;
}

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

.has-background-primary {
    background-color: #f80036 !important;
}

.has-text-link {
    color: #f80036 !important;
}

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

.has-background-link {
    background-color: #f80036 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.has-text-secondary {
    color: #101010 !important;
}

a.has-text-secondary:hover, a.has-text-secondary:focus {
    color: black !important;
}

.has-background-secondary {
    background-color: #101010 !important;
}

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

a.has-text-secondary-2:hover, a.has-text-secondary-2:focus {
    color: black !important;
}

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

.has-text-secondary-3 {
    color: #232323 !important;
}

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

.has-background-secondary-3 {
    background-color: #232323 !important;
}

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

a.has-text-secondary-4:hover, a.has-text-secondary-4:focus {
    color: #1d1d1d !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

a.has-text-tertiary-9:hover, a.has-text-tertiary-9:focus {
    color: gainsboro !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: whitesmoke !important;
}

.has-background-white-ter {
    background-color: whitesmoke !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 {
    font-weight: 600 !important;
}

.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: white;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #4a4a4a;
    display: block;
    padding: 0;
}

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

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

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

.button strong {
    color: inherit;
}

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

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

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

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

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

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

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

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

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

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

.button.is-text:active, .button.is-text.is-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: white;
    border-color: transparent;
    color: #0a0a0a;
}

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

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

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

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

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

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

.button.is-white.is-inverted:hover {
    background-color: black;
}

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

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

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

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

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

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

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

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

.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: white;
}

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

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

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

.button.is-black:active, .button.is-black.is-active {
    background-color: black;
    border-color: transparent;
    color: white;
}

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

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

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

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

.button.is-black.is-loading::after {
    border-color: transparent transparent white white !important;
}

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

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

.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: white;
    color: white;
}

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

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

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

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

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

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

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

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

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

.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: whitesmoke;
}

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

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

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

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

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

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

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

.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: whitesmoke;
}

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

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

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

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

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

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

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

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

.button.is-dark.is-loading::after {
    border-color: transparent transparent whitesmoke whitesmoke !important;
}

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

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

.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: whitesmoke;
    color: whitesmoke;
}

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

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

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

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

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

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

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

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

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

.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: #f80036;
}

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

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

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

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

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

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

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

.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: #f80036;
    border-color: transparent;
    color: #fff;
}

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

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

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

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

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

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

.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: #f80036;
}

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

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

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

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

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

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

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

.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:hover, .button.is-info.is-hovered {
    background-color: #1496ed;
    border-color: transparent;
    color: #fff;
}

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

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

.button.is-info:active, .button.is-info.is-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:hover, .button.is-info.is-outlined:focus {
    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:hover, .button.is-info.is-inverted.is-outlined:focus {
    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:hover, .button.is-success.is-hovered {
    background-color: #22c65b;
    border-color: transparent;
    color: #fff;
}

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

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

.button.is-success:active, .button.is-success.is-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:hover, .button.is-success.is-outlined:focus {
    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:hover, .button.is-success.is-inverted.is-outlined:focus {
    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, 0.7);
}

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

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

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

.button.is-warning:active, .button.is-warning.is-active {
    background-color: #ffd83d;
    border-color: transparent;
    color: rgba(0, 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, 0.7);
    color: #ffdd57;
}

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

.button.is-warning.is-inverted[disabled] {
    background-color: rgba(0, 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, 0.7) rgba(0, 0, 0, 0.7) !important;
}

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

.button.is-warning.is-outlined:hover, .button.is-warning.is-outlined:focus {
    background-color: #ffdd57;
    border-color: #ffdd57;
    color: rgba(0, 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, 0.7);
    color: rgba(0, 0, 0, 0.7);
}

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

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

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

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

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

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

.button.is-danger:active, .button.is-danger.is-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:hover, .button.is-danger.is-outlined:focus {
    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:hover, .button.is-danger.is-inverted.is-outlined:focus {
    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: #fb1043;
    border-color: transparent;
    color: #fff;
}

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

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

.button.is-primary-2:focus:not(:active), .button.is-primary-2.is-focused:not(:active) {
    -webkit-box-shadow: 0 rgba(251, 16, 67, 0.25);
    box-shadow: 0 rgba(251, 16, 67, 0.25);
}

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

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

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

.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: #fb1043;
}

.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: #fb1043;
    color: #fb1043;
}

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

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

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

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

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

.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: #ec0235;
    border-color: transparent;
    color: #fff;
}

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

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

.button.is-primary-3:focus:not(:active), .button.is-primary-3.is-focused:not(:active) {
    -webkit-box-shadow: 0 rgba(236, 2, 53, 0.25);
    box-shadow: 0 rgba(236, 2, 53, 0.25);
}

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

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

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

.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: #ec0235;
}

.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: #ec0235;
    color: #ec0235;
}

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

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

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

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

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

.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: #f1093c;
    border-color: transparent;
    color: #fff;
}

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

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

.button.is-primary-4:focus:not(:active), .button.is-primary-4.is-focused:not(:active) {
    -webkit-box-shadow: 0 rgba(241, 9, 60, 0.25);
    box-shadow: 0 rgba(241, 9, 60, 0.25);
}

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

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

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

.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: #f1093c;
}

.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: #f1093c;
    color: #f1093c;
}

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

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

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

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

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

.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: #ee0034;
    border-color: transparent;
    color: #fff;
}

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

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

.button.is-primary-5:focus:not(:active), .button.is-primary-5.is-focused:not(:active) {
    -webkit-box-shadow: 0 rgba(238, 0, 52, 0.25);
    box-shadow: 0 rgba(238, 0, 52, 0.25);
}

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

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

.button.is-primary-5.is-inverted {
    background-color: #fff;
    color: #ee0034;
}

.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: #ee0034;
}

.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: #ee0034;
    color: #ee0034;
}

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

.button.is-primary-5.is-outlined.is-loading::after {
    border-color: transparent transparent #ee0034 #ee0034 !important;
}

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

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

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

.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: #f30337;
    border-color: transparent;
    color: #fff;
}

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

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

.button.is-primary-6:focus:not(:active), .button.is-primary-6.is-focused:not(:active) {
    -webkit-box-shadow: 0 rgba(243, 3, 55, 0.25);
    box-shadow: 0 rgba(243, 3, 55, 0.25);
}

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

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

.button.is-primary-6.is-inverted {
    background-color: #fff;
    color: #f30337;
}

.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: #f30337;
}

.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: #f30337;
    color: #f30337;
}

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

.button.is-primary-6.is-outlined.is-loading::after {
    border-color: transparent transparent #f30337 #f30337 !important;
}

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

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

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

.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: #fef6f6;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

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

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

.button.is-primary-7:focus:not(:active), .button.is-primary-7.is-focused:not(:active) {
    -webkit-box-shadow: 0 rgba(254, 246, 246, 0.25);
    box-shadow: 0 rgba(254, 246, 246, 0.25);
}

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

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

.button.is-primary-7.is-inverted {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fef6f6;
}

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

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

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

.button.is-primary-7.is-outlined {
    background-color: transparent;
    border-color: #fef6f6;
    color: #fef6f6;
}

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

.button.is-primary-7.is-outlined.is-loading::after {
    border-color: transparent transparent #fef6f6 #fef6f6 !important;
}

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

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

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

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

.button.is-primary-light {
    background-color: #fafafa;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.button.is-primary-light:hover, .button.is-primary-light.is-hovered {
    background-color: #f4f4f4;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.button.is-primary-light:focus, .button.is-primary-light.is-focused {
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

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

.button.is-primary-light:active, .button.is-primary-light.is-active {
    background-color: #ededed;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

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

.button.is-primary-light.is-inverted {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fafafa;
}

.button.is-primary-light.is-inverted:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.button.is-primary-light.is-inverted[disabled] {
    background-color: rgba(0, 0, 0, 0.7);
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fafafa;
}

.button.is-primary-light.is-loading::after {
    border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important;
}

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

.button.is-primary-light.is-outlined:hover, .button.is-primary-light.is-outlined:focus {
    background-color: #fafafa;
    border-color: #fafafa;
    color: rgba(0, 0, 0, 0.7);
}

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

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

.button.is-primary-light.is-inverted.is-outlined {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.7);
    color: rgba(0, 0, 0, 0.7);
}

.button.is-primary-light.is-inverted.is-outlined:hover, .button.is-primary-light.is-inverted.is-outlined:focus {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fafafa;
}

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

.button.is-secondary {
    background-color: #101010;
    border-color: transparent;
    color: #fff;
}

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

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

.button.is-secondary:focus:not(:active), .button.is-secondary.is-focused:not(:active) {
    -webkit-box-shadow: 0 rgba(16, 16, 16, 0.25);
    box-shadow: 0 rgba(16, 16, 16, 0.25);
}

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

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

.button.is-secondary.is-inverted {
    background-color: #fff;
    color: #101010;
}

.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: #101010;
}

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

.button.is-secondary.is-outlined {
    background-color: transparent;
    border-color: #101010;
    color: #101010;
}

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

.button.is-secondary.is-outlined.is-loading::after {
    border-color: transparent transparent #101010 #101010 !important;
}

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

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

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

.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: #131313;
    border-color: transparent;
    color: #fff;
}

.button.is-secondary-2:hover, .button.is-secondary-2.is-hovered {
    background-color: #0d0d0d;
    border-color: transparent;
    color: #fff;
}

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

.button.is-secondary-2:focus:not(:active), .button.is-secondary-2.is-focused:not(:active) {
    -webkit-box-shadow: 0 rgba(19, 19, 19, 0.25);
    box-shadow: 0 rgba(19, 19, 19, 0.25);
}

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

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

.button.is-secondary-2.is-inverted {
    background-color: #fff;
    color: #131313;
}

.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: #131313;
}

.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: #131313;
    color: #131313;
}

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

.button.is-secondary-2.is-outlined.is-loading::after {
    border-color: transparent transparent #131313 #131313 !important;
}

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

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

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

.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: #232323;
    border-color: transparent;
    color: #fff;
}

.button.is-secondary-3:hover, .button.is-secondary-3.is-hovered {
    background-color: #1d1d1d;
    border-color: transparent;
    color: #fff;
}

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

.button.is-secondary-3:focus:not(:active), .button.is-secondary-3.is-focused:not(:active) {
    -webkit-box-shadow: 0 rgba(35, 35, 35, 0.25);
    box-shadow: 0 rgba(35, 35, 35, 0.25);
}

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

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

.button.is-secondary-3.is-inverted {
    background-color: #fff;
    color: #232323;
}

.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: #232323;
}

.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: #232323;
    color: #232323;
}

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

.button.is-secondary-3.is-outlined.is-loading::after {
    border-color: transparent transparent #232323 #232323 !important;
}

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

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

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

.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: #363636;
    border-color: transparent;
    color: #fff;
}

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

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

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

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

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

.button.is-secondary-4.is-inverted {
    background-color: #fff;
    color: #363636;
}

.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: #363636;
}

.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: #363636;
    color: #363636;
}

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

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

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

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

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

.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: #5c5c5c;
    border-color: transparent;
    color: #fff;
}

.button.is-secondary-5:hover, .button.is-secondary-5.is-hovered {
    background-color: #565656;
    border-color: transparent;
    color: #fff;
}

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

.button.is-secondary-5:focus:not(:active), .button.is-secondary-5.is-focused:not(:active) {
    -webkit-box-shadow: 0 rgba(92, 92, 92, 0.25);
    box-shadow: 0 rgba(92, 92, 92, 0.25);
}

.button.is-secondary-5:active, .button.is-secondary-5.is-active {
    background-color: #4f4f4f;
    border-color: transparent;
    color: #fff;
}

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

.button.is-secondary-5.is-inverted {
    background-color: #fff;
    color: #5c5c5c;
}

.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: #5c5c5c;
}

.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: #5c5c5c;
    color: #5c5c5c;
}

.button.is-secondary-5.is-outlined:hover, .button.is-secondary-5.is-outlined:focus {
    background-color: #5c5c5c;
    border-color: #5c5c5c;
    color: #fff;
}

.button.is-secondary-5.is-outlined.is-loading::after {
    border-color: transparent transparent #5c5c5c #5c5c5c !important;
}

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

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

.button.is-secondary-5.is-inverted.is-outlined:hover, .button.is-secondary-5.is-inverted.is-outlined:focus {
    background-color: #fff;
    color: #5c5c5c;
}

.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:hover, .button.is-tertiary.is-hovered {
    background-color: #a0a0a0;
    border-color: transparent;
    color: #fff;
}

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

.button.is-tertiary:focus:not(:active), .button.is-tertiary.is-focused:not(:active) {
    -webkit-box-shadow: 0 rgba(166, 166, 166, 0.25);
    box-shadow: 0 rgba(166, 166, 166, 0.25);
}

.button.is-tertiary:active, .button.is-tertiary.is-active {
    background-color: #999999;
    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:hover, .button.is-tertiary.is-outlined:focus {
    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:hover, .button.is-tertiary.is-inverted.is-outlined:focus {
    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, 0.7);
}

.button.is-tertiary-2:hover, .button.is-tertiary-2.is-hovered {
    background-color: #d2d2d2;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.button.is-tertiary-2:focus, .button.is-tertiary-2.is-focused {
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.button.is-tertiary-2:focus:not(:active), .button.is-tertiary-2.is-focused:not(:active) {
    -webkit-box-shadow: 0 rgba(216, 216, 216, 0.25);
    box-shadow: 0 rgba(216, 216, 216, 0.25);
}

.button.is-tertiary-2:active, .button.is-tertiary-2.is-active {
    background-color: #cbcbcb;
    border-color: transparent;
    color: rgba(0, 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, 0.7);
    color: #D8D8D8;
}

.button.is-tertiary-2.is-inverted:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.button.is-tertiary-2.is-inverted[disabled] {
    background-color: rgba(0, 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, 0.7) rgba(0, 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:hover, .button.is-tertiary-2.is-outlined:focus {
    background-color: #D8D8D8;
    border-color: #D8D8D8;
    color: rgba(0, 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, 0.7);
    color: rgba(0, 0, 0, 0.7);
}

.button.is-tertiary-2.is-inverted.is-outlined:hover, .button.is-tertiary-2.is-inverted.is-outlined:focus {
    background-color: rgba(0, 0, 0, 0.7);
    color: #D8D8D8;
}

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

.button.is-tertiary-3 {
    background-color: #D7D6D3;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.button.is-tertiary-3:hover, .button.is-tertiary-3.is-hovered {
    background-color: #d1d0cc;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.button.is-tertiary-3:focus, .button.is-tertiary-3.is-focused {
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.button.is-tertiary-3:focus:not(:active), .button.is-tertiary-3.is-focused:not(:active) {
    -webkit-box-shadow: 0 rgba(215, 214, 211, 0.25);
    box-shadow: 0 rgba(215, 214, 211, 0.25);
}

.button.is-tertiary-3:active, .button.is-tertiary-3.is-active {
    background-color: #cbcac6;
    border-color: transparent;
    color: rgba(0, 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, 0.7);
    color: #D7D6D3;
}

.button.is-tertiary-3.is-inverted:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.button.is-tertiary-3.is-inverted[disabled] {
    background-color: rgba(0, 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, 0.7) rgba(0, 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:hover, .button.is-tertiary-3.is-outlined:focus {
    background-color: #D7D6D3;
    border-color: #D7D6D3;
    color: rgba(0, 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, 0.7);
    color: rgba(0, 0, 0, 0.7);
}

.button.is-tertiary-3.is-inverted.is-outlined:hover, .button.is-tertiary-3.is-inverted.is-outlined:focus {
    background-color: rgba(0, 0, 0, 0.7);
    color: #D7D6D3;
}

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

.button.is-tertiary-4 {
    background-color: #AFAFAF;
    border-color: transparent;
    color: #fff;
}

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

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

.button.is-tertiary-4:focus:not(:active), .button.is-tertiary-4.is-focused:not(:active) {
    -webkit-box-shadow: 0 rgba(175, 175, 175, 0.25);
    box-shadow: 0 rgba(175, 175, 175, 0.25);
}

.button.is-tertiary-4:active, .button.is-tertiary-4.is-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:hover, .button.is-tertiary-4.is-outlined:focus {
    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:hover, .button.is-tertiary-4.is-inverted.is-outlined:focus {
    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, 0.7);
}

.button.is-tertiary-5:hover, .button.is-tertiary-5.is-hovered {
    background-color: #e4e4e4;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.button.is-tertiary-5:focus, .button.is-tertiary-5.is-focused {
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.button.is-tertiary-5:focus:not(:active), .button.is-tertiary-5.is-focused:not(:active) {
    -webkit-box-shadow: 0 rgba(234, 234, 234, 0.25);
    box-shadow: 0 rgba(234, 234, 234, 0.25);
}

.button.is-tertiary-5:active, .button.is-tertiary-5.is-active {
    background-color: #dddddd;
    border-color: transparent;
    color: rgba(0, 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, 0.7);
    color: #EAEAEA;
}

.button.is-tertiary-5.is-inverted:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.button.is-tertiary-5.is-inverted[disabled] {
    background-color: rgba(0, 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, 0.7) rgba(0, 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:hover, .button.is-tertiary-5.is-outlined:focus {
    background-color: #EAEAEA;
    border-color: #EAEAEA;
    color: rgba(0, 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, 0.7);
    color: rgba(0, 0, 0, 0.7);
}

.button.is-tertiary-5.is-inverted.is-outlined:hover, .button.is-tertiary-5.is-inverted.is-outlined:focus {
    background-color: rgba(0, 0, 0, 0.7);
    color: #EAEAEA;
}

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

.button.is-tertiary-6 {
    background-color: #B0B0B0;
    border-color: transparent;
    color: #fff;
}

.button.is-tertiary-6:hover, .button.is-tertiary-6.is-hovered {
    background-color: #aaaaaa;
    border-color: transparent;
    color: #fff;
}

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

.button.is-tertiary-6:focus:not(:active), .button.is-tertiary-6.is-focused:not(:active) {
    -webkit-box-shadow: 0 rgba(176, 176, 176, 0.25);
    box-shadow: 0 rgba(176, 176, 176, 0.25);
}

.button.is-tertiary-6:active, .button.is-tertiary-6.is-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:hover, .button.is-tertiary-6.is-outlined:focus {
    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:hover, .button.is-tertiary-6.is-inverted.is-outlined:focus {
    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:hover, .button.is-tertiary-7.is-hovered {
    background-color: #909090;
    border-color: transparent;
    color: #fff;
}

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

.button.is-tertiary-7:focus:not(:active), .button.is-tertiary-7.is-focused:not(:active) {
    -webkit-box-shadow: 0 rgba(150, 150, 150, 0.25);
    box-shadow: 0 rgba(150, 150, 150, 0.25);
}

.button.is-tertiary-7:active, .button.is-tertiary-7.is-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:hover, .button.is-tertiary-7.is-outlined:focus {
    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:hover, .button.is-tertiary-7.is-inverted.is-outlined:focus {
    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: #999999;
    border-color: transparent;
    color: #fff;
}

.button.is-tertiary-8:hover, .button.is-tertiary-8.is-hovered {
    background-color: #939393;
    border-color: transparent;
    color: #fff;
}

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

.button.is-tertiary-8:focus:not(:active), .button.is-tertiary-8.is-focused:not(:active) {
    -webkit-box-shadow: 0 rgba(153, 153, 153, 0.25);
    box-shadow: 0 rgba(153, 153, 153, 0.25);
}

.button.is-tertiary-8:active, .button.is-tertiary-8.is-active {
    background-color: #8c8c8c;
    border-color: transparent;
    color: #fff;
}

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

.button.is-tertiary-8.is-inverted {
    background-color: #fff;
    color: #999999;
}

.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: #999999;
}

.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: #999999;
    color: #999999;
}

.button.is-tertiary-8.is-outlined:hover, .button.is-tertiary-8.is-outlined:focus {
    background-color: #999999;
    border-color: #999999;
    color: #fff;
}

.button.is-tertiary-8.is-outlined.is-loading::after {
    border-color: transparent transparent #999999 #999999 !important;
}

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

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

.button.is-tertiary-8.is-inverted.is-outlined:hover, .button.is-tertiary-8.is-inverted.is-outlined:focus {
    background-color: #fff;
    color: #999999;
}

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

.button.is-tertiary-9:hover, .button.is-tertiary-9.is-hovered {
    background-color: #efefef;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.button.is-tertiary-9:focus, .button.is-tertiary-9.is-focused {
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

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

.button.is-tertiary-9:active, .button.is-tertiary-9.is-active {
    background-color: #e8e8e8;
    border-color: transparent;
    color: rgba(0, 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, 0.7);
    color: #f5f5f5;
}

.button.is-tertiary-9.is-inverted:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.button.is-tertiary-9.is-inverted[disabled] {
    background-color: rgba(0, 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, 0.7) rgba(0, 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:hover, .button.is-tertiary-9.is-outlined:focus {
    background-color: #f5f5f5;
    border-color: #f5f5f5;
    color: rgba(0, 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, 0.7);
    color: rgba(0, 0, 0, 0.7);
}

.button.is-tertiary-9.is-inverted.is-outlined:hover, .button.is-tertiary-9.is-inverted.is-outlined:focus {
    background-color: rgba(0, 0, 0, 0.7);
    color: #f5f5f5;
}

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

.button.is-small {
    border-radius: 2px;
    font-size: 0.75rem;
}

.button.is-medium {
    font-size: 1.25rem;
}

.button.is-large {
    font-size: 1.5rem;
}

.button[disabled] {
    background-color: white;
    border-color: #dbdbdb;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 0.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: whitesmoke;
    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: 0.5rem;
}

.buttons .button:not(:last-child) {
    margin-right: 0.5rem;
}

.buttons:last-child {
    margin-bottom: -0.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:hover, .buttons.has-addons .button.is-hovered {
    z-index: 2;
}

.buttons.has-addons .button:focus, .buttons.has-addons .button.is-focused, .buttons.has-addons .button:active, .buttons.has-addons .button.is-active, .buttons.has-addons .button.is-selected {
    z-index: 3;
}

.buttons.has-addons .button:focus:hover, .buttons.has-addons .button.is-focused:hover, .buttons.has-addons .button:active:hover, .buttons.has-addons .button.is-active:hover, .buttons.has-addons .button.is-selected: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: 0.25em;
}

.content p:not(:last-child),
.content dl:not(:last-child),
.content ol:not(:last-child),
.content ul:not(:last-child),
.content blockquote:not(:last-child),
.content pre:not(:last-child),
.content table:not(:last-child) {
    margin-bottom: 1em;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    color: #232323;
    font-weight: 600;
    line-height: 1.125;
}

.content h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.content h1:not(:first-child) {
    margin-top: 1em;
}

.content h2 {
    font-size: 1.75em;
    margin-bottom: 0.5714em;
}

.content h2:not(:first-child) {
    margin-top: 1.1428em;
}

.content h3 {
    font-size: 1.5em;
    margin-bottom: 0.6666em;
}

.content h3:not(:first-child) {
    margin-top: 1.3333em;
}

.content h4 {
    font-size: 1.25em;
    margin-bottom: 0.8em;
}

.content h5 {
    font-size: 1.125em;
    margin-bottom: 0.8888em;
}

.content h6 {
    font-size: 1em;
    margin-bottom: 1em;
}

.content blockquote {
    background-color: transparent;
    border-left: 4px solid #f80036;
    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: 0.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 sup,
.content sub {
    font-size: 75%;
}

.content table {
    width: 100%;
}

.content table td,
.content table th {
    border: 1px solid #dbdbdb;
    border-width: 0 0 1px;
    padding: 0.5em 0.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: 0.75rem;
}

.content.is-medium {
    font-size: 1.25rem;
}

.content.is-large {
    font-size: 1.5rem;
}

.input,
.textarea {
    background-color: #fff;
    border-color: #EAEAEA;
    color: #5c5c5c;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: 100%;
    width: 100%;
}

.input::-moz-placeholder,
.textarea::-moz-placeholder {
    color: rgba(92, 92, 92, 0.3);
}

.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
    color: rgba(92, 92, 92, 0.3);
}

.input:-moz-placeholder,
.textarea:-moz-placeholder {
    color: rgba(92, 92, 92, 0.3);
}

.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
    color: rgba(92, 92, 92, 0.3);
}

.input:hover, .input.is-hovered,
.textarea:hover,
.textarea.is-hovered {
    border-color: #EAEAEA;
}

.input:focus, .input.is-focused, .input:active, .input.is-active,
.textarea:focus,
.textarea.is-focused,
.textarea:active,
.textarea.is-active {
    border-color: #f80036;
    -webkit-box-shadow: 0 rgba(248, 0, 54, 0);
    box-shadow: 0 rgba(248, 0, 54, 0);
}

.input[disabled],
.textarea[disabled] {
    background-color: whitesmoke;
    border-color: whitesmoke;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #7a7a7a;
}

.input[disabled]::-moz-placeholder,
.textarea[disabled]::-moz-placeholder {
    color: rgba(122, 122, 122, 0.3);
}

.input[disabled]::-webkit-input-placeholder,
.textarea[disabled]::-webkit-input-placeholder {
    color: rgba(122, 122, 122, 0.3);
}

.input[disabled]:-moz-placeholder,
.textarea[disabled]:-moz-placeholder {
    color: rgba(122, 122, 122, 0.3);
}

.input[disabled]:-ms-input-placeholder,
.textarea[disabled]:-ms-input-placeholder {
    color: rgba(122, 122, 122, 0.3);
}

.input[readonly],
.textarea[readonly] {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.input.is-white,
.textarea.is-white {
    border-color: white;
}

.input.is-white:focus, .input.is-white.is-focused, .input.is-white:active, .input.is-white.is-active,
.textarea.is-white:focus,
.textarea.is-white.is-focused,
.textarea.is-white:active,
.textarea.is-white.is-active {
    -webkit-box-shadow: 0 rgba(255, 255, 255, 0.25);
    box-shadow: 0 rgba(255, 255, 255, 0.25);
}

.input.is-black,
.textarea.is-black {
    border-color: #0a0a0a;
}

.input.is-black:focus, .input.is-black.is-focused, .input.is-black:active, .input.is-black.is-active,
.textarea.is-black:focus,
.textarea.is-black.is-focused,
.textarea.is-black:active,
.textarea.is-black.is-active {
    -webkit-box-shadow: 0 rgba(10, 10, 10, 0.25);
    box-shadow: 0 rgba(10, 10, 10, 0.25);
}

.input.is-light,
.textarea.is-light {
    border-color: whitesmoke;
}

.input.is-light:focus, .input.is-light.is-focused, .input.is-light:active, .input.is-light.is-active,
.textarea.is-light:focus,
.textarea.is-light.is-focused,
.textarea.is-light:active,
.textarea.is-light.is-active {
    -webkit-box-shadow: 0 rgba(245, 245, 245, 0.25);
    box-shadow: 0 rgba(245, 245, 245, 0.25);
}

.input.is-dark,
.textarea.is-dark {
    border-color: #363636;
}

.input.is-dark:focus, .input.is-dark.is-focused, .input.is-dark:active, .input.is-dark.is-active,
.textarea.is-dark:focus,
.textarea.is-dark.is-focused,
.textarea.is-dark:active,
.textarea.is-dark.is-active {
    -webkit-box-shadow: 0 rgba(54, 54, 54, 0.25);
    box-shadow: 0 rgba(54, 54, 54, 0.25);
}

.input.is-primary,
.textarea.is-primary {
    border-color: #f80036;
}

.input.is-primary:focus, .input.is-primary.is-focused, .input.is-primary:active, .input.is-primary.is-active,
.textarea.is-primary:focus,
.textarea.is-primary.is-focused,
.textarea.is-primary:active,
.textarea.is-primary.is-active {
    -webkit-box-shadow: 0 rgba(248, 0, 54, 0.25);
    box-shadow: 0 rgba(248, 0, 54, 0.25);
}

.input.is-link,
.textarea.is-link {
    border-color: #f80036;
}

.input.is-link:focus, .input.is-link.is-focused, .input.is-link:active, .input.is-link.is-active,
.textarea.is-link:focus,
.textarea.is-link.is-focused,
.textarea.is-link:active,
.textarea.is-link.is-active {
    -webkit-box-shadow: 0 rgba(248, 0, 54, 0.25);
    box-shadow: 0 rgba(248, 0, 54, 0.25);
}

.input.is-info,
.textarea.is-info {
    border-color: #209cee;
}

.input.is-info:focus, .input.is-info.is-focused, .input.is-info:active, .input.is-info.is-active,
.textarea.is-info:focus,
.textarea.is-info.is-focused,
.textarea.is-info:active,
.textarea.is-info.is-active {
    -webkit-box-shadow: 0 rgba(32, 156, 238, 0.25);
    box-shadow: 0 rgba(32, 156, 238, 0.25);
}

.input.is-success,
.textarea.is-success {
    border-color: #23d160;
}

.input.is-success:focus, .input.is-success.is-focused, .input.is-success:active, .input.is-success.is-active,
.textarea.is-success:focus,
.textarea.is-success.is-focused,
.textarea.is-success:active,
.textarea.is-success.is-active {
    -webkit-box-shadow: 0 rgba(35, 209, 96, 0.25);
    box-shadow: 0 rgba(35, 209, 96, 0.25);
}

.input.is-warning,
.textarea.is-warning {
    border-color: #ffdd57;
}

.input.is-warning:focus, .input.is-warning.is-focused, .input.is-warning:active, .input.is-warning.is-active,
.textarea.is-warning:focus,
.textarea.is-warning.is-focused,
.textarea.is-warning:active,
.textarea.is-warning.is-active {
    -webkit-box-shadow: 0 rgba(255, 221, 87, 0.25);
    box-shadow: 0 rgba(255, 221, 87, 0.25);
}

.input.is-danger,
.textarea.is-danger {
    border-color: #ff3860;
}

.input.is-danger:focus, .input.is-danger.is-focused, .input.is-danger:active, .input.is-danger.is-active,
.textarea.is-danger:focus,
.textarea.is-danger.is-focused,
.textarea.is-danger:active,
.textarea.is-danger.is-active {
    -webkit-box-shadow: 0 rgba(255, 56, 96, 0.25);
    box-shadow: 0 rgba(255, 56, 96, 0.25);
}

.input.is-primary-2,
.textarea.is-primary-2 {
    border-color: #fb1043;
}

.input.is-primary-2:focus, .input.is-primary-2.is-focused, .input.is-primary-2:active, .input.is-primary-2.is-active,
.textarea.is-primary-2:focus,
.textarea.is-primary-2.is-focused,
.textarea.is-primary-2:active,
.textarea.is-primary-2.is-active {
    -webkit-box-shadow: 0 rgba(251, 16, 67, 0.25);
    box-shadow: 0 rgba(251, 16, 67, 0.25);
}

.input.is-primary-3,
.textarea.is-primary-3 {
    border-color: #ec0235;
}

.input.is-primary-3:focus, .input.is-primary-3.is-focused, .input.is-primary-3:active, .input.is-primary-3.is-active,
.textarea.is-primary-3:focus,
.textarea.is-primary-3.is-focused,
.textarea.is-primary-3:active,
.textarea.is-primary-3.is-active {
    -webkit-box-shadow: 0 rgba(236, 2, 53, 0.25);
    box-shadow: 0 rgba(236, 2, 53, 0.25);
}

.input.is-primary-4,
.textarea.is-primary-4 {
    border-color: #f1093c;
}

.input.is-primary-4:focus, .input.is-primary-4.is-focused, .input.is-primary-4:active, .input.is-primary-4.is-active,
.textarea.is-primary-4:focus,
.textarea.is-primary-4.is-focused,
.textarea.is-primary-4:active,
.textarea.is-primary-4.is-active {
    -webkit-box-shadow: 0 rgba(241, 9, 60, 0.25);
    box-shadow: 0 rgba(241, 9, 60, 0.25);
}

.input.is-primary-5,
.textarea.is-primary-5 {
    border-color: #ee0034;
}

.input.is-primary-5:focus, .input.is-primary-5.is-focused, .input.is-primary-5:active, .input.is-primary-5.is-active,
.textarea.is-primary-5:focus,
.textarea.is-primary-5.is-focused,
.textarea.is-primary-5:active,
.textarea.is-primary-5.is-active {
    -webkit-box-shadow: 0 rgba(238, 0, 52, 0.25);
    box-shadow: 0 rgba(238, 0, 52, 0.25);
}

.input.is-primary-6,
.textarea.is-primary-6 {
    border-color: #f30337;
}

.input.is-primary-6:focus, .input.is-primary-6.is-focused, .input.is-primary-6:active, .input.is-primary-6.is-active,
.textarea.is-primary-6:focus,
.textarea.is-primary-6.is-focused,
.textarea.is-primary-6:active,
.textarea.is-primary-6.is-active {
    -webkit-box-shadow: 0 rgba(243, 3, 55, 0.25);
    box-shadow: 0 rgba(243, 3, 55, 0.25);
}

.input.is-primary-7,
.textarea.is-primary-7 {
    border-color: #fef6f6;
}

.input.is-primary-7:focus, .input.is-primary-7.is-focused, .input.is-primary-7:active, .input.is-primary-7.is-active,
.textarea.is-primary-7:focus,
.textarea.is-primary-7.is-focused,
.textarea.is-primary-7:active,
.textarea.is-primary-7.is-active {
    -webkit-box-shadow: 0 rgba(254, 246, 246, 0.25);
    box-shadow: 0 rgba(254, 246, 246, 0.25);
}

.input.is-primary-light,
.textarea.is-primary-light {
    border-color: #fafafa;
}

.input.is-primary-light:focus, .input.is-primary-light.is-focused, .input.is-primary-light:active, .input.is-primary-light.is-active,
.textarea.is-primary-light:focus,
.textarea.is-primary-light.is-focused,
.textarea.is-primary-light:active,
.textarea.is-primary-light.is-active {
    -webkit-box-shadow: 0 rgba(250, 250, 250, 0.25);
    box-shadow: 0 rgba(250, 250, 250, 0.25);
}

.input.is-secondary,
.textarea.is-secondary {
    border-color: #101010;
}

.input.is-secondary:focus, .input.is-secondary.is-focused, .input.is-secondary:active, .input.is-secondary.is-active,
.textarea.is-secondary:focus,
.textarea.is-secondary.is-focused,
.textarea.is-secondary:active,
.textarea.is-secondary.is-active {
    -webkit-box-shadow: 0 rgba(16, 16, 16, 0.25);
    box-shadow: 0 rgba(16, 16, 16, 0.25);
}

.input.is-secondary-2,
.textarea.is-secondary-2 {
    border-color: #131313;
}

.input.is-secondary-2:focus, .input.is-secondary-2.is-focused, .input.is-secondary-2:active, .input.is-secondary-2.is-active,
.textarea.is-secondary-2:focus,
.textarea.is-secondary-2.is-focused,
.textarea.is-secondary-2:active,
.textarea.is-secondary-2.is-active {
    -webkit-box-shadow: 0 rgba(19, 19, 19, 0.25);
    box-shadow: 0 rgba(19, 19, 19, 0.25);
}

.input.is-secondary-3,
.textarea.is-secondary-3 {
    border-color: #232323;
}

.input.is-secondary-3:focus, .input.is-secondary-3.is-focused, .input.is-secondary-3:active, .input.is-secondary-3.is-active,
.textarea.is-secondary-3:focus,
.textarea.is-secondary-3.is-focused,
.textarea.is-secondary-3:active,
.textarea.is-secondary-3.is-active {
    -webkit-box-shadow: 0 rgba(35, 35, 35, 0.25);
    box-shadow: 0 rgba(35, 35, 35, 0.25);
}

.input.is-secondary-4,
.textarea.is-secondary-4 {
    border-color: #363636;
}

.input.is-secondary-4:focus, .input.is-secondary-4.is-focused, .input.is-secondary-4:active, .input.is-secondary-4.is-active,
.textarea.is-secondary-4:focus,
.textarea.is-secondary-4.is-focused,
.textarea.is-secondary-4:active,
.textarea.is-secondary-4.is-active {
    -webkit-box-shadow: 0 rgba(54, 54, 54, 0.25);
    box-shadow: 0 rgba(54, 54, 54, 0.25);
}

.input.is-secondary-5,
.textarea.is-secondary-5 {
    border-color: #5c5c5c;
}

.input.is-secondary-5:focus, .input.is-secondary-5.is-focused, .input.is-secondary-5:active, .input.is-secondary-5.is-active,
.textarea.is-secondary-5:focus,
.textarea.is-secondary-5.is-focused,
.textarea.is-secondary-5:active,
.textarea.is-secondary-5.is-active {
    -webkit-box-shadow: 0 rgba(92, 92, 92, 0.25);
    box-shadow: 0 rgba(92, 92, 92, 0.25);
}

.input.is-tertiary,
.textarea.is-tertiary {
    border-color: #A6A6A6;
}

.input.is-tertiary:focus, .input.is-tertiary.is-focused, .input.is-tertiary:active, .input.is-tertiary.is-active,
.textarea.is-tertiary:focus,
.textarea.is-tertiary.is-focused,
.textarea.is-tertiary:active,
.textarea.is-tertiary.is-active {
    -webkit-box-shadow: 0 rgba(166, 166, 166, 0.25);
    box-shadow: 0 rgba(166, 166, 166, 0.25);
}

.input.is-tertiary-2,
.textarea.is-tertiary-2 {
    border-color: #D8D8D8;
}

.input.is-tertiary-2:focus, .input.is-tertiary-2.is-focused, .input.is-tertiary-2:active, .input.is-tertiary-2.is-active,
.textarea.is-tertiary-2:focus,
.textarea.is-tertiary-2.is-focused,
.textarea.is-tertiary-2:active,
.textarea.is-tertiary-2.is-active {
    -webkit-box-shadow: 0 rgba(216, 216, 216, 0.25);
    box-shadow: 0 rgba(216, 216, 216, 0.25);
}

.input.is-tertiary-3,
.textarea.is-tertiary-3 {
    border-color: #D7D6D3;
}

.input.is-tertiary-3:focus, .input.is-tertiary-3.is-focused, .input.is-tertiary-3:active, .input.is-tertiary-3.is-active,
.textarea.is-tertiary-3:focus,
.textarea.is-tertiary-3.is-focused,
.textarea.is-tertiary-3:active,
.textarea.is-tertiary-3.is-active {
    -webkit-box-shadow: 0 rgba(215, 214, 211, 0.25);
    box-shadow: 0 rgba(215, 214, 211, 0.25);
}

.input.is-tertiary-4,
.textarea.is-tertiary-4 {
    border-color: #AFAFAF;
}

.input.is-tertiary-4:focus, .input.is-tertiary-4.is-focused, .input.is-tertiary-4:active, .input.is-tertiary-4.is-active,
.textarea.is-tertiary-4:focus,
.textarea.is-tertiary-4.is-focused,
.textarea.is-tertiary-4:active,
.textarea.is-tertiary-4.is-active {
    -webkit-box-shadow: 0 rgba(175, 175, 175, 0.25);
    box-shadow: 0 rgba(175, 175, 175, 0.25);
}

.input.is-tertiary-5,
.textarea.is-tertiary-5 {
    border-color: #EAEAEA;
}

.input.is-tertiary-5:focus, .input.is-tertiary-5.is-focused, .input.is-tertiary-5:active, .input.is-tertiary-5.is-active,
.textarea.is-tertiary-5:focus,
.textarea.is-tertiary-5.is-focused,
.textarea.is-tertiary-5:active,
.textarea.is-tertiary-5.is-active {
    -webkit-box-shadow: 0 rgba(234, 234, 234, 0.25);
    box-shadow: 0 rgba(234, 234, 234, 0.25);
}

.input.is-tertiary-6,
.textarea.is-tertiary-6 {
    border-color: #B0B0B0;
}

.input.is-tertiary-6:focus, .input.is-tertiary-6.is-focused, .input.is-tertiary-6:active, .input.is-tertiary-6.is-active,
.textarea.is-tertiary-6:focus,
.textarea.is-tertiary-6.is-focused,
.textarea.is-tertiary-6:active,
.textarea.is-tertiary-6.is-active {
    -webkit-box-shadow: 0 rgba(176, 176, 176, 0.25);
    box-shadow: 0 rgba(176, 176, 176, 0.25);
}

.input.is-tertiary-7,
.textarea.is-tertiary-7 {
    border-color: #969696;
}

.input.is-tertiary-7:focus, .input.is-tertiary-7.is-focused, .input.is-tertiary-7:active, .input.is-tertiary-7.is-active,
.textarea.is-tertiary-7:focus,
.textarea.is-tertiary-7.is-focused,
.textarea.is-tertiary-7:active,
.textarea.is-tertiary-7.is-active {
    -webkit-box-shadow: 0 rgba(150, 150, 150, 0.25);
    box-shadow: 0 rgba(150, 150, 150, 0.25);
}

.input.is-tertiary-8,
.textarea.is-tertiary-8 {
    border-color: #999999;
}

.input.is-tertiary-8:focus, .input.is-tertiary-8.is-focused, .input.is-tertiary-8:active, .input.is-tertiary-8.is-active,
.textarea.is-tertiary-8:focus,
.textarea.is-tertiary-8.is-focused,
.textarea.is-tertiary-8:active,
.textarea.is-tertiary-8.is-active {
    -webkit-box-shadow: 0 rgba(153, 153, 153, 0.25);
    box-shadow: 0 rgba(153, 153, 153, 0.25);
}

.input.is-tertiary-9,
.textarea.is-tertiary-9 {
    border-color: #f5f5f5;
}

.input.is-tertiary-9:focus, .input.is-tertiary-9.is-focused, .input.is-tertiary-9:active, .input.is-tertiary-9.is-active,
.textarea.is-tertiary-9:focus,
.textarea.is-tertiary-9.is-focused,
.textarea.is-tertiary-9:active,
.textarea.is-tertiary-9.is-active {
    -webkit-box-shadow: 0 rgba(245, 245, 245, 0.25);
    box-shadow: 0 rgba(245, 245, 245, 0.25);
}

.input.is-small,
.textarea.is-small {
    border-radius: 2px;
    font-size: 0.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: 0.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: 0.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: #f80036;
    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: #5c5c5c;
    cursor: pointer;
    display: block;
    font-size: 1em;
    max-width: 100%;
    outline: none;
}

.select select::-moz-placeholder {
    color: rgba(92, 92, 92, 0.3);
}

.select select::-webkit-input-placeholder {
    color: rgba(92, 92, 92, 0.3);
}

.select select:-moz-placeholder {
    color: rgba(92, 92, 92, 0.3);
}

.select select:-ms-input-placeholder {
    color: rgba(92, 92, 92, 0.3);
}

.select select:hover, .select select.is-hovered {
    border-color: #EAEAEA;
}

.select select:focus, .select select.is-focused, .select select:active, .select select.is-active {
    border-color: #f80036;
    -webkit-box-shadow: 0 rgba(248, 0, 54, 0);
    box-shadow: 0 rgba(248, 0, 54, 0);
}

.select select[disabled] {
    background-color: whitesmoke;
    border-color: whitesmoke;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #7a7a7a;
}

.select select[disabled]::-moz-placeholder {
    color: rgba(122, 122, 122, 0.3);
}

.select select[disabled]::-webkit-input-placeholder {
    color: rgba(122, 122, 122, 0.3);
}

.select select[disabled]:-moz-placeholder {
    color: rgba(122, 122, 122, 0.3);
}

.select select[disabled]:-ms-input-placeholder {
    color: rgba(122, 122, 122, 0.3);
}

.select select::-ms-expand {
    display: none;
}

.select select[disabled]:hover {
    border-color: whitesmoke;
}

.select select:not([multiple]) {
    padding-right: 2.5em;
}

.select select[multiple] {
    height: initial;
    padding: 0;
}

.select select[multiple] option {
    padding: 0.5em 1em;
}

.select:not(.is-multiple):not(.is-loading):hover::after {
    border-color: #EAEAEA;
}

.select.is-white:not(:hover)::after {
    border-color: white;
}

.select.is-white select {
    border-color: white;
}

.select.is-white select:hover, .select.is-white select.is-hovered {
    border-color: #f2f2f2;
}

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

.select.is-black:not(:hover)::after {
    border-color: #0a0a0a;
}

.select.is-black select {
    border-color: #0a0a0a;
}

.select.is-black select:hover, .select.is-black select.is-hovered {
    border-color: black;
}

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

.select.is-light:not(:hover)::after {
    border-color: whitesmoke;
}

.select.is-light select {
    border-color: whitesmoke;
}

.select.is-light select:hover, .select.is-light select.is-hovered {
    border-color: #e8e8e8;
}

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

.select.is-dark:not(:hover)::after {
    border-color: #363636;
}

.select.is-dark select {
    border-color: #363636;
}

.select.is-dark select:hover, .select.is-dark select.is-hovered {
    border-color: #292929;
}

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

.select.is-primary:not(:hover)::after {
    border-color: #f80036;
}

.select.is-primary select {
    border-color: #f80036;
}

.select.is-primary select:hover, .select.is-primary select.is-hovered {
    border-color: #df0030;
}

.select.is-primary select:focus, .select.is-primary select.is-focused, .select.is-primary select:active, .select.is-primary select.is-active {
    -webkit-box-shadow: 0 rgba(248, 0, 54, 0.25);
    box-shadow: 0 rgba(248, 0, 54, 0.25);
}

.select.is-link:not(:hover)::after {
    border-color: #f80036;
}

.select.is-link select {
    border-color: #f80036;
}

.select.is-link select:hover, .select.is-link select.is-hovered {
    border-color: #df0030;
}

.select.is-link select:focus, .select.is-link select.is-focused, .select.is-link select:active, .select.is-link select.is-active {
    -webkit-box-shadow: 0 rgba(248, 0, 54, 0.25);
    box-shadow: 0 rgba(248, 0, 54, 0.25);
}

.select.is-info:not(:hover)::after {
    border-color: #209cee;
}

.select.is-info select {
    border-color: #209cee;
}

.select.is-info select:hover, .select.is-info select.is-hovered {
    border-color: #118fe4;
}

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

.select.is-success:not(:hover)::after {
    border-color: #23d160;
}

.select.is-success select {
    border-color: #23d160;
}

.select.is-success select:hover, .select.is-success select.is-hovered {
    border-color: #20bc56;
}

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

.select.is-warning:not(:hover)::after {
    border-color: #ffdd57;
}

.select.is-warning select {
    border-color: #ffdd57;
}

.select.is-warning select:hover, .select.is-warning select.is-hovered {
    border-color: #ffd83d;
}

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

.select.is-danger:not(:hover)::after {
    border-color: #ff3860;
}

.select.is-danger select {
    border-color: #ff3860;
}

.select.is-danger select:hover, .select.is-danger select.is-hovered {
    border-color: #ff1f4b;
}

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

.select.is-primary-2:not(:hover)::after {
    border-color: #fb1043;
}

.select.is-primary-2 select {
    border-color: #fb1043;
}

.select.is-primary-2 select:hover, .select.is-primary-2 select.is-hovered {
    border-color: #ee0437;
}

.select.is-primary-2 select:focus, .select.is-primary-2 select.is-focused, .select.is-primary-2 select:active, .select.is-primary-2 select.is-active {
    -webkit-box-shadow: 0 rgba(251, 16, 67, 0.25);
    box-shadow: 0 rgba(251, 16, 67, 0.25);
}

.select.is-primary-3:not(:hover)::after {
    border-color: #ec0235;
}

.select.is-primary-3 select {
    border-color: #ec0235;
}

.select.is-primary-3 select:hover, .select.is-primary-3 select.is-hovered {
    border-color: #d3022f;
}

.select.is-primary-3 select:focus, .select.is-primary-3 select.is-focused, .select.is-primary-3 select:active, .select.is-primary-3 select.is-active {
    -webkit-box-shadow: 0 rgba(236, 2, 53, 0.25);
    box-shadow: 0 rgba(236, 2, 53, 0.25);
}

.select.is-primary-4:not(:hover)::after {
    border-color: #f1093c;
}

.select.is-primary-4 select {
    border-color: #f1093c;
}

.select.is-primary-4 select:hover, .select.is-primary-4 select.is-hovered {
    border-color: #d80836;
}

.select.is-primary-4 select:focus, .select.is-primary-4 select.is-focused, .select.is-primary-4 select:active, .select.is-primary-4 select.is-active {
    -webkit-box-shadow: 0 rgba(241, 9, 60, 0.25);
    box-shadow: 0 rgba(241, 9, 60, 0.25);
}

.select.is-primary-5:not(:hover)::after {
    border-color: #ee0034;
}

.select.is-primary-5 select {
    border-color: #ee0034;
}

.select.is-primary-5 select:hover, .select.is-primary-5 select.is-hovered {
    border-color: #d5002e;
}

.select.is-primary-5 select:focus, .select.is-primary-5 select.is-focused, .select.is-primary-5 select:active, .select.is-primary-5 select.is-active {
    -webkit-box-shadow: 0 rgba(238, 0, 52, 0.25);
    box-shadow: 0 rgba(238, 0, 52, 0.25);
}

.select.is-primary-6:not(:hover)::after {
    border-color: #f30337;
}

.select.is-primary-6 select {
    border-color: #f30337;
}

.select.is-primary-6 select:hover, .select.is-primary-6 select.is-hovered {
    border-color: #da0331;
}

.select.is-primary-6 select:focus, .select.is-primary-6 select.is-focused, .select.is-primary-6 select:active, .select.is-primary-6 select.is-active {
    -webkit-box-shadow: 0 rgba(243, 3, 55, 0.25);
    box-shadow: 0 rgba(243, 3, 55, 0.25);
}

.select.is-primary-7:not(:hover)::after {
    border-color: #fef6f6;
}

.select.is-primary-7 select {
    border-color: #fef6f6;
}

.select.is-primary-7 select:hover, .select.is-primary-7 select.is-hovered {
    border-color: #fbdfdf;
}

.select.is-primary-7 select:focus, .select.is-primary-7 select.is-focused, .select.is-primary-7 select:active, .select.is-primary-7 select.is-active {
    -webkit-box-shadow: 0 rgba(254, 246, 246, 0.25);
    box-shadow: 0 rgba(254, 246, 246, 0.25);
}

.select.is-primary-light:not(:hover)::after {
    border-color: #fafafa;
}

.select.is-primary-light select {
    border-color: #fafafa;
}

.select.is-primary-light select:hover, .select.is-primary-light select.is-hovered {
    border-color: #ededed;
}

.select.is-primary-light select:focus, .select.is-primary-light select.is-focused, .select.is-primary-light select:active, .select.is-primary-light select.is-active {
    -webkit-box-shadow: 0 rgba(250, 250, 250, 0.25);
    box-shadow: 0 rgba(250, 250, 250, 0.25);
}

.select.is-secondary:not(:hover)::after {
    border-color: #101010;
}

.select.is-secondary select {
    border-color: #101010;
}

.select.is-secondary select:hover, .select.is-secondary select.is-hovered {
    border-color: #030303;
}

.select.is-secondary select:focus, .select.is-secondary select.is-focused, .select.is-secondary select:active, .select.is-secondary select.is-active {
    -webkit-box-shadow: 0 rgba(16, 16, 16, 0.25);
    box-shadow: 0 rgba(16, 16, 16, 0.25);
}

.select.is-secondary-2:not(:hover)::after {
    border-color: #131313;
}

.select.is-secondary-2 select {
    border-color: #131313;
}

.select.is-secondary-2 select:hover, .select.is-secondary-2 select.is-hovered {
    border-color: #060606;
}

.select.is-secondary-2 select:focus, .select.is-secondary-2 select.is-focused, .select.is-secondary-2 select:active, .select.is-secondary-2 select.is-active {
    -webkit-box-shadow: 0 rgba(19, 19, 19, 0.25);
    box-shadow: 0 rgba(19, 19, 19, 0.25);
}

.select.is-secondary-3:not(:hover)::after {
    border-color: #232323;
}

.select.is-secondary-3 select {
    border-color: #232323;
}

.select.is-secondary-3 select:hover, .select.is-secondary-3 select.is-hovered {
    border-color: #161616;
}

.select.is-secondary-3 select:focus, .select.is-secondary-3 select.is-focused, .select.is-secondary-3 select:active, .select.is-secondary-3 select.is-active {
    -webkit-box-shadow: 0 rgba(35, 35, 35, 0.25);
    box-shadow: 0 rgba(35, 35, 35, 0.25);
}

.select.is-secondary-4:not(:hover)::after {
    border-color: #363636;
}

.select.is-secondary-4 select {
    border-color: #363636;
}

.select.is-secondary-4 select:hover, .select.is-secondary-4 select.is-hovered {
    border-color: #292929;
}

.select.is-secondary-4 select:focus, .select.is-secondary-4 select.is-focused, .select.is-secondary-4 select:active, .select.is-secondary-4 select.is-active {
    -webkit-box-shadow: 0 rgba(54, 54, 54, 0.25);
    box-shadow: 0 rgba(54, 54, 54, 0.25);
}

.select.is-secondary-5:not(:hover)::after {
    border-color: #5c5c5c;
}

.select.is-secondary-5 select {
    border-color: #5c5c5c;
}

.select.is-secondary-5 select:hover, .select.is-secondary-5 select.is-hovered {
    border-color: #4f4f4f;
}

.select.is-secondary-5 select:focus, .select.is-secondary-5 select.is-focused, .select.is-secondary-5 select:active, .select.is-secondary-5 select.is-active {
    -webkit-box-shadow: 0 rgba(92, 92, 92, 0.25);
    box-shadow: 0 rgba(92, 92, 92, 0.25);
}

.select.is-tertiary:not(:hover)::after {
    border-color: #A6A6A6;
}

.select.is-tertiary select {
    border-color: #A6A6A6;
}

.select.is-tertiary select:hover, .select.is-tertiary select.is-hovered {
    border-color: #999999;
}

.select.is-tertiary select:focus, .select.is-tertiary select.is-focused, .select.is-tertiary select:active, .select.is-tertiary select.is-active {
    -webkit-box-shadow: 0 rgba(166, 166, 166, 0.25);
    box-shadow: 0 rgba(166, 166, 166, 0.25);
}

.select.is-tertiary-2:not(:hover)::after {
    border-color: #D8D8D8;
}

.select.is-tertiary-2 select {
    border-color: #D8D8D8;
}

.select.is-tertiary-2 select:hover, .select.is-tertiary-2 select.is-hovered {
    border-color: #cbcbcb;
}

.select.is-tertiary-2 select:focus, .select.is-tertiary-2 select.is-focused, .select.is-tertiary-2 select:active, .select.is-tertiary-2 select.is-active {
    -webkit-box-shadow: 0 rgba(216, 216, 216, 0.25);
    box-shadow: 0 rgba(216, 216, 216, 0.25);
}

.select.is-tertiary-3:not(:hover)::after {
    border-color: #D7D6D3;
}

.select.is-tertiary-3 select {
    border-color: #D7D6D3;
}

.select.is-tertiary-3 select:hover, .select.is-tertiary-3 select.is-hovered {
    border-color: #cbcac6;
}

.select.is-tertiary-3 select:focus, .select.is-tertiary-3 select.is-focused, .select.is-tertiary-3 select:active, .select.is-tertiary-3 select.is-active {
    -webkit-box-shadow: 0 rgba(215, 214, 211, 0.25);
    box-shadow: 0 rgba(215, 214, 211, 0.25);
}

.select.is-tertiary-4:not(:hover)::after {
    border-color: #AFAFAF;
}

.select.is-tertiary-4 select {
    border-color: #AFAFAF;
}

.select.is-tertiary-4 select:hover, .select.is-tertiary-4 select.is-hovered {
    border-color: #a2a2a2;
}

.select.is-tertiary-4 select:focus, .select.is-tertiary-4 select.is-focused, .select.is-tertiary-4 select:active, .select.is-tertiary-4 select.is-active {
    -webkit-box-shadow: 0 rgba(175, 175, 175, 0.25);
    box-shadow: 0 rgba(175, 175, 175, 0.25);
}

.select.is-tertiary-5:not(:hover)::after {
    border-color: #EAEAEA;
}

.select.is-tertiary-5 select {
    border-color: #EAEAEA;
}

.select.is-tertiary-5 select:hover, .select.is-tertiary-5 select.is-hovered {
    border-color: #dddddd;
}

.select.is-tertiary-5 select:focus, .select.is-tertiary-5 select.is-focused, .select.is-tertiary-5 select:active, .select.is-tertiary-5 select.is-active {
    -webkit-box-shadow: 0 rgba(234, 234, 234, 0.25);
    box-shadow: 0 rgba(234, 234, 234, 0.25);
}

.select.is-tertiary-6:not(:hover)::after {
    border-color: #B0B0B0;
}

.select.is-tertiary-6 select {
    border-color: #B0B0B0;
}

.select.is-tertiary-6 select:hover, .select.is-tertiary-6 select.is-hovered {
    border-color: #a3a3a3;
}

.select.is-tertiary-6 select:focus, .select.is-tertiary-6 select.is-focused, .select.is-tertiary-6 select:active, .select.is-tertiary-6 select.is-active {
    -webkit-box-shadow: 0 rgba(176, 176, 176, 0.25);
    box-shadow: 0 rgba(176, 176, 176, 0.25);
}

.select.is-tertiary-7:not(:hover)::after {
    border-color: #969696;
}

.select.is-tertiary-7 select {
    border-color: #969696;
}

.select.is-tertiary-7 select:hover, .select.is-tertiary-7 select.is-hovered {
    border-color: #898989;
}

.select.is-tertiary-7 select:focus, .select.is-tertiary-7 select.is-focused, .select.is-tertiary-7 select:active, .select.is-tertiary-7 select.is-active {
    -webkit-box-shadow: 0 rgba(150, 150, 150, 0.25);
    box-shadow: 0 rgba(150, 150, 150, 0.25);
}

.select.is-tertiary-8:not(:hover)::after {
    border-color: #999999;
}

.select.is-tertiary-8 select {
    border-color: #999999;
}

.select.is-tertiary-8 select:hover, .select.is-tertiary-8 select.is-hovered {
    border-color: #8c8c8c;
}

.select.is-tertiary-8 select:focus, .select.is-tertiary-8 select.is-focused, .select.is-tertiary-8 select:active, .select.is-tertiary-8 select.is-active {
    -webkit-box-shadow: 0 rgba(153, 153, 153, 0.25);
    box-shadow: 0 rgba(153, 153, 153, 0.25);
}

.select.is-tertiary-9:not(:hover)::after {
    border-color: #f5f5f5;
}

.select.is-tertiary-9 select {
    border-color: #f5f5f5;
}

.select.is-tertiary-9 select:hover, .select.is-tertiary-9 select.is-hovered {
    border-color: #e8e8e8;
}

.select.is-tertiary-9 select:focus, .select.is-tertiary-9 select.is-focused, .select.is-tertiary-9 select:active, .select.is-tertiary-9 select.is-active {
    -webkit-box-shadow: 0 rgba(245, 245, 245, 0.25);
    box-shadow: 0 rgba(245, 245, 245, 0.25);
}

.select.is-small {
    border-radius: 2px;
    font-size: 0.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: 0.625em;
    top: 0.625em;
    -webkit-transform: none;
    transform: none;
}

.select.is-loading.is-small:after {
    font-size: 0.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: white;
    border-color: transparent;
    color: #0a0a0a;
}

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

.file.is-white:focus .file-cta, .file.is-white.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25);
    color: #0a0a0a;
}

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

.file.is-black .file-cta {
    background-color: #0a0a0a;
    border-color: transparent;
    color: white;
}

.file.is-black:hover .file-cta, .file.is-black.is-hovered .file-cta {
    background-color: #040404;
    border-color: transparent;
    color: white;
}

.file.is-black:focus .file-cta, .file.is-black.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25);
    box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25);
    color: white;
}

.file.is-black:active .file-cta, .file.is-black.is-active .file-cta {
    background-color: black;
    border-color: transparent;
    color: white;
}

.file.is-light .file-cta {
    background-color: whitesmoke;
    border-color: transparent;
    color: #363636;
}

.file.is-light:hover .file-cta, .file.is-light.is-hovered .file-cta {
    background-color: #eeeeee;
    border-color: transparent;
    color: #363636;
}

.file.is-light:focus .file-cta, .file.is-light.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25);
    box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25);
    color: #363636;
}

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

.file.is-dark .file-cta {
    background-color: #363636;
    border-color: transparent;
    color: whitesmoke;
}

.file.is-dark:hover .file-cta, .file.is-dark.is-hovered .file-cta {
    background-color: #2f2f2f;
    border-color: transparent;
    color: whitesmoke;
}

.file.is-dark:focus .file-cta, .file.is-dark.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25);
    box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25);
    color: whitesmoke;
}

.file.is-dark:active .file-cta, .file.is-dark.is-active .file-cta {
    background-color: #292929;
    border-color: transparent;
    color: whitesmoke;
}

.file.is-primary .file-cta {
    background-color: #f80036;
    border-color: transparent;
    color: #fff;
}

.file.is-primary:hover .file-cta, .file.is-primary.is-hovered .file-cta {
    background-color: #eb0033;
    border-color: transparent;
    color: #fff;
}

.file.is-primary:focus .file-cta, .file.is-primary.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(248, 0, 54, 0.25);
    box-shadow: 0 0 0.5em rgba(248, 0, 54, 0.25);
    color: #fff;
}

.file.is-primary:active .file-cta, .file.is-primary.is-active .file-cta {
    background-color: #df0030;
    border-color: transparent;
    color: #fff;
}

.file.is-link .file-cta {
    background-color: #f80036;
    border-color: transparent;
    color: #fff;
}

.file.is-link:hover .file-cta, .file.is-link.is-hovered .file-cta {
    background-color: #eb0033;
    border-color: transparent;
    color: #fff;
}

.file.is-link:focus .file-cta, .file.is-link.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(248, 0, 54, 0.25);
    box-shadow: 0 0 0.5em rgba(248, 0, 54, 0.25);
    color: #fff;
}

.file.is-link:active .file-cta, .file.is-link.is-active .file-cta {
    background-color: #df0030;
    border-color: transparent;
    color: #fff;
}

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

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

.file.is-info:focus .file-cta, .file.is-info.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(32, 156, 238, 0.25);
    box-shadow: 0 0 0.5em rgba(32, 156, 238, 0.25);
    color: #fff;
}

.file.is-info:active .file-cta, .file.is-info.is-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:hover .file-cta, .file.is-success.is-hovered .file-cta {
    background-color: #22c65b;
    border-color: transparent;
    color: #fff;
}

.file.is-success:focus .file-cta, .file.is-success.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(35, 209, 96, 0.25);
    box-shadow: 0 0 0.5em rgba(35, 209, 96, 0.25);
    color: #fff;
}

.file.is-success:active .file-cta, .file.is-success.is-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, 0.7);
}

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

.file.is-warning:focus .file-cta, .file.is-warning.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.25);
    box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.25);
    color: rgba(0, 0, 0, 0.7);
}

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

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

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

.file.is-danger:focus .file-cta, .file.is-danger.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(255, 56, 96, 0.25);
    box-shadow: 0 0 0.5em rgba(255, 56, 96, 0.25);
    color: #fff;
}

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

.file.is-primary-2 .file-cta {
    background-color: #fb1043;
    border-color: transparent;
    color: #fff;
}

.file.is-primary-2:hover .file-cta, .file.is-primary-2.is-hovered .file-cta {
    background-color: #fa043a;
    border-color: transparent;
    color: #fff;
}

.file.is-primary-2:focus .file-cta, .file.is-primary-2.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(251, 16, 67, 0.25);
    box-shadow: 0 0 0.5em rgba(251, 16, 67, 0.25);
    color: #fff;
}

.file.is-primary-2:active .file-cta, .file.is-primary-2.is-active .file-cta {
    background-color: #ee0437;
    border-color: transparent;
    color: #fff;
}

.file.is-primary-3 .file-cta {
    background-color: #ec0235;
    border-color: transparent;
    color: #fff;
}

.file.is-primary-3:hover .file-cta, .file.is-primary-3.is-hovered .file-cta {
    background-color: #df0232;
    border-color: transparent;
    color: #fff;
}

.file.is-primary-3:focus .file-cta, .file.is-primary-3.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(236, 2, 53, 0.25);
    box-shadow: 0 0 0.5em rgba(236, 2, 53, 0.25);
    color: #fff;
}

.file.is-primary-3:active .file-cta, .file.is-primary-3.is-active .file-cta {
    background-color: #d3022f;
    border-color: transparent;
    color: #fff;
}

.file.is-primary-4 .file-cta {
    background-color: #f1093c;
    border-color: transparent;
    color: #fff;
}

.file.is-primary-4:hover .file-cta, .file.is-primary-4.is-hovered .file-cta {
    background-color: #e50939;
    border-color: transparent;
    color: #fff;
}

.file.is-primary-4:focus .file-cta, .file.is-primary-4.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(241, 9, 60, 0.25);
    box-shadow: 0 0 0.5em rgba(241, 9, 60, 0.25);
    color: #fff;
}

.file.is-primary-4:active .file-cta, .file.is-primary-4.is-active .file-cta {
    background-color: #d80836;
    border-color: transparent;
    color: #fff;
}

.file.is-primary-5 .file-cta {
    background-color: #ee0034;
    border-color: transparent;
    color: #fff;
}

.file.is-primary-5:hover .file-cta, .file.is-primary-5.is-hovered .file-cta {
    background-color: #e10031;
    border-color: transparent;
    color: #fff;
}

.file.is-primary-5:focus .file-cta, .file.is-primary-5.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(238, 0, 52, 0.25);
    box-shadow: 0 0 0.5em rgba(238, 0, 52, 0.25);
    color: #fff;
}

.file.is-primary-5:active .file-cta, .file.is-primary-5.is-active .file-cta {
    background-color: #d5002e;
    border-color: transparent;
    color: #fff;
}

.file.is-primary-6 .file-cta {
    background-color: #f30337;
    border-color: transparent;
    color: #fff;
}

.file.is-primary-6:hover .file-cta, .file.is-primary-6.is-hovered .file-cta {
    background-color: #e60334;
    border-color: transparent;
    color: #fff;
}

.file.is-primary-6:focus .file-cta, .file.is-primary-6.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(243, 3, 55, 0.25);
    box-shadow: 0 0 0.5em rgba(243, 3, 55, 0.25);
    color: #fff;
}

.file.is-primary-6:active .file-cta, .file.is-primary-6.is-active .file-cta {
    background-color: #da0331;
    border-color: transparent;
    color: #fff;
}

.file.is-primary-7 .file-cta {
    background-color: #fef6f6;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.file.is-primary-7:hover .file-cta, .file.is-primary-7.is-hovered .file-cta {
    background-color: #fdebeb;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.file.is-primary-7:focus .file-cta, .file.is-primary-7.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(254, 246, 246, 0.25);
    box-shadow: 0 0 0.5em rgba(254, 246, 246, 0.25);
    color: rgba(0, 0, 0, 0.7);
}

.file.is-primary-7:active .file-cta, .file.is-primary-7.is-active .file-cta {
    background-color: #fbdfdf;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.file.is-primary-light .file-cta {
    background-color: #fafafa;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.file.is-primary-light:hover .file-cta, .file.is-primary-light.is-hovered .file-cta {
    background-color: #f4f4f4;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.file.is-primary-light:focus .file-cta, .file.is-primary-light.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(250, 250, 250, 0.25);
    box-shadow: 0 0 0.5em rgba(250, 250, 250, 0.25);
    color: rgba(0, 0, 0, 0.7);
}

.file.is-primary-light:active .file-cta, .file.is-primary-light.is-active .file-cta {
    background-color: #ededed;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.file.is-secondary .file-cta {
    background-color: #101010;
    border-color: transparent;
    color: #fff;
}

.file.is-secondary:hover .file-cta, .file.is-secondary.is-hovered .file-cta {
    background-color: #0a0a0a;
    border-color: transparent;
    color: #fff;
}

.file.is-secondary:focus .file-cta, .file.is-secondary.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(16, 16, 16, 0.25);
    box-shadow: 0 0 0.5em rgba(16, 16, 16, 0.25);
    color: #fff;
}

.file.is-secondary:active .file-cta, .file.is-secondary.is-active .file-cta {
    background-color: #030303;
    border-color: transparent;
    color: #fff;
}

.file.is-secondary-2 .file-cta {
    background-color: #131313;
    border-color: transparent;
    color: #fff;
}

.file.is-secondary-2:hover .file-cta, .file.is-secondary-2.is-hovered .file-cta {
    background-color: #0d0d0d;
    border-color: transparent;
    color: #fff;
}

.file.is-secondary-2:focus .file-cta, .file.is-secondary-2.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(19, 19, 19, 0.25);
    box-shadow: 0 0 0.5em rgba(19, 19, 19, 0.25);
    color: #fff;
}

.file.is-secondary-2:active .file-cta, .file.is-secondary-2.is-active .file-cta {
    background-color: #060606;
    border-color: transparent;
    color: #fff;
}

.file.is-secondary-3 .file-cta {
    background-color: #232323;
    border-color: transparent;
    color: #fff;
}

.file.is-secondary-3:hover .file-cta, .file.is-secondary-3.is-hovered .file-cta {
    background-color: #1d1d1d;
    border-color: transparent;
    color: #fff;
}

.file.is-secondary-3:focus .file-cta, .file.is-secondary-3.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(35, 35, 35, 0.25);
    box-shadow: 0 0 0.5em rgba(35, 35, 35, 0.25);
    color: #fff;
}

.file.is-secondary-3:active .file-cta, .file.is-secondary-3.is-active .file-cta {
    background-color: #161616;
    border-color: transparent;
    color: #fff;
}

.file.is-secondary-4 .file-cta {
    background-color: #363636;
    border-color: transparent;
    color: #fff;
}

.file.is-secondary-4:hover .file-cta, .file.is-secondary-4.is-hovered .file-cta {
    background-color: #303030;
    border-color: transparent;
    color: #fff;
}

.file.is-secondary-4:focus .file-cta, .file.is-secondary-4.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25);
    box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25);
    color: #fff;
}

.file.is-secondary-4:active .file-cta, .file.is-secondary-4.is-active .file-cta {
    background-color: #292929;
    border-color: transparent;
    color: #fff;
}

.file.is-secondary-5 .file-cta {
    background-color: #5c5c5c;
    border-color: transparent;
    color: #fff;
}

.file.is-secondary-5:hover .file-cta, .file.is-secondary-5.is-hovered .file-cta {
    background-color: #565656;
    border-color: transparent;
    color: #fff;
}

.file.is-secondary-5:focus .file-cta, .file.is-secondary-5.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(92, 92, 92, 0.25);
    box-shadow: 0 0 0.5em rgba(92, 92, 92, 0.25);
    color: #fff;
}

.file.is-secondary-5:active .file-cta, .file.is-secondary-5.is-active .file-cta {
    background-color: #4f4f4f;
    border-color: transparent;
    color: #fff;
}

.file.is-tertiary .file-cta {
    background-color: #A6A6A6;
    border-color: transparent;
    color: #fff;
}

.file.is-tertiary:hover .file-cta, .file.is-tertiary.is-hovered .file-cta {
    background-color: #a0a0a0;
    border-color: transparent;
    color: #fff;
}

.file.is-tertiary:focus .file-cta, .file.is-tertiary.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(166, 166, 166, 0.25);
    box-shadow: 0 0 0.5em rgba(166, 166, 166, 0.25);
    color: #fff;
}

.file.is-tertiary:active .file-cta, .file.is-tertiary.is-active .file-cta {
    background-color: #999999;
    border-color: transparent;
    color: #fff;
}

.file.is-tertiary-2 .file-cta {
    background-color: #D8D8D8;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.file.is-tertiary-2:hover .file-cta, .file.is-tertiary-2.is-hovered .file-cta {
    background-color: #d2d2d2;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.file.is-tertiary-2:focus .file-cta, .file.is-tertiary-2.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(216, 216, 216, 0.25);
    box-shadow: 0 0 0.5em rgba(216, 216, 216, 0.25);
    color: rgba(0, 0, 0, 0.7);
}

.file.is-tertiary-2:active .file-cta, .file.is-tertiary-2.is-active .file-cta {
    background-color: #cbcbcb;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.file.is-tertiary-3 .file-cta {
    background-color: #D7D6D3;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.file.is-tertiary-3:hover .file-cta, .file.is-tertiary-3.is-hovered .file-cta {
    background-color: #d1d0cc;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.file.is-tertiary-3:focus .file-cta, .file.is-tertiary-3.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(215, 214, 211, 0.25);
    box-shadow: 0 0 0.5em rgba(215, 214, 211, 0.25);
    color: rgba(0, 0, 0, 0.7);
}

.file.is-tertiary-3:active .file-cta, .file.is-tertiary-3.is-active .file-cta {
    background-color: #cbcac6;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.file.is-tertiary-4 .file-cta {
    background-color: #AFAFAF;
    border-color: transparent;
    color: #fff;
}

.file.is-tertiary-4:hover .file-cta, .file.is-tertiary-4.is-hovered .file-cta {
    background-color: darkgray;
    border-color: transparent;
    color: #fff;
}

.file.is-tertiary-4:focus .file-cta, .file.is-tertiary-4.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(175, 175, 175, 0.25);
    box-shadow: 0 0 0.5em rgba(175, 175, 175, 0.25);
    color: #fff;
}

.file.is-tertiary-4:active .file-cta, .file.is-tertiary-4.is-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, 0.7);
}

.file.is-tertiary-5:hover .file-cta, .file.is-tertiary-5.is-hovered .file-cta {
    background-color: #e4e4e4;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.file.is-tertiary-5:focus .file-cta, .file.is-tertiary-5.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(234, 234, 234, 0.25);
    box-shadow: 0 0 0.5em rgba(234, 234, 234, 0.25);
    color: rgba(0, 0, 0, 0.7);
}

.file.is-tertiary-5:active .file-cta, .file.is-tertiary-5.is-active .file-cta {
    background-color: #dddddd;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.file.is-tertiary-6 .file-cta {
    background-color: #B0B0B0;
    border-color: transparent;
    color: #fff;
}

.file.is-tertiary-6:hover .file-cta, .file.is-tertiary-6.is-hovered .file-cta {
    background-color: #aaaaaa;
    border-color: transparent;
    color: #fff;
}

.file.is-tertiary-6:focus .file-cta, .file.is-tertiary-6.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(176, 176, 176, 0.25);
    box-shadow: 0 0 0.5em rgba(176, 176, 176, 0.25);
    color: #fff;
}

.file.is-tertiary-6:active .file-cta, .file.is-tertiary-6.is-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:hover .file-cta, .file.is-tertiary-7.is-hovered .file-cta {
    background-color: #909090;
    border-color: transparent;
    color: #fff;
}

.file.is-tertiary-7:focus .file-cta, .file.is-tertiary-7.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(150, 150, 150, 0.25);
    box-shadow: 0 0 0.5em rgba(150, 150, 150, 0.25);
    color: #fff;
}

.file.is-tertiary-7:active .file-cta, .file.is-tertiary-7.is-active .file-cta {
    background-color: #898989;
    border-color: transparent;
    color: #fff;
}

.file.is-tertiary-8 .file-cta {
    background-color: #999999;
    border-color: transparent;
    color: #fff;
}

.file.is-tertiary-8:hover .file-cta, .file.is-tertiary-8.is-hovered .file-cta {
    background-color: #939393;
    border-color: transparent;
    color: #fff;
}

.file.is-tertiary-8:focus .file-cta, .file.is-tertiary-8.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(153, 153, 153, 0.25);
    box-shadow: 0 0 0.5em rgba(153, 153, 153, 0.25);
    color: #fff;
}

.file.is-tertiary-8:active .file-cta, .file.is-tertiary-8.is-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, 0.7);
}

.file.is-tertiary-9:hover .file-cta, .file.is-tertiary-9.is-hovered .file-cta {
    background-color: #efefef;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.file.is-tertiary-9:focus .file-cta, .file.is-tertiary-9.is-focused .file-cta {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25);
    box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25);
    color: rgba(0, 0, 0, 0.7);
}

.file.is-tertiary-9:active .file-cta, .file.is-tertiary-9.is-active .file-cta {
    background-color: #e8e8e8;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.file.is-small {
    font-size: 0.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 0 0 0;
}

.file.is-boxed.has-name .file-name {
    border-radius: 0 0 0 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 0 0 0;
}

.file.is-right .file-name {
    border-radius: 0 0 0 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: #eeeeee;
    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: 0.01em;
    left: 0;
    outline: none;
    position: absolute;
    top: 0;
    width: 0.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: whitesmoke;
    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: 0.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: 0.5em;
}

.label.is-small {
    font-size: 0.75rem;
}

.label.is-medium {
    font-size: 1.25rem;
}

.label.is-large {
    font-size: 1.5rem;
}

.help {
    display: block;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.help.is-white {
    color: white;
}

.help.is-black {
    color: #0a0a0a;
}

.help.is-light {
    color: whitesmoke;
}

.help.is-dark {
    color: #363636;
}

.help.is-primary {
    color: #f80036;
}

.help.is-link {
    color: #f80036;
}

.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: #fb1043;
}

.help.is-primary-3 {
    color: #ec0235;
}

.help.is-primary-4 {
    color: #f1093c;
}

.help.is-primary-5 {
    color: #ee0034;
}

.help.is-primary-6 {
    color: #f30337;
}

.help.is-primary-7 {
    color: #fef6f6;
}

.help.is-primary-light {
    color: #fafafa;
}

.help.is-secondary {
    color: #101010;
}

.help.is-secondary-2 {
    color: #131313;
}

.help.is-secondary-3 {
    color: #232323;
}

.help.is-secondary-4 {
    color: #363636;
}

.help.is-secondary-5 {
    color: #5c5c5c;
}

.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: #999999;
}

.help.is-tertiary-9 {
    color: #f5f5f5;
}

.field:not(:last-child) {
    margin-bottom: 0.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:hover, .field.has-addons .control .button.is-hovered,
.field.has-addons .control .input:hover,
.field.has-addons .control .input.is-hovered,
.field.has-addons .control .select select:hover,
.field.has-addons .control .select select.is-hovered {
    z-index: 2;
}

.field.has-addons .control .button:focus, .field.has-addons .control .button.is-focused, .field.has-addons .control .button:active, .field.has-addons .control .button.is-active,
.field.has-addons .control .input:focus,
.field.has-addons .control .input.is-focused,
.field.has-addons .control .input:active,
.field.has-addons .control .input.is-active,
.field.has-addons .control .select select:focus,
.field.has-addons .control .select select.is-focused,
.field.has-addons .control .select select:active,
.field.has-addons .control .select select.is-active {
    z-index: 3;
}

.field.has-addons .control .button:focus:hover, .field.has-addons .control .button.is-focused:hover, .field.has-addons .control .button:active:hover, .field.has-addons .control .button.is-active:hover,
.field.has-addons .control .input:focus:hover,
.field.has-addons .control .input.is-focused:hover,
.field.has-addons .control .input:active:hover,
.field.has-addons .control .input.is-active:hover,
.field.has-addons .control .select select:focus:hover,
.field.has-addons .control .select select.is-focused:hover,
.field.has-addons .control .select select:active:hover,
.field.has-addons .control .select select.is-active: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 &gt; .control {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.field.is-grouped &gt; .control:not(:last-child) {
    margin-bottom: 0;
    margin-right: 0.75rem;
}

.field.is-grouped &gt; .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 &gt; .control:last-child, .field.is-grouped.is-grouped-multiline &gt; .control:not(:last-child) {
    margin-bottom: 0.75rem;
}

.field.is-grouped.is-grouped-multiline:last-child {
    margin-bottom: -0.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: 0.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: 0.75rem;
        padding-top: 0.375em;
    }

    .field-label.is-normal {
        padding-top: 0.375em;
    }

    .field-label.is-medium {
        font-size: 1.25rem;
        padding-top: 0.375em;
    }

    .field-label.is-large {
        font-size: 1.5rem;
        padding-top: 0.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 &gt; .field {
        -ms-flex-negative: 1;
        flex-shrink: 1;
    }

    .field-body &gt; .field:not(.is-narrow) {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .field-body &gt; .field:not(:last-child) {
        margin-right: 0.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: 0.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: 0.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: 0.625em;
    top: 0.625em;
    z-index: 4;
}

.control.is-loading.is-small:after {
    font-size: 0.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-square img, .image.is-1by1 img, .image.is-5by4 img, .image.is-4by3 img, .image.is-3by2 img, .image.is-5by3 img, .image.is-16by9 img, .image.is-2by1 img, .image.is-3by1 img, .image.is-4by5 img, .image.is-3by4 img, .image.is-2by3 img, .image.is-3by5 img, .image.is-9by16 img, .image.is-1by2 img, .image.is-1by3 img {
    height: 100%;
    width: 100%;
}

.image.is-square, .image.is-1by1 {
    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, 0.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: white;
}

.notification pre code {
    background: transparent;
}

.notification &gt; .delete {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
}

.notification .title,
.notification .subtitle,
.notification .content {
    color: currentColor;
}

.notification.is-white {
    background-color: white;
    color: #0a0a0a;
}

.notification.is-black {
    background-color: #0a0a0a;
    color: white;
}

.notification.is-light {
    background-color: whitesmoke;
    color: #363636;
}

.notification.is-dark {
    background-color: #363636;
    color: whitesmoke;
}

.notification.is-primary {
    background-color: #f80036;
    color: #fff;
}

.notification.is-link {
    background-color: #f80036;
    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, 0.7);
}

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

.notification.is-primary-2 {
    background-color: #fb1043;
    color: #fff;
}

.notification.is-primary-3 {
    background-color: #ec0235;
    color: #fff;
}

.notification.is-primary-4 {
    background-color: #f1093c;
    color: #fff;
}

.notification.is-primary-5 {
    background-color: #ee0034;
    color: #fff;
}

.notification.is-primary-6 {
    background-color: #f30337;
    color: #fff;
}

.notification.is-primary-7 {
    background-color: #fef6f6;
    color: rgba(0, 0, 0, 0.7);
}

.notification.is-primary-light {
    background-color: #fafafa;
    color: rgba(0, 0, 0, 0.7);
}

.notification.is-secondary {
    background-color: #101010;
    color: #fff;
}

.notification.is-secondary-2 {
    background-color: #131313;
    color: #fff;
}

.notification.is-secondary-3 {
    background-color: #232323;
    color: #fff;
}

.notification.is-secondary-4 {
    background-color: #363636;
    color: #fff;
}

.notification.is-secondary-5 {
    background-color: #5c5c5c;
    color: #fff;
}

.notification.is-tertiary {
    background-color: #A6A6A6;
    color: #fff;
}

.notification.is-tertiary-2 {
    background-color: #D8D8D8;
    color: rgba(0, 0, 0, 0.7);
}

.notification.is-tertiary-3 {
    background-color: #D7D6D3;
    color: rgba(0, 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, 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: #999999;
    color: #fff;
}

.notification.is-tertiary-9 {
    background-color: #f5f5f5;
    color: rgba(0, 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: white;
}

.progress.is-white::-moz-progress-bar {
    background-color: white;
}

.progress.is-white::-ms-fill {
    background-color: white;
}

.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: whitesmoke;
}

.progress.is-light::-moz-progress-bar {
    background-color: whitesmoke;
}

.progress.is-light::-ms-fill {
    background-color: whitesmoke;
}

.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: #f80036;
}

.progress.is-primary::-moz-progress-bar {
    background-color: #f80036;
}

.progress.is-primary::-ms-fill {
    background-color: #f80036;
}

.progress.is-link::-webkit-progress-value {
    background-color: #f80036;
}

.progress.is-link::-moz-progress-bar {
    background-color: #f80036;
}

.progress.is-link::-ms-fill {
    background-color: #f80036;
}

.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: #fb1043;
}

.progress.is-primary-2::-moz-progress-bar {
    background-color: #fb1043;
}

.progress.is-primary-2::-ms-fill {
    background-color: #fb1043;
}

.progress.is-primary-3::-webkit-progress-value {
    background-color: #ec0235;
}

.progress.is-primary-3::-moz-progress-bar {
    background-color: #ec0235;
}

.progress.is-primary-3::-ms-fill {
    background-color: #ec0235;
}

.progress.is-primary-4::-webkit-progress-value {
    background-color: #f1093c;
}

.progress.is-primary-4::-moz-progress-bar {
    background-color: #f1093c;
}

.progress.is-primary-4::-ms-fill {
    background-color: #f1093c;
}

.progress.is-primary-5::-webkit-progress-value {
    background-color: #ee0034;
}

.progress.is-primary-5::-moz-progress-bar {
    background-color: #ee0034;
}

.progress.is-primary-5::-ms-fill {
    background-color: #ee0034;
}

.progress.is-primary-6::-webkit-progress-value {
    background-color: #f30337;
}

.progress.is-primary-6::-moz-progress-bar {
    background-color: #f30337;
}

.progress.is-primary-6::-ms-fill {
    background-color: #f30337;
}

.progress.is-primary-7::-webkit-progress-value {
    background-color: #fef6f6;
}

.progress.is-primary-7::-moz-progress-bar {
    background-color: #fef6f6;
}

.progress.is-primary-7::-ms-fill {
    background-color: #fef6f6;
}

.progress.is-primary-light::-webkit-progress-value {
    background-color: #fafafa;
}

.progress.is-primary-light::-moz-progress-bar {
    background-color: #fafafa;
}

.progress.is-primary-light::-ms-fill {
    background-color: #fafafa;
}

.progress.is-secondary::-webkit-progress-value {
    background-color: #101010;
}

.progress.is-secondary::-moz-progress-bar {
    background-color: #101010;
}

.progress.is-secondary::-ms-fill {
    background-color: #101010;
}

.progress.is-secondary-2::-webkit-progress-value {
    background-color: #131313;
}

.progress.is-secondary-2::-moz-progress-bar {
    background-color: #131313;
}

.progress.is-secondary-2::-ms-fill {
    background-color: #131313;
}

.progress.is-secondary-3::-webkit-progress-value {
    background-color: #232323;
}

.progress.is-secondary-3::-moz-progress-bar {
    background-color: #232323;
}

.progress.is-secondary-3::-ms-fill {
    background-color: #232323;
}

.progress.is-secondary-4::-webkit-progress-value {
    background-color: #363636;
}

.progress.is-secondary-4::-moz-progress-bar {
    background-color: #363636;
}

.progress.is-secondary-4::-ms-fill {
    background-color: #363636;
}

.progress.is-secondary-5::-webkit-progress-value {
    background-color: #5c5c5c;
}

.progress.is-secondary-5::-moz-progress-bar {
    background-color: #5c5c5c;
}

.progress.is-secondary-5::-ms-fill {
    background-color: #5c5c5c;
}

.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: #999999;
}

.progress.is-tertiary-8::-moz-progress-bar {
    background-color: #999999;
}

.progress.is-tertiary-8::-ms-fill {
    background-color: #999999;
}

.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: 0.75rem;
}

.progress.is-medium {
    height: 1.25rem;
}

.progress.is-large {
    height: 1.5rem;
}

.table {
    background-color: white;
    color: #363636;
}

.table td,
.table th {
    border: 1px solid #F0F0F0;
    border-width: 0 0 1px;
    padding: 0.75em 0.75em;
    vertical-align: top;
}

.table td.is-white,
.table th.is-white {
    background-color: white;
    border-color: white;
    color: #0a0a0a;
}

.table td.is-black,
.table th.is-black {
    background-color: #0a0a0a;
    border-color: #0a0a0a;
    color: white;
}

.table td.is-light,
.table th.is-light {
    background-color: whitesmoke;
    border-color: whitesmoke;
    color: #363636;
}

.table td.is-dark,
.table th.is-dark {
    background-color: #363636;
    border-color: #363636;
    color: whitesmoke;
}

.table td.is-primary,
.table th.is-primary {
    background-color: #f80036;
    border-color: #f80036;
    color: #fff;
}

.table td.is-link,
.table th.is-link {
    background-color: #f80036;
    border-color: #f80036;
    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, 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: #fb1043;
    border-color: #fb1043;
    color: #fff;
}

.table td.is-primary-3,
.table th.is-primary-3 {
    background-color: #ec0235;
    border-color: #ec0235;
    color: #fff;
}

.table td.is-primary-4,
.table th.is-primary-4 {
    background-color: #f1093c;
    border-color: #f1093c;
    color: #fff;
}

.table td.is-primary-5,
.table th.is-primary-5 {
    background-color: #ee0034;
    border-color: #ee0034;
    color: #fff;
}

.table td.is-primary-6,
.table th.is-primary-6 {
    background-color: #f30337;
    border-color: #f30337;
    color: #fff;
}

.table td.is-primary-7,
.table th.is-primary-7 {
    background-color: #fef6f6;
    border-color: #fef6f6;
    color: rgba(0, 0, 0, 0.7);
}

.table td.is-primary-light,
.table th.is-primary-light {
    background-color: #fafafa;
    border-color: #fafafa;
    color: rgba(0, 0, 0, 0.7);
}

.table td.is-secondary,
.table th.is-secondary {
    background-color: #101010;
    border-color: #101010;
    color: #fff;
}

.table td.is-secondary-2,
.table th.is-secondary-2 {
    background-color: #131313;
    border-color: #131313;
    color: #fff;
}

.table td.is-secondary-3,
.table th.is-secondary-3 {
    background-color: #232323;
    border-color: #232323;
    color: #fff;
}

.table td.is-secondary-4,
.table th.is-secondary-4 {
    background-color: #363636;
    border-color: #363636;
    color: #fff;
}

.table td.is-secondary-5,
.table th.is-secondary-5 {
    background-color: #5c5c5c;
    border-color: #5c5c5c;
    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, 0.7);
}

.table td.is-tertiary-3,
.table th.is-tertiary-3 {
    background-color: #D7D6D3;
    border-color: #D7D6D3;
    color: rgba(0, 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, 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: #999999;
    border-color: #999999;
    color: #fff;
}

.table td.is-tertiary-9,
.table th.is-tertiary-9 {
    background-color: #f5f5f5;
    border-color: #f5f5f5;
    color: rgba(0, 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: #f80036;
    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: #f80036;
    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: whitesmoke;
}

.table.is-narrow td,
.table.is-narrow th {
    padding: 0.25em 0.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: 0.5rem;
}

.tags .tag:not(:last-child) {
    margin-right: 0.5rem;
}

.tags:last-child {
    margin-bottom: -0.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: 0.25rem;
    margin-left: 0.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: 0.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: whitesmoke;
    border-radius: 0;
    color: #363636;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 0.75rem;
    height: 2em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1.5;
    padding-left: 0.75em;
    padding-right: 0.75em;
    white-space: nowrap;
}

.tag:not(body) .delete {
    margin-left: 0.25rem;
    margin-right: -0.375rem;
}

.tag:not(body).is-white {
    background-color: white;
    color: #0a0a0a;
}

.tag:not(body).is-black {
    background-color: #0a0a0a;
    color: white;
}

.tag:not(body).is-light {
    background-color: whitesmoke;
    color: #363636;
}

.tag:not(body).is-dark {
    background-color: #363636;
    color: whitesmoke;
}

.tag:not(body).is-primary {
    background-color: #f80036;
    color: #fff;
}

.tag:not(body).is-link {
    background-color: #f80036;
    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, 0.7);
}

.tag:not(body).is-danger {
    background-color: #ff3860;
    color: #fff;
}

.tag:not(body).is-primary-2 {
    background-color: #fb1043;
    color: #fff;
}

.tag:not(body).is-primary-3 {
    background-color: #ec0235;
    color: #fff;
}

.tag:not(body).is-primary-4 {
    background-color: #f1093c;
    color: #fff;
}

.tag:not(body).is-primary-5 {
    background-color: #ee0034;
    color: #fff;
}

.tag:not(body).is-primary-6 {
    background-color: #f30337;
    color: #fff;
}

.tag:not(body).is-primary-7 {
    background-color: #fef6f6;
    color: rgba(0, 0, 0, 0.7);
}

.tag:not(body).is-primary-light {
    background-color: #fafafa;
    color: rgba(0, 0, 0, 0.7);
}

.tag:not(body).is-secondary {
    background-color: #101010;
    color: #fff;
}

.tag:not(body).is-secondary-2 {
    background-color: #131313;
    color: #fff;
}

.tag:not(body).is-secondary-3 {
    background-color: #232323;
    color: #fff;
}

.tag:not(body).is-secondary-4 {
    background-color: #363636;
    color: #fff;
}

.tag:not(body).is-secondary-5 {
    background-color: #5c5c5c;
    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, 0.7);
}

.tag:not(body).is-tertiary-3 {
    background-color: #D7D6D3;
    color: rgba(0, 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, 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: #999999;
    color: #fff;
}

.tag:not(body).is-tertiary-9 {
    background-color: #f5f5f5;
    color: rgba(0, 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: -0.375em;
    margin-right: 0.1875em;
}

.tag:not(body) .icon:last-child:not(:first-child) {
    margin-left: 0.1875em;
    margin-right: -0.375em;
}

.tag:not(body) .icon:first-child:last-child {
    margin-left: -0.375em;
    margin-right: -0.375em;
}

.tag:not(body).is-delete {
    margin-left: 1px;
    padding: 0;
    position: relative;
    width: 2em;
}

.tag:not(body).is-delete::before, .tag:not(body).is-delete::after {
    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:hover, .tag:not(body).is-delete:focus {
    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;
}

.title,
.subtitle {
    word-break: break-word;
}

.title em,
.title span,
.subtitle em,
.subtitle span {
    font-weight: inherit;
}

.title sub,
.subtitle sub {
    font-size: 0.75em;
}

.title sup,
.subtitle sup {
    font-size: 0.75em;
}

.title .tag,
.subtitle .tag {
    vertical-align: middle;
}

.title {
    color: #363636;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.125;
}

.title strong {
    color: inherit;
    font-weight: inherit;
}

.title + .highlight {
    margin-top: -0.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: 0.75rem;
}

.subtitle {
    color: #4a4a4a;
    font-size: 1.25rem;
    font-weight: 400;
    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: 0.75rem;
}

.heading {
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.highlight {
    font-weight: 400;
    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: whitesmoke;
    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: 0.25rem 0.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: #ec0235;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 0.75em;
}

.breadcrumb a:hover {
    color: #232323;
}

.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: #5c5c5c;
    cursor: default;
    pointer-events: none;
}

.breadcrumb li + li::before {
    color: #A6A6A6;
    content: "\0002f";
}

.breadcrumb ul,
.breadcrumb ol {
    -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: 0.5em;
}

.breadcrumb .icon:last-child {
    margin-left: 0.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: 0.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: white;
    -webkit-box-shadow: 0 2px 3px rgba(166, 166, 166, 0.1), 0 0 0 1px rgba(166, 166, 166, 0.1);
    box-shadow: 0 2px 3px rgba(166, 166, 166, 0.1), 0 0 0 1px rgba(166, 166, 166, 0.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, 0.1);
    box-shadow: 0 1px 2px rgba(10, 10, 10, 0.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;
    font-weight: 400;
    padding: 0.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: 0.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: 0.75rem;
}

.card-footer-item:not(:last-child) {
    border-right: 1px solid #F0F0F0;
}

.card .media:not(:last-child) {
    margin-bottom: 0.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: white;
    border-radius: 4px;
    -webkit-box-shadow: 0 2px 3px rgba(166, 166, 166, 0.1), 0 0 0 1px rgba(166, 166, 166, 0.1);
    box-shadow: 0 2px 3px rgba(166, 166, 166, 0.1), 0 0 0 1px rgba(166, 166, 166, 0.1);
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}

.dropdown-item {
    color: #5c5c5c;
    display: block;
    font-size: 0.875rem;
    line-height: 1.5;
    padding: 0.375rem 1rem;
    position: relative;
}

a.dropdown-item {
    padding-right: 3rem;
    white-space: nowrap;
}

a.dropdown-item:hover {
    background-color: #F0F0F0;
    color: #101010;
}

a.dropdown-item.is-active {
    background-color: #f80036;
    color: #fff;
}

.dropdown-divider {
    background-color: #F0F0F0;
    border: none;
    display: block;
    height: 1px;
    margin: 0.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: 0.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 &gt; .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 .title,
.level-item .subtitle {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .level-item:not(:last-child) {
        margin-bottom: 0.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: 0.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: 0.75rem;
}

.media .media {
    border-top: 1px solid rgba(219, 219, 219, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0.75rem;
}

.media .media .content:not(:last-child),
.media .media .control:not(:last-child) {
    margin-bottom: 0.5rem;
}

.media .media .media {
    padding-top: 0.5rem;
}

.media .media .media + .media {
    margin-top: 0.5rem;
}

.media + .media {
    border-top: 1px solid rgba(219, 219, 219, 0.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: 0.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: #363636;
    display: block;
    padding: 0.5em 0.75em;
}

.menu-list a:hover {
    background-color: #F0F0F0;
    color: #101010;
}

.menu-list a.is-active {
    background-color: #f80036;
    color: #fff;
}

.menu-list li ul {
    border-left: 1px solid #F0F0F0;
    margin: 0.75em;
    padding-left: 0.75em;
}

.menu-label {
    color: #5c5c5c;
    font-size: 0.75em;
    letter-spacing: 0.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, 0.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: 0.75rem;
}

.message.is-medium {
    font-size: 1.25rem;
}

.message.is-large {
    font-size: 1.5rem;
}

.message.is-white {
    background-color: white;
}

.message.is-white .message-header {
    background-color: white;
    color: #0a0a0a;
}

.message.is-white .message-body {
    border-color: white;
    color: #4d4d4d;
}

.message.is-black {
    background-color: #fafafa;
}

.message.is-black .message-header {
    background-color: #0a0a0a;
    color: white;
}

.message.is-black .message-body {
    border-color: #0a0a0a;
    color: #090909;
}

.message.is-light {
    background-color: #fafafa;
}

.message.is-light .message-header {
    background-color: whitesmoke;
    color: #363636;
}

.message.is-light .message-body {
    border-color: whitesmoke;
    color: #505050;
}

.message.is-dark {
    background-color: #fafafa;
}

.message.is-dark .message-header {
    background-color: #363636;
    color: whitesmoke;
}

.message.is-dark .message-body {
    border-color: #363636;
    color: #2a2a2a;
}

.message.is-primary {
    background-color: #fff5f7;
}

.message.is-primary .message-header {
    background-color: #f80036;
    color: #fff;
}

.message.is-primary .message-body {
    border-color: #f80036;
    color: #a90529;
}

.message.is-link {
    background-color: #fff5f7;
}

.message.is-link .message-header {
    background-color: #f80036;
    color: #fff;
}

.message.is-link .message-body {
    border-color: #f80036;
    color: #a90529;
}

.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, 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: #fff5f7;
}

.message.is-primary-2 .message-header {
    background-color: #fb1043;
    color: #fff;
}

.message.is-primary-2 .message-body {
    border-color: #fb1043;
    color: #b2092e;
}

.message.is-primary-3 {
    background-color: #fff5f7;
}

.message.is-primary-3 .message-header {
    background-color: #ec0235;
    color: #fff;
}

.message.is-primary-3 .message-body {
    border-color: #ec0235;
    color: #a40629;
}

.message.is-primary-4 {
    background-color: #fff5f7;
}

.message.is-primary-4 .message-header {
    background-color: #f1093c;
    color: #fff;
}

.message.is-primary-4 .message-body {
    border-color: #f1093c;
    color: #a70c2e;
}

.message.is-primary-5 {
    background-color: #fff5f7;
}

.message.is-primary-5 .message-header {
    background-color: #ee0034;
    color: #fff;
}

.message.is-primary-5 .message-body {
    border-color: #ee0034;
    color: #a50528;
}

.message.is-primary-6 {
    background-color: #fff5f7;
}

.message.is-primary-6 .message-header {
    background-color: #f30337;
    color: #fff;
}

.message.is-primary-6 .message-body {
    border-color: #f30337;
    color: #a7072a;
}

.message.is-primary-7 {
    background-color: #fef6f6;
}

.message.is-primary-7 .message-header {
    background-color: #fef6f6;
    color: rgba(0, 0, 0, 0.7);
}

.message.is-primary-7 .message-body {
    border-color: #fef6f6;
    color: #7b2727;
}

.message.is-primary-light {
    background-color: #fafafa;
}

.message.is-primary-light .message-header {
    background-color: #fafafa;
    color: rgba(0, 0, 0, 0.7);
}

.message.is-primary-light .message-body {
    border-color: #fafafa;
    color: #4e4e4e;
}

.message.is-secondary {
    background-color: #fafafa;
}

.message.is-secondary .message-header {
    background-color: #101010;
    color: #fff;
}

.message.is-secondary .message-body {
    border-color: #101010;
    color: #0e0e0e;
}

.message.is-secondary-2 {
    background-color: #fafafa;
}

.message.is-secondary-2 .message-header {
    background-color: #131313;
    color: #fff;
}

.message.is-secondary-2 .message-body {
    border-color: #131313;
    color: #101010;
}

.message.is-secondary-3 {
    background-color: #fafafa;
}

.message.is-secondary-3 .message-header {
    background-color: #232323;
    color: #fff;
}

.message.is-secondary-3 .message-body {
    border-color: #232323;
    color: #1d1d1d;
}

.message.is-secondary-4 {
    background-color: #fafafa;
}

.message.is-secondary-4 .message-header {
    background-color: #363636;
    color: #fff;
}

.message.is-secondary-4 .message-body {
    border-color: #363636;
    color: #2b2b2b;
}

.message.is-secondary-5 {
    background-color: #fafafa;
}

.message.is-secondary-5 .message-header {
    background-color: #5c5c5c;
    color: #fff;
}

.message.is-secondary-5 .message-body {
    border-color: #5c5c5c;
    color: #404040;
}

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

.message.is-tertiary-3 .message-body {
    border-color: #D7D6D3;
    color: #555555;
}

.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, 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: #999999;
    color: #fff;
}

.message.is-tertiary-8 .message-body {
    border-color: #999999;
    color: #545454;
}

.message.is-tertiary-9 {
    background-color: #fafafa;
}

.message.is-tertiary-9 .message-header {
    background-color: #f5f5f5;
    color: rgba(0, 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 0 0 0;
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 500;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    line-height: 1.25;
    padding: 0.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: 0.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: white;
}

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

.modal-content,
.modal-card {
    margin: 0 20px;
    max-height: calc(100vh - 160px);
    overflow: auto;
    position: relative;
    width: 100%;
}

@media screen and (min-width: 769px), print {
    .modal-content,
  .modal-card {
        margin: 0 auto;
        max-height: calc(100vh - 40px);
        width: 800px;
    }
}

.modal-close {
    background: none;
    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-head,
.modal-card-foot {
    -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: white;
    -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: white;
    min-height: 3.25rem;
    position: relative;
    z-index: 30;
}

.navbar.is-white {
    background-color: white;
    color: #0a0a0a;
}

.navbar.is-white .navbar-brand &gt; .navbar-item,
.navbar.is-white .navbar-brand .navbar-link {
    color: #0a0a0a;
}

.navbar.is-white .navbar-brand &gt; a.navbar-item:hover, .navbar.is-white .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-white .navbar-brand .navbar-link:hover,
.navbar.is-white .navbar-brand .navbar-link.is-active {
    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-start &gt; .navbar-item,
  .navbar.is-white .navbar-start .navbar-link,
  .navbar.is-white .navbar-end &gt; .navbar-item,
  .navbar.is-white .navbar-end .navbar-link {
        color: #0a0a0a;
    }

    .navbar.is-white .navbar-start &gt; a.navbar-item:hover, .navbar.is-white .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-white .navbar-start .navbar-link:hover,
  .navbar.is-white .navbar-start .navbar-link.is-active,
  .navbar.is-white .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-white .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-white .navbar-end .navbar-link:hover,
  .navbar.is-white .navbar-end .navbar-link.is-active {
        background-color: #f2f2f2;
        color: #0a0a0a;
    }

    .navbar.is-white .navbar-start .navbar-link::after,
  .navbar.is-white .navbar-end .navbar-link::after {
        border-color: #0a0a0a;
    }

    .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #f2f2f2;
        color: #0a0a0a;
    }

    .navbar.is-white .navbar-dropdown a.navbar-item.is-active {
        background-color: white;
        color: #0a0a0a;
    }
}

.navbar.is-black {
    background-color: #0a0a0a;
    color: white;
}

.navbar.is-black .navbar-brand &gt; .navbar-item,
.navbar.is-black .navbar-brand .navbar-link {
    color: white;
}

.navbar.is-black .navbar-brand &gt; a.navbar-item:hover, .navbar.is-black .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-black .navbar-brand .navbar-link:hover,
.navbar.is-black .navbar-brand .navbar-link.is-active {
    background-color: black;
    color: white;
}

.navbar.is-black .navbar-brand .navbar-link::after {
    border-color: white;
}

@media screen and (min-width: 1088px) {
    .navbar.is-black .navbar-start &gt; .navbar-item,
  .navbar.is-black .navbar-start .navbar-link,
  .navbar.is-black .navbar-end &gt; .navbar-item,
  .navbar.is-black .navbar-end .navbar-link {
        color: white;
    }

    .navbar.is-black .navbar-start &gt; a.navbar-item:hover, .navbar.is-black .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-black .navbar-start .navbar-link:hover,
  .navbar.is-black .navbar-start .navbar-link.is-active,
  .navbar.is-black .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-black .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-black .navbar-end .navbar-link:hover,
  .navbar.is-black .navbar-end .navbar-link.is-active {
        background-color: black;
        color: white;
    }

    .navbar.is-black .navbar-start .navbar-link::after,
  .navbar.is-black .navbar-end .navbar-link::after {
        border-color: white;
    }

    .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: black;
        color: white;
    }

    .navbar.is-black .navbar-dropdown a.navbar-item.is-active {
        background-color: #0a0a0a;
        color: white;
    }
}

.navbar.is-light {
    background-color: whitesmoke;
    color: #363636;
}

.navbar.is-light .navbar-brand &gt; .navbar-item,
.navbar.is-light .navbar-brand .navbar-link {
    color: #363636;
}

.navbar.is-light .navbar-brand &gt; a.navbar-item:hover, .navbar.is-light .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-light .navbar-brand .navbar-link:hover,
.navbar.is-light .navbar-brand .navbar-link.is-active {
    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-start &gt; .navbar-item,
  .navbar.is-light .navbar-start .navbar-link,
  .navbar.is-light .navbar-end &gt; .navbar-item,
  .navbar.is-light .navbar-end .navbar-link {
        color: #363636;
    }

    .navbar.is-light .navbar-start &gt; a.navbar-item:hover, .navbar.is-light .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-light .navbar-start .navbar-link:hover,
  .navbar.is-light .navbar-start .navbar-link.is-active,
  .navbar.is-light .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-light .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-light .navbar-end .navbar-link:hover,
  .navbar.is-light .navbar-end .navbar-link.is-active {
        background-color: #e8e8e8;
        color: #363636;
    }

    .navbar.is-light .navbar-start .navbar-link::after,
  .navbar.is-light .navbar-end .navbar-link::after {
        border-color: #363636;
    }

    .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #e8e8e8;
        color: #363636;
    }

    .navbar.is-light .navbar-dropdown a.navbar-item.is-active {
        background-color: whitesmoke;
        color: #363636;
    }
}

.navbar.is-dark {
    background-color: #363636;
    color: whitesmoke;
}

.navbar.is-dark .navbar-brand &gt; .navbar-item,
.navbar.is-dark .navbar-brand .navbar-link {
    color: whitesmoke;
}

.navbar.is-dark .navbar-brand &gt; a.navbar-item:hover, .navbar.is-dark .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-dark .navbar-brand .navbar-link:hover,
.navbar.is-dark .navbar-brand .navbar-link.is-active {
    background-color: #292929;
    color: whitesmoke;
}

.navbar.is-dark .navbar-brand .navbar-link::after {
    border-color: whitesmoke;
}

@media screen and (min-width: 1088px) {
    .navbar.is-dark .navbar-start &gt; .navbar-item,
  .navbar.is-dark .navbar-start .navbar-link,
  .navbar.is-dark .navbar-end &gt; .navbar-item,
  .navbar.is-dark .navbar-end .navbar-link {
        color: whitesmoke;
    }

    .navbar.is-dark .navbar-start &gt; a.navbar-item:hover, .navbar.is-dark .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-dark .navbar-start .navbar-link:hover,
  .navbar.is-dark .navbar-start .navbar-link.is-active,
  .navbar.is-dark .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-dark .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-dark .navbar-end .navbar-link:hover,
  .navbar.is-dark .navbar-end .navbar-link.is-active {
        background-color: #292929;
        color: whitesmoke;
    }

    .navbar.is-dark .navbar-start .navbar-link::after,
  .navbar.is-dark .navbar-end .navbar-link::after {
        border-color: whitesmoke;
    }

    .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #292929;
        color: whitesmoke;
    }

    .navbar.is-dark .navbar-dropdown a.navbar-item.is-active {
        background-color: #363636;
        color: whitesmoke;
    }
}

.navbar.is-primary {
    background-color: #f80036;
    color: #fff;
}

.navbar.is-primary .navbar-brand &gt; .navbar-item,
.navbar.is-primary .navbar-brand .navbar-link {
    color: #fff;
}

.navbar.is-primary .navbar-brand &gt; a.navbar-item:hover, .navbar.is-primary .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-primary .navbar-brand .navbar-link:hover,
.navbar.is-primary .navbar-brand .navbar-link.is-active {
    background-color: #df0030;
    color: #fff;
}

.navbar.is-primary .navbar-brand .navbar-link::after {
    border-color: #fff;
}

@media screen and (min-width: 1088px) {
    .navbar.is-primary .navbar-start &gt; .navbar-item,
  .navbar.is-primary .navbar-start .navbar-link,
  .navbar.is-primary .navbar-end &gt; .navbar-item,
  .navbar.is-primary .navbar-end .navbar-link {
        color: #fff;
    }

    .navbar.is-primary .navbar-start &gt; a.navbar-item:hover, .navbar.is-primary .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-primary .navbar-start .navbar-link:hover,
  .navbar.is-primary .navbar-start .navbar-link.is-active,
  .navbar.is-primary .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-primary .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-primary .navbar-end .navbar-link:hover,
  .navbar.is-primary .navbar-end .navbar-link.is-active {
        background-color: #df0030;
        color: #fff;
    }

    .navbar.is-primary .navbar-start .navbar-link::after,
  .navbar.is-primary .navbar-end .navbar-link::after {
        border-color: #fff;
    }

    .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #df0030;
        color: #fff;
    }

    .navbar.is-primary .navbar-dropdown a.navbar-item.is-active {
        background-color: #f80036;
        color: #fff;
    }
}

.navbar.is-link {
    background-color: #f80036;
    color: #fff;
}

.navbar.is-link .navbar-brand &gt; .navbar-item,
.navbar.is-link .navbar-brand .navbar-link {
    color: #fff;
}

.navbar.is-link .navbar-brand &gt; a.navbar-item:hover, .navbar.is-link .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-link .navbar-brand .navbar-link:hover,
.navbar.is-link .navbar-brand .navbar-link.is-active {
    background-color: #df0030;
    color: #fff;
}

.navbar.is-link .navbar-brand .navbar-link::after {
    border-color: #fff;
}

@media screen and (min-width: 1088px) {
    .navbar.is-link .navbar-start &gt; .navbar-item,
  .navbar.is-link .navbar-start .navbar-link,
  .navbar.is-link .navbar-end &gt; .navbar-item,
  .navbar.is-link .navbar-end .navbar-link {
        color: #fff;
    }

    .navbar.is-link .navbar-start &gt; a.navbar-item:hover, .navbar.is-link .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-link .navbar-start .navbar-link:hover,
  .navbar.is-link .navbar-start .navbar-link.is-active,
  .navbar.is-link .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-link .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-link .navbar-end .navbar-link:hover,
  .navbar.is-link .navbar-end .navbar-link.is-active {
        background-color: #df0030;
        color: #fff;
    }

    .navbar.is-link .navbar-start .navbar-link::after,
  .navbar.is-link .navbar-end .navbar-link::after {
        border-color: #fff;
    }

    .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #df0030;
        color: #fff;
    }

    .navbar.is-link .navbar-dropdown a.navbar-item.is-active {
        background-color: #f80036;
        color: #fff;
    }
}

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

.navbar.is-info .navbar-brand &gt; .navbar-item,
.navbar.is-info .navbar-brand .navbar-link {
    color: #fff;
}

.navbar.is-info .navbar-brand &gt; a.navbar-item:hover, .navbar.is-info .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-info .navbar-brand .navbar-link:hover,
.navbar.is-info .navbar-brand .navbar-link.is-active {
    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-start &gt; .navbar-item,
  .navbar.is-info .navbar-start .navbar-link,
  .navbar.is-info .navbar-end &gt; .navbar-item,
  .navbar.is-info .navbar-end .navbar-link {
        color: #fff;
    }

    .navbar.is-info .navbar-start &gt; a.navbar-item:hover, .navbar.is-info .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-info .navbar-start .navbar-link:hover,
  .navbar.is-info .navbar-start .navbar-link.is-active,
  .navbar.is-info .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-info .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-info .navbar-end .navbar-link:hover,
  .navbar.is-info .navbar-end .navbar-link.is-active {
        background-color: #118fe4;
        color: #fff;
    }

    .navbar.is-info .navbar-start .navbar-link::after,
  .navbar.is-info .navbar-end .navbar-link::after {
        border-color: #fff;
    }

    .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-info .navbar-item.has-dropdown.is-active .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 &gt; .navbar-item,
.navbar.is-success .navbar-brand .navbar-link {
    color: #fff;
}

.navbar.is-success .navbar-brand &gt; a.navbar-item:hover, .navbar.is-success .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-success .navbar-brand .navbar-link:hover,
.navbar.is-success .navbar-brand .navbar-link.is-active {
    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-start &gt; .navbar-item,
  .navbar.is-success .navbar-start .navbar-link,
  .navbar.is-success .navbar-end &gt; .navbar-item,
  .navbar.is-success .navbar-end .navbar-link {
        color: #fff;
    }

    .navbar.is-success .navbar-start &gt; a.navbar-item:hover, .navbar.is-success .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-success .navbar-start .navbar-link:hover,
  .navbar.is-success .navbar-start .navbar-link.is-active,
  .navbar.is-success .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-success .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-success .navbar-end .navbar-link:hover,
  .navbar.is-success .navbar-end .navbar-link.is-active {
        background-color: #20bc56;
        color: #fff;
    }

    .navbar.is-success .navbar-start .navbar-link::after,
  .navbar.is-success .navbar-end .navbar-link::after {
        border-color: #fff;
    }

    .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-success .navbar-item.has-dropdown.is-active .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, 0.7);
}

.navbar.is-warning .navbar-brand &gt; .navbar-item,
.navbar.is-warning .navbar-brand .navbar-link {
    color: rgba(0, 0, 0, 0.7);
}

.navbar.is-warning .navbar-brand &gt; a.navbar-item:hover, .navbar.is-warning .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-warning .navbar-brand .navbar-link:hover,
.navbar.is-warning .navbar-brand .navbar-link.is-active {
    background-color: #ffd83d;
    color: rgba(0, 0, 0, 0.7);
}

.navbar.is-warning .navbar-brand .navbar-link::after {
    border-color: rgba(0, 0, 0, 0.7);
}

@media screen and (min-width: 1088px) {
    .navbar.is-warning .navbar-start &gt; .navbar-item,
  .navbar.is-warning .navbar-start .navbar-link,
  .navbar.is-warning .navbar-end &gt; .navbar-item,
  .navbar.is-warning .navbar-end .navbar-link {
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-warning .navbar-start &gt; a.navbar-item:hover, .navbar.is-warning .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-warning .navbar-start .navbar-link:hover,
  .navbar.is-warning .navbar-start .navbar-link.is-active,
  .navbar.is-warning .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-warning .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-warning .navbar-end .navbar-link:hover,
  .navbar.is-warning .navbar-end .navbar-link.is-active {
        background-color: #ffd83d;
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-warning .navbar-start .navbar-link::after,
  .navbar.is-warning .navbar-end .navbar-link::after {
        border-color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #ffd83d;
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-warning .navbar-dropdown a.navbar-item.is-active {
        background-color: #ffdd57;
        color: rgba(0, 0, 0, 0.7);
    }
}

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

.navbar.is-danger .navbar-brand &gt; .navbar-item,
.navbar.is-danger .navbar-brand .navbar-link {
    color: #fff;
}

.navbar.is-danger .navbar-brand &gt; a.navbar-item:hover, .navbar.is-danger .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-danger .navbar-brand .navbar-link:hover,
.navbar.is-danger .navbar-brand .navbar-link.is-active {
    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-start &gt; .navbar-item,
  .navbar.is-danger .navbar-start .navbar-link,
  .navbar.is-danger .navbar-end &gt; .navbar-item,
  .navbar.is-danger .navbar-end .navbar-link {
        color: #fff;
    }

    .navbar.is-danger .navbar-start &gt; a.navbar-item:hover, .navbar.is-danger .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-danger .navbar-start .navbar-link:hover,
  .navbar.is-danger .navbar-start .navbar-link.is-active,
  .navbar.is-danger .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-danger .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-danger .navbar-end .navbar-link:hover,
  .navbar.is-danger .navbar-end .navbar-link.is-active {
        background-color: #ff1f4b;
        color: #fff;
    }

    .navbar.is-danger .navbar-start .navbar-link::after,
  .navbar.is-danger .navbar-end .navbar-link::after {
        border-color: #fff;
    }

    .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-danger .navbar-item.has-dropdown.is-active .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: #fb1043;
    color: #fff;
}

.navbar.is-primary-2 .navbar-brand &gt; .navbar-item,
.navbar.is-primary-2 .navbar-brand .navbar-link {
    color: #fff;
}

.navbar.is-primary-2 .navbar-brand &gt; a.navbar-item:hover, .navbar.is-primary-2 .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-primary-2 .navbar-brand .navbar-link:hover,
.navbar.is-primary-2 .navbar-brand .navbar-link.is-active {
    background-color: #ee0437;
    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-start &gt; .navbar-item,
  .navbar.is-primary-2 .navbar-start .navbar-link,
  .navbar.is-primary-2 .navbar-end &gt; .navbar-item,
  .navbar.is-primary-2 .navbar-end .navbar-link {
        color: #fff;
    }

    .navbar.is-primary-2 .navbar-start &gt; a.navbar-item:hover, .navbar.is-primary-2 .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-primary-2 .navbar-start .navbar-link:hover,
  .navbar.is-primary-2 .navbar-start .navbar-link.is-active,
  .navbar.is-primary-2 .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-primary-2 .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-primary-2 .navbar-end .navbar-link:hover,
  .navbar.is-primary-2 .navbar-end .navbar-link.is-active {
        background-color: #ee0437;
        color: #fff;
    }

    .navbar.is-primary-2 .navbar-start .navbar-link::after,
  .navbar.is-primary-2 .navbar-end .navbar-link::after {
        border-color: #fff;
    }

    .navbar.is-primary-2 .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-primary-2 .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #ee0437;
        color: #fff;
    }

    .navbar.is-primary-2 .navbar-dropdown a.navbar-item.is-active {
        background-color: #fb1043;
        color: #fff;
    }
}

.navbar.is-primary-3 {
    background-color: #ec0235;
    color: #fff;
}

.navbar.is-primary-3 .navbar-brand &gt; .navbar-item,
.navbar.is-primary-3 .navbar-brand .navbar-link {
    color: #fff;
}

.navbar.is-primary-3 .navbar-brand &gt; a.navbar-item:hover, .navbar.is-primary-3 .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-primary-3 .navbar-brand .navbar-link:hover,
.navbar.is-primary-3 .navbar-brand .navbar-link.is-active {
    background-color: #d3022f;
    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-start &gt; .navbar-item,
  .navbar.is-primary-3 .navbar-start .navbar-link,
  .navbar.is-primary-3 .navbar-end &gt; .navbar-item,
  .navbar.is-primary-3 .navbar-end .navbar-link {
        color: #fff;
    }

    .navbar.is-primary-3 .navbar-start &gt; a.navbar-item:hover, .navbar.is-primary-3 .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-primary-3 .navbar-start .navbar-link:hover,
  .navbar.is-primary-3 .navbar-start .navbar-link.is-active,
  .navbar.is-primary-3 .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-primary-3 .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-primary-3 .navbar-end .navbar-link:hover,
  .navbar.is-primary-3 .navbar-end .navbar-link.is-active {
        background-color: #d3022f;
        color: #fff;
    }

    .navbar.is-primary-3 .navbar-start .navbar-link::after,
  .navbar.is-primary-3 .navbar-end .navbar-link::after {
        border-color: #fff;
    }

    .navbar.is-primary-3 .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-primary-3 .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #d3022f;
        color: #fff;
    }

    .navbar.is-primary-3 .navbar-dropdown a.navbar-item.is-active {
        background-color: #ec0235;
        color: #fff;
    }
}

.navbar.is-primary-4 {
    background-color: #f1093c;
    color: #fff;
}

.navbar.is-primary-4 .navbar-brand &gt; .navbar-item,
.navbar.is-primary-4 .navbar-brand .navbar-link {
    color: #fff;
}

.navbar.is-primary-4 .navbar-brand &gt; a.navbar-item:hover, .navbar.is-primary-4 .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-primary-4 .navbar-brand .navbar-link:hover,
.navbar.is-primary-4 .navbar-brand .navbar-link.is-active {
    background-color: #d80836;
    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-start &gt; .navbar-item,
  .navbar.is-primary-4 .navbar-start .navbar-link,
  .navbar.is-primary-4 .navbar-end &gt; .navbar-item,
  .navbar.is-primary-4 .navbar-end .navbar-link {
        color: #fff;
    }

    .navbar.is-primary-4 .navbar-start &gt; a.navbar-item:hover, .navbar.is-primary-4 .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-primary-4 .navbar-start .navbar-link:hover,
  .navbar.is-primary-4 .navbar-start .navbar-link.is-active,
  .navbar.is-primary-4 .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-primary-4 .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-primary-4 .navbar-end .navbar-link:hover,
  .navbar.is-primary-4 .navbar-end .navbar-link.is-active {
        background-color: #d80836;
        color: #fff;
    }

    .navbar.is-primary-4 .navbar-start .navbar-link::after,
  .navbar.is-primary-4 .navbar-end .navbar-link::after {
        border-color: #fff;
    }

    .navbar.is-primary-4 .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-primary-4 .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #d80836;
        color: #fff;
    }

    .navbar.is-primary-4 .navbar-dropdown a.navbar-item.is-active {
        background-color: #f1093c;
        color: #fff;
    }
}

.navbar.is-primary-5 {
    background-color: #ee0034;
    color: #fff;
}

.navbar.is-primary-5 .navbar-brand &gt; .navbar-item,
.navbar.is-primary-5 .navbar-brand .navbar-link {
    color: #fff;
}

.navbar.is-primary-5 .navbar-brand &gt; a.navbar-item:hover, .navbar.is-primary-5 .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-primary-5 .navbar-brand .navbar-link:hover,
.navbar.is-primary-5 .navbar-brand .navbar-link.is-active {
    background-color: #d5002e;
    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-start &gt; .navbar-item,
  .navbar.is-primary-5 .navbar-start .navbar-link,
  .navbar.is-primary-5 .navbar-end &gt; .navbar-item,
  .navbar.is-primary-5 .navbar-end .navbar-link {
        color: #fff;
    }

    .navbar.is-primary-5 .navbar-start &gt; a.navbar-item:hover, .navbar.is-primary-5 .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-primary-5 .navbar-start .navbar-link:hover,
  .navbar.is-primary-5 .navbar-start .navbar-link.is-active,
  .navbar.is-primary-5 .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-primary-5 .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-primary-5 .navbar-end .navbar-link:hover,
  .navbar.is-primary-5 .navbar-end .navbar-link.is-active {
        background-color: #d5002e;
        color: #fff;
    }

    .navbar.is-primary-5 .navbar-start .navbar-link::after,
  .navbar.is-primary-5 .navbar-end .navbar-link::after {
        border-color: #fff;
    }

    .navbar.is-primary-5 .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-primary-5 .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #d5002e;
        color: #fff;
    }

    .navbar.is-primary-5 .navbar-dropdown a.navbar-item.is-active {
        background-color: #ee0034;
        color: #fff;
    }
}

.navbar.is-primary-6 {
    background-color: #f30337;
    color: #fff;
}

.navbar.is-primary-6 .navbar-brand &gt; .navbar-item,
.navbar.is-primary-6 .navbar-brand .navbar-link {
    color: #fff;
}

.navbar.is-primary-6 .navbar-brand &gt; a.navbar-item:hover, .navbar.is-primary-6 .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-primary-6 .navbar-brand .navbar-link:hover,
.navbar.is-primary-6 .navbar-brand .navbar-link.is-active {
    background-color: #da0331;
    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-start &gt; .navbar-item,
  .navbar.is-primary-6 .navbar-start .navbar-link,
  .navbar.is-primary-6 .navbar-end &gt; .navbar-item,
  .navbar.is-primary-6 .navbar-end .navbar-link {
        color: #fff;
    }

    .navbar.is-primary-6 .navbar-start &gt; a.navbar-item:hover, .navbar.is-primary-6 .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-primary-6 .navbar-start .navbar-link:hover,
  .navbar.is-primary-6 .navbar-start .navbar-link.is-active,
  .navbar.is-primary-6 .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-primary-6 .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-primary-6 .navbar-end .navbar-link:hover,
  .navbar.is-primary-6 .navbar-end .navbar-link.is-active {
        background-color: #da0331;
        color: #fff;
    }

    .navbar.is-primary-6 .navbar-start .navbar-link::after,
  .navbar.is-primary-6 .navbar-end .navbar-link::after {
        border-color: #fff;
    }

    .navbar.is-primary-6 .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-primary-6 .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #da0331;
        color: #fff;
    }

    .navbar.is-primary-6 .navbar-dropdown a.navbar-item.is-active {
        background-color: #f30337;
        color: #fff;
    }
}

.navbar.is-primary-7 {
    background-color: #fef6f6;
    color: rgba(0, 0, 0, 0.7);
}

.navbar.is-primary-7 .navbar-brand &gt; .navbar-item,
.navbar.is-primary-7 .navbar-brand .navbar-link {
    color: rgba(0, 0, 0, 0.7);
}

.navbar.is-primary-7 .navbar-brand &gt; a.navbar-item:hover, .navbar.is-primary-7 .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-primary-7 .navbar-brand .navbar-link:hover,
.navbar.is-primary-7 .navbar-brand .navbar-link.is-active {
    background-color: #fbdfdf;
    color: rgba(0, 0, 0, 0.7);
}

.navbar.is-primary-7 .navbar-brand .navbar-link::after {
    border-color: rgba(0, 0, 0, 0.7);
}

@media screen and (min-width: 1088px) {
    .navbar.is-primary-7 .navbar-start &gt; .navbar-item,
  .navbar.is-primary-7 .navbar-start .navbar-link,
  .navbar.is-primary-7 .navbar-end &gt; .navbar-item,
  .navbar.is-primary-7 .navbar-end .navbar-link {
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-primary-7 .navbar-start &gt; a.navbar-item:hover, .navbar.is-primary-7 .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-primary-7 .navbar-start .navbar-link:hover,
  .navbar.is-primary-7 .navbar-start .navbar-link.is-active,
  .navbar.is-primary-7 .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-primary-7 .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-primary-7 .navbar-end .navbar-link:hover,
  .navbar.is-primary-7 .navbar-end .navbar-link.is-active {
        background-color: #fbdfdf;
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-primary-7 .navbar-start .navbar-link::after,
  .navbar.is-primary-7 .navbar-end .navbar-link::after {
        border-color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-primary-7 .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-primary-7 .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #fbdfdf;
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-primary-7 .navbar-dropdown a.navbar-item.is-active {
        background-color: #fef6f6;
        color: rgba(0, 0, 0, 0.7);
    }
}

.navbar.is-primary-light {
    background-color: #fafafa;
    color: rgba(0, 0, 0, 0.7);
}

.navbar.is-primary-light .navbar-brand &gt; .navbar-item,
.navbar.is-primary-light .navbar-brand .navbar-link {
    color: rgba(0, 0, 0, 0.7);
}

.navbar.is-primary-light .navbar-brand &gt; a.navbar-item:hover, .navbar.is-primary-light .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-primary-light .navbar-brand .navbar-link:hover,
.navbar.is-primary-light .navbar-brand .navbar-link.is-active {
    background-color: #ededed;
    color: rgba(0, 0, 0, 0.7);
}

.navbar.is-primary-light .navbar-brand .navbar-link::after {
    border-color: rgba(0, 0, 0, 0.7);
}

@media screen and (min-width: 1088px) {
    .navbar.is-primary-light .navbar-start &gt; .navbar-item,
  .navbar.is-primary-light .navbar-start .navbar-link,
  .navbar.is-primary-light .navbar-end &gt; .navbar-item,
  .navbar.is-primary-light .navbar-end .navbar-link {
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-primary-light .navbar-start &gt; a.navbar-item:hover, .navbar.is-primary-light .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-primary-light .navbar-start .navbar-link:hover,
  .navbar.is-primary-light .navbar-start .navbar-link.is-active,
  .navbar.is-primary-light .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-primary-light .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-primary-light .navbar-end .navbar-link:hover,
  .navbar.is-primary-light .navbar-end .navbar-link.is-active {
        background-color: #ededed;
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-primary-light .navbar-start .navbar-link::after,
  .navbar.is-primary-light .navbar-end .navbar-link::after {
        border-color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-primary-light .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-primary-light .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #ededed;
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-primary-light .navbar-dropdown a.navbar-item.is-active {
        background-color: #fafafa;
        color: rgba(0, 0, 0, 0.7);
    }
}

.navbar.is-secondary {
    background-color: #101010;
    color: #fff;
}

.navbar.is-secondary .navbar-brand &gt; .navbar-item,
.navbar.is-secondary .navbar-brand .navbar-link {
    color: #fff;
}

.navbar.is-secondary .navbar-brand &gt; a.navbar-item:hover, .navbar.is-secondary .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-secondary .navbar-brand .navbar-link:hover,
.navbar.is-secondary .navbar-brand .navbar-link.is-active {
    background-color: #030303;
    color: #fff;
}

.navbar.is-secondary .navbar-brand .navbar-link::after {
    border-color: #fff;
}

@media screen and (min-width: 1088px) {
    .navbar.is-secondary .navbar-start &gt; .navbar-item,
  .navbar.is-secondary .navbar-start .navbar-link,
  .navbar.is-secondary .navbar-end &gt; .navbar-item,
  .navbar.is-secondary .navbar-end .navbar-link {
        color: #fff;
    }

    .navbar.is-secondary .navbar-start &gt; a.navbar-item:hover, .navbar.is-secondary .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-secondary .navbar-start .navbar-link:hover,
  .navbar.is-secondary .navbar-start .navbar-link.is-active,
  .navbar.is-secondary .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-secondary .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-secondary .navbar-end .navbar-link:hover,
  .navbar.is-secondary .navbar-end .navbar-link.is-active {
        background-color: #030303;
        color: #fff;
    }

    .navbar.is-secondary .navbar-start .navbar-link::after,
  .navbar.is-secondary .navbar-end .navbar-link::after {
        border-color: #fff;
    }

    .navbar.is-secondary .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-secondary .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #030303;
        color: #fff;
    }

    .navbar.is-secondary .navbar-dropdown a.navbar-item.is-active {
        background-color: #101010;
        color: #fff;
    }
}

.navbar.is-secondary-2 {
    background-color: #131313;
    color: #fff;
}

.navbar.is-secondary-2 .navbar-brand &gt; .navbar-item,
.navbar.is-secondary-2 .navbar-brand .navbar-link {
    color: #fff;
}

.navbar.is-secondary-2 .navbar-brand &gt; a.navbar-item:hover, .navbar.is-secondary-2 .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-secondary-2 .navbar-brand .navbar-link:hover,
.navbar.is-secondary-2 .navbar-brand .navbar-link.is-active {
    background-color: #060606;
    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-start &gt; .navbar-item,
  .navbar.is-secondary-2 .navbar-start .navbar-link,
  .navbar.is-secondary-2 .navbar-end &gt; .navbar-item,
  .navbar.is-secondary-2 .navbar-end .navbar-link {
        color: #fff;
    }

    .navbar.is-secondary-2 .navbar-start &gt; a.navbar-item:hover, .navbar.is-secondary-2 .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-secondary-2 .navbar-start .navbar-link:hover,
  .navbar.is-secondary-2 .navbar-start .navbar-link.is-active,
  .navbar.is-secondary-2 .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-secondary-2 .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-secondary-2 .navbar-end .navbar-link:hover,
  .navbar.is-secondary-2 .navbar-end .navbar-link.is-active {
        background-color: #060606;
        color: #fff;
    }

    .navbar.is-secondary-2 .navbar-start .navbar-link::after,
  .navbar.is-secondary-2 .navbar-end .navbar-link::after {
        border-color: #fff;
    }

    .navbar.is-secondary-2 .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-secondary-2 .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #060606;
        color: #fff;
    }

    .navbar.is-secondary-2 .navbar-dropdown a.navbar-item.is-active {
        background-color: #131313;
        color: #fff;
    }
}

.navbar.is-secondary-3 {
    background-color: #232323;
    color: #fff;
}

.navbar.is-secondary-3 .navbar-brand &gt; .navbar-item,
.navbar.is-secondary-3 .navbar-brand .navbar-link {
    color: #fff;
}

.navbar.is-secondary-3 .navbar-brand &gt; a.navbar-item:hover, .navbar.is-secondary-3 .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-secondary-3 .navbar-brand .navbar-link:hover,
.navbar.is-secondary-3 .navbar-brand .navbar-link.is-active {
    background-color: #161616;
    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-start &gt; .navbar-item,
  .navbar.is-secondary-3 .navbar-start .navbar-link,
  .navbar.is-secondary-3 .navbar-end &gt; .navbar-item,
  .navbar.is-secondary-3 .navbar-end .navbar-link {
        color: #fff;
    }

    .navbar.is-secondary-3 .navbar-start &gt; a.navbar-item:hover, .navbar.is-secondary-3 .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-secondary-3 .navbar-start .navbar-link:hover,
  .navbar.is-secondary-3 .navbar-start .navbar-link.is-active,
  .navbar.is-secondary-3 .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-secondary-3 .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-secondary-3 .navbar-end .navbar-link:hover,
  .navbar.is-secondary-3 .navbar-end .navbar-link.is-active {
        background-color: #161616;
        color: #fff;
    }

    .navbar.is-secondary-3 .navbar-start .navbar-link::after,
  .navbar.is-secondary-3 .navbar-end .navbar-link::after {
        border-color: #fff;
    }

    .navbar.is-secondary-3 .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-secondary-3 .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #161616;
        color: #fff;
    }

    .navbar.is-secondary-3 .navbar-dropdown a.navbar-item.is-active {
        background-color: #232323;
        color: #fff;
    }
}

.navbar.is-secondary-4 {
    background-color: #363636;
    color: #fff;
}

.navbar.is-secondary-4 .navbar-brand &gt; .navbar-item,
.navbar.is-secondary-4 .navbar-brand .navbar-link {
    color: #fff;
}

.navbar.is-secondary-4 .navbar-brand &gt; a.navbar-item:hover, .navbar.is-secondary-4 .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-secondary-4 .navbar-brand .navbar-link:hover,
.navbar.is-secondary-4 .navbar-brand .navbar-link.is-active {
    background-color: #292929;
    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-start &gt; .navbar-item,
  .navbar.is-secondary-4 .navbar-start .navbar-link,
  .navbar.is-secondary-4 .navbar-end &gt; .navbar-item,
  .navbar.is-secondary-4 .navbar-end .navbar-link {
        color: #fff;
    }

    .navbar.is-secondary-4 .navbar-start &gt; a.navbar-item:hover, .navbar.is-secondary-4 .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-secondary-4 .navbar-start .navbar-link:hover,
  .navbar.is-secondary-4 .navbar-start .navbar-link.is-active,
  .navbar.is-secondary-4 .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-secondary-4 .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-secondary-4 .navbar-end .navbar-link:hover,
  .navbar.is-secondary-4 .navbar-end .navbar-link.is-active {
        background-color: #292929;
        color: #fff;
    }

    .navbar.is-secondary-4 .navbar-start .navbar-link::after,
  .navbar.is-secondary-4 .navbar-end .navbar-link::after {
        border-color: #fff;
    }

    .navbar.is-secondary-4 .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-secondary-4 .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #292929;
        color: #fff;
    }

    .navbar.is-secondary-4 .navbar-dropdown a.navbar-item.is-active {
        background-color: #363636;
        color: #fff;
    }
}

.navbar.is-secondary-5 {
    background-color: #5c5c5c;
    color: #fff;
}

.navbar.is-secondary-5 .navbar-brand &gt; .navbar-item,
.navbar.is-secondary-5 .navbar-brand .navbar-link {
    color: #fff;
}

.navbar.is-secondary-5 .navbar-brand &gt; a.navbar-item:hover, .navbar.is-secondary-5 .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-secondary-5 .navbar-brand .navbar-link:hover,
.navbar.is-secondary-5 .navbar-brand .navbar-link.is-active {
    background-color: #4f4f4f;
    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-start &gt; .navbar-item,
  .navbar.is-secondary-5 .navbar-start .navbar-link,
  .navbar.is-secondary-5 .navbar-end &gt; .navbar-item,
  .navbar.is-secondary-5 .navbar-end .navbar-link {
        color: #fff;
    }

    .navbar.is-secondary-5 .navbar-start &gt; a.navbar-item:hover, .navbar.is-secondary-5 .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-secondary-5 .navbar-start .navbar-link:hover,
  .navbar.is-secondary-5 .navbar-start .navbar-link.is-active,
  .navbar.is-secondary-5 .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-secondary-5 .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-secondary-5 .navbar-end .navbar-link:hover,
  .navbar.is-secondary-5 .navbar-end .navbar-link.is-active {
        background-color: #4f4f4f;
        color: #fff;
    }

    .navbar.is-secondary-5 .navbar-start .navbar-link::after,
  .navbar.is-secondary-5 .navbar-end .navbar-link::after {
        border-color: #fff;
    }

    .navbar.is-secondary-5 .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-secondary-5 .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #4f4f4f;
        color: #fff;
    }

    .navbar.is-secondary-5 .navbar-dropdown a.navbar-item.is-active {
        background-color: #5c5c5c;
        color: #fff;
    }
}

.navbar.is-tertiary {
    background-color: #A6A6A6;
    color: #fff;
}

.navbar.is-tertiary .navbar-brand &gt; .navbar-item,
.navbar.is-tertiary .navbar-brand .navbar-link {
    color: #fff;
}

.navbar.is-tertiary .navbar-brand &gt; a.navbar-item:hover, .navbar.is-tertiary .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-tertiary .navbar-brand .navbar-link:hover,
.navbar.is-tertiary .navbar-brand .navbar-link.is-active {
    background-color: #999999;
    color: #fff;
}

.navbar.is-tertiary .navbar-brand .navbar-link::after {
    border-color: #fff;
}

@media screen and (min-width: 1088px) {
    .navbar.is-tertiary .navbar-start &gt; .navbar-item,
  .navbar.is-tertiary .navbar-start .navbar-link,
  .navbar.is-tertiary .navbar-end &gt; .navbar-item,
  .navbar.is-tertiary .navbar-end .navbar-link {
        color: #fff;
    }

    .navbar.is-tertiary .navbar-start &gt; a.navbar-item:hover, .navbar.is-tertiary .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-tertiary .navbar-start .navbar-link:hover,
  .navbar.is-tertiary .navbar-start .navbar-link.is-active,
  .navbar.is-tertiary .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-tertiary .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-tertiary .navbar-end .navbar-link:hover,
  .navbar.is-tertiary .navbar-end .navbar-link.is-active {
        background-color: #999999;
        color: #fff;
    }

    .navbar.is-tertiary .navbar-start .navbar-link::after,
  .navbar.is-tertiary .navbar-end .navbar-link::after {
        border-color: #fff;
    }

    .navbar.is-tertiary .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-tertiary .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #999999;
        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, 0.7);
}

.navbar.is-tertiary-2 .navbar-brand &gt; .navbar-item,
.navbar.is-tertiary-2 .navbar-brand .navbar-link {
    color: rgba(0, 0, 0, 0.7);
}

.navbar.is-tertiary-2 .navbar-brand &gt; a.navbar-item:hover, .navbar.is-tertiary-2 .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-tertiary-2 .navbar-brand .navbar-link:hover,
.navbar.is-tertiary-2 .navbar-brand .navbar-link.is-active {
    background-color: #cbcbcb;
    color: rgba(0, 0, 0, 0.7);
}

.navbar.is-tertiary-2 .navbar-brand .navbar-link::after {
    border-color: rgba(0, 0, 0, 0.7);
}

@media screen and (min-width: 1088px) {
    .navbar.is-tertiary-2 .navbar-start &gt; .navbar-item,
  .navbar.is-tertiary-2 .navbar-start .navbar-link,
  .navbar.is-tertiary-2 .navbar-end &gt; .navbar-item,
  .navbar.is-tertiary-2 .navbar-end .navbar-link {
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-tertiary-2 .navbar-start &gt; a.navbar-item:hover, .navbar.is-tertiary-2 .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-tertiary-2 .navbar-start .navbar-link:hover,
  .navbar.is-tertiary-2 .navbar-start .navbar-link.is-active,
  .navbar.is-tertiary-2 .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-tertiary-2 .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-tertiary-2 .navbar-end .navbar-link:hover,
  .navbar.is-tertiary-2 .navbar-end .navbar-link.is-active {
        background-color: #cbcbcb;
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-tertiary-2 .navbar-start .navbar-link::after,
  .navbar.is-tertiary-2 .navbar-end .navbar-link::after {
        border-color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-tertiary-2 .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-tertiary-2 .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #cbcbcb;
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-tertiary-2 .navbar-dropdown a.navbar-item.is-active {
        background-color: #D8D8D8;
        color: rgba(0, 0, 0, 0.7);
    }
}

.navbar.is-tertiary-3 {
    background-color: #D7D6D3;
    color: rgba(0, 0, 0, 0.7);
}

.navbar.is-tertiary-3 .navbar-brand &gt; .navbar-item,
.navbar.is-tertiary-3 .navbar-brand .navbar-link {
    color: rgba(0, 0, 0, 0.7);
}

.navbar.is-tertiary-3 .navbar-brand &gt; a.navbar-item:hover, .navbar.is-tertiary-3 .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-tertiary-3 .navbar-brand .navbar-link:hover,
.navbar.is-tertiary-3 .navbar-brand .navbar-link.is-active {
    background-color: #cbcac6;
    color: rgba(0, 0, 0, 0.7);
}

.navbar.is-tertiary-3 .navbar-brand .navbar-link::after {
    border-color: rgba(0, 0, 0, 0.7);
}

@media screen and (min-width: 1088px) {
    .navbar.is-tertiary-3 .navbar-start &gt; .navbar-item,
  .navbar.is-tertiary-3 .navbar-start .navbar-link,
  .navbar.is-tertiary-3 .navbar-end &gt; .navbar-item,
  .navbar.is-tertiary-3 .navbar-end .navbar-link {
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-tertiary-3 .navbar-start &gt; a.navbar-item:hover, .navbar.is-tertiary-3 .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-tertiary-3 .navbar-start .navbar-link:hover,
  .navbar.is-tertiary-3 .navbar-start .navbar-link.is-active,
  .navbar.is-tertiary-3 .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-tertiary-3 .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-tertiary-3 .navbar-end .navbar-link:hover,
  .navbar.is-tertiary-3 .navbar-end .navbar-link.is-active {
        background-color: #cbcac6;
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-tertiary-3 .navbar-start .navbar-link::after,
  .navbar.is-tertiary-3 .navbar-end .navbar-link::after {
        border-color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-tertiary-3 .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-tertiary-3 .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #cbcac6;
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-tertiary-3 .navbar-dropdown a.navbar-item.is-active {
        background-color: #D7D6D3;
        color: rgba(0, 0, 0, 0.7);
    }
}

.navbar.is-tertiary-4 {
    background-color: #AFAFAF;
    color: #fff;
}

.navbar.is-tertiary-4 .navbar-brand &gt; .navbar-item,
.navbar.is-tertiary-4 .navbar-brand .navbar-link {
    color: #fff;
}

.navbar.is-tertiary-4 .navbar-brand &gt; a.navbar-item:hover, .navbar.is-tertiary-4 .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-tertiary-4 .navbar-brand .navbar-link:hover,
.navbar.is-tertiary-4 .navbar-brand .navbar-link.is-active {
    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-start &gt; .navbar-item,
  .navbar.is-tertiary-4 .navbar-start .navbar-link,
  .navbar.is-tertiary-4 .navbar-end &gt; .navbar-item,
  .navbar.is-tertiary-4 .navbar-end .navbar-link {
        color: #fff;
    }

    .navbar.is-tertiary-4 .navbar-start &gt; a.navbar-item:hover, .navbar.is-tertiary-4 .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-tertiary-4 .navbar-start .navbar-link:hover,
  .navbar.is-tertiary-4 .navbar-start .navbar-link.is-active,
  .navbar.is-tertiary-4 .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-tertiary-4 .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-tertiary-4 .navbar-end .navbar-link:hover,
  .navbar.is-tertiary-4 .navbar-end .navbar-link.is-active {
        background-color: #a2a2a2;
        color: #fff;
    }

    .navbar.is-tertiary-4 .navbar-start .navbar-link::after,
  .navbar.is-tertiary-4 .navbar-end .navbar-link::after {
        border-color: #fff;
    }

    .navbar.is-tertiary-4 .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-tertiary-4 .navbar-item.has-dropdown.is-active .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, 0.7);
}

.navbar.is-tertiary-5 .navbar-brand &gt; .navbar-item,
.navbar.is-tertiary-5 .navbar-brand .navbar-link {
    color: rgba(0, 0, 0, 0.7);
}

.navbar.is-tertiary-5 .navbar-brand &gt; a.navbar-item:hover, .navbar.is-tertiary-5 .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-tertiary-5 .navbar-brand .navbar-link:hover,
.navbar.is-tertiary-5 .navbar-brand .navbar-link.is-active {
    background-color: #dddddd;
    color: rgba(0, 0, 0, 0.7);
}

.navbar.is-tertiary-5 .navbar-brand .navbar-link::after {
    border-color: rgba(0, 0, 0, 0.7);
}

@media screen and (min-width: 1088px) {
    .navbar.is-tertiary-5 .navbar-start &gt; .navbar-item,
  .navbar.is-tertiary-5 .navbar-start .navbar-link,
  .navbar.is-tertiary-5 .navbar-end &gt; .navbar-item,
  .navbar.is-tertiary-5 .navbar-end .navbar-link {
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-tertiary-5 .navbar-start &gt; a.navbar-item:hover, .navbar.is-tertiary-5 .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-tertiary-5 .navbar-start .navbar-link:hover,
  .navbar.is-tertiary-5 .navbar-start .navbar-link.is-active,
  .navbar.is-tertiary-5 .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-tertiary-5 .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-tertiary-5 .navbar-end .navbar-link:hover,
  .navbar.is-tertiary-5 .navbar-end .navbar-link.is-active {
        background-color: #dddddd;
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-tertiary-5 .navbar-start .navbar-link::after,
  .navbar.is-tertiary-5 .navbar-end .navbar-link::after {
        border-color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-tertiary-5 .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-tertiary-5 .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #dddddd;
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-tertiary-5 .navbar-dropdown a.navbar-item.is-active {
        background-color: #EAEAEA;
        color: rgba(0, 0, 0, 0.7);
    }
}

.navbar.is-tertiary-6 {
    background-color: #B0B0B0;
    color: #fff;
}

.navbar.is-tertiary-6 .navbar-brand &gt; .navbar-item,
.navbar.is-tertiary-6 .navbar-brand .navbar-link {
    color: #fff;
}

.navbar.is-tertiary-6 .navbar-brand &gt; a.navbar-item:hover, .navbar.is-tertiary-6 .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-tertiary-6 .navbar-brand .navbar-link:hover,
.navbar.is-tertiary-6 .navbar-brand .navbar-link.is-active {
    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-start &gt; .navbar-item,
  .navbar.is-tertiary-6 .navbar-start .navbar-link,
  .navbar.is-tertiary-6 .navbar-end &gt; .navbar-item,
  .navbar.is-tertiary-6 .navbar-end .navbar-link {
        color: #fff;
    }

    .navbar.is-tertiary-6 .navbar-start &gt; a.navbar-item:hover, .navbar.is-tertiary-6 .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-tertiary-6 .navbar-start .navbar-link:hover,
  .navbar.is-tertiary-6 .navbar-start .navbar-link.is-active,
  .navbar.is-tertiary-6 .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-tertiary-6 .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-tertiary-6 .navbar-end .navbar-link:hover,
  .navbar.is-tertiary-6 .navbar-end .navbar-link.is-active {
        background-color: #a3a3a3;
        color: #fff;
    }

    .navbar.is-tertiary-6 .navbar-start .navbar-link::after,
  .navbar.is-tertiary-6 .navbar-end .navbar-link::after {
        border-color: #fff;
    }

    .navbar.is-tertiary-6 .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-tertiary-6 .navbar-item.has-dropdown.is-active .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 &gt; .navbar-item,
.navbar.is-tertiary-7 .navbar-brand .navbar-link {
    color: #fff;
}

.navbar.is-tertiary-7 .navbar-brand &gt; a.navbar-item:hover, .navbar.is-tertiary-7 .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-tertiary-7 .navbar-brand .navbar-link:hover,
.navbar.is-tertiary-7 .navbar-brand .navbar-link.is-active {
    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-start &gt; .navbar-item,
  .navbar.is-tertiary-7 .navbar-start .navbar-link,
  .navbar.is-tertiary-7 .navbar-end &gt; .navbar-item,
  .navbar.is-tertiary-7 .navbar-end .navbar-link {
        color: #fff;
    }

    .navbar.is-tertiary-7 .navbar-start &gt; a.navbar-item:hover, .navbar.is-tertiary-7 .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-tertiary-7 .navbar-start .navbar-link:hover,
  .navbar.is-tertiary-7 .navbar-start .navbar-link.is-active,
  .navbar.is-tertiary-7 .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-tertiary-7 .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-tertiary-7 .navbar-end .navbar-link:hover,
  .navbar.is-tertiary-7 .navbar-end .navbar-link.is-active {
        background-color: #898989;
        color: #fff;
    }

    .navbar.is-tertiary-7 .navbar-start .navbar-link::after,
  .navbar.is-tertiary-7 .navbar-end .navbar-link::after {
        border-color: #fff;
    }

    .navbar.is-tertiary-7 .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-tertiary-7 .navbar-item.has-dropdown.is-active .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: #999999;
    color: #fff;
}

.navbar.is-tertiary-8 .navbar-brand &gt; .navbar-item,
.navbar.is-tertiary-8 .navbar-brand .navbar-link {
    color: #fff;
}

.navbar.is-tertiary-8 .navbar-brand &gt; a.navbar-item:hover, .navbar.is-tertiary-8 .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-tertiary-8 .navbar-brand .navbar-link:hover,
.navbar.is-tertiary-8 .navbar-brand .navbar-link.is-active {
    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-start &gt; .navbar-item,
  .navbar.is-tertiary-8 .navbar-start .navbar-link,
  .navbar.is-tertiary-8 .navbar-end &gt; .navbar-item,
  .navbar.is-tertiary-8 .navbar-end .navbar-link {
        color: #fff;
    }

    .navbar.is-tertiary-8 .navbar-start &gt; a.navbar-item:hover, .navbar.is-tertiary-8 .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-tertiary-8 .navbar-start .navbar-link:hover,
  .navbar.is-tertiary-8 .navbar-start .navbar-link.is-active,
  .navbar.is-tertiary-8 .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-tertiary-8 .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-tertiary-8 .navbar-end .navbar-link:hover,
  .navbar.is-tertiary-8 .navbar-end .navbar-link.is-active {
        background-color: #8c8c8c;
        color: #fff;
    }

    .navbar.is-tertiary-8 .navbar-start .navbar-link::after,
  .navbar.is-tertiary-8 .navbar-end .navbar-link::after {
        border-color: #fff;
    }

    .navbar.is-tertiary-8 .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-tertiary-8 .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #8c8c8c;
        color: #fff;
    }

    .navbar.is-tertiary-8 .navbar-dropdown a.navbar-item.is-active {
        background-color: #999999;
        color: #fff;
    }
}

.navbar.is-tertiary-9 {
    background-color: #f5f5f5;
    color: rgba(0, 0, 0, 0.7);
}

.navbar.is-tertiary-9 .navbar-brand &gt; .navbar-item,
.navbar.is-tertiary-9 .navbar-brand .navbar-link {
    color: rgba(0, 0, 0, 0.7);
}

.navbar.is-tertiary-9 .navbar-brand &gt; a.navbar-item:hover, .navbar.is-tertiary-9 .navbar-brand &gt; a.navbar-item.is-active,
.navbar.is-tertiary-9 .navbar-brand .navbar-link:hover,
.navbar.is-tertiary-9 .navbar-brand .navbar-link.is-active {
    background-color: #e8e8e8;
    color: rgba(0, 0, 0, 0.7);
}

.navbar.is-tertiary-9 .navbar-brand .navbar-link::after {
    border-color: rgba(0, 0, 0, 0.7);
}

@media screen and (min-width: 1088px) {
    .navbar.is-tertiary-9 .navbar-start &gt; .navbar-item,
  .navbar.is-tertiary-9 .navbar-start .navbar-link,
  .navbar.is-tertiary-9 .navbar-end &gt; .navbar-item,
  .navbar.is-tertiary-9 .navbar-end .navbar-link {
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-tertiary-9 .navbar-start &gt; a.navbar-item:hover, .navbar.is-tertiary-9 .navbar-start &gt; a.navbar-item.is-active,
  .navbar.is-tertiary-9 .navbar-start .navbar-link:hover,
  .navbar.is-tertiary-9 .navbar-start .navbar-link.is-active,
  .navbar.is-tertiary-9 .navbar-end &gt; a.navbar-item:hover,
  .navbar.is-tertiary-9 .navbar-end &gt; a.navbar-item.is-active,
  .navbar.is-tertiary-9 .navbar-end .navbar-link:hover,
  .navbar.is-tertiary-9 .navbar-end .navbar-link.is-active {
        background-color: #e8e8e8;
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-tertiary-9 .navbar-start .navbar-link::after,
  .navbar.is-tertiary-9 .navbar-end .navbar-link::after {
        border-color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-tertiary-9 .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-tertiary-9 .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #e8e8e8;
        color: rgba(0, 0, 0, 0.7);
    }

    .navbar.is-tertiary-9 .navbar-dropdown a.navbar-item.is-active {
        background-color: #f5f5f5;
        color: rgba(0, 0, 0, 0.7);
    }
}

.navbar &gt; .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 whitesmoke;
    box-shadow: 0 2px 0 0 whitesmoke;
}

.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 whitesmoke;
    box-shadow: 0 -2px 0 0 whitesmoke;
}

.navbar.is-fixed-top {
    top: 0;
}

html.has-navbar-fixed-top,
body.has-navbar-fixed-top {
    padding-top: 3.25rem;
}

html.has-navbar-fixed-bottom,
body.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, 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: 0.5rem 0.75rem;
    position: relative;
}

.navbar-item .icon:only-child,
.navbar-link .icon:only-child {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
}

a.navbar-item,
.navbar-link {
    cursor: pointer;
}

a.navbar-item:hover, a.navbar-item.is-active,
.navbar-link:hover,
.navbar-link.is-active {
    background-color: #fafafa;
    color: #f80036;
}

.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(0.5rem - 1px);
}

.navbar-item.is-tab:hover {
    background-color: transparent;
    border-bottom-color: #f80036;
}

.navbar-item.is-tab.is-active {
    background-color: transparent;
    border-bottom-color: #f80036;
    border-bottom-style: solid;
    border-bottom-width: 3px;
    color: #f80036;
    padding-bottom: calc(0.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: #f80036;
    margin-top: -0.375em;
    right: 1.125em;
}

.navbar-dropdown {
    font-size: 0.875rem;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}

.navbar-dropdown .navbar-item {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.navbar-divider {
    background-color: whitesmoke;
    border: none;
    display: none;
    height: 2px;
    margin: 0.5rem 0;
}

@media screen and (max-width: 1087px) {
    .navbar &gt; .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: white;
        -webkit-box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
        box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
        padding: 0.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, 0.1);
        box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.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;
    }

    html.has-navbar-fixed-top-touch,
  body.has-navbar-fixed-top-touch {
        padding-top: 3.25rem;
    }

    html.has-navbar-fixed-bottom-touch,
  body.has-navbar-fixed-bottom-touch {
        padding-bottom: 3.25rem;
    }
}

@media screen and (min-width: 1088px) {
    .navbar,
  .navbar-menu,
  .navbar-start,
  .navbar-end {
        -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-start,
  .navbar.is-spaced .navbar-end {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .navbar.is-spaced a.navbar-item,
  .navbar.is-spaced .navbar-link {
        border-radius: 4px;
    }

    .navbar.is-transparent a.navbar-item:hover, .navbar.is-transparent a.navbar-item.is-active,
  .navbar.is-transparent .navbar-link:hover,
  .navbar.is-transparent .navbar-link.is-active {
        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: whitesmoke;
        color: #0a0a0a;
    }

    .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active {
        background-color: whitesmoke;
        color: #f80036;
    }

    .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(0.25em, -0.25em);
        transform: rotate(135deg) translate(0.25em, -0.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, 0.1);
        box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1);
        top: auto;
    }

    .navbar-item.is-active .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown {
        display: block;
    }

    .navbar.is-spaced .navbar-item.is-active .navbar-dropdown, .navbar-item.is-active .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed {
        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: white;
        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, 0.1);
        box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1);
        display: none;
        font-size: 0.875rem;
        left: 0;
        min-width: 100%;
        position: absolute;
        top: 100%;
        z-index: 20;
    }

    .navbar-dropdown .navbar-item {
        padding: 0.375rem 1rem;
        white-space: nowrap;
    }

    .navbar-dropdown a.navbar-item {
        padding-right: 3rem;
    }

    .navbar-dropdown a.navbar-item:hover {
        background-color: whitesmoke;
        color: #0a0a0a;
    }

    .navbar-dropdown a.navbar-item.is-active {
        background-color: whitesmoke;
        color: #f80036;
    }

    .navbar.is-spaced .navbar-dropdown, .navbar-dropdown.is-boxed {
        border-radius: 6px;
        border-top: none;
        -webkit-box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
        box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.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;
    }

    .navbar &gt; .container .navbar-brand,
  .container &gt; .navbar .navbar-brand {
        margin-left: -1rem;
    }

    .navbar &gt; .container .navbar-menu,
  .container &gt; .navbar .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, 0.1);
        box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
    }

    .navbar.is-fixed-top-desktop {
        top: 0;
    }

    html.has-navbar-fixed-top-desktop,
  body.has-navbar-fixed-top-desktop {
        padding-top: 3.25rem;
    }

    html.has-navbar-fixed-bottom-desktop,
  body.has-navbar-fixed-bottom-desktop {
        padding-bottom: 3.25rem;
    }

    html.has-spaced-navbar-fixed-top,
  body.has-spaced-navbar-fixed-top {
        padding-top: 5.25rem;
    }

    html.has-spaced-navbar-fixed-bottom,
  body.has-spaced-navbar-fixed-bottom {
        padding-bottom: 5.25rem;
    }

    a.navbar-item.is-active,
  .navbar-link.is-active {
        color: #0a0a0a;
    }

    a.navbar-item.is-active:not(:hover),
  .navbar-link.is-active:not(:hover) {
        background-color: transparent;
    }

    .navbar-item.has-dropdown:hover .navbar-link, .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #fafafa;
    }
}

.pagination {
    font-size: 1rem;
    margin: 4.5rem 0 0;
}

.pagination.is-small {
    font-size: 0.75rem;
}

.pagination.is-medium {
    font-size: 1.25rem;
}

.pagination.is-large {
    font-size: 1.5rem;
}

.pagination.is-rounded .pagination-previous,
.pagination.is-rounded .pagination-next {
    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-previous,
.pagination-next,
.pagination-link,
.pagination-ellipsis {
    font-size: 1em;
    padding-left: 0.5em;
    padding-right: 0.5em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0.25rem;
    text-align: center;
}

.pagination-previous,
.pagination-next,
.pagination-link {
    border-color: #EAEAEA;
    color: #A6A6A6;
    min-width: 2.25em;
}

.pagination-previous:hover,
.pagination-next:hover,
.pagination-link:hover {
    border-color: transparent;
    color: #fff;
}

.pagination-previous:focus,
.pagination-next:focus,
.pagination-link:focus {
    border-color: #EAEAEA;
}

.pagination-previous:active,
.pagination-next:active,
.pagination-link:active {
    -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2);
    box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2);
}

.pagination-previous[disabled],
.pagination-next[disabled],
.pagination-link[disabled] {
    background-color: #EAEAEA;
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #A6A6A6;
    opacity: 0.5;
}

.pagination-previous,
.pagination-next {
    padding-left: 0.75em;
    padding-right: 0.75em;
    white-space: nowrap;
}

.pagination-link.is-current {
    background-color: #f80036;
    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-previous,
  .pagination-next {
        -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-heading,
.panel-tabs,
.panel-block {
    border-bottom: 1px solid #dbdbdb;
    border-left: 1px solid #dbdbdb;
    border-right: 1px solid #dbdbdb;
}

.panel-heading:first-child,
.panel-tabs:first-child,
.panel-block:first-child {
    border-top: 1px solid #dbdbdb;
}

.panel-heading {
    background-color: whitesmoke;
    border-radius: 4px 4px 0 0;
    color: #363636;
    font-size: 1.25em;
    font-weight: 300;
    line-height: 1.25;
    padding: 0.5em 0.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: 0.875em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.panel-tabs a {
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: -1px;
    padding: 0.5em;
}

.panel-tabs a.is-active {
    border-bottom-color: #4a4a4a;
    color: #363636;
}

.panel-list a {
    color: #4a4a4a;
}

.panel-list a:hover {
    color: #f80036;
}

.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: 0.5em 0.75em;
}

.panel-block input[type="checkbox"] {
    margin-right: 0.75em;
}

.panel-block &gt; .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: #f80036;
    color: #363636;
}

.panel-block.is-active .panel-icon {
    color: #f80036;
}

a.panel-block,
label.panel-block {
    cursor: pointer;
}

a.panel-block:hover,
label.panel-block:hover {
    background-color: whitesmoke;
}

.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: 0.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: #232323 !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: 0.8em 1.2em;
    vertical-align: top;
}

.tabs a:hover {
    border-bottom-color: #AFAFAF !important;
    color: #5c5c5c !important;
}

.tabs li {
    display: block;
}

.tabs li.is-active a {
    border-bottom-color: #f80036 !important;
    color: #f80036 !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: 0.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: 0.75em;
    padding-right: 0.75em;
}

.tabs ul.is-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-left: 0.75em;
}

.tabs .icon:first-child {
    margin-right: 0.5em;
}

.tabs .icon:last-child {
    margin-left: 0.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: 0px 0px 0 0;
}

.tabs.is-boxed a:hover {
    background-color: rgba(240, 240, 240, 0.5);
    border-bottom-color: #F0F0F0 !important;
}

.tabs.is-boxed li.is-active a {
    background-color: white;
    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: whitesmoke;
    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: 0px 0 0 0px;
}

.tabs.is-toggle li:last-child a {
    border-radius: 0 0px 0px 0;
}

.tabs.is-toggle li.is-active a {
    background-color: #f80036;
    border-color: #f80036 !important;
    color: white !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: 0.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: 0.75rem;
}

.columns.is-mobile &gt; .column.is-narrow {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.columns.is-mobile &gt; .column.is-full {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
}

.columns.is-mobile &gt; .column.is-three-quarters {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 75%;
}

.columns.is-mobile &gt; .column.is-two-thirds {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 66.6666%;
}

.columns.is-mobile &gt; .column.is-half {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 50%;
}

.columns.is-mobile &gt; .column.is-one-third {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 33.3333%;
}

.columns.is-mobile &gt; .column.is-one-quarter {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 25%;
}

.columns.is-mobile &gt; .column.is-one-fifth {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 20%;
}

.columns.is-mobile &gt; .column.is-two-fifths {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 40%;
}

.columns.is-mobile &gt; .column.is-three-fifths {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 60%;
}

.columns.is-mobile &gt; .column.is-four-fifths {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 80%;
}

.columns.is-mobile &gt; .column.is-offset-three-quarters {
    margin-left: 75%;
}

.columns.is-mobile &gt; .column.is-offset-two-thirds {
    margin-left: 66.6666%;
}

.columns.is-mobile &gt; .column.is-offset-half {
    margin-left: 50%;
}

.columns.is-mobile &gt; .column.is-offset-one-third {
    margin-left: 33.3333%;
}

.columns.is-mobile &gt; .column.is-offset-one-quarter {
    margin-left: 25%;
}

.columns.is-mobile &gt; .column.is-offset-one-fifth {
    margin-left: 20%;
}

.columns.is-mobile &gt; .column.is-offset-two-fifths {
    margin-left: 40%;
}

.columns.is-mobile &gt; .column.is-offset-three-fifths {
    margin-left: 60%;
}

.columns.is-mobile &gt; .column.is-offset-four-fifths {
    margin-left: 80%;
}

.columns.is-mobile &gt; .column.is-1 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 8.33333%;
}

.columns.is-mobile &gt; .column.is-offset-1 {
    margin-left: 8.33333%;
}

.columns.is-mobile &gt; .column.is-2 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 16.66667%;
}

.columns.is-mobile &gt; .column.is-offset-2 {
    margin-left: 16.66667%;
}

.columns.is-mobile &gt; .column.is-3 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 25%;
}

.columns.is-mobile &gt; .column.is-offset-3 {
    margin-left: 25%;
}

.columns.is-mobile &gt; .column.is-4 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 33.33333%;
}

.columns.is-mobile &gt; .column.is-offset-4 {
    margin-left: 33.33333%;
}

.columns.is-mobile &gt; .column.is-5 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 41.66667%;
}

.columns.is-mobile &gt; .column.is-offset-5 {
    margin-left: 41.66667%;
}

.columns.is-mobile &gt; .column.is-6 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 50%;
}

.columns.is-mobile &gt; .column.is-offset-6 {
    margin-left: 50%;
}

.columns.is-mobile &gt; .column.is-7 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 58.33333%;
}

.columns.is-mobile &gt; .column.is-offset-7 {
    margin-left: 58.33333%;
}

.columns.is-mobile &gt; .column.is-8 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 66.66667%;
}

.columns.is-mobile &gt; .column.is-offset-8 {
    margin-left: 66.66667%;
}

.columns.is-mobile &gt; .column.is-9 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 75%;
}

.columns.is-mobile &gt; .column.is-offset-9 {
    margin-left: 75%;
}

.columns.is-mobile &gt; .column.is-10 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 83.33333%;
}

.columns.is-mobile &gt; .column.is-offset-10 {
    margin-left: 83.33333%;
}

.columns.is-mobile &gt; .column.is-11 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 91.66667%;
}

.columns.is-mobile &gt; .column.is-offset-11 {
    margin-left: 91.66667%;
}

.columns.is-mobile &gt; .column.is-12 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
}

.columns.is-mobile &gt; .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: -0.75rem;
    margin-right: -0.75rem;
    margin-top: -0.75rem;
}

.columns:last-child {
    margin-bottom: -0.75rem;
}

.columns:not(:last-child) {
    margin-bottom: calc(1.5rem - 0.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 &gt; .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: -0.75rem;
    margin-right: -0.75rem;
    margin-top: -0.75rem;
}

.tile.is-ancestor:last-child {
    margin-bottom: -0.75rem;
}

.tile.is-ancestor:not(:last-child) {
    margin-bottom: 0.75rem;
}

.tile.is-child {
    margin: 0 !important;
}

.tile.is-parent {
    padding: 0.75rem;
}

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

.tile.is-vertical &gt; .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: none;
}

.hero .tabs ul {
    border-bottom: none;
}

.hero.is-white {
    background-color: white;
    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, 0.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: white;
    }
}

.hero.is-white .navbar-item,
.hero.is-white .navbar-link {
    color: rgba(10, 10, 10, 0.7);
}

.hero.is-white a.navbar-item:hover, .hero.is-white a.navbar-item.is-active,
.hero.is-white .navbar-link:hover,
.hero.is-white .navbar-link.is-active {
    background-color: #f2f2f2;
    color: #0a0a0a;
}

.hero.is-white .tabs a {
    color: #0a0a0a;
    opacity: 0.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, 0.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: white;
}

.hero.is-white.is-bold {
    background-image: linear-gradient(141deg, #e6e6e6 0%, white 71%, white 100%);
}

@media screen and (max-width: 768px) {
    .hero.is-white.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #e6e6e6 0%, white 71%, white 100%);
    }
}

.hero.is-black {
    background-color: #0a0a0a;
    color: white;
}

.hero.is-black a:not(.button):not(.dropdown-item):not(.tag),
.hero.is-black strong {
    color: inherit;
}

.hero.is-black .title {
    color: white;
}

.hero.is-black .subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.hero.is-black .subtitle a:not(.button),
.hero.is-black .subtitle strong {
    color: white;
}

@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, 0.7);
}

.hero.is-black a.navbar-item:hover, .hero.is-black a.navbar-item.is-active,
.hero.is-black .navbar-link:hover,
.hero.is-black .navbar-link.is-active {
    background-color: black;
    color: white;
}

.hero.is-black .tabs a {
    color: white;
    opacity: 0.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: white;
}

.hero.is-black .tabs.is-boxed a:hover, .hero.is-black .tabs.is-toggle a:hover {
    background-color: rgba(10, 10, 10, 0.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: white;
    border-color: white;
    color: #0a0a0a;
}

.hero.is-black.is-bold {
    background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%);
}

@media screen and (max-width: 768px) {
    .hero.is-black.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%);
    }
}

.hero.is-light {
    background-color: whitesmoke;
    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, 0.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: whitesmoke;
    }
}

.hero.is-light .navbar-item,
.hero.is-light .navbar-link {
    color: rgba(54, 54, 54, 0.7);
}

.hero.is-light a.navbar-item:hover, .hero.is-light a.navbar-item.is-active,
.hero.is-light .navbar-link:hover,
.hero.is-light .navbar-link.is-active {
    background-color: #e8e8e8;
    color: #363636;
}

.hero.is-light .tabs a {
    color: #363636;
    opacity: 0.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, 0.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: whitesmoke;
}

.hero.is-light.is-bold {
    background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%);
}

@media screen and (max-width: 768px) {
    .hero.is-light.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%);
    }
}

.hero.is-dark {
    background-color: #363636;
    color: whitesmoke;
}

.hero.is-dark a:not(.button):not(.dropdown-item):not(.tag),
.hero.is-dark strong {
    color: inherit;
}

.hero.is-dark .title {
    color: whitesmoke;
}

.hero.is-dark .subtitle {
    color: rgba(245, 245, 245, 0.9);
}

.hero.is-dark .subtitle a:not(.button),
.hero.is-dark .subtitle strong {
    color: whitesmoke;
}

@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, 0.7);
}

.hero.is-dark a.navbar-item:hover, .hero.is-dark a.navbar-item.is-active,
.hero.is-dark .navbar-link:hover,
.hero.is-dark .navbar-link.is-active {
    background-color: #292929;
    color: whitesmoke;
}

.hero.is-dark .tabs a {
    color: whitesmoke;
    opacity: 0.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: whitesmoke;
}

.hero.is-dark .tabs.is-boxed a:hover, .hero.is-dark .tabs.is-toggle a:hover {
    background-color: rgba(10, 10, 10, 0.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: whitesmoke;
    border-color: whitesmoke;
    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: #f80036;
    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, 0.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: #f80036;
    }
}

.hero.is-primary .navbar-item,
.hero.is-primary .navbar-link {
    color: rgba(255, 255, 255, 0.7);
}

.hero.is-primary a.navbar-item:hover, .hero.is-primary a.navbar-item.is-active,
.hero.is-primary .navbar-link:hover,
.hero.is-primary .navbar-link.is-active {
    background-color: #df0030;
    color: #fff;
}

.hero.is-primary .tabs a {
    color: #fff;
    opacity: 0.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, 0.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: #f80036;
}

.hero.is-primary.is-bold {
    background-image: linear-gradient(141deg, #c5004c 0%, #f80036 71%, #ff131f 100%);
}

@media screen and (max-width: 768px) {
    .hero.is-primary.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #c5004c 0%, #f80036 71%, #ff131f 100%);
    }
}

.hero.is-link {
    background-color: #f80036;
    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, 0.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: #f80036;
    }
}

.hero.is-link .navbar-item,
.hero.is-link .navbar-link {
    color: rgba(255, 255, 255, 0.7);
}

.hero.is-link a.navbar-item:hover, .hero.is-link a.navbar-item.is-active,
.hero.is-link .navbar-link:hover,
.hero.is-link .navbar-link.is-active {
    background-color: #df0030;
    color: #fff;
}

.hero.is-link .tabs a {
    color: #fff;
    opacity: 0.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, 0.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: #f80036;
}

.hero.is-link.is-bold {
    background-image: linear-gradient(141deg, #c5004c 0%, #f80036 71%, #ff131f 100%);
}

@media screen and (max-width: 768px) {
    .hero.is-link.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #c5004c 0%, #f80036 71%, #ff131f 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, 0.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, 0.7);
}

.hero.is-info a.navbar-item:hover, .hero.is-info a.navbar-item.is-active,
.hero.is-info .navbar-link:hover,
.hero.is-info .navbar-link.is-active {
    background-color: #118fe4;
    color: #fff;
}

.hero.is-info .tabs a {
    color: #fff;
    opacity: 0.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, 0.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, 0.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, 0.7);
}

.hero.is-success a.navbar-item:hover, .hero.is-success a.navbar-item.is-active,
.hero.is-success .navbar-link:hover,
.hero.is-success .navbar-link.is-active {
    background-color: #20bc56;
    color: #fff;
}

.hero.is-success .tabs a {
    color: #fff;
    opacity: 0.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, 0.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, 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, 0.7);
}

.hero.is-warning .subtitle {
    color: rgba(0, 0, 0, 0.9);
}

.hero.is-warning .subtitle a:not(.button),
.hero.is-warning .subtitle strong {
    color: rgba(0, 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, 0.7);
}

.hero.is-warning a.navbar-item:hover, .hero.is-warning a.navbar-item.is-active,
.hero.is-warning .navbar-link:hover,
.hero.is-warning .navbar-link.is-active {
    background-color: #ffd83d;
    color: rgba(0, 0, 0, 0.7);
}

.hero.is-warning .tabs a {
    color: rgba(0, 0, 0, 0.7);
    opacity: 0.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, 0.7);
}

.hero.is-warning .tabs.is-boxed a:hover, .hero.is-warning .tabs.is-toggle a:hover {
    background-color: rgba(10, 10, 10, 0.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, 0.7);
    border-color: rgba(0, 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, 0.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, 0.7);
}

.hero.is-danger a.navbar-item:hover, .hero.is-danger a.navbar-item.is-active,
.hero.is-danger .navbar-link:hover,
.hero.is-danger .navbar-link.is-active {
    background-color: #ff1f4b;
    color: #fff;
}

.hero.is-danger .tabs a {
    color: #fff;
    opacity: 0.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, 0.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: #fb1043;
    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, 0.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: #fb1043;
    }
}

.hero.is-primary-2 .navbar-item,
.hero.is-primary-2 .navbar-link {
    color: rgba(255, 255, 255, 0.7);
}

.hero.is-primary-2 a.navbar-item:hover, .hero.is-primary-2 a.navbar-item.is-active,
.hero.is-primary-2 .navbar-link:hover,
.hero.is-primary-2 .navbar-link.is-active {
    background-color: #ee0437;
    color: #fff;
}

.hero.is-primary-2 .tabs a {
    color: #fff;
    opacity: 0.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, 0.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: #fb1043;
}

.hero.is-primary-2.is-bold {
    background-image: linear-gradient(141deg, #d80053 0%, #fb1043 71%, #ff2630 100%);
}

@media screen and (max-width: 768px) {
    .hero.is-primary-2.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #d80053 0%, #fb1043 71%, #ff2630 100%);
    }
}

.hero.is-primary-3 {
    background-color: #ec0235;
    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, 0.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: #ec0235;
    }
}

.hero.is-primary-3 .navbar-item,
.hero.is-primary-3 .navbar-link {
    color: rgba(255, 255, 255, 0.7);
}

.hero.is-primary-3 a.navbar-item:hover, .hero.is-primary-3 a.navbar-item.is-active,
.hero.is-primary-3 .navbar-link:hover,
.hero.is-primary-3 .navbar-link.is-active {
    background-color: #d3022f;
    color: #fff;
}

.hero.is-primary-3 .tabs a {
    color: #fff;
    opacity: 0.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, 0.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: #ec0235;
}

.hero.is-primary-3.is-bold {
    background-image: linear-gradient(141deg, #bb0048 0%, #ec0235 71%, #ff0915 100%);
}

@media screen and (max-width: 768px) {
    .hero.is-primary-3.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #bb0048 0%, #ec0235 71%, #ff0915 100%);
    }
}

.hero.is-primary-4 {
    background-color: #f1093c;
    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, 0.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: #f1093c;
    }
}

.hero.is-primary-4 .navbar-item,
.hero.is-primary-4 .navbar-link {
    color: rgba(255, 255, 255, 0.7);
}

.hero.is-primary-4 a.navbar-item:hover, .hero.is-primary-4 a.navbar-item.is-active,
.hero.is-primary-4 .navbar-link:hover,
.hero.is-primary-4 .navbar-link.is-active {
    background-color: #d80836;
    color: #fff;
}

.hero.is-primary-4 .tabs a {
    color: #fff;
    opacity: 0.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, 0.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: #f1093c;
}

.hero.is-primary-4.is-bold {
    background-image: linear-gradient(141deg, #c7004d 0%, #f1093c 71%, #fc1723 100%);
}

@media screen and (max-width: 768px) {
    .hero.is-primary-4.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #c7004d 0%, #f1093c 71%, #fc1723 100%);
    }
}

.hero.is-primary-5 {
    background-color: #ee0034;
    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, 0.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: #ee0034;
    }
}

.hero.is-primary-5 .navbar-item,
.hero.is-primary-5 .navbar-link {
    color: rgba(255, 255, 255, 0.7);
}

.hero.is-primary-5 a.navbar-item:hover, .hero.is-primary-5 a.navbar-item.is-active,
.hero.is-primary-5 .navbar-link:hover,
.hero.is-primary-5 .navbar-link.is-active {
    background-color: #d5002e;
    color: #fff;
}

.hero.is-primary-5 .tabs a {
    color: #fff;
    opacity: 0.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, 0.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: #ee0034;
}

.hero.is-primary-5.is-bold {
    background-image: linear-gradient(141deg, #bb0048 0%, #ee0034 71%, #ff0915 100%);
}

@media screen and (max-width: 768px) {
    .hero.is-primary-5.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #bb0048 0%, #ee0034 71%, #ff0915 100%);
    }
}

.hero.is-primary-6 {
    background-color: #f30337;
    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, 0.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: #f30337;
    }
}

.hero.is-primary-6 .navbar-item,
.hero.is-primary-6 .navbar-link {
    color: rgba(255, 255, 255, 0.7);
}

.hero.is-primary-6 a.navbar-item:hover, .hero.is-primary-6 a.navbar-item.is-active,
.hero.is-primary-6 .navbar-link:hover,
.hero.is-primary-6 .navbar-link.is-active {
    background-color: #da0331;
    color: #fff;
}

.hero.is-primary-6 .tabs a {
    color: #fff;
    opacity: 0.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, 0.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: #f30337;
}

.hero.is-primary-6.is-bold {
    background-image: linear-gradient(141deg, #c3004b 0%, #f30337 71%, #ff111c 100%);
}

@media screen and (max-width: 768px) {
    .hero.is-primary-6.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #c3004b 0%, #f30337 71%, #ff111c 100%);
    }
}

.hero.is-primary-7 {
    background-color: #fef6f6;
    color: rgba(0, 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, 0.7);
}

.hero.is-primary-7 .subtitle {
    color: rgba(0, 0, 0, 0.9);
}

.hero.is-primary-7 .subtitle a:not(.button),
.hero.is-primary-7 .subtitle strong {
    color: rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 1087px) {
    .hero.is-primary-7 .navbar-menu {
        background-color: #fef6f6;
    }
}

.hero.is-primary-7 .navbar-item,
.hero.is-primary-7 .navbar-link {
    color: rgba(0, 0, 0, 0.7);
}

.hero.is-primary-7 a.navbar-item:hover, .hero.is-primary-7 a.navbar-item.is-active,
.hero.is-primary-7 .navbar-link:hover,
.hero.is-primary-7 .navbar-link.is-active {
    background-color: #fbdfdf;
    color: rgba(0, 0, 0, 0.7);
}

.hero.is-primary-7 .tabs a {
    color: rgba(0, 0, 0, 0.7);
    opacity: 0.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, 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, 0.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, 0.7);
    border-color: rgba(0, 0, 0, 0.7);
    color: #fef6f6;
}

.hero.is-primary-7.is-bold {
    background-image: linear-gradient(141deg, #fcc5ce 0%, #fef6f6 71%, white 100%);
}

@media screen and (max-width: 768px) {
    .hero.is-primary-7.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #fcc5ce 0%, #fef6f6 71%, white 100%);
    }
}

.hero.is-primary-light {
    background-color: #fafafa;
    color: rgba(0, 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, 0.7);
}

.hero.is-primary-light .subtitle {
    color: rgba(0, 0, 0, 0.9);
}

.hero.is-primary-light .subtitle a:not(.button),
.hero.is-primary-light .subtitle strong {
    color: rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 1087px) {
    .hero.is-primary-light .navbar-menu {
        background-color: #fafafa;
    }
}

.hero.is-primary-light .navbar-item,
.hero.is-primary-light .navbar-link {
    color: rgba(0, 0, 0, 0.7);
}

.hero.is-primary-light a.navbar-item:hover, .hero.is-primary-light a.navbar-item.is-active,
.hero.is-primary-light .navbar-link:hover,
.hero.is-primary-light .navbar-link.is-active {
    background-color: #ededed;
    color: rgba(0, 0, 0, 0.7);
}

.hero.is-primary-light .tabs a {
    color: rgba(0, 0, 0, 0.7);
    opacity: 0.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, 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, 0.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, 0.7);
    border-color: rgba(0, 0, 0, 0.7);
    color: #fafafa;
}

.hero.is-primary-light.is-bold {
    background-image: linear-gradient(141deg, #e4ddde 0%, #fafafa 71%, white 100%);
}

@media screen and (max-width: 768px) {
    .hero.is-primary-light.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #e4ddde 0%, #fafafa 71%, white 100%);
    }
}

.hero.is-secondary {
    background-color: #101010;
    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, 0.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: #101010;
    }
}

.hero.is-secondary .navbar-item,
.hero.is-secondary .navbar-link {
    color: rgba(255, 255, 255, 0.7);
}

.hero.is-secondary a.navbar-item:hover, .hero.is-secondary a.navbar-item.is-active,
.hero.is-secondary .navbar-link:hover,
.hero.is-secondary .navbar-link.is-active {
    background-color: #030303;
    color: #fff;
}

.hero.is-secondary .tabs a {
    color: #fff;
    opacity: 0.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, 0.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: #101010;
}

.hero.is-secondary.is-bold {
    background-image: linear-gradient(141deg, black 0%, #101010 71%, #1e1c1b 100%);
}

@media screen and (max-width: 768px) {
    .hero.is-secondary.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, black 0%, #101010 71%, #1e1c1b 100%);
    }
}

.hero.is-secondary-2 {
    background-color: #131313;
    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, 0.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: #131313;
    }
}

.hero.is-secondary-2 .navbar-item,
.hero.is-secondary-2 .navbar-link {
    color: rgba(255, 255, 255, 0.7);
}

.hero.is-secondary-2 a.navbar-item:hover, .hero.is-secondary-2 a.navbar-item.is-active,
.hero.is-secondary-2 .navbar-link:hover,
.hero.is-secondary-2 .navbar-link.is-active {
    background-color: #060606;
    color: #fff;
}

.hero.is-secondary-2 .tabs a {
    color: #fff;
    opacity: 0.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, 0.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: #131313;
}

.hero.is-secondary-2.is-bold {
    background-image: linear-gradient(141deg, black 0%, #131313 71%, #211f1e 100%);
}

@media screen and (max-width: 768px) {
    .hero.is-secondary-2.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, black 0%, #131313 71%, #211f1e 100%);
    }
}

.hero.is-secondary-3 {
    background-color: #232323;
    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, 0.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: #232323;
    }
}

.hero.is-secondary-3 .navbar-item,
.hero.is-secondary-3 .navbar-link {
    color: rgba(255, 255, 255, 0.7);
}

.hero.is-secondary-3 a.navbar-item:hover, .hero.is-secondary-3 a.navbar-item.is-active,
.hero.is-secondary-3 .navbar-link:hover,
.hero.is-secondary-3 .navbar-link.is-active {
    background-color: #161616;
    color: #fff;
}

.hero.is-secondary-3 .tabs a {
    color: #fff;
    opacity: 0.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, 0.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: #232323;
}

.hero.is-secondary-3.is-bold {
    background-image: linear-gradient(141deg, #0a0909 0%, #232323 71%, #322e2d 100%);
}

@media screen and (max-width: 768px) {
    .hero.is-secondary-3.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #0a0909 0%, #232323 71%, #322e2d 100%);
    }
}

.hero.is-secondary-4 {
    background-color: #363636;
    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, 0.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: #363636;
    }
}

.hero.is-secondary-4 .navbar-item,
.hero.is-secondary-4 .navbar-link {
    color: rgba(255, 255, 255, 0.7);
}

.hero.is-secondary-4 a.navbar-item:hover, .hero.is-secondary-4 a.navbar-item.is-active,
.hero.is-secondary-4 .navbar-link:hover,
.hero.is-secondary-4 .navbar-link.is-active {
    background-color: #292929;
    color: #fff;
}

.hero.is-secondary-4 .tabs a {
    color: #fff;
    opacity: 0.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, 0.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: #363636;
}

.hero.is-secondary-4.is-bold {
    background-image: linear-gradient(141deg, #1f1a1b 0%, #363636 71%, #46413f 100%);
}

@media screen and (max-width: 768px) {
    .hero.is-secondary-4.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #1f1a1b 0%, #363636 71%, #46413f 100%);
    }
}

.hero.is-secondary-5 {
    background-color: #5c5c5c;
    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, 0.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: #5c5c5c;
    }
}

.hero.is-secondary-5 .navbar-item,
.hero.is-secondary-5 .navbar-link {
    color: rgba(255, 255, 255, 0.7);
}

.hero.is-secondary-5 a.navbar-item:hover, .hero.is-secondary-5 a.navbar-item.is-active,
.hero.is-secondary-5 .navbar-link:hover,
.hero.is-secondary-5 .navbar-link.is-active {
    background-color: #4f4f4f;
    color: #fff;
}

.hero.is-secondary-5 .tabs a {
    color: #fff;
    opacity: 0.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, 0.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: #5c5c5c;
}

.hero.is-secondary-5.is-bold {
    background-image: linear-gradient(141deg, #493c3e 0%, #5c5c5c 71%, #6e6564 100%);
}

@media screen and (max-width: 768px) {
    .hero.is-secondary-5.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #493c3e 0%, #5c5c5c 71%, #6e6564 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, 0.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, 0.7);
}

.hero.is-tertiary a.navbar-item:hover, .hero.is-tertiary a.navbar-item.is-active,
.hero.is-tertiary .navbar-link:hover,
.hero.is-tertiary .navbar-link.is-active {
    background-color: #999999;
    color: #fff;
}

.hero.is-tertiary .tabs a {
    color: #fff;
    opacity: 0.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, 0.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, 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, 0.7);
}

.hero.is-tertiary-2 .subtitle {
    color: rgba(0, 0, 0, 0.9);
}

.hero.is-tertiary-2 .subtitle a:not(.button),
.hero.is-tertiary-2 .subtitle strong {
    color: rgba(0, 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, 0.7);
}

.hero.is-tertiary-2 a.navbar-item:hover, .hero.is-tertiary-2 a.navbar-item.is-active,
.hero.is-tertiary-2 .navbar-link:hover,
.hero.is-tertiary-2 .navbar-link.is-active {
    background-color: #cbcbcb;
    color: rgba(0, 0, 0, 0.7);
}

.hero.is-tertiary-2 .tabs a {
    color: rgba(0, 0, 0, 0.7);
    opacity: 0.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, 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, 0.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, 0.7);
    border-color: rgba(0, 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, 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, 0.7);
}

.hero.is-tertiary-3 .subtitle {
    color: rgba(0, 0, 0, 0.9);
}

.hero.is-tertiary-3 .subtitle a:not(.button),
.hero.is-tertiary-3 .subtitle strong {
    color: rgba(0, 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, 0.7);
}

.hero.is-tertiary-3 a.navbar-item:hover, .hero.is-tertiary-3 a.navbar-item.is-active,
.hero.is-tertiary-3 .navbar-link:hover,
.hero.is-tertiary-3 .navbar-link.is-active {
    background-color: #cbcac6;
    color: rgba(0, 0, 0, 0.7);
}

.hero.is-tertiary-3 .tabs a {
    color: rgba(0, 0, 0, 0.7);
    opacity: 0.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, 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, 0.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, 0.7);
    border-color: rgba(0, 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, 0.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, 0.7);
}

.hero.is-tertiary-4 a.navbar-item:hover, .hero.is-tertiary-4 a.navbar-item.is-active,
.hero.is-tertiary-4 .navbar-link:hover,
.hero.is-tertiary-4 .navbar-link.is-active {
    background-color: #a2a2a2;
    color: #fff;
}

.hero.is-tertiary-4 .tabs a {
    color: #fff;
    opacity: 0.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, 0.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, 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, 0.7);
}

.hero.is-tertiary-5 .subtitle {
    color: rgba(0, 0, 0, 0.9);
}

.hero.is-tertiary-5 .subtitle a:not(.button),
.hero.is-tertiary-5 .subtitle strong {
    color: rgba(0, 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, 0.7);
}

.hero.is-tertiary-5 a.navbar-item:hover, .hero.is-tertiary-5 a.navbar-item.is-active,
.hero.is-tertiary-5 .navbar-link:hover,
.hero.is-tertiary-5 .navbar-link.is-active {
    background-color: #dddddd;
    color: rgba(0, 0, 0, 0.7);
}

.hero.is-tertiary-5 .tabs a {
    color: rgba(0, 0, 0, 0.7);
    opacity: 0.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, 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, 0.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, 0.7);
    border-color: rgba(0, 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, 0.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, 0.7);
}

.hero.is-tertiary-6 a.navbar-item:hover, .hero.is-tertiary-6 a.navbar-item.is-active,
.hero.is-tertiary-6 .navbar-link:hover,
.hero.is-tertiary-6 .navbar-link.is-active {
    background-color: #a3a3a3;
    color: #fff;
}

.hero.is-tertiary-6 .tabs a {
    color: #fff;
    opacity: 0.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, 0.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, 0.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, 0.7);
}

.hero.is-tertiary-7 a.navbar-item:hover, .hero.is-tertiary-7 a.navbar-item.is-active,
.hero.is-tertiary-7 .navbar-link:hover,
.hero.is-tertiary-7 .navbar-link.is-active {
    background-color: #898989;
    color: #fff;
}

.hero.is-tertiary-7 .tabs a {
    color: #fff;
    opacity: 0.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, 0.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: #999999;
    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, 0.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: #999999;
    }
}

.hero.is-tertiary-8 .navbar-item,
.hero.is-tertiary-8 .navbar-link {
    color: rgba(255, 255, 255, 0.7);
}

.hero.is-tertiary-8 a.navbar-item:hover, .hero.is-tertiary-8 a.navbar-item.is-active,
.hero.is-tertiary-8 .navbar-link:hover,
.hero.is-tertiary-8 .navbar-link.is-active {
    background-color: #8c8c8c;
    color: #fff;
}

.hero.is-tertiary-8 .tabs a {
    color: #fff;
    opacity: 0.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, 0.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: #999999;
}

.hero.is-tertiary-8.is-bold {
    background-image: linear-gradient(141deg, #8c7377 0%, #999999 71%, #aaa3a1 100%);
}

@media screen and (max-width: 768px) {
    .hero.is-tertiary-8.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #8c7377 0%, #999999 71%, #aaa3a1 100%);
    }
}

.hero.is-tertiary-9 {
    background-color: #f5f5f5;
    color: rgba(0, 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, 0.7);
}

.hero.is-tertiary-9 .subtitle {
    color: rgba(0, 0, 0, 0.9);
}

.hero.is-tertiary-9 .subtitle a:not(.button),
.hero.is-tertiary-9 .subtitle strong {
    color: rgba(0, 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, 0.7);
}

.hero.is-tertiary-9 a.navbar-item:hover, .hero.is-tertiary-9 a.navbar-item.is-active,
.hero.is-tertiary-9 .navbar-link:hover,
.hero.is-tertiary-9 .navbar-link.is-active {
    background-color: #e8e8e8;
    color: rgba(0, 0, 0, 0.7);
}

.hero.is-tertiary-9 .tabs a {
    color: rgba(0, 0, 0, 0.7);
    opacity: 0.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, 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, 0.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, 0.7);
    border-color: rgba(0, 0, 0, 0.7);
    color: #f5f5f5;
}

.hero.is-tertiary-9.is-bold {
    background-image: linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, white 100%);
}

@media screen and (max-width: 768px) {
    .hero.is-tertiary-9.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, white 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-halfheight .hero-body, .hero.is-fullheight .hero-body {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.hero.is-halfheight .hero-body &gt; .container, .hero.is-fullheight .hero-body &gt; .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: 0.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: 0.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-head,
.hero-foot {
    -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: white;
    border: 1px solid #EAEAEA;
    border-radius: 0;
    list-style-type: none;
    -webkit-transition: 0.25s;
    transition: 0.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;
    font-weight: 600;
    padding: .75em;
    -ms-flex-line-pack: center;
    align-content: center;
    text-align: center;
}

.pricing-table .pricing-plan .plan-item {
    background: transparent;
    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: 0.75rem;
    font-weight: 400;
    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;
    font-weight: 400 !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: #f80036;
}

.pricing-table .pricing-plan.is-active .plan-footer .button {
    background-color: #f80036;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-active .plan-footer .button:hover, .pricing-table .pricing-plan.is-active .plan-footer .button.is-hovered {
    background-color: #eb0033;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-active .plan-footer .button:focus, .pricing-table .pricing-plan.is-active .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(248, 0, 54, 0.25);
    box-shadow: 0 0 0.5em rgba(248, 0, 54, 0.25);
    color: #fff;
}

.pricing-table .pricing-plan.is-active .plan-footer .button:active, .pricing-table .pricing-plan.is-active .plan-footer .button.is-active {
    background-color: #df0030;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-active .plan-footer .button[disabled] {
    background-color: #f80036;
    border-color: transparent;
}

.pricing-table .pricing-plan.is-white .plan-price .plan-price-amount {
    color: white;
}

.pricing-table .pricing-plan.is-white .plan-footer .button {
    background-color: white;
    border-color: transparent;
    color: #0a0a0a;
}

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

.pricing-table .pricing-plan.is-white .plan-footer .button:focus, .pricing-table .pricing-plan.is-white .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25);
    color: #0a0a0a;
}

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

.pricing-table .pricing-plan.is-white .plan-footer .button[disabled] {
    background-color: white;
    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: white;
}

.pricing-table .pricing-plan.is-black .plan-footer .button:hover, .pricing-table .pricing-plan.is-black .plan-footer .button.is-hovered {
    background-color: #040404;
    border-color: transparent;
    color: white;
}

.pricing-table .pricing-plan.is-black .plan-footer .button:focus, .pricing-table .pricing-plan.is-black .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25);
    box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25);
    color: white;
}

.pricing-table .pricing-plan.is-black .plan-footer .button:active, .pricing-table .pricing-plan.is-black .plan-footer .button.is-active {
    background-color: black;
    border-color: transparent;
    color: white;
}

.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: whitesmoke;
}

.pricing-table .pricing-plan.is-light .plan-footer .button {
    background-color: whitesmoke;
    border-color: transparent;
    color: #363636;
}

.pricing-table .pricing-plan.is-light .plan-footer .button:hover, .pricing-table .pricing-plan.is-light .plan-footer .button.is-hovered {
    background-color: #eeeeee;
    border-color: transparent;
    color: #363636;
}

.pricing-table .pricing-plan.is-light .plan-footer .button:focus, .pricing-table .pricing-plan.is-light .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25);
    box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25);
    color: #363636;
}

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

.pricing-table .pricing-plan.is-light .plan-footer .button[disabled] {
    background-color: whitesmoke;
    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: whitesmoke;
}

.pricing-table .pricing-plan.is-dark .plan-footer .button:hover, .pricing-table .pricing-plan.is-dark .plan-footer .button.is-hovered {
    background-color: #2f2f2f;
    border-color: transparent;
    color: whitesmoke;
}

.pricing-table .pricing-plan.is-dark .plan-footer .button:focus, .pricing-table .pricing-plan.is-dark .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25);
    box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25);
    color: whitesmoke;
}

.pricing-table .pricing-plan.is-dark .plan-footer .button:active, .pricing-table .pricing-plan.is-dark .plan-footer .button.is-active {
    background-color: #292929;
    border-color: transparent;
    color: whitesmoke;
}

.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: #f80036;
}

.pricing-table .pricing-plan.is-primary .plan-footer .button {
    background-color: #f80036;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-primary .plan-footer .button:hover, .pricing-table .pricing-plan.is-primary .plan-footer .button.is-hovered {
    background-color: #eb0033;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-primary .plan-footer .button:focus, .pricing-table .pricing-plan.is-primary .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(248, 0, 54, 0.25);
    box-shadow: 0 0 0.5em rgba(248, 0, 54, 0.25);
    color: #fff;
}

.pricing-table .pricing-plan.is-primary .plan-footer .button:active, .pricing-table .pricing-plan.is-primary .plan-footer .button.is-active {
    background-color: #df0030;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-primary .plan-footer .button[disabled] {
    background-color: #f80036;
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pricing-table .pricing-plan.is-link .plan-price .plan-price-amount {
    color: #f80036;
}

.pricing-table .pricing-plan.is-link .plan-footer .button {
    background-color: #f80036;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-link .plan-footer .button:hover, .pricing-table .pricing-plan.is-link .plan-footer .button.is-hovered {
    background-color: #eb0033;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-link .plan-footer .button:focus, .pricing-table .pricing-plan.is-link .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(248, 0, 54, 0.25);
    box-shadow: 0 0 0.5em rgba(248, 0, 54, 0.25);
    color: #fff;
}

.pricing-table .pricing-plan.is-link .plan-footer .button:active, .pricing-table .pricing-plan.is-link .plan-footer .button.is-active {
    background-color: #df0030;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-link .plan-footer .button[disabled] {
    background-color: #f80036;
    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:hover, .pricing-table .pricing-plan.is-info .plan-footer .button.is-hovered {
    background-color: #1496ed;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-info .plan-footer .button:focus, .pricing-table .pricing-plan.is-info .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(32, 156, 238, 0.25);
    box-shadow: 0 0 0.5em rgba(32, 156, 238, 0.25);
    color: #fff;
}

.pricing-table .pricing-plan.is-info .plan-footer .button:active, .pricing-table .pricing-plan.is-info .plan-footer .button.is-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:hover, .pricing-table .pricing-plan.is-success .plan-footer .button.is-hovered {
    background-color: #22c65b;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-success .plan-footer .button:focus, .pricing-table .pricing-plan.is-success .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(35, 209, 96, 0.25);
    box-shadow: 0 0 0.5em rgba(35, 209, 96, 0.25);
    color: #fff;
}

.pricing-table .pricing-plan.is-success .plan-footer .button:active, .pricing-table .pricing-plan.is-success .plan-footer .button.is-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, 0.7);
}

.pricing-table .pricing-plan.is-warning .plan-footer .button:hover, .pricing-table .pricing-plan.is-warning .plan-footer .button.is-hovered {
    background-color: #ffdb4a;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.pricing-table .pricing-plan.is-warning .plan-footer .button:focus, .pricing-table .pricing-plan.is-warning .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.25);
    box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.25);
    color: rgba(0, 0, 0, 0.7);
}

.pricing-table .pricing-plan.is-warning .plan-footer .button:active, .pricing-table .pricing-plan.is-warning .plan-footer .button.is-active {
    background-color: #ffd83d;
    border-color: transparent;
    color: rgba(0, 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:hover, .pricing-table .pricing-plan.is-danger .plan-footer .button.is-hovered {
    background-color: #ff2b56;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-danger .plan-footer .button:focus, .pricing-table .pricing-plan.is-danger .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(255, 56, 96, 0.25);
    box-shadow: 0 0 0.5em rgba(255, 56, 96, 0.25);
    color: #fff;
}

.pricing-table .pricing-plan.is-danger .plan-footer .button:active, .pricing-table .pricing-plan.is-danger .plan-footer .button.is-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: #fb1043;
}

.pricing-table .pricing-plan.is-primary-2 .plan-footer .button {
    background-color: #fb1043;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-primary-2 .plan-footer .button:hover, .pricing-table .pricing-plan.is-primary-2 .plan-footer .button.is-hovered {
    background-color: #fa043a;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-primary-2 .plan-footer .button:focus, .pricing-table .pricing-plan.is-primary-2 .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(251, 16, 67, 0.25);
    box-shadow: 0 0 0.5em rgba(251, 16, 67, 0.25);
    color: #fff;
}

.pricing-table .pricing-plan.is-primary-2 .plan-footer .button:active, .pricing-table .pricing-plan.is-primary-2 .plan-footer .button.is-active {
    background-color: #ee0437;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-primary-2 .plan-footer .button[disabled] {
    background-color: #fb1043;
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pricing-table .pricing-plan.is-primary-3 .plan-price .plan-price-amount {
    color: #ec0235;
}

.pricing-table .pricing-plan.is-primary-3 .plan-footer .button {
    background-color: #ec0235;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-primary-3 .plan-footer .button:hover, .pricing-table .pricing-plan.is-primary-3 .plan-footer .button.is-hovered {
    background-color: #df0232;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-primary-3 .plan-footer .button:focus, .pricing-table .pricing-plan.is-primary-3 .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(236, 2, 53, 0.25);
    box-shadow: 0 0 0.5em rgba(236, 2, 53, 0.25);
    color: #fff;
}

.pricing-table .pricing-plan.is-primary-3 .plan-footer .button:active, .pricing-table .pricing-plan.is-primary-3 .plan-footer .button.is-active {
    background-color: #d3022f;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-primary-3 .plan-footer .button[disabled] {
    background-color: #ec0235;
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pricing-table .pricing-plan.is-primary-4 .plan-price .plan-price-amount {
    color: #f1093c;
}

.pricing-table .pricing-plan.is-primary-4 .plan-footer .button {
    background-color: #f1093c;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-primary-4 .plan-footer .button:hover, .pricing-table .pricing-plan.is-primary-4 .plan-footer .button.is-hovered {
    background-color: #e50939;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-primary-4 .plan-footer .button:focus, .pricing-table .pricing-plan.is-primary-4 .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(241, 9, 60, 0.25);
    box-shadow: 0 0 0.5em rgba(241, 9, 60, 0.25);
    color: #fff;
}

.pricing-table .pricing-plan.is-primary-4 .plan-footer .button:active, .pricing-table .pricing-plan.is-primary-4 .plan-footer .button.is-active {
    background-color: #d80836;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-primary-4 .plan-footer .button[disabled] {
    background-color: #f1093c;
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pricing-table .pricing-plan.is-primary-5 .plan-price .plan-price-amount {
    color: #ee0034;
}

.pricing-table .pricing-plan.is-primary-5 .plan-footer .button {
    background-color: #ee0034;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-primary-5 .plan-footer .button:hover, .pricing-table .pricing-plan.is-primary-5 .plan-footer .button.is-hovered {
    background-color: #e10031;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-primary-5 .plan-footer .button:focus, .pricing-table .pricing-plan.is-primary-5 .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(238, 0, 52, 0.25);
    box-shadow: 0 0 0.5em rgba(238, 0, 52, 0.25);
    color: #fff;
}

.pricing-table .pricing-plan.is-primary-5 .plan-footer .button:active, .pricing-table .pricing-plan.is-primary-5 .plan-footer .button.is-active {
    background-color: #d5002e;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-primary-5 .plan-footer .button[disabled] {
    background-color: #ee0034;
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pricing-table .pricing-plan.is-primary-6 .plan-price .plan-price-amount {
    color: #f30337;
}

.pricing-table .pricing-plan.is-primary-6 .plan-footer .button {
    background-color: #f30337;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-primary-6 .plan-footer .button:hover, .pricing-table .pricing-plan.is-primary-6 .plan-footer .button.is-hovered {
    background-color: #e60334;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-primary-6 .plan-footer .button:focus, .pricing-table .pricing-plan.is-primary-6 .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(243, 3, 55, 0.25);
    box-shadow: 0 0 0.5em rgba(243, 3, 55, 0.25);
    color: #fff;
}

.pricing-table .pricing-plan.is-primary-6 .plan-footer .button:active, .pricing-table .pricing-plan.is-primary-6 .plan-footer .button.is-active {
    background-color: #da0331;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-primary-6 .plan-footer .button[disabled] {
    background-color: #f30337;
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pricing-table .pricing-plan.is-primary-7 .plan-price .plan-price-amount {
    color: #fef6f6;
}

.pricing-table .pricing-plan.is-primary-7 .plan-footer .button {
    background-color: #fef6f6;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.pricing-table .pricing-plan.is-primary-7 .plan-footer .button:hover, .pricing-table .pricing-plan.is-primary-7 .plan-footer .button.is-hovered {
    background-color: #fdebeb;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.pricing-table .pricing-plan.is-primary-7 .plan-footer .button:focus, .pricing-table .pricing-plan.is-primary-7 .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(254, 246, 246, 0.25);
    box-shadow: 0 0 0.5em rgba(254, 246, 246, 0.25);
    color: rgba(0, 0, 0, 0.7);
}

.pricing-table .pricing-plan.is-primary-7 .plan-footer .button:active, .pricing-table .pricing-plan.is-primary-7 .plan-footer .button.is-active {
    background-color: #fbdfdf;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.pricing-table .pricing-plan.is-primary-7 .plan-footer .button[disabled] {
    background-color: #fef6f6;
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pricing-table .pricing-plan.is-primary-light .plan-price .plan-price-amount {
    color: #fafafa;
}

.pricing-table .pricing-plan.is-primary-light .plan-footer .button {
    background-color: #fafafa;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.pricing-table .pricing-plan.is-primary-light .plan-footer .button:hover, .pricing-table .pricing-plan.is-primary-light .plan-footer .button.is-hovered {
    background-color: #f4f4f4;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.pricing-table .pricing-plan.is-primary-light .plan-footer .button:focus, .pricing-table .pricing-plan.is-primary-light .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(250, 250, 250, 0.25);
    box-shadow: 0 0 0.5em rgba(250, 250, 250, 0.25);
    color: rgba(0, 0, 0, 0.7);
}

.pricing-table .pricing-plan.is-primary-light .plan-footer .button:active, .pricing-table .pricing-plan.is-primary-light .plan-footer .button.is-active {
    background-color: #ededed;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.pricing-table .pricing-plan.is-primary-light .plan-footer .button[disabled] {
    background-color: #fafafa;
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pricing-table .pricing-plan.is-secondary .plan-price .plan-price-amount {
    color: #101010;
}

.pricing-table .pricing-plan.is-secondary .plan-footer .button {
    background-color: #101010;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-secondary .plan-footer .button:hover, .pricing-table .pricing-plan.is-secondary .plan-footer .button.is-hovered {
    background-color: #0a0a0a;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-secondary .plan-footer .button:focus, .pricing-table .pricing-plan.is-secondary .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(16, 16, 16, 0.25);
    box-shadow: 0 0 0.5em rgba(16, 16, 16, 0.25);
    color: #fff;
}

.pricing-table .pricing-plan.is-secondary .plan-footer .button:active, .pricing-table .pricing-plan.is-secondary .plan-footer .button.is-active {
    background-color: #030303;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-secondary .plan-footer .button[disabled] {
    background-color: #101010;
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pricing-table .pricing-plan.is-secondary-2 .plan-price .plan-price-amount {
    color: #131313;
}

.pricing-table .pricing-plan.is-secondary-2 .plan-footer .button {
    background-color: #131313;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-secondary-2 .plan-footer .button:hover, .pricing-table .pricing-plan.is-secondary-2 .plan-footer .button.is-hovered {
    background-color: #0d0d0d;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-secondary-2 .plan-footer .button:focus, .pricing-table .pricing-plan.is-secondary-2 .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(19, 19, 19, 0.25);
    box-shadow: 0 0 0.5em rgba(19, 19, 19, 0.25);
    color: #fff;
}

.pricing-table .pricing-plan.is-secondary-2 .plan-footer .button:active, .pricing-table .pricing-plan.is-secondary-2 .plan-footer .button.is-active {
    background-color: #060606;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-secondary-2 .plan-footer .button[disabled] {
    background-color: #131313;
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pricing-table .pricing-plan.is-secondary-3 .plan-price .plan-price-amount {
    color: #232323;
}

.pricing-table .pricing-plan.is-secondary-3 .plan-footer .button {
    background-color: #232323;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-secondary-3 .plan-footer .button:hover, .pricing-table .pricing-plan.is-secondary-3 .plan-footer .button.is-hovered {
    background-color: #1d1d1d;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-secondary-3 .plan-footer .button:focus, .pricing-table .pricing-plan.is-secondary-3 .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(35, 35, 35, 0.25);
    box-shadow: 0 0 0.5em rgba(35, 35, 35, 0.25);
    color: #fff;
}

.pricing-table .pricing-plan.is-secondary-3 .plan-footer .button:active, .pricing-table .pricing-plan.is-secondary-3 .plan-footer .button.is-active {
    background-color: #161616;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-secondary-3 .plan-footer .button[disabled] {
    background-color: #232323;
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pricing-table .pricing-plan.is-secondary-4 .plan-price .plan-price-amount {
    color: #363636;
}

.pricing-table .pricing-plan.is-secondary-4 .plan-footer .button {
    background-color: #363636;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-secondary-4 .plan-footer .button:hover, .pricing-table .pricing-plan.is-secondary-4 .plan-footer .button.is-hovered {
    background-color: #303030;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-secondary-4 .plan-footer .button:focus, .pricing-table .pricing-plan.is-secondary-4 .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25);
    box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25);
    color: #fff;
}

.pricing-table .pricing-plan.is-secondary-4 .plan-footer .button:active, .pricing-table .pricing-plan.is-secondary-4 .plan-footer .button.is-active {
    background-color: #292929;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-secondary-4 .plan-footer .button[disabled] {
    background-color: #363636;
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pricing-table .pricing-plan.is-secondary-5 .plan-price .plan-price-amount {
    color: #5c5c5c;
}

.pricing-table .pricing-plan.is-secondary-5 .plan-footer .button {
    background-color: #5c5c5c;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-secondary-5 .plan-footer .button:hover, .pricing-table .pricing-plan.is-secondary-5 .plan-footer .button.is-hovered {
    background-color: #565656;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-secondary-5 .plan-footer .button:focus, .pricing-table .pricing-plan.is-secondary-5 .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(92, 92, 92, 0.25);
    box-shadow: 0 0 0.5em rgba(92, 92, 92, 0.25);
    color: #fff;
}

.pricing-table .pricing-plan.is-secondary-5 .plan-footer .button:active, .pricing-table .pricing-plan.is-secondary-5 .plan-footer .button.is-active {
    background-color: #4f4f4f;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-secondary-5 .plan-footer .button[disabled] {
    background-color: #5c5c5c;
    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:hover, .pricing-table .pricing-plan.is-tertiary .plan-footer .button.is-hovered {
    background-color: #a0a0a0;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-tertiary .plan-footer .button:focus, .pricing-table .pricing-plan.is-tertiary .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(166, 166, 166, 0.25);
    box-shadow: 0 0 0.5em rgba(166, 166, 166, 0.25);
    color: #fff;
}

.pricing-table .pricing-plan.is-tertiary .plan-footer .button:active, .pricing-table .pricing-plan.is-tertiary .plan-footer .button.is-active {
    background-color: #999999;
    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, 0.7);
}

.pricing-table .pricing-plan.is-tertiary-2 .plan-footer .button:hover, .pricing-table .pricing-plan.is-tertiary-2 .plan-footer .button.is-hovered {
    background-color: #d2d2d2;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.pricing-table .pricing-plan.is-tertiary-2 .plan-footer .button:focus, .pricing-table .pricing-plan.is-tertiary-2 .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(216, 216, 216, 0.25);
    box-shadow: 0 0 0.5em rgba(216, 216, 216, 0.25);
    color: rgba(0, 0, 0, 0.7);
}

.pricing-table .pricing-plan.is-tertiary-2 .plan-footer .button:active, .pricing-table .pricing-plan.is-tertiary-2 .plan-footer .button.is-active {
    background-color: #cbcbcb;
    border-color: transparent;
    color: rgba(0, 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, 0.7);
}

.pricing-table .pricing-plan.is-tertiary-3 .plan-footer .button:hover, .pricing-table .pricing-plan.is-tertiary-3 .plan-footer .button.is-hovered {
    background-color: #d1d0cc;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.pricing-table .pricing-plan.is-tertiary-3 .plan-footer .button:focus, .pricing-table .pricing-plan.is-tertiary-3 .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(215, 214, 211, 0.25);
    box-shadow: 0 0 0.5em rgba(215, 214, 211, 0.25);
    color: rgba(0, 0, 0, 0.7);
}

.pricing-table .pricing-plan.is-tertiary-3 .plan-footer .button:active, .pricing-table .pricing-plan.is-tertiary-3 .plan-footer .button.is-active {
    background-color: #cbcac6;
    border-color: transparent;
    color: rgba(0, 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:hover, .pricing-table .pricing-plan.is-tertiary-4 .plan-footer .button.is-hovered {
    background-color: darkgray;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-tertiary-4 .plan-footer .button:focus, .pricing-table .pricing-plan.is-tertiary-4 .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(175, 175, 175, 0.25);
    box-shadow: 0 0 0.5em rgba(175, 175, 175, 0.25);
    color: #fff;
}

.pricing-table .pricing-plan.is-tertiary-4 .plan-footer .button:active, .pricing-table .pricing-plan.is-tertiary-4 .plan-footer .button.is-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, 0.7);
}

.pricing-table .pricing-plan.is-tertiary-5 .plan-footer .button:hover, .pricing-table .pricing-plan.is-tertiary-5 .plan-footer .button.is-hovered {
    background-color: #e4e4e4;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.pricing-table .pricing-plan.is-tertiary-5 .plan-footer .button:focus, .pricing-table .pricing-plan.is-tertiary-5 .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(234, 234, 234, 0.25);
    box-shadow: 0 0 0.5em rgba(234, 234, 234, 0.25);
    color: rgba(0, 0, 0, 0.7);
}

.pricing-table .pricing-plan.is-tertiary-5 .plan-footer .button:active, .pricing-table .pricing-plan.is-tertiary-5 .plan-footer .button.is-active {
    background-color: #dddddd;
    border-color: transparent;
    color: rgba(0, 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:hover, .pricing-table .pricing-plan.is-tertiary-6 .plan-footer .button.is-hovered {
    background-color: #aaaaaa;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-tertiary-6 .plan-footer .button:focus, .pricing-table .pricing-plan.is-tertiary-6 .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(176, 176, 176, 0.25);
    box-shadow: 0 0 0.5em rgba(176, 176, 176, 0.25);
    color: #fff;
}

.pricing-table .pricing-plan.is-tertiary-6 .plan-footer .button:active, .pricing-table .pricing-plan.is-tertiary-6 .plan-footer .button.is-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:hover, .pricing-table .pricing-plan.is-tertiary-7 .plan-footer .button.is-hovered {
    background-color: #909090;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-tertiary-7 .plan-footer .button:focus, .pricing-table .pricing-plan.is-tertiary-7 .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(150, 150, 150, 0.25);
    box-shadow: 0 0 0.5em rgba(150, 150, 150, 0.25);
    color: #fff;
}

.pricing-table .pricing-plan.is-tertiary-7 .plan-footer .button:active, .pricing-table .pricing-plan.is-tertiary-7 .plan-footer .button.is-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: #999999;
}

.pricing-table .pricing-plan.is-tertiary-8 .plan-footer .button {
    background-color: #999999;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-tertiary-8 .plan-footer .button:hover, .pricing-table .pricing-plan.is-tertiary-8 .plan-footer .button.is-hovered {
    background-color: #939393;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-tertiary-8 .plan-footer .button:focus, .pricing-table .pricing-plan.is-tertiary-8 .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(153, 153, 153, 0.25);
    box-shadow: 0 0 0.5em rgba(153, 153, 153, 0.25);
    color: #fff;
}

.pricing-table .pricing-plan.is-tertiary-8 .plan-footer .button:active, .pricing-table .pricing-plan.is-tertiary-8 .plan-footer .button.is-active {
    background-color: #8c8c8c;
    border-color: transparent;
    color: #fff;
}

.pricing-table .pricing-plan.is-tertiary-8 .plan-footer .button[disabled] {
    background-color: #999999;
    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, 0.7);
}

.pricing-table .pricing-plan.is-tertiary-9 .plan-footer .button:hover, .pricing-table .pricing-plan.is-tertiary-9 .plan-footer .button.is-hovered {
    background-color: #efefef;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}

.pricing-table .pricing-plan.is-tertiary-9 .plan-footer .button:focus, .pricing-table .pricing-plan.is-tertiary-9 .plan-footer .button.is-focused {
    border-color: transparent;
    -webkit-box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25);
    box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25);
    color: rgba(0, 0, 0, 0.7);
}

.pricing-table .pricing-plan.is-tertiary-9 .plan-footer .button:active, .pricing-table .pricing-plan.is-tertiary-9 .plan-footer .button.is-active {
    background-color: #e8e8e8;
    border-color: transparent;
    color: rgba(0, 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-weight: 600;
        font-size: 0.75rem;
        color: #b5b5b5;
    }
}

.badge {
    position: relative;
    white-space: nowrap;
    position: relative;
}

.badge[data-badge]::after {
    position: absolute;
    left: 100%;
    margin: 0;
    background: #f80036;
    background-clip: padding-box;
    border-radius: 1rem;
    -webkit-box-shadow: 0 0 0 0.1rem white;
    box-shadow: 0 0 0 0.1rem white;
    color: white;
    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[data-badge]::after, .badge.is-badge-white:not([data-badge])::after {
    background: white;
    color: #0a0a0a;
}

.badge.is-badge-black[data-badge]::after, .badge.is-badge-black:not([data-badge])::after {
    background: #0a0a0a;
    color: white;
}

.badge.is-badge-light[data-badge]::after, .badge.is-badge-light:not([data-badge])::after {
    background: whitesmoke;
    color: #363636;
}

.badge.is-badge-dark[data-badge]::after, .badge.is-badge-dark:not([data-badge])::after {
    background: #363636;
    color: whitesmoke;
}

.badge.is-badge-primary[data-badge]::after, .badge.is-badge-primary:not([data-badge])::after {
    background: #f80036;
    color: #fff;
}

.badge.is-badge-link[data-badge]::after, .badge.is-badge-link:not([data-badge])::after {
    background: #f80036;
    color: #fff;
}

.badge.is-badge-info[data-badge]::after, .badge.is-badge-info:not([data-badge])::after {
    background: #209cee;
    color: #fff;
}

.badge.is-badge-success[data-badge]::after, .badge.is-badge-success:not([data-badge])::after {
    background: #23d160;
    color: #fff;
}

.badge.is-badge-warning[data-badge]::after, .badge.is-badge-warning:not([data-badge])::after {
    background: #ffdd57;
    color: rgba(0, 0, 0, 0.7);
}

.badge.is-badge-danger[data-badge]::after, .badge.is-badge-danger:not([data-badge])::after {
    background: #ff3860;
    color: #fff;
}

.badge.is-badge-primary-2[data-badge]::after, .badge.is-badge-primary-2:not([data-badge])::after {
    background: #fb1043;
    color: #fff;
}

.badge.is-badge-primary-3[data-badge]::after, .badge.is-badge-primary-3:not([data-badge])::after {
    background: #ec0235;
    color: #fff;
}

.badge.is-badge-primary-4[data-badge]::after, .badge.is-badge-primary-4:not([data-badge])::after {
    background: #f1093c;
    color: #fff;
}

.badge.is-badge-primary-5[data-badge]::after, .badge.is-badge-primary-5:not([data-badge])::after {
    background: #ee0034;
    color: #fff;
}

.badge.is-badge-primary-6[data-badge]::after, .badge.is-badge-primary-6:not([data-badge])::after {
    background: #f30337;
    color: #fff;
}

.badge.is-badge-primary-7[data-badge]::after, .badge.is-badge-primary-7:not([data-badge])::after {
    background: #fef6f6;
    color: rgba(0, 0, 0, 0.7);
}

.badge.is-badge-primary-light[data-badge]::after, .badge.is-badge-primary-light:not([data-badge])::after {
    background: #fafafa;
    color: rgba(0, 0, 0, 0.7);
}

.badge.is-badge-secondary[data-badge]::after, .badge.is-badge-secondary:not([data-badge])::after {
    background: #101010;
    color: #fff;
}

.badge.is-badge-secondary-2[data-badge]::after, .badge.is-badge-secondary-2:not([data-badge])::after {
    background: #131313;
    color: #fff;
}

.badge.is-badge-secondary-3[data-badge]::after, .badge.is-badge-secondary-3:not([data-badge])::after {
    background: #232323;
    color: #fff;
}

.badge.is-badge-secondary-4[data-badge]::after, .badge.is-badge-secondary-4:not([data-badge])::after {
    background: #363636;
    color: #fff;
}

.badge.is-badge-secondary-5[data-badge]::after, .badge.is-badge-secondary-5:not([data-badge])::after {
    background: #5c5c5c;
    color: #fff;
}

.badge.is-badge-tertiary[data-badge]::after, .badge.is-badge-tertiary:not([data-badge])::after {
    background: #A6A6A6;
    color: #fff;
}

.badge.is-badge-tertiary-2[data-badge]::after, .badge.is-badge-tertiary-2:not([data-badge])::after {
    background: #D8D8D8;
    color: rgba(0, 0, 0, 0.7);
}

.badge.is-badge-tertiary-3[data-badge]::after, .badge.is-badge-tertiary-3:not([data-badge])::after {
    background: #D7D6D3;
    color: rgba(0, 0, 0, 0.7);
}

.badge.is-badge-tertiary-4[data-badge]::after, .badge.is-badge-tertiary-4:not([data-badge])::after {
    background: #AFAFAF;
    color: #fff;
}

.badge.is-badge-tertiary-5[data-badge]::after, .badge.is-badge-tertiary-5:not([data-badge])::after {
    background: #EAEAEA;
    color: rgba(0, 0, 0, 0.7);
}

.badge.is-badge-tertiary-6[data-badge]::after, .badge.is-badge-tertiary-6:not([data-badge])::after {
    background: #B0B0B0;
    color: #fff;
}

.badge.is-badge-tertiary-7[data-badge]::after, .badge.is-badge-tertiary-7:not([data-badge])::after {
    background: #969696;
    color: #fff;
}

.badge.is-badge-tertiary-8[data-badge]::after, .badge.is-badge-tertiary-8:not([data-badge])::after {
    background: #999999;
    color: #fff;
}

.badge.is-badge-tertiary-9[data-badge]::after, .badge.is-badge-tertiary-9:not([data-badge])::after {
    background: #f5f5f5;
    color: rgba(0, 0, 0, 0.7);
}

.badge.is-badge-outlined[data-badge]::after {
    background-color: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #f80036;
    color: #f80036;
}

.badge.is-badge-outlined.is-badge-white[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid white;
    color: white;
}

.badge.is-badge-outlined.is-badge-black[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #0a0a0a;
    color: #0a0a0a;
}

.badge.is-badge-outlined.is-badge-light[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid whitesmoke;
    color: whitesmoke;
}

.badge.is-badge-outlined.is-badge-dark[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #363636;
    color: #363636;
}

.badge.is-badge-outlined.is-badge-primary[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #f80036;
    color: #f80036;
}

.badge.is-badge-outlined.is-badge-link[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #f80036;
    color: #f80036;
}

.badge.is-badge-outlined.is-badge-info[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #209cee;
    color: #209cee;
}

.badge.is-badge-outlined.is-badge-success[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #23d160;
    color: #23d160;
}

.badge.is-badge-outlined.is-badge-warning[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #ffdd57;
    color: #ffdd57;
}

.badge.is-badge-outlined.is-badge-danger[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #ff3860;
    color: #ff3860;
}

.badge.is-badge-outlined.is-badge-primary-2[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #fb1043;
    color: #fb1043;
}

.badge.is-badge-outlined.is-badge-primary-3[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #ec0235;
    color: #ec0235;
}

.badge.is-badge-outlined.is-badge-primary-4[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #f1093c;
    color: #f1093c;
}

.badge.is-badge-outlined.is-badge-primary-5[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #ee0034;
    color: #ee0034;
}

.badge.is-badge-outlined.is-badge-primary-6[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #f30337;
    color: #f30337;
}

.badge.is-badge-outlined.is-badge-primary-7[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #fef6f6;
    color: #fef6f6;
}

.badge.is-badge-outlined.is-badge-primary-light[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #fafafa;
    color: #fafafa;
}

.badge.is-badge-outlined.is-badge-secondary[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #101010;
    color: #101010;
}

.badge.is-badge-outlined.is-badge-secondary-2[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #131313;
    color: #131313;
}

.badge.is-badge-outlined.is-badge-secondary-3[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #232323;
    color: #232323;
}

.badge.is-badge-outlined.is-badge-secondary-4[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #363636;
    color: #363636;
}

.badge.is-badge-outlined.is-badge-secondary-5[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #5c5c5c;
    color: #5c5c5c;
}

.badge.is-badge-outlined.is-badge-tertiary[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #A6A6A6;
    color: #A6A6A6;
}

.badge.is-badge-outlined.is-badge-tertiary-2[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #D8D8D8;
    color: #D8D8D8;
}

.badge.is-badge-outlined.is-badge-tertiary-3[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #D7D6D3;
    color: #D7D6D3;
}

.badge.is-badge-outlined.is-badge-tertiary-4[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #AFAFAF;
    color: #AFAFAF;
}

.badge.is-badge-outlined.is-badge-tertiary-5[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #EAEAEA;
    color: #EAEAEA;
}

.badge.is-badge-outlined.is-badge-tertiary-6[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #B0B0B0;
    color: #B0B0B0;
}

.badge.is-badge-outlined.is-badge-tertiary-7[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #969696;
    color: #969696;
}

.badge.is-badge-outlined.is-badge-tertiary-8[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.1rem solid #999999;
    color: #999999;
}

.badge.is-badge-outlined.is-badge-tertiary-9[data-badge]::after {
    background: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0.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: 0.75rem;
    line-height: 0.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 - ( 0.75rem / 2 ));
    left: calc(100% - ( 0.75rem / 2 ));
    min-height: 0.75rem;
    min-width: 0.75rem;
}

.badge.is-badge-small:not([data-badge=""])::after {
    font-size: 0.5625rem;
    line-height: 0.375rem;
}

.badge.is-badge-small[data-badge=""]::after {
    width: 0.75rem;
}

.badge.is-badge-small.is-badge-left::after {
    left: calc(0px - ( 0.75rem / 2 ));
}

.badge.is-badge-small.is-badge-bottom::after {
    top: calc(100% - ( 0.75rem / 2 ));
}

.badge.is-badge-small.is-badge-bottom-left::after {
    left: calc(0px - ( 0.75rem / 2 ));
    top: calc(100% - ( 0.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: 0.9375rem;
    line-height: 0.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: 0.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: 0.1rem solid #F0F0F0;
    height: 0.1rem;
    margin: 2rem 0;
    text-align: center;
}

.is-divider[data-content]::after, .is-divider-vertical[data-content]::after {
    background: white;
    color: #b5b5b5;
    content: attr(data-content);
    display: inline-block;
    font-size: 0.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: 0.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.is-white,
.is-divider-vertical.is-white {
    border-top-color: white;
}

.is-divider.is-white[data-content]::after, .is-divider.is-white[data-content]::after,
.is-divider-vertical.is-white[data-content]::after,
.is-divider-vertical.is-white[data-content]::after {
    background: #0a0a0a;
    color: white;
}

.is-divider.is-white::before,
.is-divider-vertical.is-white::before {
    border-left-color: white;
}

.is-divider.is-black,
.is-divider-vertical.is-black {
    border-top-color: #0a0a0a;
}

.is-divider.is-black[data-content]::after, .is-divider.is-black[data-content]::after,
.is-divider-vertical.is-black[data-content]::after,
.is-divider-vertical.is-black[data-content]::after {
    background: white;
    color: #0a0a0a;
}

.is-divider.is-black::before,
.is-divider-vertical.is-black::before {
    border-left-color: #0a0a0a;
}

.is-divider.is-light,
.is-divider-vertical.is-light {
    border-top-color: whitesmoke;
}

.is-divider.is-light[data-content]::after, .is-divider.is-light[data-content]::after,
.is-divider-vertical.is-light[data-content]::after,
.is-divider-vertical.is-light[data-content]::after {
    background: #363636;
    color: whitesmoke;
}

.is-divider.is-light::before,
.is-divider-vertical.is-light::before {
    border-left-color: whitesmoke;
}

.is-divider.is-dark,
.is-divider-vertical.is-dark {
    border-top-color: #363636;
}

.is-divider.is-dark[data-content]::after, .is-divider.is-dark[data-content]::after,
.is-divider-vertical.is-dark[data-content]::after,
.is-divider-vertical.is-dark[data-content]::after {
    background: whitesmoke;
    color: #363636;
}

.is-divider.is-dark::before,
.is-divider-vertical.is-dark::before {
    border-left-color: #363636;
}

.is-divider.is-primary,
.is-divider-vertical.is-primary {
    border-top-color: #f80036;
}

.is-divider.is-primary[data-content]::after, .is-divider.is-primary[data-content]::after,
.is-divider-vertical.is-primary[data-content]::after,
.is-divider-vertical.is-primary[data-content]::after {
    background: #fff;
    color: #f80036;
}

.is-divider.is-primary::before,
.is-divider-vertical.is-primary::before {
    border-left-color: #f80036;
}

.is-divider.is-link,
.is-divider-vertical.is-link {
    border-top-color: #f80036;
}

.is-divider.is-link[data-content]::after, .is-divider.is-link[data-content]::after,
.is-divider-vertical.is-link[data-content]::after,
.is-divider-vertical.is-link[data-content]::after {
    background: #fff;
    color: #f80036;
}

.is-divider.is-link::before,
.is-divider-vertical.is-link::before {
    border-left-color: #f80036;
}

.is-divider.is-info,
.is-divider-vertical.is-info {
    border-top-color: #209cee;
}

.is-divider.is-info[data-content]::after, .is-divider.is-info[data-content]::after,
.is-divider-vertical.is-info[data-content]::after,
.is-divider-vertical.is-info[data-content]::after {
    background: #fff;
    color: #209cee;
}

.is-divider.is-info::before,
.is-divider-vertical.is-info::before {
    border-left-color: #209cee;
}

.is-divider.is-success,
.is-divider-vertical.is-success {
    border-top-color: #23d160;
}

.is-divider.is-success[data-content]::after, .is-divider.is-success[data-content]::after,
.is-divider-vertical.is-success[data-content]::after,
.is-divider-vertical.is-success[data-content]::after {
    background: #fff;
    color: #23d160;
}

.is-divider.is-success::before,
.is-divider-vertical.is-success::before {
    border-left-color: #23d160;
}

.is-divider.is-warning,
.is-divider-vertical.is-warning {
    border-top-color: #ffdd57;
}

.is-divider.is-warning[data-content]::after, .is-divider.is-warning[data-content]::after,
.is-divider-vertical.is-warning[data-content]::after,
.is-divider-vertical.is-warning[data-content]::after {
    background: rgba(0, 0, 0, 0.7);
    color: #ffdd57;
}

.is-divider.is-warning::before,
.is-divider-vertical.is-warning::before {
    border-left-color: #ffdd57;
}

.is-divider.is-danger,
.is-divider-vertical.is-danger {
    border-top-color: #ff3860;
}

.is-divider.is-danger[data-content]::after, .is-divider.is-danger[data-content]::after,
.is-divider-vertical.is-danger[data-content]::after,
.is-divider-vertical.is-danger[data-content]::after {
    background: #fff;
    color: #ff3860;
}

.is-divider.is-danger::before,
.is-divider-vertical.is-danger::before {
    border-left-color: #ff3860;
}

.is-divider.is-primary-2,
.is-divider-vertical.is-primary-2 {
    border-top-color: #fb1043;
}

.is-divider.is-primary-2[data-content]::after, .is-divider.is-primary-2[data-content]::after,
.is-divider-vertical.is-primary-2[data-content]::after,
.is-divider-vertical.is-primary-2[data-content]::after {
    background: #fff;
    color: #fb1043;
}

.is-divider.is-primary-2::before,
.is-divider-vertical.is-primary-2::before {
    border-left-color: #fb1043;
}

.is-divider.is-primary-3,
.is-divider-vertical.is-primary-3 {
    border-top-color: #ec0235;
}

.is-divider.is-primary-3[data-content]::after, .is-divider.is-primary-3[data-content]::after,
.is-divider-vertical.is-primary-3[data-content]::after,
.is-divider-vertical.is-primary-3[data-content]::after {
    background: #fff;
    color: #ec0235;
}

.is-divider.is-primary-3::before,
.is-divider-vertical.is-primary-3::before {
    border-left-color: #ec0235;
}

.is-divider.is-primary-4,
.is-divider-vertical.is-primary-4 {
    border-top-color: #f1093c;
}

.is-divider.is-primary-4[data-content]::after, .is-divider.is-primary-4[data-content]::after,
.is-divider-vertical.is-primary-4[data-content]::after,
.is-divider-vertical.is-primary-4[data-content]::after {
    background: #fff;
    color: #f1093c;
}

.is-divider.is-primary-4::before,
.is-divider-vertical.is-primary-4::before {
    border-left-color: #f1093c;
}

.is-divider.is-primary-5,
.is-divider-vertical.is-primary-5 {
    border-top-color: #ee0034;
}

.is-divider.is-primary-5[data-content]::after, .is-divider.is-primary-5[data-content]::after,
.is-divider-vertical.is-primary-5[data-content]::after,
.is-divider-vertical.is-primary-5[data-content]::after {
    background: #fff;
    color: #ee0034;
}

.is-divider.is-primary-5::before,
.is-divider-vertical.is-primary-5::before {
    border-left-color: #ee0034;
}

.is-divider.is-primary-6,
.is-divider-vertical.is-primary-6 {
    border-top-color: #f30337;
}

.is-divider.is-primary-6[data-content]::after, .is-divider.is-primary-6[data-content]::after,
.is-divider-vertical.is-primary-6[data-content]::after,
.is-divider-vertical.is-primary-6[data-content]::after {
    background: #fff;
    color: #f30337;
}

.is-divider.is-primary-6::before,
.is-divider-vertical.is-primary-6::before {
    border-left-color: #f30337;
}

.is-divider.is-primary-7,
.is-divider-vertical.is-primary-7 {
    border-top-color: #fef6f6;
}

.is-divider.is-primary-7[data-content]::after, .is-divider.is-primary-7[data-content]::after,
.is-divider-vertical.is-primary-7[data-content]::after,
.is-divider-vertical.is-primary-7[data-content]::after {
    background: rgba(0, 0, 0, 0.7);
    color: #fef6f6;
}

.is-divider.is-primary-7::before,
.is-divider-vertical.is-primary-7::before {
    border-left-color: #fef6f6;
}

.is-divider.is-primary-light,
.is-divider-vertical.is-primary-light {
    border-top-color: #fafafa;
}

.is-divider.is-primary-light[data-content]::after, .is-divider.is-primary-light[data-content]::after,
.is-divider-vertical.is-primary-light[data-content]::after,
.is-divider-vertical.is-primary-light[data-content]::after {
    background: rgba(0, 0, 0, 0.7);
    color: #fafafa;
}

.is-divider.is-primary-light::before,
.is-divider-vertical.is-primary-light::before {
    border-left-color: #fafafa;
}

.is-divider.is-secondary,
.is-divider-vertical.is-secondary {
    border-top-color: #101010;
}

.is-divider.is-secondary[data-content]::after, .is-divider.is-secondary[data-content]::after,
.is-divider-vertical.is-secondary[data-content]::after,
.is-divider-vertical.is-secondary[data-content]::after {
    background: #fff;
    color: #101010;
}

.is-divider.is-secondary::before,
.is-divider-vertical.is-secondary::before {
    border-left-color: #101010;
}

.is-divider.is-secondary-2,
.is-divider-vertical.is-secondary-2 {
    border-top-color: #131313;
}

.is-divider.is-secondary-2[data-content]::after, .is-divider.is-secondary-2[data-content]::after,
.is-divider-vertical.is-secondary-2[data-content]::after,
.is-divider-vertical.is-secondary-2[data-content]::after {
    background: #fff;
    color: #131313;
}

.is-divider.is-secondary-2::before,
.is-divider-vertical.is-secondary-2::before {
    border-left-color: #131313;
}

.is-divider.is-secondary-3,
.is-divider-vertical.is-secondary-3 {
    border-top-color: #232323;
}

.is-divider.is-secondary-3[data-content]::after, .is-divider.is-secondary-3[data-content]::after,
.is-divider-vertical.is-secondary-3[data-content]::after,
.is-divider-vertical.is-secondary-3[data-content]::after {
    background: #fff;
    color: #232323;
}

.is-divider.is-secondary-3::before,
.is-divider-vertical.is-secondary-3::before {
    border-left-color: #232323;
}

.is-divider.is-secondary-4,
.is-divider-vertical.is-secondary-4 {
    border-top-color: #363636;
}

.is-divider.is-secondary-4[data-content]::after, .is-divider.is-secondary-4[data-content]::after,
.is-divider-vertical.is-secondary-4[data-content]::after,
.is-divider-vertical.is-secondary-4[data-content]::after {
    background: #fff;
    color: #363636;
}

.is-divider.is-secondary-4::before,
.is-divider-vertical.is-secondary-4::before {
    border-left-color: #363636;
}

.is-divider.is-secondary-5,
.is-divider-vertical.is-secondary-5 {
    border-top-color: #5c5c5c;
}

.is-divider.is-secondary-5[data-content]::after, .is-divider.is-secondary-5[data-content]::after,
.is-divider-vertical.is-secondary-5[data-content]::after,
.is-divider-vertical.is-secondary-5[data-content]::after {
    background: #fff;
    color: #5c5c5c;
}

.is-divider.is-secondary-5::before,
.is-divider-vertical.is-secondary-5::before {
    border-left-color: #5c5c5c;
}

.is-divider.is-tertiary,
.is-divider-vertical.is-tertiary {
    border-top-color: #A6A6A6;
}

.is-divider.is-tertiary[data-content]::after, .is-divider.is-tertiary[data-content]::after,
.is-divider-vertical.is-tertiary[data-content]::after,
.is-divider-vertical.is-tertiary[data-content]::after {
    background: #fff;
    color: #A6A6A6;
}

.is-divider.is-tertiary::before,
.is-divider-vertical.is-tertiary::before {
    border-left-color: #A6A6A6;
}

.is-divider.is-tertiary-2,
.is-divider-vertical.is-tertiary-2 {
    border-top-color: #D8D8D8;
}

.is-divider.is-tertiary-2[data-content]::after, .is-divider.is-tertiary-2[data-content]::after,
.is-divider-vertical.is-tertiary-2[data-content]::after,
.is-divider-vertical.is-tertiary-2[data-content]::after {
    background: rgba(0, 0, 0, 0.7);
    color: #D8D8D8;
}

.is-divider.is-tertiary-2::before,
.is-divider-vertical.is-tertiary-2::before {
    border-left-color: #D8D8D8;
}

.is-divider.is-tertiary-3,
.is-divider-vertical.is-tertiary-3 {
    border-top-color: #D7D6D3;
}

.is-divider.is-tertiary-3[data-content]::after, .is-divider.is-tertiary-3[data-content]::after,
.is-divider-vertical.is-tertiary-3[data-content]::after,
.is-divider-vertical.is-tertiary-3[data-content]::after {
    background: rgba(0, 0, 0, 0.7);
    color: #D7D6D3;
}

.is-divider.is-tertiary-3::before,
.is-divider-vertical.is-tertiary-3::before {
    border-left-color: #D7D6D3;
}

.is-divider.is-tertiary-4,
.is-divider-vertical.is-tertiary-4 {
    border-top-color: #AFAFAF;
}

.is-divider.is-tertiary-4[data-content]::after, .is-divider.is-tertiary-4[data-content]::after,
.is-divider-vertical.is-tertiary-4[data-content]::after,
.is-divider-vertical.is-tertiary-4[data-content]::after {
    background: #fff;
    color: #AFAFAF;
}

.is-divider.is-tertiary-4::before,
.is-divider-vertical.is-tertiary-4::before {
    border-left-color: #AFAFAF;
}

.is-divider.is-tertiary-5,
.is-divider-vertical.is-tertiary-5 {
    border-top-color: #EAEAEA;
}

.is-divider.is-tertiary-5[data-content]::after, .is-divider.is-tertiary-5[data-content]::after,
.is-divider-vertical.is-tertiary-5[data-content]::after,
.is-divider-vertical.is-tertiary-5[data-content]::after {
    background: rgba(0, 0, 0, 0.7);
    color: #EAEAEA;
}

.is-divider.is-tertiary-5::before,
.is-divider-vertical.is-tertiary-5::before {
    border-left-color: #EAEAEA;
}

.is-divider.is-tertiary-6,
.is-divider-vertical.is-tertiary-6 {
    border-top-color: #B0B0B0;
}

.is-divider.is-tertiary-6[data-content]::after, .is-divider.is-tertiary-6[data-content]::after,
.is-divider-vertical.is-tertiary-6[data-content]::after,
.is-divider-vertical.is-tertiary-6[data-content]::after {
    background: #fff;
    color: #B0B0B0;
}

.is-divider.is-tertiary-6::before,
.is-divider-vertical.is-tertiary-6::before {
    border-left-color: #B0B0B0;
}

.is-divider.is-tertiary-7,
.is-divider-vertical.is-tertiary-7 {
    border-top-color: #969696;
}

.is-divider.is-tertiary-7[data-content]::after, .is-divider.is-tertiary-7[data-content]::after,
.is-divider-vertical.is-tertiary-7[data-content]::after,
.is-divider-vertical.is-tertiary-7[data-content]::after {
    background: #fff;
    color: #969696;
}

.is-divider.is-tertiary-7::before,
.is-divider-vertical.is-tertiary-7::before {
    border-left-color: #969696;
}

.is-divider.is-tertiary-8,
.is-divider-vertical.is-tertiary-8 {
    border-top-color: #999999;
}

.is-divider.is-tertiary-8[data-content]::after, .is-divider.is-tertiary-8[data-content]::after,
.is-divider-vertical.is-tertiary-8[data-content]::after,
.is-divider-vertical.is-tertiary-8[data-content]::after {
    background: #fff;
    color: #999999;
}

.is-divider.is-tertiary-8::before,
.is-divider-vertical.is-tertiary-8::before {
    border-left-color: #999999;
}

.is-divider.is-tertiary-9,
.is-divider-vertical.is-tertiary-9 {
    border-top-color: #f5f5f5;
}

.is-divider.is-tertiary-9[data-content]::after, .is-divider.is-tertiary-9[data-content]::after,
.is-divider-vertical.is-tertiary-9[data-content]::after,
.is-divider-vertical.is-tertiary-9[data-content]::after {
    background: rgba(0, 0, 0, 0.7);
    color: #f5f5f5;
}

.is-divider.is-tertiary-9::before,
.is-divider-vertical.is-tertiary-9::before {
    border-left-color: #f5f5f5;
}

.is-divider.is-black-bis,
.is-divider-vertical.is-black-bis {
    border-top-color: #121212;
}

.is-divider.is-black-bis[data-content]::after, .is-divider.is-black-bis[data-content]::after,
.is-divider-vertical.is-black-bis[data-content]::after,
.is-divider-vertical.is-black-bis[data-content]::after {
    background: #fff;
    color: #121212;
}

.is-divider.is-black-bis::before,
.is-divider-vertical.is-black-bis::before {
    border-left-color: #121212;
}

.is-divider.is-black-ter,
.is-divider-vertical.is-black-ter {
    border-top-color: #242424;
}

.is-divider.is-black-ter[data-content]::after, .is-divider.is-black-ter[data-content]::after,
.is-divider-vertical.is-black-ter[data-content]::after,
.is-divider-vertical.is-black-ter[data-content]::after {
    background: #fff;
    color: #242424;
}

.is-divider.is-black-ter::before,
.is-divider-vertical.is-black-ter::before {
    border-left-color: #242424;
}

.is-divider.is-grey-darker,
.is-divider-vertical.is-grey-darker {
    border-top-color: #363636;
}

.is-divider.is-grey-darker[data-content]::after, .is-divider.is-grey-darker[data-content]::after,
.is-divider-vertical.is-grey-darker[data-content]::after,
.is-divider-vertical.is-grey-darker[data-content]::after {
    background: #fff;
    color: #363636;
}

.is-divider.is-grey-darker::before,
.is-divider-vertical.is-grey-darker::before {
    border-left-color: #363636;
}

.is-divider.is-grey-dark,
.is-divider-vertical.is-grey-dark {
    border-top-color: #4a4a4a;
}

.is-divider.is-grey-dark[data-content]::after, .is-divider.is-grey-dark[data-content]::after,
.is-divider-vertical.is-grey-dark[data-content]::after,
.is-divider-vertical.is-grey-dark[data-content]::after {
    background: #fff;
    color: #4a4a4a;
}

.is-divider.is-grey-dark::before,
.is-divider-vertical.is-grey-dark::before {
    border-left-color: #4a4a4a;
}

.is-divider.is-grey,
.is-divider-vertical.is-grey {
    border-top-color: #7a7a7a;
}

.is-divider.is-grey[data-content]::after, .is-divider.is-grey[data-content]::after,
.is-divider-vertical.is-grey[data-content]::after,
.is-divider-vertical.is-grey[data-content]::after {
    background: #fff;
    color: #7a7a7a;
}

.is-divider.is-grey::before,
.is-divider-vertical.is-grey::before {
    border-left-color: #7a7a7a;
}

.is-divider.is-grey-light,
.is-divider-vertical.is-grey-light {
    border-top-color: #b5b5b5;
}

.is-divider.is-grey-light[data-content]::after, .is-divider.is-grey-light[data-content]::after,
.is-divider-vertical.is-grey-light[data-content]::after,
.is-divider-vertical.is-grey-light[data-content]::after {
    background: #fff;
    color: #b5b5b5;
}

.is-divider.is-grey-light::before,
.is-divider-vertical.is-grey-light::before {
    border-left-color: #b5b5b5;
}

.is-divider.is-grey-lighter,
.is-divider-vertical.is-grey-lighter {
    border-top-color: #dbdbdb;
}

.is-divider.is-grey-lighter[data-content]::after, .is-divider.is-grey-lighter[data-content]::after,
.is-divider-vertical.is-grey-lighter[data-content]::after,
.is-divider-vertical.is-grey-lighter[data-content]::after {
    background: rgba(0, 0, 0, 0.7);
    color: #dbdbdb;
}

.is-divider.is-grey-lighter::before,
.is-divider-vertical.is-grey-lighter::before {
    border-left-color: #dbdbdb;
}

.is-divider.is-white-ter,
.is-divider-vertical.is-white-ter {
    border-top-color: whitesmoke;
}

.is-divider.is-white-ter[data-content]::after, .is-divider.is-white-ter[data-content]::after,
.is-divider-vertical.is-white-ter[data-content]::after,
.is-divider-vertical.is-white-ter[data-content]::after {
    background: rgba(0, 0, 0, 0.7);
    color: whitesmoke;
}

.is-divider.is-white-ter::before,
.is-divider-vertical.is-white-ter::before {
    border-left-color: whitesmoke;
}

.is-divider.is-white-bis,
.is-divider-vertical.is-white-bis {
    border-top-color: #fafafa;
}

.is-divider.is-white-bis[data-content]::after, .is-divider.is-white-bis[data-content]::after,
.is-divider-vertical.is-white-bis[data-content]::after,
.is-divider-vertical.is-white-bis[data-content]::after {
    background: rgba(0, 0, 0, 0.7);
    color: #fafafa;
}

.is-divider.is-white-bis::before,
.is-divider-vertical.is-white-bis::before {
    border-left-color: #fafafa;
}

.tooltip {
    position: relative;
}

.tooltip:hover:not(.is-loading)::after, .tooltip.is-tooltip-active:not(.is-loading)::after {
    z-index: 99999;
    position: absolute;
    display: inline-block;
    pointer-events: none;
}

.tooltip:hover::before, .tooltip.is-tooltip-active::before {
    z-index: 99999;
    position: absolute;
    display: inline-block;
    pointer-events: none;
}

.tooltip:hover:not(.is-loading)::after, .tooltip.is-tooltip-active:not(.is-loading)::after {
    content: "";
    border-style: solid;
    border-width: .5rem;
}

.tooltip:hover::before, .tooltip.is-tooltip-active::before {
    opacity: 0;
    content: attr(data-tooltip);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 0.75rem;
    padding: .4rem .8rem;
    background: rgba(74, 74, 74, 0.9);
    border-radius: 4px;
    color: white;
    max-width: 24rem;
}

.tooltip:focus:not(.is-loading)::after, .tooltip:hover:not(.is-loading)::after, .tooltip.is-tooltip-active:not(.is-loading)::after {
    opacity: 1;
    margin-left: -.5rem;
    margin-top: -.5rem;
}

.tooltip:focus::before, .tooltip:hover::before, .tooltip.is-tooltip-active::before {
    opacity: 1;
}

.tooltip::before {
    top: auto;
    bottom: 100%;
    left: 50%;
    right: auto;
}

.tooltip:focus:not(.is-loading)::after, .tooltip:hover:not(.is-loading)::after, .tooltip.is-tooltip-active:not(.is-loading)::after {
    top: 0;
    bottom: auto;
    left: 50%;
    right: auto;
    border-color: rgba(74, 74, 74, 0.9) transparent transparent transparent;
}

.tooltip:focus::before, .tooltip:hover::before, .tooltip.is-tooltip-active::before {
    -webkit-transform: translate(-50%, -0.5rem);
    transform: translate(-50%, -0.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:focus:not(.is-loading)::after, .tooltip.is-tooltip-right:hover:not(.is-loading)::after, .tooltip.is-tooltip-right.is-tooltip-active:not(.is-loading)::after {
    top: 50%;
    left: 100%;
    right: auto;
    border-color: transparent rgba(74, 74, 74, 0.9) transparent transparent;
}

.tooltip.is-tooltip-right:focus::before, .tooltip.is-tooltip-right:hover::before, .tooltip.is-tooltip-right.is-tooltip-active::before {
    -webkit-transform: translate(0.5rem, 50%);
    transform: translate(0.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:focus:not(.is-loading)::after, .tooltip.is-tooltip-bottom:hover:not(.is-loading)::after, .tooltip.is-tooltip-bottom.is-tooltip-active:not(.is-loading)::after {
    top: 100%;
    bottom: auto;
    left: 50%;
    right: auto;
    border-color: transparent transparent rgba(74, 74, 74, 0.9) transparent;
}

.tooltip.is-tooltip-bottom:focus::before, .tooltip.is-tooltip-bottom:hover::before, .tooltip.is-tooltip-bottom.is-tooltip-active::before {
    -webkit-transform: translate(-50%, 0.5rem);
    transform: translate(-50%, 0.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:focus:not(.is-loading)::after, .tooltip.is-tooltip-left:hover:not(.is-loading)::after, .tooltip.is-tooltip-left.is-tooltip-active:not(.is-loading)::after {
    top: 50%;
    bottom: auto;
    left: auto;
    right: calc(100% - .5rem);
    border-color: transparent transparent transparent rgba(74, 74, 74, 0.9);
}

.tooltip.is-tooltip-left:focus::before, .tooltip.is-tooltip-left:hover::before, .tooltip.is-tooltip-left.is-tooltip-active::before {
    -webkit-transform: translate(-0.5rem, 50%);
    transform: translate(-0.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, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-white.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(255, 255, 255, 0.9) transparent transparent;
}

.tooltip.is-tooltip-white.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(255, 255, 255, 0.9) transparent;
}

.tooltip.is-tooltip-white.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.9);
}

.tooltip.is-tooltip-white::before {
    background: rgba(255, 255, 255, 0.9);
    color: #0a0a0a;
}

.tooltip.is-tooltip-black:not(.is-loading)::after {
    border-color: rgba(10, 10, 10, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-black.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(10, 10, 10, 0.9) transparent transparent;
}

.tooltip.is-tooltip-black.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(10, 10, 10, 0.9) transparent;
}

.tooltip.is-tooltip-black.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(10, 10, 10, 0.9);
}

.tooltip.is-tooltip-black::before {
    background: rgba(10, 10, 10, 0.9);
    color: white;
}

.tooltip.is-tooltip-light:not(.is-loading)::after {
    border-color: rgba(245, 245, 245, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-light.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(245, 245, 245, 0.9) transparent transparent;
}

.tooltip.is-tooltip-light.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(245, 245, 245, 0.9) transparent;
}

.tooltip.is-tooltip-light.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(245, 245, 245, 0.9);
}

.tooltip.is-tooltip-light::before {
    background: rgba(245, 245, 245, 0.9);
    color: #363636;
}

.tooltip.is-tooltip-dark:not(.is-loading)::after {
    border-color: rgba(54, 54, 54, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-dark.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(54, 54, 54, 0.9) transparent transparent;
}

.tooltip.is-tooltip-dark.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(54, 54, 54, 0.9) transparent;
}

.tooltip.is-tooltip-dark.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(54, 54, 54, 0.9);
}

.tooltip.is-tooltip-dark::before {
    background: rgba(54, 54, 54, 0.9);
    color: whitesmoke;
}

.tooltip.is-tooltip-primary:not(.is-loading)::after {
    border-color: rgba(248, 0, 54, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-primary.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(248, 0, 54, 0.9) transparent transparent;
}

.tooltip.is-tooltip-primary.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(248, 0, 54, 0.9) transparent;
}

.tooltip.is-tooltip-primary.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(248, 0, 54, 0.9);
}

.tooltip.is-tooltip-primary::before {
    background: rgba(248, 0, 54, 0.9);
    color: #fff;
}

.tooltip.is-tooltip-link:not(.is-loading)::after {
    border-color: rgba(248, 0, 54, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-link.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(248, 0, 54, 0.9) transparent transparent;
}

.tooltip.is-tooltip-link.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(248, 0, 54, 0.9) transparent;
}

.tooltip.is-tooltip-link.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(248, 0, 54, 0.9);
}

.tooltip.is-tooltip-link::before {
    background: rgba(248, 0, 54, 0.9);
    color: #fff;
}

.tooltip.is-tooltip-info:not(.is-loading)::after {
    border-color: rgba(32, 156, 238, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-info.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(32, 156, 238, 0.9) transparent transparent;
}

.tooltip.is-tooltip-info.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(32, 156, 238, 0.9) transparent;
}

.tooltip.is-tooltip-info.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(32, 156, 238, 0.9);
}

.tooltip.is-tooltip-info::before {
    background: rgba(32, 156, 238, 0.9);
    color: #fff;
}

.tooltip.is-tooltip-success:not(.is-loading)::after {
    border-color: rgba(35, 209, 96, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-success.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(35, 209, 96, 0.9) transparent transparent;
}

.tooltip.is-tooltip-success.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(35, 209, 96, 0.9) transparent;
}

.tooltip.is-tooltip-success.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(35, 209, 96, 0.9);
}

.tooltip.is-tooltip-success::before {
    background: rgba(35, 209, 96, 0.9);
    color: #fff;
}

.tooltip.is-tooltip-warning:not(.is-loading)::after {
    border-color: rgba(255, 221, 87, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-warning.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(255, 221, 87, 0.9) transparent transparent;
}

.tooltip.is-tooltip-warning.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(255, 221, 87, 0.9) transparent;
}

.tooltip.is-tooltip-warning.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(255, 221, 87, 0.9);
}

.tooltip.is-tooltip-warning::before {
    background: rgba(255, 221, 87, 0.9);
    color: rgba(0, 0, 0, 0.7);
}

.tooltip.is-tooltip-danger:not(.is-loading)::after {
    border-color: rgba(255, 56, 96, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-danger.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(255, 56, 96, 0.9) transparent transparent;
}

.tooltip.is-tooltip-danger.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(255, 56, 96, 0.9) transparent;
}

.tooltip.is-tooltip-danger.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(255, 56, 96, 0.9);
}

.tooltip.is-tooltip-danger::before {
    background: rgba(255, 56, 96, 0.9);
    color: #fff;
}

.tooltip.is-tooltip-primary-2:not(.is-loading)::after {
    border-color: rgba(251, 16, 67, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-primary-2.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(251, 16, 67, 0.9) transparent transparent;
}

.tooltip.is-tooltip-primary-2.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(251, 16, 67, 0.9) transparent;
}

.tooltip.is-tooltip-primary-2.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(251, 16, 67, 0.9);
}

.tooltip.is-tooltip-primary-2::before {
    background: rgba(251, 16, 67, 0.9);
    color: #fff;
}

.tooltip.is-tooltip-primary-3:not(.is-loading)::after {
    border-color: rgba(236, 2, 53, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-primary-3.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(236, 2, 53, 0.9) transparent transparent;
}

.tooltip.is-tooltip-primary-3.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(236, 2, 53, 0.9) transparent;
}

.tooltip.is-tooltip-primary-3.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(236, 2, 53, 0.9);
}

.tooltip.is-tooltip-primary-3::before {
    background: rgba(236, 2, 53, 0.9);
    color: #fff;
}

.tooltip.is-tooltip-primary-4:not(.is-loading)::after {
    border-color: rgba(241, 9, 60, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-primary-4.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(241, 9, 60, 0.9) transparent transparent;
}

.tooltip.is-tooltip-primary-4.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(241, 9, 60, 0.9) transparent;
}

.tooltip.is-tooltip-primary-4.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(241, 9, 60, 0.9);
}

.tooltip.is-tooltip-primary-4::before {
    background: rgba(241, 9, 60, 0.9);
    color: #fff;
}

.tooltip.is-tooltip-primary-5:not(.is-loading)::after {
    border-color: rgba(238, 0, 52, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-primary-5.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(238, 0, 52, 0.9) transparent transparent;
}

.tooltip.is-tooltip-primary-5.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(238, 0, 52, 0.9) transparent;
}

.tooltip.is-tooltip-primary-5.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(238, 0, 52, 0.9);
}

.tooltip.is-tooltip-primary-5::before {
    background: rgba(238, 0, 52, 0.9);
    color: #fff;
}

.tooltip.is-tooltip-primary-6:not(.is-loading)::after {
    border-color: rgba(243, 3, 55, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-primary-6.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(243, 3, 55, 0.9) transparent transparent;
}

.tooltip.is-tooltip-primary-6.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(243, 3, 55, 0.9) transparent;
}

.tooltip.is-tooltip-primary-6.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(243, 3, 55, 0.9);
}

.tooltip.is-tooltip-primary-6::before {
    background: rgba(243, 3, 55, 0.9);
    color: #fff;
}

.tooltip.is-tooltip-primary-7:not(.is-loading)::after {
    border-color: rgba(254, 246, 246, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-primary-7.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(254, 246, 246, 0.9) transparent transparent;
}

.tooltip.is-tooltip-primary-7.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(254, 246, 246, 0.9) transparent;
}

.tooltip.is-tooltip-primary-7.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(254, 246, 246, 0.9);
}

.tooltip.is-tooltip-primary-7::before {
    background: rgba(254, 246, 246, 0.9);
    color: rgba(0, 0, 0, 0.7);
}

.tooltip.is-tooltip-primary-light:not(.is-loading)::after {
    border-color: rgba(250, 250, 250, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-primary-light.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(250, 250, 250, 0.9) transparent transparent;
}

.tooltip.is-tooltip-primary-light.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(250, 250, 250, 0.9) transparent;
}

.tooltip.is-tooltip-primary-light.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(250, 250, 250, 0.9);
}

.tooltip.is-tooltip-primary-light::before {
    background: rgba(250, 250, 250, 0.9);
    color: rgba(0, 0, 0, 0.7);
}

.tooltip.is-tooltip-secondary:not(.is-loading)::after {
    border-color: rgba(16, 16, 16, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-secondary.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(16, 16, 16, 0.9) transparent transparent;
}

.tooltip.is-tooltip-secondary.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(16, 16, 16, 0.9) transparent;
}

.tooltip.is-tooltip-secondary.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(16, 16, 16, 0.9);
}

.tooltip.is-tooltip-secondary::before {
    background: rgba(16, 16, 16, 0.9);
    color: #fff;
}

.tooltip.is-tooltip-secondary-2:not(.is-loading)::after {
    border-color: rgba(19, 19, 19, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-secondary-2.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(19, 19, 19, 0.9) transparent transparent;
}

.tooltip.is-tooltip-secondary-2.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(19, 19, 19, 0.9) transparent;
}

.tooltip.is-tooltip-secondary-2.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(19, 19, 19, 0.9);
}

.tooltip.is-tooltip-secondary-2::before {
    background: rgba(19, 19, 19, 0.9);
    color: #fff;
}

.tooltip.is-tooltip-secondary-3:not(.is-loading)::after {
    border-color: rgba(35, 35, 35, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-secondary-3.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(35, 35, 35, 0.9) transparent transparent;
}

.tooltip.is-tooltip-secondary-3.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(35, 35, 35, 0.9) transparent;
}

.tooltip.is-tooltip-secondary-3.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(35, 35, 35, 0.9);
}

.tooltip.is-tooltip-secondary-3::before {
    background: rgba(35, 35, 35, 0.9);
    color: #fff;
}

.tooltip.is-tooltip-secondary-4:not(.is-loading)::after {
    border-color: rgba(54, 54, 54, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-secondary-4.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(54, 54, 54, 0.9) transparent transparent;
}

.tooltip.is-tooltip-secondary-4.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(54, 54, 54, 0.9) transparent;
}

.tooltip.is-tooltip-secondary-4.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(54, 54, 54, 0.9);
}

.tooltip.is-tooltip-secondary-4::before {
    background: rgba(54, 54, 54, 0.9);
    color: #fff;
}

.tooltip.is-tooltip-secondary-5:not(.is-loading)::after {
    border-color: rgba(92, 92, 92, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-secondary-5.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(92, 92, 92, 0.9) transparent transparent;
}

.tooltip.is-tooltip-secondary-5.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(92, 92, 92, 0.9) transparent;
}

.tooltip.is-tooltip-secondary-5.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(92, 92, 92, 0.9);
}

.tooltip.is-tooltip-secondary-5::before {
    background: rgba(92, 92, 92, 0.9);
    color: #fff;
}

.tooltip.is-tooltip-tertiary:not(.is-loading)::after {
    border-color: rgba(166, 166, 166, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-tertiary.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(166, 166, 166, 0.9) transparent transparent;
}

.tooltip.is-tooltip-tertiary.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(166, 166, 166, 0.9) transparent;
}

.tooltip.is-tooltip-tertiary.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(166, 166, 166, 0.9);
}

.tooltip.is-tooltip-tertiary::before {
    background: rgba(166, 166, 166, 0.9);
    color: #fff;
}

.tooltip.is-tooltip-tertiary-2:not(.is-loading)::after {
    border-color: rgba(216, 216, 216, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-tertiary-2.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(216, 216, 216, 0.9) transparent transparent;
}

.tooltip.is-tooltip-tertiary-2.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(216, 216, 216, 0.9) transparent;
}

.tooltip.is-tooltip-tertiary-2.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(216, 216, 216, 0.9);
}

.tooltip.is-tooltip-tertiary-2::before {
    background: rgba(216, 216, 216, 0.9);
    color: rgba(0, 0, 0, 0.7);
}

.tooltip.is-tooltip-tertiary-3:not(.is-loading)::after {
    border-color: rgba(215, 214, 211, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-tertiary-3.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(215, 214, 211, 0.9) transparent transparent;
}

.tooltip.is-tooltip-tertiary-3.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(215, 214, 211, 0.9) transparent;
}

.tooltip.is-tooltip-tertiary-3.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(215, 214, 211, 0.9);
}

.tooltip.is-tooltip-tertiary-3::before {
    background: rgba(215, 214, 211, 0.9);
    color: rgba(0, 0, 0, 0.7);
}

.tooltip.is-tooltip-tertiary-4:not(.is-loading)::after {
    border-color: rgba(175, 175, 175, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-tertiary-4.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(175, 175, 175, 0.9) transparent transparent;
}

.tooltip.is-tooltip-tertiary-4.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(175, 175, 175, 0.9) transparent;
}

.tooltip.is-tooltip-tertiary-4.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(175, 175, 175, 0.9);
}

.tooltip.is-tooltip-tertiary-4::before {
    background: rgba(175, 175, 175, 0.9);
    color: #fff;
}

.tooltip.is-tooltip-tertiary-5:not(.is-loading)::after {
    border-color: rgba(234, 234, 234, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-tertiary-5.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(234, 234, 234, 0.9) transparent transparent;
}

.tooltip.is-tooltip-tertiary-5.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(234, 234, 234, 0.9) transparent;
}

.tooltip.is-tooltip-tertiary-5.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(234, 234, 234, 0.9);
}

.tooltip.is-tooltip-tertiary-5::before {
    background: rgba(234, 234, 234, 0.9);
    color: rgba(0, 0, 0, 0.7);
}

.tooltip.is-tooltip-tertiary-6:not(.is-loading)::after {
    border-color: rgba(176, 176, 176, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-tertiary-6.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(176, 176, 176, 0.9) transparent transparent;
}

.tooltip.is-tooltip-tertiary-6.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(176, 176, 176, 0.9) transparent;
}

.tooltip.is-tooltip-tertiary-6.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(176, 176, 176, 0.9);
}

.tooltip.is-tooltip-tertiary-6::before {
    background: rgba(176, 176, 176, 0.9);
    color: #fff;
}

.tooltip.is-tooltip-tertiary-7:not(.is-loading)::after {
    border-color: rgba(150, 150, 150, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-tertiary-7.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(150, 150, 150, 0.9) transparent transparent;
}

.tooltip.is-tooltip-tertiary-7.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(150, 150, 150, 0.9) transparent;
}

.tooltip.is-tooltip-tertiary-7.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(150, 150, 150, 0.9);
}

.tooltip.is-tooltip-tertiary-7::before {
    background: rgba(150, 150, 150, 0.9);
    color: #fff;
}

.tooltip.is-tooltip-tertiary-8:not(.is-loading)::after {
    border-color: rgba(153, 153, 153, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-tertiary-8.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(153, 153, 153, 0.9) transparent transparent;
}

.tooltip.is-tooltip-tertiary-8.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(153, 153, 153, 0.9) transparent;
}

.tooltip.is-tooltip-tertiary-8.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(153, 153, 153, 0.9);
}

.tooltip.is-tooltip-tertiary-8::before {
    background: rgba(153, 153, 153, 0.9);
    color: #fff;
}

.tooltip.is-tooltip-tertiary-9:not(.is-loading)::after {
    border-color: rgba(245, 245, 245, 0.9) transparent transparent transparent;
}

.tooltip.is-tooltip-tertiary-9.is-tooltip-right:not(.is-loading)::after {
    border-color: transparent rgba(245, 245, 245, 0.9) transparent transparent;
}

.tooltip.is-tooltip-tertiary-9.is-tooltip-bottom:not(.is-loading)::after {
    border-color: transparent transparent rgba(245, 245, 245, 0.9) transparent;
}

.tooltip.is-tooltip-tertiary-9.is-tooltip-left:not(.is-loading)::after {
    border-color: transparent transparent transparent rgba(245, 245, 245, 0.9);
}

.tooltip.is-tooltip-tertiary-9::before {
    background: rgba(245, 245, 245, 0.9);
    color: rgba(0, 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:focus:not(.is-loading)::after, .is-tooltip-top-mobile:hover:not(.is-loading)::after, .is-tooltip-top-mobile.is-tooltip-active:not(.is-loading)::after {
        top: 0 !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: rgba(74, 74, 74, 0.9) transparent transparent transparent !important;
    }

    .is-tooltip-top-mobile:focus::before, .is-tooltip-top-mobile:hover::before, .is-tooltip-top-mobile.is-tooltip-active::before {
        -webkit-transform: translate(-50%, -0.5rem) !important;
        transform: translate(-50%, -0.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:focus:not(.is-loading)::after, .is-tooltip-top-tablet:hover:not(.is-loading)::after, .is-tooltip-top-tablet.is-tooltip-active:not(.is-loading)::after {
        top: 0 !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: rgba(74, 74, 74, 0.9) transparent transparent transparent !important;
    }

    .is-tooltip-top-tablet:focus::before, .is-tooltip-top-tablet:hover::before, .is-tooltip-top-tablet.is-tooltip-active::before {
        -webkit-transform: translate(-50%, -0.5rem) !important;
        transform: translate(-50%, -0.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:focus:not(.is-loading)::after, .is-tooltip-top-tablet-only:hover:not(.is-loading)::after, .is-tooltip-top-tablet-only.is-tooltip-active:not(.is-loading)::after {
        top: 0 !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: rgba(74, 74, 74, 0.9) transparent transparent transparent !important;
    }

    .is-tooltip-top-tablet-only:focus::before, .is-tooltip-top-tablet-only:hover::before, .is-tooltip-top-tablet-only.is-tooltip-active::before {
        -webkit-transform: translate(-50%, -0.5rem) !important;
        transform: translate(-50%, -0.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:focus:not(.is-loading)::after, .is-tooltip-top-touch:hover:not(.is-loading)::after, .is-tooltip-top-touch.is-tooltip-active:not(.is-loading)::after {
        top: 0 !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: rgba(74, 74, 74, 0.9) transparent transparent transparent !important;
    }

    .is-tooltip-top-touch:focus::before, .is-tooltip-top-touch:hover::before, .is-tooltip-top-touch.is-tooltip-active::before {
        -webkit-transform: translate(-50%, -0.5rem) !important;
        transform: translate(-50%, -0.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:focus:not(.is-loading)::after, .is-tooltip-top-desktop:hover:not(.is-loading)::after, .is-tooltip-top-desktop.is-tooltip-active:not(.is-loading)::after {
        top: 0 !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: rgba(74, 74, 74, 0.9) transparent transparent transparent !important;
    }

    .is-tooltip-top-desktop:focus::before, .is-tooltip-top-desktop:hover::before, .is-tooltip-top-desktop.is-tooltip-active::before {
        -webkit-transform: translate(-50%, -0.5rem) !important;
        transform: translate(-50%, -0.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:focus:not(.is-loading)::after, .is-tooltip-top-desktop-only:hover:not(.is-loading)::after, .is-tooltip-top-desktop-only.is-tooltip-active:not(.is-loading)::after {
        top: 0 !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: rgba(74, 74, 74, 0.9) transparent transparent transparent !important;
    }

    .is-tooltip-top-desktop-only:focus::before, .is-tooltip-top-desktop-only:hover::before, .is-tooltip-top-desktop-only.is-tooltip-active::before {
        -webkit-transform: translate(-50%, -0.5rem) !important;
        transform: translate(-50%, -0.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:focus:not(.is-loading)::after, .is-tooltip-top-widescreen:hover:not(.is-loading)::after, .is-tooltip-top-widescreen.is-tooltip-active:not(.is-loading)::after {
        top: 0 !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: rgba(74, 74, 74, 0.9) transparent transparent transparent !important;
    }

    .is-tooltip-top-widescreen:focus::before, .is-tooltip-top-widescreen:hover::before, .is-tooltip-top-widescreen.is-tooltip-active::before {
        -webkit-transform: translate(-50%, -0.5rem) !important;
        transform: translate(-50%, -0.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:focus:not(.is-loading)::after, .is-tooltip-top-widescreen-only:hover:not(.is-loading)::after, .is-tooltip-top-widescreen-only.is-tooltip-active:not(.is-loading)::after {
        top: 0 !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: rgba(74, 74, 74, 0.9) transparent transparent transparent !important;
    }

    .is-tooltip-top-widescreen-only:focus::before, .is-tooltip-top-widescreen-only:hover::before, .is-tooltip-top-widescreen-only.is-tooltip-active::before {
        -webkit-transform: translate(-50%, -0.5rem) !important;
        transform: translate(-50%, -0.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:focus:not(.is-loading)::after, .is-tooltip-top-fullhd:hover:not(.is-loading)::after, .is-tooltip-top-fullhd.is-tooltip-active:not(.is-loading)::after {
        top: 0 !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: rgba(74, 74, 74, 0.9) transparent transparent transparent !important;
    }

    .is-tooltip-top-fullhd:focus::before, .is-tooltip-top-fullhd:hover::before, .is-tooltip-top-fullhd.is-tooltip-active::before {
        -webkit-transform: translate(-50%, -0.5rem) !important;
        transform: translate(-50%, -0.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:focus:not(.is-loading)::after, .is-tooltip-right-mobile:hover:not(.is-loading)::after, .is-tooltip-right-mobile.is-tooltip-active:not(.is-loading)::after {
        top: 50% !important;
        left: 100% !important;
        right: auto !important;
        border-color: transparent rgba(74, 74, 74, 0.9) transparent transparent !important;
    }

    .is-tooltip-right-mobile:focus::before, .is-tooltip-right-mobile:hover::before, .is-tooltip-right-mobile.is-tooltip-active::before {
        -webkit-transform: translate(0.5rem, 50%) !important;
        transform: translate(0.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:focus:not(.is-loading)::after, .is-tooltip-right-tablet:hover:not(.is-loading)::after, .is-tooltip-right-tablet.is-tooltip-active:not(.is-loading)::after {
        top: 50% !important;
        left: 100% !important;
        right: auto !important;
        border-color: transparent rgba(74, 74, 74, 0.9) transparent transparent !important;
    }

    .is-tooltip-right-tablet:focus::before, .is-tooltip-right-tablet:hover::before, .is-tooltip-right-tablet.is-tooltip-active::before {
        -webkit-transform: translate(0.5rem, 50%) !important;
        transform: translate(0.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:focus:not(.is-loading)::after, .is-tooltip-right-tablet-only:hover:not(.is-loading)::after, .is-tooltip-right-tablet-only.is-tooltip-active:not(.is-loading)::after {
        top: 50% !important;
        left: 100% !important;
        right: auto !important;
        border-color: transparent rgba(74, 74, 74, 0.9) transparent transparent !important;
    }

    .is-tooltip-right-tablet-only:focus::before, .is-tooltip-right-tablet-only:hover::before, .is-tooltip-right-tablet-only.is-tooltip-active::before {
        -webkit-transform: translate(0.5rem, 50%) !important;
        transform: translate(0.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:focus:not(.is-loading)::after, .is-tooltip-right-touch:hover:not(.is-loading)::after, .is-tooltip-right-touch.is-tooltip-active:not(.is-loading)::after {
        top: 50% !important;
        left: 100% !important;
        right: auto !important;
        border-color: transparent rgba(74, 74, 74, 0.9) transparent transparent !important;
    }

    .is-tooltip-right-touch:focus::before, .is-tooltip-right-touch:hover::before, .is-tooltip-right-touch.is-tooltip-active::before {
        -webkit-transform: translate(0.5rem, 50%) !important;
        transform: translate(0.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:focus:not(.is-loading)::after, .is-tooltip-right-desktop:hover:not(.is-loading)::after, .is-tooltip-right-desktop.is-tooltip-active:not(.is-loading)::after {
        top: 50% !important;
        left: 100% !important;
        right: auto !important;
        border-color: transparent rgba(74, 74, 74, 0.9) transparent transparent !important;
    }

    .is-tooltip-right-desktop:focus::before, .is-tooltip-right-desktop:hover::before, .is-tooltip-right-desktop.is-tooltip-active::before {
        -webkit-transform: translate(0.5rem, 50%) !important;
        transform: translate(0.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:focus:not(.is-loading)::after, .is-tooltip-right-desktop-only:hover:not(.is-loading)::after, .is-tooltip-right-desktop-only.is-tooltip-active:not(.is-loading)::after {
        top: 50% !important;
        left: 100% !important;
        right: auto !important;
        border-color: transparent rgba(74, 74, 74, 0.9) transparent transparent !important;
    }

    .is-tooltip-right-desktop-only:focus::before, .is-tooltip-right-desktop-only:hover::before, .is-tooltip-right-desktop-only.is-tooltip-active::before {
        -webkit-transform: translate(0.5rem, 50%) !important;
        transform: translate(0.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:focus:not(.is-loading)::after, .is-tooltip-right-widescreen:hover:not(.is-loading)::after, .is-tooltip-right-widescreen.is-tooltip-active:not(.is-loading)::after {
        top: 50% !important;
        left: 100% !important;
        right: auto !important;
        border-color: transparent rgba(74, 74, 74, 0.9) transparent transparent !important;
    }

    .is-tooltip-right-widescreen:focus::before, .is-tooltip-right-widescreen:hover::before, .is-tooltip-right-widescreen.is-tooltip-active::before {
        -webkit-transform: translate(0.5rem, 50%) !important;
        transform: translate(0.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:focus:not(.is-loading)::after, .is-tooltip-right-widescreen-only:hover:not(.is-loading)::after, .is-tooltip-right-widescreen-only.is-tooltip-active:not(.is-loading)::after {
        top: 50% !important;
        left: 100% !important;
        right: auto !important;
        border-color: transparent rgba(74, 74, 74, 0.9) transparent transparent !important;
    }

    .is-tooltip-right-widescreen-only:focus::before, .is-tooltip-right-widescreen-only:hover::before, .is-tooltip-right-widescreen-only.is-tooltip-active::before {
        -webkit-transform: translate(0.5rem, 50%) !important;
        transform: translate(0.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:focus:not(.is-loading)::after, .is-tooltip-right-fullhd:hover:not(.is-loading)::after, .is-tooltip-right-fullhd.is-tooltip-active:not(.is-loading)::after {
        top: 50% !important;
        left: 100% !important;
        right: auto !important;
        border-color: transparent rgba(74, 74, 74, 0.9) transparent transparent !important;
    }

    .is-tooltip-right-fullhd:focus::before, .is-tooltip-right-fullhd:hover::before, .is-tooltip-right-fullhd.is-tooltip-active::before {
        -webkit-transform: translate(0.5rem, 50%) !important;
        transform: translate(0.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:focus:not(.is-loading)::after, .is-tooltip-bottom-mobile:hover:not(.is-loading)::after, .is-tooltip-bottom-mobile.is-tooltip-active:not(.is-loading)::after {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: transparent transparent rgba(74, 74, 74, 0.9) transparent !important;
    }

    .is-tooltip-bottom-mobile:focus::before, .is-tooltip-bottom-mobile:hover::before, .is-tooltip-bottom-mobile.is-tooltip-active::before {
        -webkit-transform: translate(-50%, 0.5rem) !important;
        transform: translate(-50%, 0.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:focus:not(.is-loading)::after, .is-tooltip-bottom-tablet:hover:not(.is-loading)::after, .is-tooltip-bottom-tablet.is-tooltip-active:not(.is-loading)::after {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: transparent transparent rgba(74, 74, 74, 0.9) transparent !important;
    }

    .is-tooltip-bottom-tablet:focus::before, .is-tooltip-bottom-tablet:hover::before, .is-tooltip-bottom-tablet.is-tooltip-active::before {
        -webkit-transform: translate(-50%, 0.5rem) !important;
        transform: translate(-50%, 0.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:focus:not(.is-loading)::after, .is-tooltip-bottom-tablet-only:hover:not(.is-loading)::after, .is-tooltip-bottom-tablet-only.is-tooltip-active:not(.is-loading)::after {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: transparent transparent rgba(74, 74, 74, 0.9) transparent !important;
    }

    .is-tooltip-bottom-tablet-only:focus::before, .is-tooltip-bottom-tablet-only:hover::before, .is-tooltip-bottom-tablet-only.is-tooltip-active::before {
        -webkit-transform: translate(-50%, 0.5rem) !important;
        transform: translate(-50%, 0.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:focus:not(.is-loading)::after, .is-tooltip-bottom-touch:hover:not(.is-loading)::after, .is-tooltip-bottom-touch.is-tooltip-active:not(.is-loading)::after {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: transparent transparent rgba(74, 74, 74, 0.9) transparent !important;
    }

    .is-tooltip-bottom-touch:focus::before, .is-tooltip-bottom-touch:hover::before, .is-tooltip-bottom-touch.is-tooltip-active::before {
        -webkit-transform: translate(-50%, 0.5rem) !important;
        transform: translate(-50%, 0.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:focus:not(.is-loading)::after, .is-tooltip-bottom-desktop:hover:not(.is-loading)::after, .is-tooltip-bottom-desktop.is-tooltip-active:not(.is-loading)::after {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: transparent transparent rgba(74, 74, 74, 0.9) transparent !important;
    }

    .is-tooltip-bottom-desktop:focus::before, .is-tooltip-bottom-desktop:hover::before, .is-tooltip-bottom-desktop.is-tooltip-active::before {
        -webkit-transform: translate(-50%, 0.5rem) !important;
        transform: translate(-50%, 0.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:focus:not(.is-loading)::after, .is-tooltip-bottom-desktop-only:hover:not(.is-loading)::after, .is-tooltip-bottom-desktop-only.is-tooltip-active:not(.is-loading)::after {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: transparent transparent rgba(74, 74, 74, 0.9) transparent !important;
    }

    .is-tooltip-bottom-desktop-only:focus::before, .is-tooltip-bottom-desktop-only:hover::before, .is-tooltip-bottom-desktop-only.is-tooltip-active::before {
        -webkit-transform: translate(-50%, 0.5rem) !important;
        transform: translate(-50%, 0.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:focus:not(.is-loading)::after, .is-tooltip-bottom-widescreen:hover:not(.is-loading)::after, .is-tooltip-bottom-widescreen.is-tooltip-active:not(.is-loading)::after {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: transparent transparent rgba(74, 74, 74, 0.9) transparent !important;
    }

    .is-tooltip-bottom-widescreen:focus::before, .is-tooltip-bottom-widescreen:hover::before, .is-tooltip-bottom-widescreen.is-tooltip-active::before {
        -webkit-transform: translate(-50%, 0.5rem) !important;
        transform: translate(-50%, 0.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:focus:not(.is-loading)::after, .is-tooltip-bottom-widescreen-only:hover:not(.is-loading)::after, .is-tooltip-bottom-widescreen-only.is-tooltip-active:not(.is-loading)::after {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: transparent transparent rgba(74, 74, 74, 0.9) transparent !important;
    }

    .is-tooltip-bottom-widescreen-only:focus::before, .is-tooltip-bottom-widescreen-only:hover::before, .is-tooltip-bottom-widescreen-only.is-tooltip-active::before {
        -webkit-transform: translate(-50%, 0.5rem) !important;
        transform: translate(-50%, 0.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:focus:not(.is-loading)::after, .is-tooltip-bottom-fullhd:hover:not(.is-loading)::after, .is-tooltip-bottom-fullhd.is-tooltip-active:not(.is-loading)::after {
        top: 100% !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        border-color: transparent transparent rgba(74, 74, 74, 0.9) transparent !important;
    }

    .is-tooltip-bottom-fullhd:focus::before, .is-tooltip-bottom-fullhd:hover::before, .is-tooltip-bottom-fullhd.is-tooltip-active::before {
        -webkit-transform: translate(-50%, 0.5rem) !important;
        transform: translate(-50%, 0.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:focus:not(.is-loading)::after, .is-tooltip-left-mobile:hover:not(.is-loading)::after, .is-tooltip-left-mobile.is-tooltip-active: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, 0.9) !important;
    }

    .is-tooltip-left-mobile:focus::before, .is-tooltip-left-mobile:hover::before, .is-tooltip-left-mobile.is-tooltip-active::before {
        -webkit-transform: translate(-0.5rem, 50%) !important;
        transform: translate(-0.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:focus:not(.is-loading)::after, .is-tooltip-left-tablet:hover:not(.is-loading)::after, .is-tooltip-left-tablet.is-tooltip-active: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, 0.9) !important;
    }

    .is-tooltip-left-tablet:focus::before, .is-tooltip-left-tablet:hover::before, .is-tooltip-left-tablet.is-tooltip-active::before {
        -webkit-transform: translate(-0.5rem, 50%) !important;
        transform: translate(-0.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:focus:not(.is-loading)::after, .is-tooltip-left-tablet-only:hover:not(.is-loading)::after, .is-tooltip-left-tablet-only.is-tooltip-active: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, 0.9) !important;
    }

    .is-tooltip-left-tablet-only:focus::before, .is-tooltip-left-tablet-only:hover::before, .is-tooltip-left-tablet-only.is-tooltip-active::before {
        -webkit-transform: translate(-0.5rem, 50%) !important;
        transform: translate(-0.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:focus:not(.is-loading)::after, .is-tooltip-left-touch:hover:not(.is-loading)::after, .is-tooltip-left-touch.is-tooltip-active: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, 0.9) !important;
    }

    .is-tooltip-left-touch:focus::before, .is-tooltip-left-touch:hover::before, .is-tooltip-left-touch.is-tooltip-active::before {
        -webkit-transform: translate(-0.5rem, 50%) !important;
        transform: translate(-0.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:focus:not(.is-loading)::after, .is-tooltip-left-desktop:hover:not(.is-loading)::after, .is-tooltip-left-desktop.is-tooltip-active: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, 0.9) !important;
    }

    .is-tooltip-left-desktop:focus::before, .is-tooltip-left-desktop:hover::before, .is-tooltip-left-desktop.is-tooltip-active::before {
        -webkit-transform: translate(-0.5rem, 50%) !important;
        transform: translate(-0.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:focus:not(.is-loading)::after, .is-tooltip-left-desktop-only:hover:not(.is-loading)::after, .is-tooltip-left-desktop-only.is-tooltip-active: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, 0.9) !important;
    }

    .is-tooltip-left-desktop-only:focus::before, .is-tooltip-left-desktop-only:hover::before, .is-tooltip-left-desktop-only.is-tooltip-active::before {
        -webkit-transform: translate(-0.5rem, 50%) !important;
        transform: translate(-0.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:focus:not(.is-loading)::after, .is-tooltip-left-widescreen:hover:not(.is-loading)::after, .is-tooltip-left-widescreen.is-tooltip-active: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, 0.9) !important;
    }

    .is-tooltip-left-widescreen:focus::before, .is-tooltip-left-widescreen:hover::before, .is-tooltip-left-widescreen.is-tooltip-active::before {
        -webkit-transform: translate(-0.5rem, 50%) !important;
        transform: translate(-0.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:focus:not(.is-loading)::after, .is-tooltip-left-widescreen-only:hover:not(.is-loading)::after, .is-tooltip-left-widescreen-only.is-tooltip-active: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, 0.9) !important;
    }

    .is-tooltip-left-widescreen-only:focus::before, .is-tooltip-left-widescreen-only:hover::before, .is-tooltip-left-widescreen-only.is-tooltip-active::before {
        -webkit-transform: translate(-0.5rem, 50%) !important;
        transform: translate(-0.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:focus:not(.is-loading)::after, .is-tooltip-left-fullhd:hover:not(.is-loading)::after, .is-tooltip-left-fullhd.is-tooltip-active: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, 0.9) !important;
    }

    .is-tooltip-left-fullhd:focus::before, .is-tooltip-left-fullhd:hover::before, .is-tooltip-left-fullhd.is-tooltip-active::before {
        -webkit-transform: translate(-0.5rem, 50%) !important;
        transform: translate(-0.5rem, 50%) !important;
    }
}

.pageloader {
    position: fixed;
    padding-top: 2em;
    background: #f80036;
    background: #f80036;
    z-index: 999998;
    transition: transform .35s ease-out,-webkit-transform .35s ease-out;
    will-change: transform;
}

.pageloader.is-white {
    background-color: white;
    background: white;
}

.pageloader.is-white::after {
    border-color: #0a0a0a;
    -webkit-animation: loader-figure-white 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-white 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-white .title {
    color: #0a0a0a;
}

.pageloader.is-black {
    background-color: #0a0a0a;
    background: #0a0a0a;
}

.pageloader.is-black::after {
    border-color: white;
    -webkit-animation: loader-figure-black 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-black 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-black .title {
    color: white;
}

.pageloader.is-light {
    background-color: whitesmoke;
    background: whitesmoke;
}

.pageloader.is-light::after {
    border-color: #363636;
    -webkit-animation: loader-figure-light 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-light 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-light .title {
    color: #363636;
}

.pageloader.is-dark {
    background-color: #363636;
    background: #363636;
}

.pageloader.is-dark::after {
    border-color: whitesmoke;
    -webkit-animation: loader-figure-dark 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-dark 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-dark .title {
    color: whitesmoke;
}

.pageloader.is-primary {
    background-color: #f80036;
    background: #f80036;
}

.pageloader.is-primary::after {
    border-color: #fff;
    -webkit-animation: loader-figure-primary 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-primary 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-primary .title {
    color: #fff;
}

.pageloader.is-link {
    background-color: #f80036;
    background: #f80036;
}

.pageloader.is-link::after {
    border-color: #fff;
    -webkit-animation: loader-figure-link 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-link 1.15s infinite cubic-bezier(0.215, 0.61, 0.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(0.215, 0.61, 0.355, 1);
    animation: loader-figure-info 1.15s infinite cubic-bezier(0.215, 0.61, 0.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(0.215, 0.61, 0.355, 1);
    animation: loader-figure-success 1.15s infinite cubic-bezier(0.215, 0.61, 0.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, 0.7);
    -webkit-animation: loader-figure-warning 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-warning 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-warning .title {
    color: rgba(0, 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(0.215, 0.61, 0.355, 1);
    animation: loader-figure-danger 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-danger .title {
    color: #fff;
}

.pageloader.is-primary-2 {
    background-color: #fb1043;
    background: #fb1043;
}

.pageloader.is-primary-2::after {
    border-color: #fff;
    -webkit-animation: loader-figure-primary-2 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-primary-2 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-primary-2 .title {
    color: #fff;
}

.pageloader.is-primary-3 {
    background-color: #ec0235;
    background: #ec0235;
}

.pageloader.is-primary-3::after {
    border-color: #fff;
    -webkit-animation: loader-figure-primary-3 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-primary-3 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-primary-3 .title {
    color: #fff;
}

.pageloader.is-primary-4 {
    background-color: #f1093c;
    background: #f1093c;
}

.pageloader.is-primary-4::after {
    border-color: #fff;
    -webkit-animation: loader-figure-primary-4 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-primary-4 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-primary-4 .title {
    color: #fff;
}

.pageloader.is-primary-5 {
    background-color: #ee0034;
    background: #ee0034;
}

.pageloader.is-primary-5::after {
    border-color: #fff;
    -webkit-animation: loader-figure-primary-5 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-primary-5 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-primary-5 .title {
    color: #fff;
}

.pageloader.is-primary-6 {
    background-color: #f30337;
    background: #f30337;
}

.pageloader.is-primary-6::after {
    border-color: #fff;
    -webkit-animation: loader-figure-primary-6 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-primary-6 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-primary-6 .title {
    color: #fff;
}

.pageloader.is-primary-7 {
    background-color: #fef6f6;
    background: #fef6f6;
}

.pageloader.is-primary-7::after {
    border-color: rgba(0, 0, 0, 0.7);
    -webkit-animation: loader-figure-primary-7 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-primary-7 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-primary-7 .title {
    color: rgba(0, 0, 0, 0.7);
}

.pageloader.is-primary-light {
    background-color: #fafafa;
    background: #fafafa;
}

.pageloader.is-primary-light::after {
    border-color: rgba(0, 0, 0, 0.7);
    -webkit-animation: loader-figure-primary-light 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-primary-light 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-primary-light .title {
    color: rgba(0, 0, 0, 0.7);
}

.pageloader.is-secondary {
    background-color: #101010;
    background: #101010;
}

.pageloader.is-secondary::after {
    border-color: #fff;
    -webkit-animation: loader-figure-secondary 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-secondary 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-secondary .title {
    color: #fff;
}

.pageloader.is-secondary-2 {
    background-color: #131313;
    background: #131313;
}

.pageloader.is-secondary-2::after {
    border-color: #fff;
    -webkit-animation: loader-figure-secondary-2 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-secondary-2 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-secondary-2 .title {
    color: #fff;
}

.pageloader.is-secondary-3 {
    background-color: #232323;
    background: #232323;
}

.pageloader.is-secondary-3::after {
    border-color: #fff;
    -webkit-animation: loader-figure-secondary-3 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-secondary-3 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-secondary-3 .title {
    color: #fff;
}

.pageloader.is-secondary-4 {
    background-color: #363636;
    background: #363636;
}

.pageloader.is-secondary-4::after {
    border-color: #fff;
    -webkit-animation: loader-figure-secondary-4 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-secondary-4 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-secondary-4 .title {
    color: #fff;
}

.pageloader.is-secondary-5 {
    background-color: #5c5c5c;
    background: #5c5c5c;
}

.pageloader.is-secondary-5::after {
    border-color: #fff;
    -webkit-animation: loader-figure-secondary-5 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-secondary-5 1.15s infinite cubic-bezier(0.215, 0.61, 0.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(0.215, 0.61, 0.355, 1);
    animation: loader-figure-tertiary 1.15s infinite cubic-bezier(0.215, 0.61, 0.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, 0.7);
    -webkit-animation: loader-figure-tertiary-2 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-tertiary-2 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-tertiary-2 .title {
    color: rgba(0, 0, 0, 0.7);
}

.pageloader.is-tertiary-3 {
    background-color: #D7D6D3;
    background: #d7d6d3;
}

.pageloader.is-tertiary-3::after {
    border-color: rgba(0, 0, 0, 0.7);
    -webkit-animation: loader-figure-tertiary-3 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-tertiary-3 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-tertiary-3 .title {
    color: rgba(0, 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(0.215, 0.61, 0.355, 1);
    animation: loader-figure-tertiary-4 1.15s infinite cubic-bezier(0.215, 0.61, 0.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, 0.7);
    -webkit-animation: loader-figure-tertiary-5 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-tertiary-5 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-tertiary-5 .title {
    color: rgba(0, 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(0.215, 0.61, 0.355, 1);
    animation: loader-figure-tertiary-6 1.15s infinite cubic-bezier(0.215, 0.61, 0.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(0.215, 0.61, 0.355, 1);
    animation: loader-figure-tertiary-7 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-tertiary-7 .title {
    color: #fff;
}

.pageloader.is-tertiary-8 {
    background-color: #999999;
    background: #999999;
}

.pageloader.is-tertiary-8::after {
    border-color: #fff;
    -webkit-animation: loader-figure-tertiary-8 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-tertiary-8 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-tertiary-8 .title {
    color: #fff;
}

.pageloader.is-tertiary-9 {
    background-color: #f5f5f5;
    background: whitesmoke;
}

.pageloader.is-tertiary-9::after {
    border-color: rgba(0, 0, 0, 0.7);
    -webkit-animation: loader-figure-tertiary-9 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure-tertiary-9 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader.is-tertiary-9 .title {
    color: rgba(0, 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 white;
    -webkit-animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pageloader .title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: 2em 0 0 0;
    font-size: 0.875em;
    letter-spacing: 0.1em;
    line-height: 1.5em;
    color: white;
    white-space: nowrap;
}

@-webkit-keyframes loader-figure {
    0% {
        height: 0;
        width: 0;
        background-color: white;
    }

    29% {
        background-color: white;
    }

    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: white;
    }

    29% {
        background-color: white;
    }

    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: white;
    }

    29% {
        background-color: white;
    }

    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: white;
    }

    29% {
        background-color: white;
    }

    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: whitesmoke;
    }

    29% {
        background-color: whitesmoke;
    }

    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: whitesmoke;
    }

    29% {
        background-color: whitesmoke;
    }

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

    29% {
        background-color: rgba(0, 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, 0.7);
    }

    29% {
        background-color: rgba(0, 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, 0.7);
    }

    29% {
        background-color: rgba(0, 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, 0.7);
    }

    29% {
        background-color: rgba(0, 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, 0.7);
    }

    29% {
        background-color: rgba(0, 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, 0.7);
    }

    29% {
        background-color: rgba(0, 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, 0.7);
    }

    29% {
        background-color: rgba(0, 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, 0.7);
    }

    29% {
        background-color: rgba(0, 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, 0.7);
    }

    29% {
        background-color: rgba(0, 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, 0.7);
    }

    29% {
        background-color: rgba(0, 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, 0.7);
    }

    29% {
        background-color: rgba(0, 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, 0.7);
    }

    29% {
        background-color: rgba(0, 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, 0.7);
    }

    29% {
        background-color: rgba(0, 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, 0.7);
    }

    29% {
        background-color: rgba(0, 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: white;
    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: 0.75rem;
    color: #b5b5b5;
    text-transform: uppercase;
}

.calendar .calendar-header .calendar-selection-start,
.calendar .calendar-header .calendar-selection-end {
    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-start .calendar-selection-date,
.calendar .calendar-header .calendar-selection-end .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-start .calendar-selection-day,
.calendar .calendar-header .calendar-selection-end .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-start .calendar-selection-day,
  .calendar .calendar-header .calendar-selection-end .calendar-selection-day {
        font-size: 2rem;
    }
}

.calendar .calendar-header .calendar-selection-start .calendar-selection-details,
.calendar .calendar-header .calendar-selection-end .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-start .calendar-selection-month,
.calendar .calendar-header .calendar-selection-end .calendar-selection-month {
    color: #4a4a4a;
    text-transform: capitalize;
}

.calendar .calendar-header .calendar-selection-start .calendar-selection-weekday,
.calendar .calendar-header .calendar-selection-end .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: "&gt;";
    font: 2rem 'Consolas';
    color: whitesmoke;
    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: #f80036;
    color: white;
    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: 0.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-previous, .calendar .calendar-nav .calendar-nav-next {
    -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: white;
}

.calendar .calendar-nav .calendar-nav-previous:hover, .calendar .calendar-nav .calendar-nav-next:hover {
    background-color: transparent;
}

.calendar .calendar-nav .calendar-nav-previous:hover svg, .calendar .calendar-nav .calendar-nav-next:hover svg {
    stroke-width: 1em;
}

.calendar .calendar-nav .calendar-nav-previous svg, .calendar .calendar-nav .calendar-nav-next 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: 0.3rem 0;
    background: transparent;
    color: #fff;
    font-size: 0.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: transparent !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: 0.3rem 0;
    background: whitesmoke;
}

.calendar .calendar-body .calendar-dates .calendar-days .calendar-date .date-item {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: .1rem solid transparent;
    border-radius: 100%;
    color: #4a4a4a;
    cursor: pointer;
    height: 2.2rem;
    line-height: 1.4rem;
    outline: none;
    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: transparent;
    border: 0.1rem dotted #f80036;
    color: #f80036;
}

.calendar .calendar-body .calendar-dates .calendar-days .calendar-date .date-item:focus {
    background: white;
    border-color: white;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
}

.calendar .calendar-body .calendar-dates .calendar-days .calendar-date .date-item.is-active {
    background: #f80036;
    border-color: #f80036;
    border-radius: 25091983px;
    color: #fff;
}

.calendar .calendar-body .calendar-dates .calendar-days .calendar-date .date-item:hover {
    background: white;
    border: 0.1rem solid #f80036;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
}

.calendar .calendar-body .calendar-dates .calendar-days .calendar-date.is-disabled .date-item,
.calendar .calendar-body .calendar-dates .calendar-days .calendar-date.is-disabled .calendar-event, .calendar .calendar-body .calendar-dates .calendar-days .calendar-date[disabled] .date-item,
.calendar .calendar-body .calendar-dates .calendar-days .calendar-date[disabled] .calendar-event {
    cursor: default;
    opacity: .25;
    pointer-events: none;
}

.calendar .calendar-body .calendar-dates .calendar-days .calendar-date.is-current-month {
    background: transparent;
}

.calendar .calendar-body .calendar-dates .calendar-days .calendar-date.calendar-range {
    position: relative;
    background: #f80036;
}

.calendar .calendar-body .calendar-dates .calendar-days .calendar-date.calendar-range::before {
    background: #f80036;
    border: 0.1rem solid #f80036;
    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-start, .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.calendar-range.calendar-range-end {
    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: #f80036;
    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: #f80036;
    border-color: #f80036;
    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: white;
    border: 0.1rem solid #f80036;
    color: rgba(0, 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 &gt; * {
    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: white;
    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: white;
    color: #0a0a0a;
}

.calendar.is-large .calendar-event.is-black {
    background-color: #0a0a0a;
    color: white;
}

.calendar.is-large .calendar-event.is-light {
    background-color: whitesmoke;
    color: #363636;
}

.calendar.is-large .calendar-event.is-dark {
    background-color: #363636;
    color: whitesmoke;
}

.calendar.is-large .calendar-event.is-primary {
    background-color: #f80036;
    color: #fff;
}

.calendar.is-large .calendar-event.is-link {
    background-color: #f80036;
    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, 0.7);
}

.calendar.is-large .calendar-event.is-danger {
    background-color: #ff3860;
    color: #fff;
}

.calendar.is-large .calendar-event.is-primary-2 {
    background-color: #fb1043;
    color: #fff;
}

.calendar.is-large .calendar-event.is-primary-3 {
    background-color: #ec0235;
    color: #fff;
}

.calendar.is-large .calendar-event.is-primary-4 {
    background-color: #f1093c;
    color: #fff;
}

.calendar.is-large .calendar-event.is-primary-5 {
    background-color: #ee0034;
    color: #fff;
}

.calendar.is-large .calendar-event.is-primary-6 {
    background-color: #f30337;
    color: #fff;
}

.calendar.is-large .calendar-event.is-primary-7 {
    background-color: #fef6f6;
    color: rgba(0, 0, 0, 0.7);
}

.calendar.is-large .calendar-event.is-primary-light {
    background-color: #fafafa;
    color: rgba(0, 0, 0, 0.7);
}

.calendar.is-large .calendar-event.is-secondary {
    background-color: #101010;
    color: #fff;
}

.calendar.is-large .calendar-event.is-secondary-2 {
    background-color: #131313;
    color: #fff;
}

.calendar.is-large .calendar-event.is-secondary-3 {
    background-color: #232323;
    color: #fff;
}

.calendar.is-large .calendar-event.is-secondary-4 {
    background-color: #363636;
    color: #fff;
}

.calendar.is-large .calendar-event.is-secondary-5 {
    background-color: #5c5c5c;
    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, 0.7);
}

.calendar.is-large .calendar-event.is-tertiary-3 {
    background-color: #D7D6D3;
    color: rgba(0, 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, 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: #999999;
    color: #fff;
}

.calendar.is-large .calendar-event.is-tertiary-9 {
    background-color: #f5f5f5;
    color: rgba(0, 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: white;
    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: 0.75rem;
    color: #b5b5b5;
    text-transform: uppercase;
}

.datepicker .calendar .calendar-header .calendar-selection-start,
.datepicker .calendar .calendar-header .calendar-selection-end {
    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-start .calendar-selection-date,
.datepicker .calendar .calendar-header .calendar-selection-end .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-start .calendar-selection-day,
.datepicker .calendar .calendar-header .calendar-selection-end .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-start .calendar-selection-day,
  .datepicker .calendar .calendar-header .calendar-selection-end .calendar-selection-day {
        font-size: 2rem;
    }
}

.datepicker .calendar .calendar-header .calendar-selection-start .calendar-selection-details,
.datepicker .calendar .calendar-header .calendar-selection-end .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-start .calendar-selection-month,
.datepicker .calendar .calendar-header .calendar-selection-end .calendar-selection-month {
    color: #4a4a4a;
    text-transform: capitalize;
}

.datepicker .calendar .calendar-header .calendar-selection-start .calendar-selection-weekday,
.datepicker .calendar .calendar-header .calendar-selection-end .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: "&gt;";
    font: 2rem 'Consolas';
    color: whitesmoke;
    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: #f80036;
    color: white;
    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: 0.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-previous, .datepicker .calendar .calendar-nav .calendar-nav-next {
    -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: white;
}

.datepicker .calendar .calendar-nav .calendar-nav-previous:hover, .datepicker .calendar .calendar-nav .calendar-nav-next:hover {
    background-color: transparent;
}

.datepicker .calendar .calendar-nav .calendar-nav-previous:hover svg, .datepicker .calendar .calendar-nav .calendar-nav-next:hover svg {
    stroke-width: 1em;
}

.datepicker .calendar .calendar-nav .calendar-nav-previous svg, .datepicker .calendar .calendar-nav .calendar-nav-next 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: 0.3rem 0;
    background: transparent;
    color: #fff;
    font-size: 0.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: transparent !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: 0.3rem 0;
    background: whitesmoke;
}

.datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date .date-item {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: .1rem solid transparent;
    border-radius: 100%;
    color: #4a4a4a;
    cursor: pointer;
    height: 2.2rem;
    line-height: 1.4rem;
    outline: none;
    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: transparent;
    border: 0.1rem dotted #f80036;
    color: #f80036;
}

.datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date .date-item:focus {
    background: white;
    border-color: white;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
}

.datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date .date-item.is-active {
    background: #f80036;
    border-color: #f80036;
    border-radius: 25091983px;
    color: #fff;
}

.datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date .date-item:hover {
    background: white;
    border: 0.1rem solid #f80036;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
}

.datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.is-disabled .date-item,
.datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.is-disabled .calendar-event, .datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date[disabled] .date-item,
.datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date[disabled] .calendar-event {
    cursor: default;
    opacity: .25;
    pointer-events: none;
}

.datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.is-current-month {
    background: transparent;
}

.datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.calendar-range {
    position: relative;
    background: #f80036;
}

.datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.calendar-range::before {
    background: #f80036;
    border: 0.1rem solid #f80036;
    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-start, .datepicker .calendar .calendar-body .calendar-dates .calendar-days .calendar-date.calendar-range.calendar-range-end {
    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: #f80036;
    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: #f80036;
    border-color: #f80036;
    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: white;
    border: 0.1rem solid #f80036;
    color: rgba(0, 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 &gt; * {
    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: white;
    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: white;
    color: #0a0a0a;
}

.datepicker .calendar.is-large .calendar-event.is-black {
    background-color: #0a0a0a;
    color: white;
}

.datepicker .calendar.is-large .calendar-event.is-light {
    background-color: whitesmoke;
    color: #363636;
}

.datepicker .calendar.is-large .calendar-event.is-dark {
    background-color: #363636;
    color: whitesmoke;
}

.datepicker .calendar.is-large .calendar-event.is-primary {
    background-color: #f80036;
    color: #fff;
}

.datepicker .calendar.is-large .calendar-event.is-link {
    background-color: #f80036;
    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, 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: #fb1043;
    color: #fff;
}

.datepicker .calendar.is-large .calendar-event.is-primary-3 {
    background-color: #ec0235;
    color: #fff;
}

.datepicker .calendar.is-large .calendar-event.is-primary-4 {
    background-color: #f1093c;
    color: #fff;
}

.datepicker .calendar.is-large .calendar-event.is-primary-5 {
    background-color: #ee0034;
    color: #fff;
}

.datepicker .calendar.is-large .calendar-event.is-primary-6 {
    background-color: #f30337;
    color: #fff;
}

.datepicker .calendar.is-large .calendar-event.is-primary-7 {
    background-color: #fef6f6;
    color: rgba(0, 0, 0, 0.7);
}

.datepicker .calendar.is-large .calendar-event.is-primary-light {
    background-color: #fafafa;
    color: rgba(0, 0, 0, 0.7);
}

.datepicker .calendar.is-large .calendar-event.is-secondary {
    background-color: #101010;
    color: #fff;
}

.datepicker .calendar.is-large .calendar-event.is-secondary-2 {
    background-color: #131313;
    color: #fff;
}

.datepicker .calendar.is-large .calendar-event.is-secondary-3 {
    background-color: #232323;
    color: #fff;
}

.datepicker .calendar.is-large .calendar-event.is-secondary-4 {
    background-color: #363636;
    color: #fff;
}

.datepicker .calendar.is-large .calendar-event.is-secondary-5 {
    background-color: #5c5c5c;
    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, 0.7);
}

.datepicker .calendar.is-large .calendar-event.is-tertiary-3 {
    background-color: #D7D6D3;
    color: rgba(0, 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, 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: #999999;
    color: #fff;
}

.datepicker .calendar.is-large .calendar-event.is-tertiary-9 {
    background-color: #f5f5f5;
    color: rgba(0, 0, 0, 0.7);
}

.is-checkradio[type="radio"],
.is-checkradio[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;
}

.is-checkradio[type="radio"] + label,
.is-checkradio[type="checkbox"] + label {
    position: relative;
    display: initial;
    cursor: pointer;
    vertical-align: middle;
    margin: .5em;
    padding: .2rem .5rem .2rem 0;
    border-radius: 0;
}

.is-checkradio[type="radio"] + label:hover::before, .is-checkradio[type="radio"] + label:hover:before,
.is-checkradio[type="checkbox"] + label:hover::before,
.is-checkradio[type="checkbox"] + label:hover:before {
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: hover-color;
    animation-name: hover-color;
}

.is-checkradio[type="radio"] + label::before, .is-checkradio[type="radio"] + label:before,
.is-checkradio[type="checkbox"] + label::before,
.is-checkradio[type="checkbox"] + label:before {
    position: absolute;
    left: 0;
    top: 0rem;
    content: '';
    border: 0.1rem solid #dbdbdb;
}

.is-checkradio[type="radio"] + label::after, .is-checkradio[type="radio"] + label:after,
.is-checkradio[type="checkbox"] + label::after,
.is-checkradio[type="checkbox"] + label:after {
    position: absolute;
    display: none;
    content: '';
    top: 0rem;
}

.is-checkradio[type="radio"].is-rtl + label,
.is-checkradio[type="checkbox"].is-rtl + label {
    margin-right: 0rem;
    margin-left: 0.5rem;
}

.is-checkradio[type="radio"].is-rtl + label::before, .is-checkradio[type="radio"].is-rtl + label:before,
.is-checkradio[type="checkbox"].is-rtl + label::before,
.is-checkradio[type="checkbox"].is-rtl + label:before {
    left: auto;
    right: 0;
}

.is-checkradio[type="radio"]:focus + label::before, .is-checkradio[type="radio"]:focus + label:before,
.is-checkradio[type="checkbox"]:focus + label::before,
.is-checkradio[type="checkbox"]:focus + label:before {
    outline: 1px dotted #b5b5b5;
}

.is-checkradio[type="radio"]:hover:not([disabled]) + label::before, .is-checkradio[type="radio"]:hover:not([disabled]) + label:before,
.is-checkradio[type="checkbox"]:hover:not([disabled]) + label::before,
.is-checkradio[type="checkbox"]:hover:not([disabled]) + label:before {
    border-color: #f80036 !important;
}

.is-checkradio[type="radio"]:checked + label::before, .is-checkradio[type="radio"]:checked + label:before,
.is-checkradio[type="checkbox"]:checked + label::before,
.is-checkradio[type="checkbox"]:checked + label:before {
    border: 0.1rem solid #dbdbdb;
}

.is-checkradio[type="radio"]:checked[disabled],
.is-checkradio[type="checkbox"]:checked[disabled] {
    cursor: not-allowed;
}

.is-checkradio[type="radio"]:checked[disabled] + label,
.is-checkradio[type="checkbox"]:checked[disabled] + label {
    opacity: 0.5;
}

.is-checkradio[type="radio"]:checked + label::before, .is-checkradio[type="radio"]:checked + label:before,
.is-checkradio[type="checkbox"]:checked + label::before,
.is-checkradio[type="checkbox"]:checked + label:before {
    -webkit-animation-name: none;
    animation-name: none;
}

.is-checkradio[type="radio"]:checked + label::after, .is-checkradio[type="radio"]:checked + label:after,
.is-checkradio[type="checkbox"]:checked + label::after,
.is-checkradio[type="checkbox"]:checked + label:after {
    display: inline-block;
}

.is-checkradio[type="radio"][disabled],
.is-checkradio[type="checkbox"][disabled] {
    cursor: not-allowed;
}

.is-checkradio[type="radio"][disabled] + label,
.is-checkradio[type="checkbox"][disabled] + label {
    opacity: 0.5;
    cursor: not-allowed;
}

.is-checkradio[type="radio"][disabled] + label:hover, .is-checkradio[type="radio"][disabled] + label:before, .is-checkradio[type="radio"][disabled] + label::before, .is-checkradio[type="radio"][disabled] + label::after, .is-checkradio[type="radio"][disabled] + label:after,
.is-checkradio[type="checkbox"][disabled] + label:hover,
.is-checkradio[type="checkbox"][disabled] + label:before,
.is-checkradio[type="checkbox"][disabled] + label::before,
.is-checkradio[type="checkbox"][disabled] + label::after,
.is-checkradio[type="checkbox"][disabled] + label:after {
    cursor: not-allowed;
}

.is-checkradio[type="radio"][disabled]:hover,
.is-checkradio[type="checkbox"][disabled]:hover {
    cursor: not-allowed;
}

.is-checkradio[type="radio"][disabled]:hover::before, .is-checkradio[type="radio"][disabled]:hover:before,
.is-checkradio[type="checkbox"][disabled]:hover::before,
.is-checkradio[type="checkbox"][disabled]:hover:before {
    -webkit-animation-name: none;
    animation-name: none;
}

.is-checkradio[type="radio"][disabled]::before, .is-checkradio[type="radio"][disabled]:before,
.is-checkradio[type="checkbox"][disabled]::before,
.is-checkradio[type="checkbox"][disabled]:before {
    cursor: not-allowed;
}

.is-checkradio[type="radio"][disabled]::after, .is-checkradio[type="radio"][disabled]:after,
.is-checkradio[type="checkbox"][disabled]::after,
.is-checkradio[type="checkbox"][disabled]:after {
    cursor: not-allowed;
}

.is-checkradio[type="radio"].has-no-border + label::before, .is-checkradio[type="radio"].has-no-border + label:before,
.is-checkradio[type="checkbox"].has-no-border + label::before,
.is-checkradio[type="checkbox"].has-no-border + label:before {
    border: none !important;
}

.is-checkradio[type="radio"].is-block,
.is-checkradio[type="checkbox"].is-block {
    display: none !important;
}

.is-checkradio[type="radio"].is-block + label,
.is-checkradio[type="checkbox"].is-block + label {
    width: 100% !important;
    background: whitesmoke;
    color: rgba(0, 0, 0, 0.7);
    padding-right: .75em;
}

.is-checkradio[type="radio"].is-block + label::before, .is-checkradio[type="radio"].is-block + label:before,
.is-checkradio[type="checkbox"].is-block + label::before,
.is-checkradio[type="checkbox"].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: #f80036;
    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: 0.375rem;
    height: 0.6rem;
    top: 0.405rem;
    left: 0.6rem;
}

.is-checkradio[type="checkbox"].is-block + label::after, .is-checkradio[type="checkbox"].is-block + label:after {
    top: 0.585rem;
    left: 0.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: 0.6rem;
}

.is-checkradio[type="checkbox"].is-small + label {
    font-size: 0.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: 0.28125rem;
    height: 0.45rem;
    top: 0.30375rem;
    left: 0.45rem;
}

.is-checkradio[type="checkbox"].is-small.is-block + label::after, .is-checkradio[type="checkbox"].is-small.is-block + label:after {
    top: 0.43875rem;
    left: 0.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: 0.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: 0.46875rem;
    height: 0.75rem;
    top: 0.50625rem;
    left: 0.75rem;
}

.is-checkradio[type="checkbox"].is-medium.is-block + label::after, .is-checkradio[type="checkbox"].is-medium.is-block + label:after {
    top: 0.73125rem;
    left: 0.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: 0.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: 0.5625rem;
    height: 0.9rem;
    top: 0.6075rem;
    left: 0.9rem;
}

.is-checkradio[type="checkbox"].is-large.is-block + label::after, .is-checkradio[type="checkbox"].is-large.is-block + label:after {
    top: 0.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: 0.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: white !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: white !important;
}

.is-checkradio[type="checkbox"].is-white:checked + label::after, .is-checkradio[type="checkbox"].is-white:checked + label:after {
    border-color: white !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: white !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: white !important;
}

.is-checkradio[type="checkbox"].is-white:checked.is-block + label {
    color: #0a0a0a;
    border-color: white !important;
    background: white;
}

.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: white !important;
    background-color: #0a0a0a !important;
}

.is-checkradio[type="checkbox"].is-black:checked.is-block + label {
    color: white;
    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: white !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: whitesmoke !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: whitesmoke !important;
}

.is-checkradio[type="checkbox"].is-light:checked + label::after, .is-checkradio[type="checkbox"].is-light:checked + label:after {
    border-color: whitesmoke !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: whitesmoke !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: whitesmoke !important;
}

.is-checkradio[type="checkbox"].is-light:checked.is-block + label {
    color: #363636;
    border-color: whitesmoke !important;
    background: whitesmoke;
}

.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: whitesmoke !important;
    background-color: #363636 !important;
}

.is-checkradio[type="checkbox"].is-dark:checked.is-block + label {
    color: whitesmoke;
    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: whitesmoke !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: #f80036 !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: #f80036 !important;
}

.is-checkradio[type="checkbox"].is-primary:checked + label::after, .is-checkradio[type="checkbox"].is-primary:checked + label:after {
    border-color: #f80036 !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: #f80036 !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: #f80036 !important;
}

.is-checkradio[type="checkbox"].is-primary:checked.is-block + label {
    color: #fff;
    border-color: #f80036 !important;
    background: #f80036;
}

.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: #f80036 !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: #f80036 !important;
}

.is-checkradio[type="checkbox"].is-link:checked + label::after, .is-checkradio[type="checkbox"].is-link:checked + label:after {
    border-color: #f80036 !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: #f80036 !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: #f80036 !important;
}

.is-checkradio[type="checkbox"].is-link:checked.is-block + label {
    color: #fff;
    border-color: #f80036 !important;
    background: #f80036;
}

.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, 0.7) !important;
    background-color: #ffdd57 !important;
}

.is-checkradio[type="checkbox"].is-warning:checked.is-block + label {
    color: rgba(0, 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, 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: #fb1043 !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: #fb1043 !important;
}

.is-checkradio[type="checkbox"].is-primary-2:checked + label::after, .is-checkradio[type="checkbox"].is-primary-2:checked + label:after {
    border-color: #fb1043 !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: #fb1043 !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: #fb1043 !important;
}

.is-checkradio[type="checkbox"].is-primary-2:checked.is-block + label {
    color: #fff;
    border-color: #fb1043 !important;
    background: #fb1043;
}

.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: #ec0235 !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: #ec0235 !important;
}

.is-checkradio[type="checkbox"].is-primary-3:checked + label::after, .is-checkradio[type="checkbox"].is-primary-3:checked + label:after {
    border-color: #ec0235 !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: #ec0235 !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: #ec0235 !important;
}

.is-checkradio[type="checkbox"].is-primary-3:checked.is-block + label {
    color: #fff;
    border-color: #ec0235 !important;
    background: #ec0235;
}

.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: #f1093c !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: #f1093c !important;
}

.is-checkradio[type="checkbox"].is-primary-4:checked + label::after, .is-checkradio[type="checkbox"].is-primary-4:checked + label:after {
    border-color: #f1093c !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: #f1093c !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: #f1093c !important;
}

.is-checkradio[type="checkbox"].is-primary-4:checked.is-block + label {
    color: #fff;
    border-color: #f1093c !important;
    background: #f1093c;
}

.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: #ee0034 !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: #ee0034 !important;
}

.is-checkradio[type="checkbox"].is-primary-5:checked + label::after, .is-checkradio[type="checkbox"].is-primary-5:checked + label:after {
    border-color: #ee0034 !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: #ee0034 !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: #ee0034 !important;
}

.is-checkradio[type="checkbox"].is-primary-5:checked.is-block + label {
    color: #fff;
    border-color: #ee0034 !important;
    background: #ee0034;
}

.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: #f30337 !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: #f30337 !important;
}

.is-checkradio[type="checkbox"].is-primary-6:checked + label::after, .is-checkradio[type="checkbox"].is-primary-6:checked + label:after {
    border-color: #f30337 !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: #f30337 !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: #f30337 !important;
}

.is-checkradio[type="checkbox"].is-primary-6:checked.is-block + label {
    color: #fff;
    border-color: #f30337 !important;
    background: #f30337;
}

.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: #fef6f6 !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: #fef6f6 !important;
}

.is-checkradio[type="checkbox"].is-primary-7:checked + label::after, .is-checkradio[type="checkbox"].is-primary-7:checked + label:after {
    border-color: #fef6f6 !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: #fef6f6 !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, 0.7) !important;
    background-color: #fef6f6 !important;
}

.is-checkradio[type="checkbox"].is-primary-7:checked.is-block + label {
    color: rgba(0, 0, 0, 0.7);
    border-color: #fef6f6 !important;
    background: #fef6f6;
}

.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, 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: #fafafa !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: #fafafa !important;
}

.is-checkradio[type="checkbox"].is-primary-light:checked + label::after, .is-checkradio[type="checkbox"].is-primary-light:checked + label:after {
    border-color: #fafafa !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: #fafafa !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, 0.7) !important;
    background-color: #fafafa !important;
}

.is-checkradio[type="checkbox"].is-primary-light:checked.is-block + label {
    color: rgba(0, 0, 0, 0.7);
    border-color: #fafafa !important;
    background: #fafafa;
}

.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, 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: #101010 !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: #101010 !important;
}

.is-checkradio[type="checkbox"].is-secondary:checked + label::after, .is-checkradio[type="checkbox"].is-secondary:checked + label:after {
    border-color: #101010 !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: #101010 !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: #101010 !important;
}

.is-checkradio[type="checkbox"].is-secondary:checked.is-block + label {
    color: #fff;
    border-color: #101010 !important;
    background: #101010;
}

.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: #131313 !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: #131313 !important;
}

.is-checkradio[type="checkbox"].is-secondary-2:checked + label::after, .is-checkradio[type="checkbox"].is-secondary-2:checked + label:after {
    border-color: #131313 !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: #131313 !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: #131313 !important;
}

.is-checkradio[type="checkbox"].is-secondary-2:checked.is-block + label {
    color: #fff;
    border-color: #131313 !important;
    background: #131313;
}

.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: #232323 !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: #232323 !important;
}

.is-checkradio[type="checkbox"].is-secondary-3:checked + label::after, .is-checkradio[type="checkbox"].is-secondary-3:checked + label:after {
    border-color: #232323 !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: #232323 !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: #232323 !important;
}

.is-checkradio[type="checkbox"].is-secondary-3:checked.is-block + label {
    color: #fff;
    border-color: #232323 !important;
    background: #232323;
}

.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: #363636 !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: #363636 !important;
}

.is-checkradio[type="checkbox"].is-secondary-4:checked + label::after, .is-checkradio[type="checkbox"].is-secondary-4:checked + label:after {
    border-color: #363636 !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: #363636 !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: #363636 !important;
}

.is-checkradio[type="checkbox"].is-secondary-4:checked.is-block + label {
    color: #fff;
    border-color: #363636 !important;
    background: #363636;
}

.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: #5c5c5c !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: #5c5c5c !important;
}

.is-checkradio[type="checkbox"].is-secondary-5:checked + label::after, .is-checkradio[type="checkbox"].is-secondary-5:checked + label:after {
    border-color: #5c5c5c !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: #5c5c5c !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: #5c5c5c !important;
}

.is-checkradio[type="checkbox"].is-secondary-5:checked.is-block + label {
    color: #fff;
    border-color: #5c5c5c !important;
    background: #5c5c5c;
}

.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, 0.7) !important;
    background-color: #D8D8D8 !important;
}

.is-checkradio[type="checkbox"].is-tertiary-2:checked.is-block + label {
    color: rgba(0, 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, 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, 0.7) !important;
    background-color: #D7D6D3 !important;
}

.is-checkradio[type="checkbox"].is-tertiary-3:checked.is-block + label {
    color: rgba(0, 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, 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, 0.7) !important;
    background-color: #EAEAEA !important;
}

.is-checkradio[type="checkbox"].is-tertiary-5:checked.is-block + label {
    color: rgba(0, 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, 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: #999999 !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: #999999 !important;
}

.is-checkradio[type="checkbox"].is-tertiary-8:checked + label::after, .is-checkradio[type="checkbox"].is-tertiary-8:checked + label:after {
    border-color: #999999 !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: #999999 !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: #999999 !important;
}

.is-checkradio[type="checkbox"].is-tertiary-8:checked.is-block + label {
    color: #fff;
    border-color: #999999 !important;
    background: #999999;
}

.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, 0.7) !important;
    background-color: #f5f5f5 !important;
}

.is-checkradio[type="checkbox"].is-tertiary-9:checked.is-block + label {
    color: rgba(0, 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, 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: white;
}

.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: whitesmoke;
}

.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: #f80036;
}

.is-checkradio[type="checkbox"]:indeterminate.is-link + label::after, .is-checkradio[type="checkbox"]:indeterminate.is-link + label:after {
    border-color: #f80036;
}

.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: #fb1043;
}

.is-checkradio[type="checkbox"]:indeterminate.is-primary-3 + label::after, .is-checkradio[type="checkbox"]:indeterminate.is-primary-3 + label:after {
    border-color: #ec0235;
}

.is-checkradio[type="checkbox"]:indeterminate.is-primary-4 + label::after, .is-checkradio[type="checkbox"]:indeterminate.is-primary-4 + label:after {
    border-color: #f1093c;
}

.is-checkradio[type="checkbox"]:indeterminate.is-primary-5 + label::after, .is-checkradio[type="checkbox"]:indeterminate.is-primary-5 + label:after {
    border-color: #ee0034;
}

.is-checkradio[type="checkbox"]:indeterminate.is-primary-6 + label::after, .is-checkradio[type="checkbox"]:indeterminate.is-primary-6 + label:after {
    border-color: #f30337;
}

.is-checkradio[type="checkbox"]:indeterminate.is-primary-7 + label::after, .is-checkradio[type="checkbox"]:indeterminate.is-primary-7 + label:after {
    border-color: #fef6f6;
}

.is-checkradio[type="checkbox"]:indeterminate.is-primary-light + label::after, .is-checkradio[type="checkbox"]:indeterminate.is-primary-light + label:after {
    border-color: #fafafa;
}

.is-checkradio[type="checkbox"]:indeterminate.is-secondary + label::after, .is-checkradio[type="checkbox"]:indeterminate.is-secondary + label:after {
    border-color: #101010;
}

.is-checkradio[type="checkbox"]:indeterminate.is-secondary-2 + label::after, .is-checkradio[type="checkbox"]:indeterminate.is-secondary-2 + label:after {
    border-color: #131313;
}

.is-checkradio[type="checkbox"]:indeterminate.is-secondary-3 + label::after, .is-checkradio[type="checkbox"]:indeterminate.is-secondary-3 + label:after {
    border-color: #232323;
}

.is-checkradio[type="checkbox"]:indeterminate.is-secondary-4 + label::after, .is-checkradio[type="checkbox"]:indeterminate.is-secondary-4 + label:after {
    border-color: #363636;
}

.is-checkradio[type="checkbox"]:indeterminate.is-secondary-5 + label::after, .is-checkradio[type="checkbox"]:indeterminate.is-secondary-5 + label:after {
    border-color: #5c5c5c;
}

.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: #999999;
}

.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: #f80036;
    left: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.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::before, .is-checkradio[type="radio"] + label:before, .is-checkradio[type="radio"] + label::after, .is-checkradio[type="radio"] + label:after {
    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: 0.75rem;
    line-height: 1.125rem;
    padding-left: 1.5rem;
}

.is-checkradio[type="radio"].is-small + label::before, .is-checkradio[type="radio"].is-small + label:before, .is-checkradio[type="radio"].is-small + label::after, .is-checkradio[type="radio"].is-small + label:after {
    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::before, .is-checkradio[type="radio"].is-medium + label:before, .is-checkradio[type="radio"].is-medium + label::after, .is-checkradio[type="radio"].is-medium + label:after {
    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::before, .is-checkradio[type="radio"].is-large + label:before, .is-checkradio[type="radio"].is-large + label::after, .is-checkradio[type="radio"].is-large + label:after {
    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: white !important;
    background-color: white !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: white !important;
}

.is-checkradio[type="radio"].is-white:checked + label::after, .is-checkradio[type="radio"].is-white:checked + label:after {
    border-color: white !important;
    background-color: white !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: white !important;
    background-color: white !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: white !important;
    background-color: white !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: whitesmoke !important;
    background-color: whitesmoke !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: whitesmoke !important;
}

.is-checkradio[type="radio"].is-light:checked + label::after, .is-checkradio[type="radio"].is-light:checked + label:after {
    border-color: whitesmoke !important;
    background-color: whitesmoke !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: whitesmoke !important;
    background-color: whitesmoke !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: whitesmoke !important;
    background-color: whitesmoke !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: #f80036 !important;
    background-color: #f80036 !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: #f80036 !important;
}

.is-checkradio[type="radio"].is-primary:checked + label::after, .is-checkradio[type="radio"].is-primary:checked + label:after {
    border-color: #f80036 !important;
    background-color: #f80036 !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: #f80036 !important;
    background-color: #f80036 !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: #f80036 !important;
    background-color: #f80036 !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: #f80036 !important;
}

.is-checkradio[type="radio"].is-link:checked + label::after, .is-checkradio[type="radio"].is-link:checked + label:after {
    border-color: #f80036 !important;
    background-color: #f80036 !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: #f80036 !important;
    background-color: #f80036 !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, 0.7) !important;
    background-color: rgba(0, 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: #fb1043 !important;
    background-color: #fb1043 !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: #fb1043 !important;
}

.is-checkradio[type="radio"].is-primary-2:checked + label::after, .is-checkradio[type="radio"].is-primary-2:checked + label:after {
    border-color: #fb1043 !important;
    background-color: #fb1043 !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: #fb1043 !important;
    background-color: #fb1043 !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: #ec0235 !important;
    background-color: #ec0235 !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: #ec0235 !important;
}

.is-checkradio[type="radio"].is-primary-3:checked + label::after, .is-checkradio[type="radio"].is-primary-3:checked + label:after {
    border-color: #ec0235 !important;
    background-color: #ec0235 !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: #ec0235 !important;
    background-color: #ec0235 !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: #f1093c !important;
    background-color: #f1093c !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: #f1093c !important;
}

.is-checkradio[type="radio"].is-primary-4:checked + label::after, .is-checkradio[type="radio"].is-primary-4:checked + label:after {
    border-color: #f1093c !important;
    background-color: #f1093c !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: #f1093c !important;
    background-color: #f1093c !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: #ee0034 !important;
    background-color: #ee0034 !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: #ee0034 !important;
}

.is-checkradio[type="radio"].is-primary-5:checked + label::after, .is-checkradio[type="radio"].is-primary-5:checked + label:after {
    border-color: #ee0034 !important;
    background-color: #ee0034 !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: #ee0034 !important;
    background-color: #ee0034 !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: #f30337 !important;
    background-color: #f30337 !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: #f30337 !important;
}

.is-checkradio[type="radio"].is-primary-6:checked + label::after, .is-checkradio[type="radio"].is-primary-6:checked + label:after {
    border-color: #f30337 !important;
    background-color: #f30337 !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: #f30337 !important;
    background-color: #f30337 !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: #fef6f6 !important;
    background-color: #fef6f6 !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: #fef6f6 !important;
}

.is-checkradio[type="radio"].is-primary-7:checked + label::after, .is-checkradio[type="radio"].is-primary-7:checked + label:after {
    border-color: #fef6f6 !important;
    background-color: #fef6f6 !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: #fef6f6 !important;
    background-color: #fef6f6 !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, 0.7) !important;
    background-color: rgba(0, 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: #fafafa !important;
    background-color: #fafafa !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: #fafafa !important;
}

.is-checkradio[type="radio"].is-primary-light:checked + label::after, .is-checkradio[type="radio"].is-primary-light:checked + label:after {
    border-color: #fafafa !important;
    background-color: #fafafa !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: #fafafa !important;
    background-color: #fafafa !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, 0.7) !important;
    background-color: rgba(0, 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: #101010 !important;
    background-color: #101010 !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: #101010 !important;
}

.is-checkradio[type="radio"].is-secondary:checked + label::after, .is-checkradio[type="radio"].is-secondary:checked + label:after {
    border-color: #101010 !important;
    background-color: #101010 !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: #101010 !important;
    background-color: #101010 !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: #131313 !important;
    background-color: #131313 !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: #131313 !important;
}

.is-checkradio[type="radio"].is-secondary-2:checked + label::after, .is-checkradio[type="radio"].is-secondary-2:checked + label:after {
    border-color: #131313 !important;
    background-color: #131313 !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: #131313 !important;
    background-color: #131313 !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: #232323 !important;
    background-color: #232323 !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: #232323 !important;
}

.is-checkradio[type="radio"].is-secondary-3:checked + label::after, .is-checkradio[type="radio"].is-secondary-3:checked + label:after {
    border-color: #232323 !important;
    background-color: #232323 !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: #232323 !important;
    background-color: #232323 !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: #363636 !important;
    background-color: #363636 !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: #363636 !important;
}

.is-checkradio[type="radio"].is-secondary-4:checked + label::after, .is-checkradio[type="radio"].is-secondary-4:checked + label:after {
    border-color: #363636 !important;
    background-color: #363636 !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: #363636 !important;
    background-color: #363636 !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: #5c5c5c !important;
    background-color: #5c5c5c !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: #5c5c5c !important;
}

.is-checkradio[type="radio"].is-secondary-5:checked + label::after, .is-checkradio[type="radio"].is-secondary-5:checked + label:after {
    border-color: #5c5c5c !important;
    background-color: #5c5c5c !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: #5c5c5c !important;
    background-color: #5c5c5c !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, 0.7) !important;
    background-color: rgba(0, 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, 0.7) !important;
    background-color: rgba(0, 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, 0.7) !important;
    background-color: rgba(0, 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: #999999 !important;
    background-color: #999999 !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: #999999 !important;
}

.is-checkradio[type="radio"].is-tertiary-8:checked + label::after, .is-checkradio[type="radio"].is-tertiary-8:checked + label:after {
    border-color: #999999 !important;
    background-color: #999999 !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: #999999 !important;
    background-color: #999999 !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, 0.7) !important;
    background-color: rgba(0, 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%, #f80036));
    background: linear-gradient(to left, #dbdbdb 50%, #f80036 50%);
    background-size: 200% 100%;
    background-position: right bottom;
}

.steps .step-item::before .step-marker {
    color: white;
}

.steps .step-item.is-active::before {
    background-position: left bottom;
}

.steps .step-item.is-active .step-marker {
    background-color: white;
    border-color: #f80036;
    color: #f80036;
}

.steps .step-item.is-completed::before {
    background-position: left bottom;
}

.steps .step-item.is-completed .step-marker {
    color: white;
    background-color: #f80036;
}

.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: white;
    border: 0.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%, white));
    background: linear-gradient(to left, #dbdbdb 50%, white 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: white;
    border-color: white;
    color: white;
}

.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: white;
}

.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: white;
    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: white;
    background-color: #0a0a0a;
}

.steps .step-item.is-light::before {
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #dbdbdb), color-stop(50%, whitesmoke));
    background: linear-gradient(to left, #dbdbdb 50%, whitesmoke 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: white;
    border-color: whitesmoke;
    color: whitesmoke;
}

.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: whitesmoke;
}

.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: white;
    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: whitesmoke;
    background-color: #363636;
}

.steps .step-item.is-primary::before {
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #dbdbdb), color-stop(50%, #f80036));
    background: linear-gradient(to left, #dbdbdb 50%, #f80036 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: white;
    border-color: #f80036;
    color: #f80036;
}

.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: #f80036;
}

.steps .step-item.is-link::before {
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #dbdbdb), color-stop(50%, #f80036));
    background: linear-gradient(to left, #dbdbdb 50%, #f80036 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: white;
    border-color: #f80036;
    color: #f80036;
}

.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: #f80036;
}

.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: white;
    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: white;
    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: white;
    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, 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: white;
    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%, #fb1043));
    background: linear-gradient(to left, #dbdbdb 50%, #fb1043 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: white;
    border-color: #fb1043;
    color: #fb1043;
}

.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: #fb1043;
}

.steps .step-item.is-primary-3::before {
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #dbdbdb), color-stop(50%, #ec0235));
    background: linear-gradient(to left, #dbdbdb 50%, #ec0235 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: white;
    border-color: #ec0235;
    color: #ec0235;
}

.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: #ec0235;
}

.steps .step-item.is-primary-4::before {
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #dbdbdb), color-stop(50%, #f1093c));
    background: linear-gradient(to left, #dbdbdb 50%, #f1093c 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: white;
    border-color: #f1093c;
    color: #f1093c;
}

.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: #f1093c;
}

.steps .step-item.is-primary-5::before {
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #dbdbdb), color-stop(50%, #ee0034));
    background: linear-gradient(to left, #dbdbdb 50%, #ee0034 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: white;
    border-color: #ee0034;
    color: #ee0034;
}

.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: #ee0034;
}

.steps .step-item.is-primary-6::before {
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #dbdbdb), color-stop(50%, #f30337));
    background: linear-gradient(to left, #dbdbdb 50%, #f30337 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: white;
    border-color: #f30337;
    color: #f30337;
}

.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: #f30337;
}

.steps .step-item.is-primary-7::before {
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #dbdbdb), color-stop(50%, #fef6f6));
    background: linear-gradient(to left, #dbdbdb 50%, #fef6f6 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: white;
    border-color: #fef6f6;
    color: #fef6f6;
}

.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, 0.7);
    background-color: #fef6f6;
}

.steps .step-item.is-primary-light::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-light.is-active::before {
    background-position: left bottom;
}

.steps .step-item.is-primary-light.is-active .step-marker {
    background-color: white;
    border-color: #fafafa;
    color: #fafafa;
}

.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, 0.7);
    background-color: #fafafa;
}

.steps .step-item.is-secondary::before {
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #dbdbdb), color-stop(50%, #101010));
    background: linear-gradient(to left, #dbdbdb 50%, #101010 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: white;
    border-color: #101010;
    color: #101010;
}

.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: #101010;
}

.steps .step-item.is-secondary-2::before {
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #dbdbdb), color-stop(50%, #131313));
    background: linear-gradient(to left, #dbdbdb 50%, #131313 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: white;
    border-color: #131313;
    color: #131313;
}

.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: #131313;
}

.steps .step-item.is-secondary-3::before {
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #dbdbdb), color-stop(50%, #232323));
    background: linear-gradient(to left, #dbdbdb 50%, #232323 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: white;
    border-color: #232323;
    color: #232323;
}

.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: #232323;
}

.steps .step-item.is-secondary-4::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-secondary-4.is-active::before {
    background-position: left bottom;
}

.steps .step-item.is-secondary-4.is-active .step-marker {
    background-color: white;
    border-color: #363636;
    color: #363636;
}

.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: #363636;
}

.steps .step-item.is-secondary-5::before {
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #dbdbdb), color-stop(50%, #5c5c5c));
    background: linear-gradient(to left, #dbdbdb 50%, #5c5c5c 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: white;
    border-color: #5c5c5c;
    color: #5c5c5c;
}

.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: #5c5c5c;
}

.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: white;
    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: white;
    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, 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: white;
    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, 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: white;
    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: white;
    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, 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: white;
    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: white;
    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%, #999999));
    background: linear-gradient(to left, #dbdbdb 50%, #999999 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: white;
    border-color: #999999;
    color: #999999;
}

.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: #999999;
}

.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: white;
    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, 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: 0.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: 0.75rem;
    min-height: 1.5rem;
}

.steps.is-small .step-item:not(:first-child)::before {
    height: 0.2em;
    width: 100%;
    bottom: 0;
    left: -50%;
    top: 0.75rem;
}

.steps.is-small .step-item .step-marker {
    height: 1.5rem;
    width: 1.5rem;
    position: absolute;
    left: calc(50% - 0.75rem);
}

.steps.is-small .step-item .step-marker .icon * {
    font-size: 0.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: 0.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: 0.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: 0.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::before, .switch[type="checkbox"]:focus + label:before, .switch[type="checkbox"]:focus + label::after, .switch[type="checkbox"]:focus + label:after {
    outline: 1px dotted #b5b5b5;
}

.switch[type="checkbox"][disabled] {
    cursor: not-allowed;
}

.switch[type="checkbox"][disabled] + label {
    opacity: 0.5;
}

.switch[type="checkbox"][disabled] + label::before, .switch[type="checkbox"][disabled] + label:before {
    opacity: 0.5;
}

.switch[type="checkbox"][disabled] + label::after, .switch[type="checkbox"][disabled] + label:after {
    opacity: 0.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: 0.1rem solid transparent;
    border-radius: 4px;
    background: #b5b5b5;
    content: '';
}

.switch[type="checkbox"] + label::after, .switch[type="checkbox"] + label:after {
    display: block;
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    width: 1rem;
    height: 1rem;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    border-radius: 4px;
    background: white;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.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: 0.25rem;
}

.switch[type="checkbox"]:checked + label::before, .switch[type="checkbox"]:checked + label:before {
    background: #f80036;
}

.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: #f80036;
}

.switch[type="checkbox"].is-outlined:checked + label::after, .switch[type="checkbox"].is-outlined:checked + label:after {
    background: #f80036;
}

.switch[type="checkbox"].is-thin + label::before, .switch[type="checkbox"].is-thin + label:before {
    top: 0.54545rem;
    height: 0.375rem;
}

.switch[type="checkbox"].is-thin + label::after, .switch[type="checkbox"].is-thin + label:after {
    -webkit-box-shadow: 0px 0px 3px #7a7a7a;
    box-shadow: 0px 0px 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: 0.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: 0.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: 0.25rem;
    left: 0.25rem;
    width: 0.625rem;
    height: 0.625rem;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    border-radius: 4px;
    background: white;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.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: 0.25rem;
}

.switch[type="checkbox"].is-small:checked + label::before, .switch[type="checkbox"].is-small:checked + label:before {
    background: #f80036;
}

.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: #f80036;
}

.switch[type="checkbox"].is-small.is-outlined:checked + label::after, .switch[type="checkbox"].is-small.is-outlined:checked + label:after {
    background: #f80036;
}

.switch[type="checkbox"].is-small.is-thin + label::before, .switch[type="checkbox"].is-small.is-thin + label:before {
    top: 0.40909rem;
    height: 0.28125rem;
}

.switch[type="checkbox"].is-small.is-thin + label::after, .switch[type="checkbox"].is-small.is-thin + label:after {
    -webkit-box-shadow: 0px 0px 3px #7a7a7a;
    box-shadow: 0px 0px 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: 0.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: 0.25rem;
    left: 0.25rem;
    width: 1.375rem;
    height: 1.375rem;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    border-radius: 4px;
    background: white;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.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: 0.25rem;
}

.switch[type="checkbox"].is-medium:checked + label::before, .switch[type="checkbox"].is-medium:checked + label:before {
    background: #f80036;
}

.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: #f80036;
}

.switch[type="checkbox"].is-medium.is-outlined:checked + label::after, .switch[type="checkbox"].is-medium.is-outlined:checked + label:after {
    background: #f80036;
}

.switch[type="checkbox"].is-medium.is-thin + label::before, .switch[type="checkbox"].is-medium.is-thin + label:before {
    top: 0.68182rem;
    height: 0.46875rem;
}

.switch[type="checkbox"].is-medium.is-thin + label::after, .switch[type="checkbox"].is-medium.is-thin + label:after {
    -webkit-box-shadow: 0px 0px 3px #7a7a7a;
    box-shadow: 0px 0px 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: 0.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: 0.25rem;
    left: 0.25rem;
    width: 1.75rem;
    height: 1.75rem;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    border-radius: 4px;
    background: white;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.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: 0.25rem;
}

.switch[type="checkbox"].is-large:checked + label::before, .switch[type="checkbox"].is-large:checked + label:before {
    background: #f80036;
}

.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: #f80036;
}

.switch[type="checkbox"].is-large.is-outlined:checked + label::after, .switch[type="checkbox"].is-large.is-outlined:checked + label:after {
    background: #f80036;
}

.switch[type="checkbox"].is-large.is-thin + label::before, .switch[type="checkbox"].is-large.is-thin + label:before {
    top: 0.81818rem;
    height: 0.5625rem;
}

.switch[type="checkbox"].is-large.is-thin + label::after, .switch[type="checkbox"].is-large.is-thin + label:after {
    -webkit-box-shadow: 0px 0px 3px #7a7a7a;
    box-shadow: 0px 0px 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: white;
}

.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: white !important;
}

.switch[type="checkbox"].is-white.is-outlined:checked + label::after, .switch[type="checkbox"].is-white.is-outlined:checked + label:after {
    background: white;
}

.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: white;
}

.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: white !important;
}

.switch[type="checkbox"].is-unchecked-white.is-outlined + label::after, .switch[type="checkbox"].is-unchecked-white.is-outlined + label:after {
    background: white;
}

.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: whitesmoke;
}

.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: whitesmoke !important;
}

.switch[type="checkbox"].is-light.is-outlined:checked + label::after, .switch[type="checkbox"].is-light.is-outlined:checked + label:after {
    background: whitesmoke;
}

.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: whitesmoke;
}

.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: whitesmoke !important;
}

.switch[type="checkbox"].is-unchecked-light.is-outlined + label::after, .switch[type="checkbox"].is-unchecked-light.is-outlined + label:after {
    background: whitesmoke;
}

.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: #f80036;
}

.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: #f80036 !important;
}

.switch[type="checkbox"].is-primary.is-outlined:checked + label::after, .switch[type="checkbox"].is-primary.is-outlined:checked + label:after {
    background: #f80036;
}

.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: #f80036;
}

.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: #f80036 !important;
}

.switch[type="checkbox"].is-unchecked-primary.is-outlined + label::after, .switch[type="checkbox"].is-unchecked-primary.is-outlined + label:after {
    background: #f80036;
}

.switch[type="checkbox"].is-link:checked + label::before, .switch[type="checkbox"].is-link:checked + label:before {
    background: #f80036;
}

.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: #f80036 !important;
}

.switch[type="checkbox"].is-link.is-outlined:checked + label::after, .switch[type="checkbox"].is-link.is-outlined:checked + label:after {
    background: #f80036;
}

.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: #f80036;
}

.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: #f80036 !important;
}

.switch[type="checkbox"].is-unchecked-link.is-outlined + label::after, .switch[type="checkbox"].is-unchecked-link.is-outlined + label:after {
    background: #f80036;
}

.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: #fb1043;
}

.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: #fb1043 !important;
}

.switch[type="checkbox"].is-primary-2.is-outlined:checked + label::after, .switch[type="checkbox"].is-primary-2.is-outlined:checked + label:after {
    background: #fb1043;
}

.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: #fb1043;
}

.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: #fb1043 !important;
}

.switch[type="checkbox"].is-unchecked-primary-2.is-outlined + label::after, .switch[type="checkbox"].is-unchecked-primary-2.is-outlined + label:after {
    background: #fb1043;
}

.switch[type="checkbox"].is-primary-3:checked + label::before, .switch[type="checkbox"].is-primary-3:checked + label:before {
    background: #ec0235;
}

.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: #ec0235 !important;
}

.switch[type="checkbox"].is-primary-3.is-outlined:checked + label::after, .switch[type="checkbox"].is-primary-3.is-outlined:checked + label:after {
    background: #ec0235;
}

.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: #ec0235;
}

.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: #ec0235 !important;
}

.switch[type="checkbox"].is-unchecked-primary-3.is-outlined + label::after, .switch[type="checkbox"].is-unchecked-primary-3.is-outlined + label:after {
    background: #ec0235;
}

.switch[type="checkbox"].is-primary-4:checked + label::before, .switch[type="checkbox"].is-primary-4:checked + label:before {
    background: #f1093c;
}

.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: #f1093c !important;
}

.switch[type="checkbox"].is-primary-4.is-outlined:checked + label::after, .switch[type="checkbox"].is-primary-4.is-outlined:checked + label:after {
    background: #f1093c;
}

.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: #f1093c;
}

.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: #f1093c !important;
}

.switch[type="checkbox"].is-unchecked-primary-4.is-outlined + label::after, .switch[type="checkbox"].is-unchecked-primary-4.is-outlined + label:after {
    background: #f1093c;
}

.switch[type="checkbox"].is-primary-5:checked + label::before, .switch[type="checkbox"].is-primary-5:checked + label:before {
    background: #ee0034;
}

.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: #ee0034 !important;
}

.switch[type="checkbox"].is-primary-5.is-outlined:checked + label::after, .switch[type="checkbox"].is-primary-5.is-outlined:checked + label:after {
    background: #ee0034;
}

.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: #ee0034;
}

.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: #ee0034 !important;
}

.switch[type="checkbox"].is-unchecked-primary-5.is-outlined + label::after, .switch[type="checkbox"].is-unchecked-primary-5.is-outlined + label:after {
    background: #ee0034;
}

.switch[type="checkbox"].is-primary-6:checked + label::before, .switch[type="checkbox"].is-primary-6:checked + label:before {
    background: #f30337;
}

.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: #f30337 !important;
}

.switch[type="checkbox"].is-primary-6.is-outlined:checked + label::after, .switch[type="checkbox"].is-primary-6.is-outlined:checked + label:after {
    background: #f30337;
}

.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: #f30337;
}

.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: #f30337 !important;
}

.switch[type="checkbox"].is-unchecked-primary-6.is-outlined + label::after, .switch[type="checkbox"].is-unchecked-primary-6.is-outlined + label:after {
    background: #f30337;
}

.switch[type="checkbox"].is-primary-7:checked + label::before, .switch[type="checkbox"].is-primary-7:checked + label:before {
    background: #fef6f6;
}

.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: #fef6f6 !important;
}

.switch[type="checkbox"].is-primary-7.is-outlined:checked + label::after, .switch[type="checkbox"].is-primary-7.is-outlined:checked + label:after {
    background: #fef6f6;
}

.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: #fef6f6;
}

.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: #fef6f6 !important;
}

.switch[type="checkbox"].is-unchecked-primary-7.is-outlined + label::after, .switch[type="checkbox"].is-unchecked-primary-7.is-outlined + label:after {
    background: #fef6f6;
}

.switch[type="checkbox"].is-primary-light:checked + label::before, .switch[type="checkbox"].is-primary-light:checked + label:before {
    background: #fafafa;
}

.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: #fafafa !important;
}

.switch[type="checkbox"].is-primary-light.is-outlined:checked + label::after, .switch[type="checkbox"].is-primary-light.is-outlined:checked + label:after {
    background: #fafafa;
}

.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: #fafafa;
}

.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: #fafafa !important;
}

.switch[type="checkbox"].is-unchecked-primary-light.is-outlined + label::after, .switch[type="checkbox"].is-unchecked-primary-light.is-outlined + label:after {
    background: #fafafa;
}

.switch[type="checkbox"].is-secondary:checked + label::before, .switch[type="checkbox"].is-secondary:checked + label:before {
    background: #101010;
}

.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: #101010 !important;
}

.switch[type="checkbox"].is-secondary.is-outlined:checked + label::after, .switch[type="checkbox"].is-secondary.is-outlined:checked + label:after {
    background: #101010;
}

.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: #101010;
}

.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: #101010 !important;
}

.switch[type="checkbox"].is-unchecked-secondary.is-outlined + label::after, .switch[type="checkbox"].is-unchecked-secondary.is-outlined + label:after {
    background: #101010;
}

.switch[type="checkbox"].is-secondary-2:checked + label::before, .switch[type="checkbox"].is-secondary-2:checked + label:before {
    background: #131313;
}

.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: #131313 !important;
}

.switch[type="checkbox"].is-secondary-2.is-outlined:checked + label::after, .switch[type="checkbox"].is-secondary-2.is-outlined:checked + label:after {
    background: #131313;
}

.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: #131313;
}

.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: #131313 !important;
}

.switch[type="checkbox"].is-unchecked-secondary-2.is-outlined + label::after, .switch[type="checkbox"].is-unchecked-secondary-2.is-outlined + label:after {
    background: #131313;
}

.switch[type="checkbox"].is-secondary-3:checked + label::before, .switch[type="checkbox"].is-secondary-3:checked + label:before {
    background: #232323;
}

.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: #232323 !important;
}

.switch[type="checkbox"].is-secondary-3.is-outlined:checked + label::after, .switch[type="checkbox"].is-secondary-3.is-outlined:checked + label:after {
    background: #232323;
}

.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: #232323;
}

.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: #232323 !important;
}

.switch[type="checkbox"].is-unchecked-secondary-3.is-outlined + label::after, .switch[type="checkbox"].is-unchecked-secondary-3.is-outlined + label:after {
    background: #232323;
}

.switch[type="checkbox"].is-secondary-4:checked + label::before, .switch[type="checkbox"].is-secondary-4:checked + label:before {
    background: #363636;
}

.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: #363636 !important;
}

.switch[type="checkbox"].is-secondary-4.is-outlined:checked + label::after, .switch[type="checkbox"].is-secondary-4.is-outlined:checked + label:after {
    background: #363636;
}

.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: #363636;
}

.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: #363636 !important;
}

.switch[type="checkbox"].is-unchecked-secondary-4.is-outlined + label::after, .switch[type="checkbox"].is-unchecked-secondary-4.is-outlined + label:after {
    background: #363636;
}

.switch[type="checkbox"].is-secondary-5:checked + label::before, .switch[type="checkbox"].is-secondary-5:checked + label:before {
    background: #5c5c5c;
}

.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: #5c5c5c !important;
}

.switch[type="checkbox"].is-secondary-5.is-outlined:checked + label::after, .switch[type="checkbox"].is-secondary-5.is-outlined:checked + label:after {
    background: #5c5c5c;
}

.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: #5c5c5c;
}

.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: #5c5c5c !important;
}

.switch[type="checkbox"].is-unchecked-secondary-5.is-outlined + label::after, .switch[type="checkbox"].is-unchecked-secondary-5.is-outlined + label:after {
    background: #5c5c5c;
}

.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: #999999;
}

.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: #999999 !important;
}

.switch[type="checkbox"].is-tertiary-8.is-outlined:checked + label::after, .switch[type="checkbox"].is-tertiary-8.is-outlined:checked + label:after {
    background: #999999;
}

.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: #999999;
}

.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: #999999 !important;
}

.switch[type="checkbox"].is-unchecked-tertiary-8.is-outlined + label::after, .switch[type="checkbox"].is-unchecked-tertiary-8.is-outlined + label:after {
    background: #999999;
}

.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: #f80036;
    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: 0.1em;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.timeline .timeline-item .timeline-marker {
    position: absolute;
    background: #dbdbdb;
    border: 0.1em solid #dbdbdb;
    border-radius: 100%;
    content: "";
    display: block;
    height: 0.8em;
    left: -0.35em;
    top: 1.2rem;
    width: 0.8em;
}

.timeline .timeline-item .timeline-marker.is-image {
    background: #dbdbdb;
    border: 0.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: -0.7em;
    line-height: .75rem;
    padding: 0.25rem;
    background: #dbdbdb;
    border: 0.1em solid #dbdbdb;
    border-radius: 100%;
}

.timeline .timeline-item .timeline-marker.is-icon &gt; i {
    color: white;
    font-size: 0.75rem !important;
}

.timeline .timeline-item .timeline-marker.is-outlined .image {
    background: white;
}

.timeline .timeline-item .timeline-marker.is-outlined.is-icon {
    background: white;
}

.timeline .timeline-item .timeline-marker.is-outlined.is-icon &gt; i {
    color: #dbdbdb;
}

.timeline .timeline-item .timeline-marker.is-white {
    background-color: white !important;
    border-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-white .image {
    border-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-white.is-icon {
    background-color: white !important;
    border-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-white.is-icon &gt; i {
    color: #0a0a0a !important;
}

.timeline .timeline-item .timeline-marker.is-white.is-outlined {
    background-color: white !important;
    border-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-white.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-white.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-white.is-outlined.is-icon &gt; i {
    color: white !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 &gt; i {
    color: white !important;
}

.timeline .timeline-item .timeline-marker.is-black.is-outlined {
    background-color: white !important;
    border-color: #0a0a0a !important;
}

.timeline .timeline-item .timeline-marker.is-black.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-black.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-black.is-outlined.is-icon &gt; i {
    color: #0a0a0a !important;
}

.timeline .timeline-item .timeline-marker.is-light {
    background-color: whitesmoke !important;
    border-color: whitesmoke !important;
}

.timeline .timeline-item .timeline-marker.is-light .image {
    border-color: whitesmoke !important;
}

.timeline .timeline-item .timeline-marker.is-light.is-icon {
    background-color: whitesmoke !important;
    border-color: whitesmoke !important;
}

.timeline .timeline-item .timeline-marker.is-light.is-icon &gt; i {
    color: #363636 !important;
}

.timeline .timeline-item .timeline-marker.is-light.is-outlined {
    background-color: white !important;
    border-color: whitesmoke !important;
}

.timeline .timeline-item .timeline-marker.is-light.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-light.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-light.is-outlined.is-icon &gt; i {
    color: whitesmoke !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 &gt; i {
    color: whitesmoke !important;
}

.timeline .timeline-item .timeline-marker.is-dark.is-outlined {
    background-color: white !important;
    border-color: #363636 !important;
}

.timeline .timeline-item .timeline-marker.is-dark.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-dark.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-dark.is-outlined.is-icon &gt; i {
    color: #363636 !important;
}

.timeline .timeline-item .timeline-marker.is-primary {
    background-color: #f80036 !important;
    border-color: #f80036 !important;
}

.timeline .timeline-item .timeline-marker.is-primary .image {
    border-color: #f80036 !important;
}

.timeline .timeline-item .timeline-marker.is-primary.is-icon {
    background-color: #f80036 !important;
    border-color: #f80036 !important;
}

.timeline .timeline-item .timeline-marker.is-primary.is-icon &gt; i {
    color: #fff !important;
}

.timeline .timeline-item .timeline-marker.is-primary.is-outlined {
    background-color: white !important;
    border-color: #f80036 !important;
}

.timeline .timeline-item .timeline-marker.is-primary.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-primary.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-primary.is-outlined.is-icon &gt; i {
    color: #f80036 !important;
}

.timeline .timeline-item .timeline-marker.is-link {
    background-color: #f80036 !important;
    border-color: #f80036 !important;
}

.timeline .timeline-item .timeline-marker.is-link .image {
    border-color: #f80036 !important;
}

.timeline .timeline-item .timeline-marker.is-link.is-icon {
    background-color: #f80036 !important;
    border-color: #f80036 !important;
}

.timeline .timeline-item .timeline-marker.is-link.is-icon &gt; i {
    color: #fff !important;
}

.timeline .timeline-item .timeline-marker.is-link.is-outlined {
    background-color: white !important;
    border-color: #f80036 !important;
}

.timeline .timeline-item .timeline-marker.is-link.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-link.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-link.is-outlined.is-icon &gt; i {
    color: #f80036 !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 &gt; i {
    color: #fff !important;
}

.timeline .timeline-item .timeline-marker.is-info.is-outlined {
    background-color: white !important;
    border-color: #209cee !important;
}

.timeline .timeline-item .timeline-marker.is-info.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-info.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-info.is-outlined.is-icon &gt; 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 &gt; i {
    color: #fff !important;
}

.timeline .timeline-item .timeline-marker.is-success.is-outlined {
    background-color: white !important;
    border-color: #23d160 !important;
}

.timeline .timeline-item .timeline-marker.is-success.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-success.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-success.is-outlined.is-icon &gt; 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 &gt; i {
    color: rgba(0, 0, 0, 0.7) !important;
}

.timeline .timeline-item .timeline-marker.is-warning.is-outlined {
    background-color: white !important;
    border-color: #ffdd57 !important;
}

.timeline .timeline-item .timeline-marker.is-warning.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-warning.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-warning.is-outlined.is-icon &gt; 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 &gt; i {
    color: #fff !important;
}

.timeline .timeline-item .timeline-marker.is-danger.is-outlined {
    background-color: white !important;
    border-color: #ff3860 !important;
}

.timeline .timeline-item .timeline-marker.is-danger.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-danger.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-danger.is-outlined.is-icon &gt; i {
    color: #ff3860 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-2 {
    background-color: #fb1043 !important;
    border-color: #fb1043 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-2 .image {
    border-color: #fb1043 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-2.is-icon {
    background-color: #fb1043 !important;
    border-color: #fb1043 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-2.is-icon &gt; i {
    color: #fff !important;
}

.timeline .timeline-item .timeline-marker.is-primary-2.is-outlined {
    background-color: white !important;
    border-color: #fb1043 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-2.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-primary-2.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-primary-2.is-outlined.is-icon &gt; i {
    color: #fb1043 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-3 {
    background-color: #ec0235 !important;
    border-color: #ec0235 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-3 .image {
    border-color: #ec0235 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-3.is-icon {
    background-color: #ec0235 !important;
    border-color: #ec0235 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-3.is-icon &gt; i {
    color: #fff !important;
}

.timeline .timeline-item .timeline-marker.is-primary-3.is-outlined {
    background-color: white !important;
    border-color: #ec0235 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-3.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-primary-3.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-primary-3.is-outlined.is-icon &gt; i {
    color: #ec0235 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-4 {
    background-color: #f1093c !important;
    border-color: #f1093c !important;
}

.timeline .timeline-item .timeline-marker.is-primary-4 .image {
    border-color: #f1093c !important;
}

.timeline .timeline-item .timeline-marker.is-primary-4.is-icon {
    background-color: #f1093c !important;
    border-color: #f1093c !important;
}

.timeline .timeline-item .timeline-marker.is-primary-4.is-icon &gt; i {
    color: #fff !important;
}

.timeline .timeline-item .timeline-marker.is-primary-4.is-outlined {
    background-color: white !important;
    border-color: #f1093c !important;
}

.timeline .timeline-item .timeline-marker.is-primary-4.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-primary-4.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-primary-4.is-outlined.is-icon &gt; i {
    color: #f1093c !important;
}

.timeline .timeline-item .timeline-marker.is-primary-5 {
    background-color: #ee0034 !important;
    border-color: #ee0034 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-5 .image {
    border-color: #ee0034 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-5.is-icon {
    background-color: #ee0034 !important;
    border-color: #ee0034 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-5.is-icon &gt; i {
    color: #fff !important;
}

.timeline .timeline-item .timeline-marker.is-primary-5.is-outlined {
    background-color: white !important;
    border-color: #ee0034 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-5.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-primary-5.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-primary-5.is-outlined.is-icon &gt; i {
    color: #ee0034 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-6 {
    background-color: #f30337 !important;
    border-color: #f30337 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-6 .image {
    border-color: #f30337 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-6.is-icon {
    background-color: #f30337 !important;
    border-color: #f30337 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-6.is-icon &gt; i {
    color: #fff !important;
}

.timeline .timeline-item .timeline-marker.is-primary-6.is-outlined {
    background-color: white !important;
    border-color: #f30337 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-6.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-primary-6.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-primary-6.is-outlined.is-icon &gt; i {
    color: #f30337 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-7 {
    background-color: #fef6f6 !important;
    border-color: #fef6f6 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-7 .image {
    border-color: #fef6f6 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-7.is-icon {
    background-color: #fef6f6 !important;
    border-color: #fef6f6 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-7.is-icon &gt; i {
    color: rgba(0, 0, 0, 0.7) !important;
}

.timeline .timeline-item .timeline-marker.is-primary-7.is-outlined {
    background-color: white !important;
    border-color: #fef6f6 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-7.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-primary-7.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-primary-7.is-outlined.is-icon &gt; i {
    color: #fef6f6 !important;
}

.timeline .timeline-item .timeline-marker.is-primary-light {
    background-color: #fafafa !important;
    border-color: #fafafa !important;
}

.timeline .timeline-item .timeline-marker.is-primary-light .image {
    border-color: #fafafa !important;
}

.timeline .timeline-item .timeline-marker.is-primary-light.is-icon {
    background-color: #fafafa !important;
    border-color: #fafafa !important;
}

.timeline .timeline-item .timeline-marker.is-primary-light.is-icon &gt; i {
    color: rgba(0, 0, 0, 0.7) !important;
}

.timeline .timeline-item .timeline-marker.is-primary-light.is-outlined {
    background-color: white !important;
    border-color: #fafafa !important;
}

.timeline .timeline-item .timeline-marker.is-primary-light.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-primary-light.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-primary-light.is-outlined.is-icon &gt; i {
    color: #fafafa !important;
}

.timeline .timeline-item .timeline-marker.is-secondary {
    background-color: #101010 !important;
    border-color: #101010 !important;
}

.timeline .timeline-item .timeline-marker.is-secondary .image {
    border-color: #101010 !important;
}

.timeline .timeline-item .timeline-marker.is-secondary.is-icon {
    background-color: #101010 !important;
    border-color: #101010 !important;
}

.timeline .timeline-item .timeline-marker.is-secondary.is-icon &gt; i {
    color: #fff !important;
}

.timeline .timeline-item .timeline-marker.is-secondary.is-outlined {
    background-color: white !important;
    border-color: #101010 !important;
}

.timeline .timeline-item .timeline-marker.is-secondary.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-secondary.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-secondary.is-outlined.is-icon &gt; i {
    color: #101010 !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-2 {
    background-color: #131313 !important;
    border-color: #131313 !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-2 .image {
    border-color: #131313 !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-2.is-icon {
    background-color: #131313 !important;
    border-color: #131313 !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-2.is-icon &gt; i {
    color: #fff !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-2.is-outlined {
    background-color: white !important;
    border-color: #131313 !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-2.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-2.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-2.is-outlined.is-icon &gt; i {
    color: #131313 !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-3 {
    background-color: #232323 !important;
    border-color: #232323 !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-3 .image {
    border-color: #232323 !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-3.is-icon {
    background-color: #232323 !important;
    border-color: #232323 !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-3.is-icon &gt; i {
    color: #fff !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-3.is-outlined {
    background-color: white !important;
    border-color: #232323 !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-3.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-3.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-3.is-outlined.is-icon &gt; i {
    color: #232323 !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-4 {
    background-color: #363636 !important;
    border-color: #363636 !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-4 .image {
    border-color: #363636 !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-4.is-icon {
    background-color: #363636 !important;
    border-color: #363636 !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-4.is-icon &gt; i {
    color: #fff !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-4.is-outlined {
    background-color: white !important;
    border-color: #363636 !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-4.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-4.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-4.is-outlined.is-icon &gt; i {
    color: #363636 !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-5 {
    background-color: #5c5c5c !important;
    border-color: #5c5c5c !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-5 .image {
    border-color: #5c5c5c !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-5.is-icon {
    background-color: #5c5c5c !important;
    border-color: #5c5c5c !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-5.is-icon &gt; i {
    color: #fff !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-5.is-outlined {
    background-color: white !important;
    border-color: #5c5c5c !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-5.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-5.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-secondary-5.is-outlined.is-icon &gt; i {
    color: #5c5c5c !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 &gt; i {
    color: #fff !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary.is-outlined {
    background-color: white !important;
    border-color: #A6A6A6 !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary.is-outlined.is-icon &gt; 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 &gt; i {
    color: rgba(0, 0, 0, 0.7) !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-2.is-outlined {
    background-color: white !important;
    border-color: #D8D8D8 !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-2.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-2.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-2.is-outlined.is-icon &gt; 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 &gt; i {
    color: rgba(0, 0, 0, 0.7) !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-3.is-outlined {
    background-color: white !important;
    border-color: #D7D6D3 !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-3.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-3.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-3.is-outlined.is-icon &gt; 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 &gt; i {
    color: #fff !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-4.is-outlined {
    background-color: white !important;
    border-color: #AFAFAF !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-4.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-4.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-4.is-outlined.is-icon &gt; 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 &gt; i {
    color: rgba(0, 0, 0, 0.7) !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-5.is-outlined {
    background-color: white !important;
    border-color: #EAEAEA !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-5.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-5.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-5.is-outlined.is-icon &gt; 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 &gt; i {
    color: #fff !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-6.is-outlined {
    background-color: white !important;
    border-color: #B0B0B0 !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-6.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-6.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-6.is-outlined.is-icon &gt; 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 &gt; i {
    color: #fff !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-7.is-outlined {
    background-color: white !important;
    border-color: #969696 !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-7.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-7.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-7.is-outlined.is-icon &gt; i {
    color: #969696 !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-8 {
    background-color: #999999 !important;
    border-color: #999999 !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-8 .image {
    border-color: #999999 !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-8.is-icon {
    background-color: #999999 !important;
    border-color: #999999 !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-8.is-icon &gt; i {
    color: #fff !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-8.is-outlined {
    background-color: white !important;
    border-color: #999999 !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-8.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-8.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-8.is-outlined.is-icon &gt; i {
    color: #999999 !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 &gt; i {
    color: rgba(0, 0, 0, 0.7) !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-9.is-outlined {
    background-color: white !important;
    border-color: #f5f5f5 !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-9.is-outlined .image {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-9.is-outlined.is-icon {
    background-color: white !important;
}

.timeline .timeline-item .timeline-marker.is-tertiary-9.is-outlined.is-icon &gt; 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: white;
}

.timeline .timeline-item.is-black::before {
    background-color: #0a0a0a;
}

.timeline .timeline-item.is-light::before {
    background-color: whitesmoke;
}

.timeline .timeline-item.is-dark::before {
    background-color: #363636;
}

.timeline .timeline-item.is-primary::before {
    background-color: #f80036;
}

.timeline .timeline-item.is-link::before {
    background-color: #f80036;
}

.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: #fb1043;
}

.timeline .timeline-item.is-primary-3::before {
    background-color: #ec0235;
}

.timeline .timeline-item.is-primary-4::before {
    background-color: #f1093c;
}

.timeline .timeline-item.is-primary-5::before {
    background-color: #ee0034;
}

.timeline .timeline-item.is-primary-6::before {
    background-color: #f30337;
}

.timeline .timeline-item.is-primary-7::before {
    background-color: #fef6f6;
}

.timeline .timeline-item.is-primary-light::before {
    background-color: #fafafa;
}

.timeline .timeline-item.is-secondary::before {
    background-color: #101010;
}

.timeline .timeline-item.is-secondary-2::before {
    background-color: #131313;
}

.timeline .timeline-item.is-secondary-3::before {
    background-color: #232323;
}

.timeline .timeline-item.is-secondary-4::before {
    background-color: #363636;
}

.timeline .timeline-item.is-secondary-5::before {
    background-color: #5c5c5c;
}

.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: #999999;
}

.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: -0.1em;
    left: auto;
}

.timeline.is-centered .timeline-item:nth-of-type(2n) .timeline-marker {
    left: auto;
    right: -0.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: -0.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: 0.1em;
    height: 100%;
    position: absolute;
    top: 0;
}

.timeline.is-centered .timeline-item.is-white::before {
    background-color: white;
}

.timeline.is-centered .timeline-item.is-black::before {
    background-color: #0a0a0a;
}

.timeline.is-centered .timeline-item.is-light::before {
    background-color: whitesmoke;
}

.timeline.is-centered .timeline-item.is-dark::before {
    background-color: #363636;
}

.timeline.is-centered .timeline-item.is-primary::before {
    background-color: #f80036;
}

.timeline.is-centered .timeline-item.is-link::before {
    background-color: #f80036;
}

.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: #fb1043;
}

.timeline.is-centered .timeline-item.is-primary-3::before {
    background-color: #ec0235;
}

.timeline.is-centered .timeline-item.is-primary-4::before {
    background-color: #f1093c;
}

.timeline.is-centered .timeline-item.is-primary-5::before {
    background-color: #ee0034;
}

.timeline.is-centered .timeline-item.is-primary-6::before {
    background-color: #f30337;
}

.timeline.is-centered .timeline-item.is-primary-7::before {
    background-color: #fef6f6;
}

.timeline.is-centered .timeline-item.is-primary-light::before {
    background-color: #fafafa;
}

.timeline.is-centered .timeline-item.is-secondary::before {
    background-color: #101010;
}

.timeline.is-centered .timeline-item.is-secondary-2::before {
    background-color: #131313;
}

.timeline.is-centered .timeline-item.is-secondary-3::before {
    background-color: #232323;
}

.timeline.is-centered .timeline-item.is-secondary-4::before {
    background-color: #363636;
}

.timeline.is-centered .timeline-item.is-secondary-5::before {
    background-color: #5c5c5c;
}

.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: #999999;
}

.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: -0.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: -0.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: white;
    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 0px 13px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 5px 0px 13px 3px rgba(0, 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: white;
}

.quickview-header.is-white .title {
    color: #0a0a0a;
}

.quickview-header.is-black {
    background-color: #0a0a0a;
}

.quickview-header.is-black .title {
    color: white;
}

.quickview-header.is-light {
    background-color: whitesmoke;
}

.quickview-header.is-light .title {
    color: #363636;
}

.quickview-header.is-dark {
    background-color: #363636;
}

.quickview-header.is-dark .title {
    color: whitesmoke;
}

.quickview-header.is-primary {
    background-color: #f80036;
}

.quickview-header.is-primary .title {
    color: #fff;
}

.quickview-header.is-link {
    background-color: #f80036;
}

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

.quickview-header.is-danger {
    background-color: #ff3860;
}

.quickview-header.is-danger .title {
    color: #fff;
}

.quickview-header.is-primary-2 {
    background-color: #fb1043;
}

.quickview-header.is-primary-2 .title {
    color: #fff;
}

.quickview-header.is-primary-3 {
    background-color: #ec0235;
}

.quickview-header.is-primary-3 .title {
    color: #fff;
}

.quickview-header.is-primary-4 {
    background-color: #f1093c;
}

.quickview-header.is-primary-4 .title {
    color: #fff;
}

.quickview-header.is-primary-5 {
    background-color: #ee0034;
}

.quickview-header.is-primary-5 .title {
    color: #fff;
}

.quickview-header.is-primary-6 {
    background-color: #f30337;
}

.quickview-header.is-primary-6 .title {
    color: #fff;
}

.quickview-header.is-primary-7 {
    background-color: #fef6f6;
}

.quickview-header.is-primary-7 .title {
    color: rgba(0, 0, 0, 0.7);
}

.quickview-header.is-primary-light {
    background-color: #fafafa;
}

.quickview-header.is-primary-light .title {
    color: rgba(0, 0, 0, 0.7);
}

.quickview-header.is-secondary {
    background-color: #101010;
}

.quickview-header.is-secondary .title {
    color: #fff;
}

.quickview-header.is-secondary-2 {
    background-color: #131313;
}

.quickview-header.is-secondary-2 .title {
    color: #fff;
}

.quickview-header.is-secondary-3 {
    background-color: #232323;
}

.quickview-header.is-secondary-3 .title {
    color: #fff;
}

.quickview-header.is-secondary-4 {
    background-color: #363636;
}

.quickview-header.is-secondary-4 .title {
    color: #fff;
}

.quickview-header.is-secondary-5 {
    background-color: #5c5c5c;
}

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

.quickview-header.is-tertiary-3 {
    background-color: #D7D6D3;
}

.quickview-header.is-tertiary-3 .title {
    color: rgba(0, 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, 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: #999999;
}

.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, 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: whitesmoke;
    border-top: 1px solid #F0F0F0;
}

.quickview-footer &gt; * {
    margin: 0 .4rem;
}

input[type=range].slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 1rem 0;
    background: transparent;
}

input[type=range].slider.is-fullwidth {
    display: block;
    width: 100%;
}

input[type=range].slider:focus {
    outline: none;
}

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: 0.75rem;
    line-height: 0.75rem;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: white;
    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: 0.2s;
    -webkit-box-shadow: 0px 0px 0px #7a7a7a;
    box-shadow: 0px 0px 0px #7a7a7a;
    background: #dbdbdb;
    border-radius: 4px;
    border: 0px solid #7a7a7a;
}

input[type=range].slider::-moz-range-track {
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #7a7a7a;
    background: #dbdbdb;
    border-radius: 4px;
    border: 0px solid #7a7a7a;
}

input[type=range].slider::-ms-track {
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #7a7a7a;
    background: #dbdbdb;
    border-radius: 4px;
    border: 0px solid #7a7a7a;
}

input[type=range].slider::-ms-fill-lower {
    background: #f80036;
}

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: white;
    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: white;
    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: white;
    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: 0.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: 0.5rem;
}

input[type=range].slider:not([orient="vertical"])::-moz-range-track {
    height: 0.5rem;
}

input[type=range].slider:not([orient="vertical"])::-ms-track {
    height: 0.5rem;
}

input[type=range].slider[orient="vertical"]::-webkit-slider-runnable-track {
    width: 0.5rem;
}

input[type=range].slider[orient="vertical"]::-moz-range-track {
    width: 0.5rem;
}

input[type=range].slider[orient="vertical"]::-ms-track {
    width: 0.5rem;
}

input[type=range].slider::-webkit-slider-thumb {
    height: 1rem;
    width: 1rem;
    margin-top: -0.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: -0.25rem;
}

input[type=range].slider.is-small:not([orient="vertical"])::-webkit-slider-runnable-track {
    height: 0.375rem;
}

input[type=range].slider.is-small:not([orient="vertical"])::-moz-range-track {
    height: 0.375rem;
}

input[type=range].slider.is-small:not([orient="vertical"])::-ms-track {
    height: 0.375rem;
}

input[type=range].slider.is-small[orient="vertical"]::-webkit-slider-runnable-track {
    width: 0.375rem;
}

input[type=range].slider.is-small[orient="vertical"]::-moz-range-track {
    width: 0.375rem;
}

input[type=range].slider.is-small[orient="vertical"]::-ms-track {
    width: 0.375rem;
}

input[type=range].slider.is-small::-webkit-slider-thumb {
    height: 0.75rem;
    width: 0.75rem;
    margin-top: -0.1875rem;
}

input[type=range].slider.is-small::-moz-range-thumb {
    height: 0.75rem;
    width: 0.75rem;
}

input[type=range].slider.is-small::-ms-thumb {
    height: 0.75rem;
    width: 0.75rem;
}

input[type=range].slider.is-small[orient="vertical"]::-webkit-slider-thumb {
    margin-top: auto;
    margin-left: -0.1875rem;
}

input[type=range].slider.is-medium:not([orient="vertical"])::-webkit-slider-runnable-track {
    height: 0.625rem;
}

input[type=range].slider.is-medium:not([orient="vertical"])::-moz-range-track {
    height: 0.625rem;
}

input[type=range].slider.is-medium:not([orient="vertical"])::-ms-track {
    height: 0.625rem;
}

input[type=range].slider.is-medium[orient="vertical"]::-webkit-slider-runnable-track {
    width: 0.625rem;
}

input[type=range].slider.is-medium[orient="vertical"]::-moz-range-track {
    width: 0.625rem;
}

input[type=range].slider.is-medium[orient="vertical"]::-ms-track {
    width: 0.625rem;
}

input[type=range].slider.is-medium::-webkit-slider-thumb {
    height: 1.25rem;
    width: 1.25rem;
    margin-top: -0.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: -0.3125rem;
}

input[type=range].slider.is-large:not([orient="vertical"])::-webkit-slider-runnable-track {
    height: 0.75rem;
}

input[type=range].slider.is-large:not([orient="vertical"])::-moz-range-track {
    height: 0.75rem;
}

input[type=range].slider.is-large:not([orient="vertical"])::-ms-track {
    height: 0.75rem;
}

input[type=range].slider.is-large[orient="vertical"]::-webkit-slider-runnable-track {
    width: 0.75rem;
}

input[type=range].slider.is-large[orient="vertical"]::-moz-range-track {
    width: 0.75rem;
}

input[type=range].slider.is-large[orient="vertical"]::-ms-track {
    width: 0.75rem;
}

input[type=range].slider.is-large::-webkit-slider-thumb {
    height: 1.5rem;
    width: 1.5rem;
    margin-top: -0.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: -0.375rem;
}

input[type=range].slider.is-white::-moz-range-track {
    background: white;
}

input[type=range].slider.is-white::-webkit-slider-runnable-track {
    background: white;
}

input[type=range].slider.is-white::-ms-track {
    background: white !important;
}

input[type=range].slider.is-white::-ms-fill-lower {
    background: white;
}

input[type=range].slider.is-white.has-output + output,
input[type=range].slider.is-white .has-output-tooltip + output {
    background-color: white;
    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 + output,
input[type=range].slider.is-black .has-output-tooltip + output {
    background-color: #0a0a0a;
    color: white;
}

input[type=range].slider.is-light::-moz-range-track {
    background: whitesmoke;
}

input[type=range].slider.is-light::-webkit-slider-runnable-track {
    background: whitesmoke;
}

input[type=range].slider.is-light::-ms-track {
    background: whitesmoke !important;
}

input[type=range].slider.is-light::-ms-fill-lower {
    background: whitesmoke;
}

input[type=range].slider.is-light.has-output + output,
input[type=range].slider.is-light .has-output-tooltip + output {
    background-color: whitesmoke;
    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 + output,
input[type=range].slider.is-dark .has-output-tooltip + output {
    background-color: #363636;
    color: whitesmoke;
}

input[type=range].slider.is-primary::-moz-range-track {
    background: #f80036;
}

input[type=range].slider.is-primary::-webkit-slider-runnable-track {
    background: #f80036;
}

input[type=range].slider.is-primary::-ms-track {
    background: #f80036 !important;
}

input[type=range].slider.is-primary::-ms-fill-lower {
    background: #f80036;
}

input[type=range].slider.is-primary.has-output + output,
input[type=range].slider.is-primary .has-output-tooltip + output {
    background-color: #f80036;
    color: #fff;
}

input[type=range].slider.is-link::-moz-range-track {
    background: #f80036;
}

input[type=range].slider.is-link::-webkit-slider-runnable-track {
    background: #f80036;
}

input[type=range].slider.is-link::-ms-track {
    background: #f80036 !important;
}

input[type=range].slider.is-link::-ms-fill-lower {
    background: #f80036;
}

input[type=range].slider.is-link.has-output + output,
input[type=range].slider.is-link .has-output-tooltip + output {
    background-color: #f80036;
    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 + output,
input[type=range].slider.is-info .has-output-tooltip + 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 + output,
input[type=range].slider.is-success .has-output-tooltip + 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 + output,
input[type=range].slider.is-warning .has-output-tooltip + output {
    background-color: #ffdd57;
    color: rgba(0, 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 + output,
input[type=range].slider.is-danger .has-output-tooltip + output {
    background-color: #ff3860;
    color: #fff;
}

input[type=range].slider.is-primary-2::-moz-range-track {
    background: #fb1043;
}

input[type=range].slider.is-primary-2::-webkit-slider-runnable-track {
    background: #fb1043;
}

input[type=range].slider.is-primary-2::-ms-track {
    background: #fb1043 !important;
}

input[type=range].slider.is-primary-2::-ms-fill-lower {
    background: #fb1043;
}

input[type=range].slider.is-primary-2.has-output + output,
input[type=range].slider.is-primary-2 .has-output-tooltip + output {
    background-color: #fb1043;
    color: #fff;
}

input[type=range].slider.is-primary-3::-moz-range-track {
    background: #ec0235;
}

input[type=range].slider.is-primary-3::-webkit-slider-runnable-track {
    background: #ec0235;
}

input[type=range].slider.is-primary-3::-ms-track {
    background: #ec0235 !important;
}

input[type=range].slider.is-primary-3::-ms-fill-lower {
    background: #ec0235;
}

input[type=range].slider.is-primary-3.has-output + output,
input[type=range].slider.is-primary-3 .has-output-tooltip + output {
    background-color: #ec0235;
    color: #fff;
}

input[type=range].slider.is-primary-4::-moz-range-track {
    background: #f1093c;
}

input[type=range].slider.is-primary-4::-webkit-slider-runnable-track {
    background: #f1093c;
}

input[type=range].slider.is-primary-4::-ms-track {
    background: #f1093c !important;
}

input[type=range].slider.is-primary-4::-ms-fill-lower {
    background: #f1093c;
}

input[type=range].slider.is-primary-4.has-output + output,
input[type=range].slider.is-primary-4 .has-output-tooltip + output {
    background-color: #f1093c;
    color: #fff;
}

input[type=range].slider.is-primary-5::-moz-range-track {
    background: #ee0034;
}

input[type=range].slider.is-primary-5::-webkit-slider-runnable-track {
    background: #ee0034;
}

input[type=range].slider.is-primary-5::-ms-track {
    background: #ee0034 !important;
}

input[type=range].slider.is-primary-5::-ms-fill-lower {
    background: #ee0034;
}

input[type=range].slider.is-primary-5.has-output + output,
input[type=range].slider.is-primary-5 .has-output-tooltip + output {
    background-color: #ee0034;
    color: #fff;
}

input[type=range].slider.is-primary-6::-moz-range-track {
    background: #f30337;
}

input[type=range].slider.is-primary-6::-webkit-slider-runnable-track {
    background: #f30337;
}

input[type=range].slider.is-primary-6::-ms-track {
    background: #f30337 !important;
}

input[type=range].slider.is-primary-6::-ms-fill-lower {
    background: #f30337;
}

input[type=range].slider.is-primary-6.has-output + output,
input[type=range].slider.is-primary-6 .has-output-tooltip + output {
    background-color: #f30337;
    color: #fff;
}

input[type=range].slider.is-primary-7::-moz-range-track {
    background: #fef6f6;
}

input[type=range].slider.is-primary-7::-webkit-slider-runnable-track {
    background: #fef6f6;
}

input[type=range].slider.is-primary-7::-ms-track {
    background: #fef6f6 !important;
}

input[type=range].slider.is-primary-7::-ms-fill-lower {
    background: #fef6f6;
}

input[type=range].slider.is-primary-7.has-output + output,
input[type=range].slider.is-primary-7 .has-output-tooltip + output {
    background-color: #fef6f6;
    color: rgba(0, 0, 0, 0.7);
}

input[type=range].slider.is-primary-light::-moz-range-track {
    background: #fafafa;
}

input[type=range].slider.is-primary-light::-webkit-slider-runnable-track {
    background: #fafafa;
}

input[type=range].slider.is-primary-light::-ms-track {
    background: #fafafa !important;
}

input[type=range].slider.is-primary-light::-ms-fill-lower {
    background: #fafafa;
}

input[type=range].slider.is-primary-light.has-output + output,
input[type=range].slider.is-primary-light .has-output-tooltip + output {
    background-color: #fafafa;
    color: rgba(0, 0, 0, 0.7);
}

input[type=range].slider.is-secondary::-moz-range-track {
    background: #101010;
}

input[type=range].slider.is-secondary::-webkit-slider-runnable-track {
    background: #101010;
}

input[type=range].slider.is-secondary::-ms-track {
    background: #101010 !important;
}

input[type=range].slider.is-secondary::-ms-fill-lower {
    background: #101010;
}

input[type=range].slider.is-secondary.has-output + output,
input[type=range].slider.is-secondary .has-output-tooltip + output {
    background-color: #101010;
    color: #fff;
}

input[type=range].slider.is-secondary-2::-moz-range-track {
    background: #131313;
}

input[type=range].slider.is-secondary-2::-webkit-slider-runnable-track {
    background: #131313;
}

input[type=range].slider.is-secondary-2::-ms-track {
    background: #131313 !important;
}

input[type=range].slider.is-secondary-2::-ms-fill-lower {
    background: #131313;
}

input[type=range].slider.is-secondary-2.has-output + output,
input[type=range].slider.is-secondary-2 .has-output-tooltip + output {
    background-color: #131313;
    color: #fff;
}

input[type=range].slider.is-secondary-3::-moz-range-track {
    background: #232323;
}

input[type=range].slider.is-secondary-3::-webkit-slider-runnable-track {
    background: #232323;
}

input[type=range].slider.is-secondary-3::-ms-track {
    background: #232323 !important;
}

input[type=range].slider.is-secondary-3::-ms-fill-lower {
    background: #232323;
}

input[type=range].slider.is-secondary-3.has-output + output,
input[type=range].slider.is-secondary-3 .has-output-tooltip + output {
    background-color: #232323;
    color: #fff;
}

input[type=range].slider.is-secondary-4::-moz-range-track {
    background: #363636;
}

input[type=range].slider.is-secondary-4::-webkit-slider-runnable-track {
    background: #363636;
}

input[type=range].slider.is-secondary-4::-ms-track {
    background: #363636 !important;
}

input[type=range].slider.is-secondary-4::-ms-fill-lower {
    background: #363636;
}

input[type=range].slider.is-secondary-4.has-output + output,
input[type=range].slider.is-secondary-4 .has-output-tooltip + output {
    background-color: #363636;
    color: #fff;
}

input[type=range].slider.is-secondary-5::-moz-range-track {
    background: #5c5c5c;
}

input[type=range].slider.is-secondary-5::-webkit-slider-runnable-track {
    background: #5c5c5c;
}

input[type=range].slider.is-secondary-5::-ms-track {
    background: #5c5c5c !important;
}

input[type=range].slider.is-secondary-5::-ms-fill-lower {
    background: #5c5c5c;
}

input[type=range].slider.is-secondary-5.has-output + output,
input[type=range].slider.is-secondary-5 .has-output-tooltip + output {
    background-color: #5c5c5c;
    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 + output,
input[type=range].slider.is-tertiary .has-output-tooltip + 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 + output,
input[type=range].slider.is-tertiary-2 .has-output-tooltip + output {
    background-color: #D8D8D8;
    color: rgba(0, 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 + output,
input[type=range].slider.is-tertiary-3 .has-output-tooltip + output {
    background-color: #D7D6D3;
    color: rgba(0, 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 + output,
input[type=range].slider.is-tertiary-4 .has-output-tooltip + 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 + output,
input[type=range].slider.is-tertiary-5 .has-output-tooltip + output {
    background-color: #EAEAEA;
    color: rgba(0, 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 + output,
input[type=range].slider.is-tertiary-6 .has-output-tooltip + 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 + output,
input[type=range].slider.is-tertiary-7 .has-output-tooltip + output {
    background-color: #969696;
    color: #fff;
}

input[type=range].slider.is-tertiary-8::-moz-range-track {
    background: #999999;
}

input[type=range].slider.is-tertiary-8::-webkit-slider-runnable-track {
    background: #999999;
}

input[type=range].slider.is-tertiary-8::-ms-track {
    background: #999999 !important;
}

input[type=range].slider.is-tertiary-8::-ms-fill-lower {
    background: #999999;
}

input[type=range].slider.is-tertiary-8.has-output + output,
input[type=range].slider.is-tertiary-8 .has-output-tooltip + output {
    background-color: #999999;
    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 + output,
input[type=range].slider.is-tertiary-9 .has-output-tooltip + output {
    background-color: #f5f5f5;
    color: rgba(0, 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.eot");
  src: url("fonts/flexslider-icon.eot?#iefix") format("embedded-opentype"), url("fonts/flexslider-icon.woff") format("woff"), url("fonts/flexslider-icon.ttf") format("truetype"), url("fonts/flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal;
}

.flex-container a:hover,
.flex-slider a:hover {
    outline: none;
}

.slides,
.slides &gt; li,
.flex-control-nav,
.flex-direction-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.flex-pauseplay span {
    text-transform: capitalize;
}

.flexslider {
    margin: 0;
    padding: 0;
}

.flexslider .slides &gt; 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 &gt; 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, 0.2);
    -o-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
    box-shadow: "" 0 1px 4px rgba(0, 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 {
    *height: 0;
}

.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, 0.8);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.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, 0.8);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.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: 0.7;
    left: 10px;
}

.flexslider:hover .flex-direction-nav .flex-prev:hover {
    opacity: 1;
}

.flexslider:hover .flex-direction-nav .flex-next {
    opacity: 0.7;
    right: 10px;
}

.flexslider:hover .flex-direction-nav .flex-next:hover {
    opacity: 1;
}

.flex-direction-nav .flex-disabled {
    opacity: 0 !important;
    filter: alpha(opacity=0);
    cursor: default;
    z-index: -1;
}

.flex-pauseplay a {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 5px;
    left: 10px;
    opacity: 0.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;
    *display: inline;
}

.flex-control-paging li a {
    width: 11px;
    height: 11px;
    display: block;
    background: #666;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    text-indent: -9999px;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.flex-control-paging li a:hover {
    background: #333;
    background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging li a.flex-active {
    background: #000;
    background: rgba(0, 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;
    font-weight: 400;
    src: url("../fonts/fa-regular-400.eot");
    src: url("../fonts/fa-regular-400.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-900.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;
  font-weight: normal;
  src: url("../fonts/fa-brands-400.eot");
  src: url("../fonts/fa-brands-400.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,
.fas,
.far,
.fal,
.fab {
    -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: 0.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 &gt; li {
    position: relative;
}

.fa-li {
    left: -2em;
    position: absolute;
    text-align: center;
    width: 2em;
    line-height: inherit;
}

.fa-border {
    border: solid 0.08em #eee;
    border-radius: .1em;
    padding: .2em .25em .15em;
}

.fa-pull-left {
    float: left;
}

.fa-pull-right {
    float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
    margin-right: .3em;
}

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.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(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    transform: scale(1, -1);
}

.fa-flip-horizontal.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(-1, -1);
    transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    -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;
}

@charset "UTF-8";

@font-face {
    font-family: "Ionicons";
  src: url("../fonts/ionicons.eot?v=3.0.0-alpha.3");
  src: url("../fonts/ionicons.eot?v=3.0.0-alpha.3#iefix") format("embedded-opentype"), url("../fonts/ionicons.woff2?v=3.0.0-alpha.3") format("woff2"), url("../fonts/ionicons.woff?v=3.0.0-alpha.3") format("woff"), url("../fonts/ionicons.ttf?v=3.0.0-alpha.3") format("truetype"), url("../fonts/ionicons.svg?v=3.0.0-alpha.3#Ionicons") format("svg");
  font-weight: normal;
  font-style: normal;
}

.ion, .ionicons, .ion-ios-add:before, .ion-ios-add-circle:before, .ion-ios-add-circle-outline:before, .ion-ios-add-outline:before, .ion-ios-alarm:before, .ion-ios-alarm-outline:before, .ion-ios-albums:before, .ion-ios-albums-outline:before, .ion-ios-alert:before, .ion-ios-alert-outline:before, .ion-ios-american-football:before, .ion-ios-american-football-outline:before, .ion-ios-analytics:before, .ion-ios-analytics-outline:before, .ion-ios-aperture:before, .ion-ios-aperture-outline:before, .ion-ios-apps:before, .ion-ios-apps-outline:before, .ion-ios-appstore:before, .ion-ios-appstore-outline:before, .ion-ios-archive:before, .ion-ios-archive-outline:before, .ion-ios-arrow-back:before, .ion-ios-arrow-back-outline:before, .ion-ios-arrow-down:before, .ion-ios-arrow-down-outline:before, .ion-ios-arrow-dropdown:before, .ion-ios-arrow-dropdown-circle:before, .ion-ios-arrow-dropdown-circle-outline:before, .ion-ios-arrow-dropdown-outline:before, .ion-ios-arrow-dropleft:before, .ion-ios-arrow-dropleft-circle:before, .ion-ios-arrow-dropleft-circle-outline:before, .ion-ios-arrow-dropleft-outline:before, .ion-ios-arrow-dropright:before, .ion-ios-arrow-dropright-circle:before, .ion-ios-arrow-dropright-circle-outline:before, .ion-ios-arrow-dropright-outline:before, .ion-ios-arrow-dropup:before, .ion-ios-arrow-dropup-circle:before, .ion-ios-arrow-dropup-circle-outline:before, .ion-ios-arrow-dropup-outline:before, .ion-ios-arrow-forward:before, .ion-ios-arrow-forward-outline:before, .ion-ios-arrow-round-back:before, .ion-ios-arrow-round-back-outline:before, .ion-ios-arrow-round-down:before, .ion-ios-arrow-round-down-outline:before, .ion-ios-arrow-round-forward:before, .ion-ios-arrow-round-forward-outline:before, .ion-ios-arrow-round-up:before, .ion-ios-arrow-round-up-outline:before, .ion-ios-arrow-up:before, .ion-ios-arrow-up-outline:before, .ion-ios-at:before, .ion-ios-at-outline:before, .ion-ios-attach:before, .ion-ios-attach-outline:before, .ion-ios-backspace:before, .ion-ios-backspace-outline:before, .ion-ios-barcode:before, .ion-ios-barcode-outline:before, .ion-ios-baseball:before, .ion-ios-baseball-outline:before, .ion-ios-basket:before, .ion-ios-basket-outline:before, .ion-ios-basketball:before, .ion-ios-basketball-outline:before, .ion-ios-battery-charging:before, .ion-ios-battery-charging-outline:before, .ion-ios-battery-dead:before, .ion-ios-battery-dead-outline:before, .ion-ios-battery-full:before, .ion-ios-battery-full-outline:before, .ion-ios-beaker:before, .ion-ios-beaker-outline:before, .ion-ios-beer:before, .ion-ios-beer-outline:before, .ion-ios-bicycle:before, .ion-ios-bicycle-outline:before, .ion-ios-bluetooth:before, .ion-ios-bluetooth-outline:before, .ion-ios-boat:before, .ion-ios-boat-outline:before, .ion-ios-body:before, .ion-ios-body-outline:before, .ion-ios-bonfire:before, .ion-ios-bonfire-outline:before, .ion-ios-book:before, .ion-ios-book-outline:before, .ion-ios-bookmark:before, .ion-ios-bookmark-outline:before, .ion-ios-bookmarks:before, .ion-ios-bookmarks-outline:before, .ion-ios-bowtie:before, .ion-ios-bowtie-outline:before, .ion-ios-briefcase:before, .ion-ios-briefcase-outline:before, .ion-ios-browsers:before, .ion-ios-browsers-outline:before, .ion-ios-brush:before, .ion-ios-brush-outline:before, .ion-ios-bug:before, .ion-ios-bug-outline:before, .ion-ios-build:before, .ion-ios-build-outline:before, .ion-ios-bulb:before, .ion-ios-bulb-outline:before, .ion-ios-bus:before, .ion-ios-bus-outline:before, .ion-ios-cafe:before, .ion-ios-cafe-outline:before, .ion-ios-calculator:before, .ion-ios-calculator-outline:before, .ion-ios-calendar:before, .ion-ios-calendar-outline:before, .ion-ios-call:before, .ion-ios-call-outline:before, .ion-ios-camera:before, .ion-ios-camera-outline:before, .ion-ios-car:before, .ion-ios-car-outline:before, .ion-ios-card:before, .ion-ios-card-outline:before, .ion-ios-cart:before, .ion-ios-cart-outline:before, .ion-ios-cash:before, .ion-ios-cash-outline:before, .ion-ios-chatboxes:before, .ion-ios-chatboxes-outline:before, .ion-ios-chatbubbles:before, .ion-ios-chatbubbles-outline:before, .ion-ios-checkbox:before, .ion-ios-checkbox-outline:before, .ion-ios-checkmark:before, .ion-ios-checkmark-circle:before, .ion-ios-checkmark-circle-outline:before, .ion-ios-checkmark-outline:before, .ion-ios-clipboard:before, .ion-ios-clipboard-outline:before, .ion-ios-clock:before, .ion-ios-clock-outline:before, .ion-ios-close:before, .ion-ios-close-circle:before, .ion-ios-close-circle-outline:before, .ion-ios-close-outline:before, .ion-ios-closed-captioning:before, .ion-ios-closed-captioning-outline:before, .ion-ios-cloud:before, .ion-ios-cloud-circle:before, .ion-ios-cloud-circle-outline:before, .ion-ios-cloud-done:before, .ion-ios-cloud-done-outline:before, .ion-ios-cloud-download:before, .ion-ios-cloud-download-outline:before, .ion-ios-cloud-outline:before, .ion-ios-cloud-upload:before, .ion-ios-cloud-upload-outline:before, .ion-ios-cloudy:before, .ion-ios-cloudy-night:before, .ion-ios-cloudy-night-outline:before, .ion-ios-cloudy-outline:before, .ion-ios-code:before, .ion-ios-code-download:before, .ion-ios-code-download-outline:before, .ion-ios-code-outline:before, .ion-ios-code-working:before, .ion-ios-code-working-outline:before, .ion-ios-cog:before, .ion-ios-cog-outline:before, .ion-ios-color-fill:before, .ion-ios-color-fill-outline:before, .ion-ios-color-filter:before, .ion-ios-color-filter-outline:before, .ion-ios-color-palette:before, .ion-ios-color-palette-outline:before, .ion-ios-color-wand:before, .ion-ios-color-wand-outline:before, .ion-ios-compass:before, .ion-ios-compass-outline:before, .ion-ios-construct:before, .ion-ios-construct-outline:before, .ion-ios-contact:before, .ion-ios-contact-outline:before, .ion-ios-contacts:before, .ion-ios-contacts-outline:before, .ion-ios-contract:before, .ion-ios-contract-outline:before, .ion-ios-contrast:before, .ion-ios-contrast-outline:before, .ion-ios-copy:before, .ion-ios-copy-outline:before, .ion-ios-create:before, .ion-ios-create-outline:before, .ion-ios-crop:before, .ion-ios-crop-outline:before, .ion-ios-cube:before, .ion-ios-cube-outline:before, .ion-ios-cut:before, .ion-ios-cut-outline:before, .ion-ios-desktop:before, .ion-ios-desktop-outline:before, .ion-ios-disc:before, .ion-ios-disc-outline:before, .ion-ios-document:before, .ion-ios-document-outline:before, .ion-ios-done-all:before, .ion-ios-done-all-outline:before, .ion-ios-download:before, .ion-ios-download-outline:before, .ion-ios-easel:before, .ion-ios-easel-outline:before, .ion-ios-egg:before, .ion-ios-egg-outline:before, .ion-ios-exit:before, .ion-ios-exit-outline:before, .ion-ios-expand:before, .ion-ios-expand-outline:before, .ion-ios-eye:before, .ion-ios-eye-off:before, .ion-ios-eye-off-outline:before, .ion-ios-eye-outline:before, .ion-ios-fastforward:before, .ion-ios-fastforward-outline:before, .ion-ios-female:before, .ion-ios-female-outline:before, .ion-ios-filing:before, .ion-ios-filing-outline:before, .ion-ios-film:before, .ion-ios-film-outline:before, .ion-ios-finger-print:before, .ion-ios-finger-print-outline:before, .ion-ios-flag:before, .ion-ios-flag-outline:before, .ion-ios-flame:before, .ion-ios-flame-outline:before, .ion-ios-flash:before, .ion-ios-flash-outline:before, .ion-ios-flask:before, .ion-ios-flask-outline:before, .ion-ios-flower:before, .ion-ios-flower-outline:before, .ion-ios-folder:before, .ion-ios-folder-open:before, .ion-ios-folder-open-outline:before, .ion-ios-folder-outline:before, .ion-ios-football:before, .ion-ios-football-outline:before, .ion-ios-funnel:before, .ion-ios-funnel-outline:before, .ion-ios-game-controller-a:before, .ion-ios-game-controller-a-outline:before, .ion-ios-game-controller-b:before, .ion-ios-game-controller-b-outline:before, .ion-ios-git-branch:before, .ion-ios-git-branch-outline:before, .ion-ios-git-commit:before, .ion-ios-git-commit-outline:before, .ion-ios-git-compare:before, .ion-ios-git-compare-outline:before, .ion-ios-git-merge:before, .ion-ios-git-merge-outline:before, .ion-ios-git-network:before, .ion-ios-git-network-outline:before, .ion-ios-git-pull-request:before, .ion-ios-git-pull-request-outline:before, .ion-ios-glasses:before, .ion-ios-glasses-outline:before, .ion-ios-globe:before, .ion-ios-globe-outline:before, .ion-ios-grid:before, .ion-ios-grid-outline:before, .ion-ios-hammer:before, .ion-ios-hammer-outline:before, .ion-ios-hand:before, .ion-ios-hand-outline:before, .ion-ios-happy:before, .ion-ios-happy-outline:before, .ion-ios-headset:before, .ion-ios-headset-outline:before, .ion-ios-heart:before, .ion-ios-heart-outline:before, .ion-ios-help:before, .ion-ios-help-buoy:before, .ion-ios-help-buoy-outline:before, .ion-ios-help-circle:before, .ion-ios-help-circle-outline:before, .ion-ios-help-outline:before, .ion-ios-home:before, .ion-ios-home-outline:before, .ion-ios-ice-cream:before, .ion-ios-ice-cream-outline:before, .ion-ios-image:before, .ion-ios-image-outline:before, .ion-ios-images:before, .ion-ios-images-outline:before, .ion-ios-infinite:before, .ion-ios-infinite-outline:before, .ion-ios-information:before, .ion-ios-information-circle:before, .ion-ios-information-circle-outline:before, .ion-ios-information-outline:before, .ion-ios-ionic:before, .ion-ios-ionic-outline:before, .ion-ios-ionitron:before, .ion-ios-ionitron-outline:before, .ion-ios-jet:before, .ion-ios-jet-outline:before, .ion-ios-key:before, .ion-ios-key-outline:before, .ion-ios-keypad:before, .ion-ios-keypad-outline:before, .ion-ios-laptop:before, .ion-ios-laptop-outline:before, .ion-ios-leaf:before, .ion-ios-leaf-outline:before, .ion-ios-link:before, .ion-ios-link-outline:before, .ion-ios-list:before, .ion-ios-list-box:before, .ion-ios-list-box-outline:before, .ion-ios-list-outline:before, .ion-ios-locate:before, .ion-ios-locate-outline:before, .ion-ios-lock:before, .ion-ios-lock-outline:before, .ion-ios-log-in:before, .ion-ios-log-in-outline:before, .ion-ios-log-out:before, .ion-ios-log-out-outline:before, .ion-ios-magnet:before, .ion-ios-magnet-outline:before, .ion-ios-mail:before, .ion-ios-mail-open:before, .ion-ios-mail-open-outline:before, .ion-ios-mail-outline:before, .ion-ios-male:before, .ion-ios-male-outline:before, .ion-ios-man:before, .ion-ios-man-outline:before, .ion-ios-map:before, .ion-ios-map-outline:before, .ion-ios-medal:before, .ion-ios-medal-outline:before, .ion-ios-medical:before, .ion-ios-medical-outline:before, .ion-ios-medkit:before, .ion-ios-medkit-outline:before, .ion-ios-megaphone:before, .ion-ios-megaphone-outline:before, .ion-ios-menu:before, .ion-ios-menu-outline:before, .ion-ios-mic:before, .ion-ios-mic-off:before, .ion-ios-mic-off-outline:before, .ion-ios-mic-outline:before, .ion-ios-microphone:before, .ion-ios-microphone-outline:before, .ion-ios-moon:before, .ion-ios-moon-outline:before, .ion-ios-more:before, .ion-ios-more-outline:before, .ion-ios-move:before, .ion-ios-move-outline:before, .ion-ios-musical-note:before, .ion-ios-musical-note-outline:before, .ion-ios-musical-notes:before, .ion-ios-musical-notes-outline:before, .ion-ios-navigate:before, .ion-ios-navigate-outline:before, .ion-ios-no-smoking:before, .ion-ios-no-smoking-outline:before, .ion-ios-notifications:before, .ion-ios-notifications-off:before, .ion-ios-notifications-off-outline:before, .ion-ios-notifications-outline:before, .ion-ios-nuclear:before, .ion-ios-nuclear-outline:before, .ion-ios-nutrition:before, .ion-ios-nutrition-outline:before, .ion-ios-open:before, .ion-ios-open-outline:before, .ion-ios-options:before, .ion-ios-options-outline:before, .ion-ios-outlet:before, .ion-ios-outlet-outline:before, .ion-ios-paper:before, .ion-ios-paper-outline:before, .ion-ios-paper-plane:before, .ion-ios-paper-plane-outline:before, .ion-ios-partly-sunny:before, .ion-ios-partly-sunny-outline:before, .ion-ios-pause:before, .ion-ios-pause-outline:before, .ion-ios-paw:before, .ion-ios-paw-outline:before, .ion-ios-people:before, .ion-ios-people-outline:before, .ion-ios-person:before, .ion-ios-person-add:before, .ion-ios-person-add-outline:before, .ion-ios-person-outline:before, .ion-ios-phone-landscape:before, .ion-ios-phone-landscape-outline:before, .ion-ios-phone-portrait:before, .ion-ios-phone-portrait-outline:before, .ion-ios-photos:before, .ion-ios-photos-outline:before, .ion-ios-pie:before, .ion-ios-pie-outline:before, .ion-ios-pin:before, .ion-ios-pin-outline:before, .ion-ios-pint:before, .ion-ios-pint-outline:before, .ion-ios-pizza:before, .ion-ios-pizza-outline:before, .ion-ios-plane:before, .ion-ios-plane-outline:before, .ion-ios-planet:before, .ion-ios-planet-outline:before, .ion-ios-play:before, .ion-ios-play-outline:before, .ion-ios-podium:before, .ion-ios-podium-outline:before, .ion-ios-power:before, .ion-ios-power-outline:before, .ion-ios-pricetag:before, .ion-ios-pricetag-outline:before, .ion-ios-pricetags:before, .ion-ios-pricetags-outline:before, .ion-ios-print:before, .ion-ios-print-outline:before, .ion-ios-pulse:before, .ion-ios-pulse-outline:before, .ion-ios-qr-scanner:before, .ion-ios-qr-scanner-outline:before, .ion-ios-quote:before, .ion-ios-quote-outline:before, .ion-ios-radio:before, .ion-ios-radio-button-off:before, .ion-ios-radio-button-off-outline:before, .ion-ios-radio-button-on:before, .ion-ios-radio-button-on-outline:before, .ion-ios-radio-outline:before, .ion-ios-rainy:before, .ion-ios-rainy-outline:before, .ion-ios-recording:before, .ion-ios-recording-outline:before, .ion-ios-redo:before, .ion-ios-redo-outline:before, .ion-ios-refresh:before, .ion-ios-refresh-circle:before, .ion-ios-refresh-circle-outline:before, .ion-ios-refresh-outline:before, .ion-ios-remove:before, .ion-ios-remove-circle:before, .ion-ios-remove-circle-outline:before, .ion-ios-remove-outline:before, .ion-ios-reorder:before, .ion-ios-reorder-outline:before, .ion-ios-repeat:before, .ion-ios-repeat-outline:before, .ion-ios-resize:before, .ion-ios-resize-outline:before, .ion-ios-restaurant:before, .ion-ios-restaurant-outline:before, .ion-ios-return-left:before, .ion-ios-return-left-outline:before, .ion-ios-return-right:before, .ion-ios-return-right-outline:before, .ion-ios-reverse-camera:before, .ion-ios-reverse-camera-outline:before, .ion-ios-rewind:before, .ion-ios-rewind-outline:before, .ion-ios-ribbon:before, .ion-ios-ribbon-outline:before, .ion-ios-rose:before, .ion-ios-rose-outline:before, .ion-ios-sad:before, .ion-ios-sad-outline:before, .ion-ios-school:before, .ion-ios-school-outline:before, .ion-ios-search:before, .ion-ios-search-outline:before, .ion-ios-send:before, .ion-ios-send-outline:before, .ion-ios-settings:before, .ion-ios-settings-outline:before, .ion-ios-share:before, .ion-ios-share-alt:before, .ion-ios-share-alt-outline:before, .ion-ios-share-outline:before, .ion-ios-shirt:before, .ion-ios-shirt-outline:before, .ion-ios-shuffle:before, .ion-ios-shuffle-outline:before, .ion-ios-skip-backward:before, .ion-ios-skip-backward-outline:before, .ion-ios-skip-forward:before, .ion-ios-skip-forward-outline:before, .ion-ios-snow:before, .ion-ios-snow-outline:before, .ion-ios-speedometer:before, .ion-ios-speedometer-outline:before, .ion-ios-square:before, .ion-ios-square-outline:before, .ion-ios-star:before, .ion-ios-star-half:before, .ion-ios-star-half-outline:before, .ion-ios-star-outline:before, .ion-ios-stats:before, .ion-ios-stats-outline:before, .ion-ios-stopwatch:before, .ion-ios-stopwatch-outline:before, .ion-ios-subway:before, .ion-ios-subway-outline:before, .ion-ios-sunny:before, .ion-ios-sunny-outline:before, .ion-ios-swap:before, .ion-ios-swap-outline:before, .ion-ios-switch:before, .ion-ios-switch-outline:before, .ion-ios-sync:before, .ion-ios-sync-outline:before, .ion-ios-tablet-landscape:before, .ion-ios-tablet-landscape-outline:before, .ion-ios-tablet-portrait:before, .ion-ios-tablet-portrait-outline:before, .ion-ios-tennisball:before, .ion-ios-tennisball-outline:before, .ion-ios-text:before, .ion-ios-text-outline:before, .ion-ios-thermometer:before, .ion-ios-thermometer-outline:before, .ion-ios-thumbs-down:before, .ion-ios-thumbs-down-outline:before, .ion-ios-thumbs-up:before, .ion-ios-thumbs-up-outline:before, .ion-ios-thunderstorm:before, .ion-ios-thunderstorm-outline:before, .ion-ios-time:before, .ion-ios-time-outline:before, .ion-ios-timer:before, .ion-ios-timer-outline:before, .ion-ios-train:before, .ion-ios-train-outline:before, .ion-ios-transgender:before, .ion-ios-transgender-outline:before, .ion-ios-trash:before, .ion-ios-trash-outline:before, .ion-ios-trending-down:before, .ion-ios-trending-down-outline:before, .ion-ios-trending-up:before, .ion-ios-trending-up-outline:before, .ion-ios-trophy:before, .ion-ios-trophy-outline:before, .ion-ios-umbrella:before, .ion-ios-umbrella-outline:before, .ion-ios-undo:before, .ion-ios-undo-outline:before, .ion-ios-unlock:before, .ion-ios-unlock-outline:before, .ion-ios-videocam:before, .ion-ios-videocam-outline:before, .ion-ios-volume-down:before, .ion-ios-volume-down-outline:before, .ion-ios-volume-mute:before, .ion-ios-volume-mute-outline:before, .ion-ios-volume-off:before, .ion-ios-volume-off-outline:before, .ion-ios-volume-up:before, .ion-ios-volume-up-outline:before, .ion-ios-walk:before, .ion-ios-walk-outline:before, .ion-ios-warning:before, .ion-ios-warning-outline:before, .ion-ios-watch:before, .ion-ios-watch-outline:before, .ion-ios-water:before, .ion-ios-water-outline:before, .ion-ios-wifi:before, .ion-ios-wifi-outline:before, .ion-ios-wine:before, .ion-ios-wine-outline:before, .ion-ios-woman:before, .ion-ios-woman-outline: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:before, .ion-md-add-circle: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:before, .ion-md-arrow-dropdown-circle:before, .ion-md-arrow-dropleft:before, .ion-md-arrow-dropleft-circle:before, .ion-md-arrow-dropright:before, .ion-md-arrow-dropright-circle:before, .ion-md-arrow-dropup:before, .ion-md-arrow-dropup-circle: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:before, .ion-md-checkbox-outline:before, .ion-md-checkmark:before, .ion-md-checkmark-circle:before, .ion-md-checkmark-circle-outline:before, .ion-md-clipboard:before, .ion-md-clock:before, .ion-md-close:before, .ion-md-close-circle:before, .ion-md-closed-captioning:before, .ion-md-cloud: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-cloudy:before, .ion-md-cloudy-night:before, .ion-md-code:before, .ion-md-code-download:before, .ion-md-code-working: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:before, .ion-md-eye-off: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:before, .ion-md-folder-open: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:before, .ion-md-heart-outline:before, .ion-md-help:before, .ion-md-help-buoy:before, .ion-md-help-circle: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:before, .ion-md-information-circle: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:before, .ion-md-list-box: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:before, .ion-md-mail-open: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:before, .ion-md-mic-off: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:before, .ion-md-notifications-off:before, .ion-md-notifications-outline:before, .ion-md-nuclear:before, .ion-md-nutrition:before, .ion-md-open:before, .ion-md-options:before, .ion-md-outlet:before, .ion-md-paper:before, .ion-md-paper-plane:before, .ion-md-partly-sunny:before, .ion-md-pause:before, .ion-md-paw:before, .ion-md-people:before, .ion-md-person:before, .ion-md-person-add: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:before, .ion-md-radio-button-off:before, .ion-md-radio-button-on:before, .ion-md-rainy:before, .ion-md-recording:before, .ion-md-redo:before, .ion-md-refresh:before, .ion-md-refresh-circle:before, .ion-md-remove:before, .ion-md-remove-circle: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:before, .ion-md-share-alt: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:before, .ion-md-square-outline:before, .ion-md-star:before, .ion-md-star-half:before, .ion-md-star-outline: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 {
    display: inline-block;
    font-family: "Ionicons";
    speak: none;
    font-style: normal;
    font-weight: 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: white;
        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 black;
        background: white;
    }

    .br-theme-bars-1to10 .br-widget .br-current-rating {
        color: black;
    }
}

.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;
    font-weight: 600;
    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: white;
        -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 black;
        background: white;
    }

    .br-theme-bars-horizontal .br-widget .br-current-rating {
        color: black;
    }
}

.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;
    font-weight: 600;
    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: white;
        -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 black;
        background: white;
    }

    .br-theme-bars-movie .br-widget .br-current-rating {
        color: black;
    }
}

.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: white;
}

.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: white;
        -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 black;
        border-left: none;
        background: white;
        color: black;
    }

    .br-theme-bars-pill .br-widget a:first-child {
        border-left: 1px solid black;
    }
}

.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;
    font-weight: 400;
    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: white;
}

.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: white;
        -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 black;
        background: white;
    }

    .br-theme-bars-reversed .br-widget .br-current-rating {
        color: black;
    }
}

.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: white;
    margin: 2px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    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;
    font-weight: 600;
    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 black;
        color: black;
    }
}

.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: black;
    }

    .br-theme-css-stars .br-widget a.br-active:after,
  .br-theme-css-stars .br-widget a.br-selected:after {
        content: "\2605";
        color: black;
    }
}

.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: black;
    }

    .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: black;
    }

    .br-theme-fontawesome-stars-o .br-widget a.br-fractional:after {
        content: '\f123';
        color: black;
    }
}

.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: black;
    }

    .br-theme-fontawesome-stars .br-widget a.br-active:after,
  .br-theme-fontawesome-stars .br-widget a.br-selected:after {
        content: '\f005';
        color: black;
    }
}

.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__head, .beefup__body {
    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 &gt; .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.png) repeat;
    opacity: 0.4;
    min-height: 100%;
    min-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -50;
    display: block;
}

.vidmask-block-back {
    background: url(videooverlay1.png) 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: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !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-inline-holder .mfp-content,
.mfp-ajax-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-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -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: -0.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-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    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: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-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: 0.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:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    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: 0.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, 0.6);
    box-shadow: 0 0 8px rgba(0, 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, 0.6);
    box-shadow: 0 0 8px rgba(0, 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, 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, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.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_mixin, #noty_layout__top, #noty_layout__topLeft, #noty_layout__topCenter, #noty_layout__topRight, #noty_layout__bottom, #noty_layout__bottomLeft, #noty_layout__bottomCenter, #noty_layout__bottomRight, #noty_layout__center, #noty_layout__centerLeft, #noty_layout__centerRight {
    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: 0.2;
    filter: alpha(opacity=10);
}

.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 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.noty_effects_close {
    -webkit-animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.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: bold;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    background-color: rgba(0, 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, 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(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -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-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    background: none;
    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: 1000ms;
    animation-duration: 1000ms;
    -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 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([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.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform 100ms ease;
    transition: -webkit-transform 100ms ease;
    transition: transform 100ms ease;
    transition: transform 100ms ease, -webkit-transform 100ms 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-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    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 400ms ease;
    transition: opacity 400ms 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: 0.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;
    *display: inline;
}

.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 200ms ease;
    transition: opacity 200ms 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: black;
    background: none;
    text-shadow: 0 1px white;
    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;
}

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

pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[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) &gt; code[class*="language-"],
pre[class*="language-"] {
    background: #f5f2f0;
}

:not(pre) &gt; code[class*="language-"] {
    padding: .1em;
    border-radius: .3em;
    white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: slategray;
}

.token.punctuation {
    color: #999;
}

.namespace {
    opacity: .7;
}

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

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

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
    color: #9a6e3a;
    background: rgba(255, 255, 255, 0.5);
}

.token.atrule,
.token.attr-value,
.token.keyword {
    color: #07a;
}

.token.function,
.token.class-name {
    color: #DD4A68;
}

.token.regex,
.token.important,
.token.variable {
    color: #e90;
}

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

.token.italic {
    font-style: italic;
}

.token.entity {
    cursor: help;
}

div.code-toolbar {
    position: relative;
}

div.code-toolbar &gt; .toolbar {
    position: absolute;
    top: .3em;
    right: .2em;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

div.code-toolbar:hover &gt; .toolbar {
    opacity: 1;
}

div.code-toolbar &gt; .toolbar .toolbar-item {
    display: inline-block;
}

div.code-toolbar &gt; .toolbar a {
    cursor: pointer;
}

div.code-toolbar &gt; .toolbar button {
    background: none;
    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 &gt; .toolbar a,
div.code-toolbar &gt; .toolbar button,
div.code-toolbar &gt; .toolbar span {
    color: #bbb;
    font-size: .8em;
    padding: 0 .5em;
    background: #f5f2f0;
    background: rgba(224, 224, 224, 0.2);
    -webkit-box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
    border-radius: .5em;
}

div.code-toolbar &gt; .toolbar a:hover,
div.code-toolbar &gt; .toolbar a:focus,
div.code-toolbar &gt; .toolbar button:hover,
div.code-toolbar &gt; .toolbar button:focus,
div.code-toolbar &gt; .toolbar span:hover,
div.code-toolbar &gt; .toolbar span:focus {
    color: inherit;
    text-decoration: none;
}

pre[class*="language-"].line-numbers {
    position: relative;
    padding-left: 3.8em;
    counter-reset: linenumber;
}

pre[class*="language-"].line-numbers &gt; 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 &gt; span {
    pointer-events: none;
    display: block;
    counter-increment: linenumber;
}

.line-numbers-rows &gt; span:before {
    content: counter(linenumber);
    color: #999;
    display: block;
    padding-right: 0.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:before,
.prism-previewer:after {
    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:before,
.prism-previewer:after {
    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, 0.5) inset, 0 0 10px rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5) inset, 0 0 10px rgba(0, 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: 0.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, 0.5) inset, 0 0 10px rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5) inset, 0 0 10px rgba(0, 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: white;
}

.prism-previewer-easing path {
    fill: none;
    stroke: white;
    stroke-linecap: round;
    stroke-width: 4;
}

.prism-previewer-easing line {
    stroke: white;
    stroke-opacity: 0.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: 0.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-Icons.eot?v=2.4.0");
    src: url("../fonts/Simple-Line-Icons.eot?v=2.4.0#iefix") format("embedded-opentype"), url("../fonts/Simple-Line-Icons.woff2?v=2.4.0") format("woff2"), url("../fonts/Simple-Line-Icons.ttf?v=2.4.0") format("truetype"), url("../fonts/Simple-Line-Icons.woff?v=2.4.0") format("woff"), url("../fonts/Simple-Line-Icons.svg?v=2.4.0#simple-line-icons") format("svg");
    font-weight: normal;
    font-style: normal;
}

.icon-user,
.icon-people,
.icon-user-female,
.icon-user-follow,
.icon-user-following,
.icon-user-unfollow,
.icon-login,
.icon-logout,
.icon-emotsmile,
.icon-phone,
.icon-call-end,
.icon-call-in,
.icon-call-out,
.icon-map,
.icon-location-pin,
.icon-direction,
.icon-directions,
.icon-compass,
.icon-layers,
.icon-menu,
.icon-list,
.icon-options-vertical,
.icon-options,
.icon-arrow-down,
.icon-arrow-left,
.icon-arrow-right,
.icon-arrow-up,
.icon-arrow-up-circle,
.icon-arrow-left-circle,
.icon-arrow-right-circle,
.icon-arrow-down-circle,
.icon-check,
.icon-clock,
.icon-plus,
.icon-minus,
.icon-close,
.icon-event,
.icon-exclamation,
.icon-organization,
.icon-trophy,
.icon-screen-smartphone,
.icon-screen-desktop,
.icon-plane,
.icon-notebook,
.icon-mustache,
.icon-mouse,
.icon-magnet,
.icon-energy,
.icon-disc,
.icon-cursor,
.icon-cursor-move,
.icon-crop,
.icon-chemistry,
.icon-speedometer,
.icon-shield,
.icon-screen-tablet,
.icon-magic-wand,
.icon-hourglass,
.icon-graduation,
.icon-ghost,
.icon-game-controller,
.icon-fire,
.icon-eyeglass,
.icon-envelope-open,
.icon-envelope-letter,
.icon-bell,
.icon-badge,
.icon-anchor,
.icon-wallet,
.icon-vector,
.icon-speech,
.icon-puzzle,
.icon-printer,
.icon-present,
.icon-playlist,
.icon-pin,
.icon-picture,
.icon-handbag,
.icon-globe-alt,
.icon-globe,
.icon-folder-alt,
.icon-folder,
.icon-film,
.icon-feed,
.icon-drop,
.icon-drawer,
.icon-docs,
.icon-doc,
.icon-diamond,
.icon-cup,
.icon-calculator,
.icon-bubbles,
.icon-briefcase,
.icon-book-open,
.icon-basket-loaded,
.icon-basket,
.icon-bag,
.icon-action-undo,
.icon-action-redo,
.icon-wrench,
.icon-umbrella,
.icon-trash,
.icon-tag,
.icon-support,
.icon-frame,
.icon-size-fullscreen,
.icon-size-actual,
.icon-shuffle,
.icon-share-alt,
.icon-share,
.icon-rocket,
.icon-question,
.icon-pie-chart,
.icon-pencil,
.icon-note,
.icon-loop,
.icon-home,
.icon-grid,
.icon-graph,
.icon-microphone,
.icon-music-tone-alt,
.icon-music-tone,
.icon-earphones-alt,
.icon-earphones,
.icon-equalizer,
.icon-like,
.icon-dislike,
.icon-control-start,
.icon-control-rewind,
.icon-control-play,
.icon-control-pause,
.icon-control-forward,
.icon-control-end,
.icon-volume-1,
.icon-volume-2,
.icon-volume-off,
.icon-calendar,
.icon-bulb,
.icon-chart,
.icon-ban,
.icon-bubble,
.icon-camrecorder,
.icon-camera,
.icon-cloud-download,
.icon-cloud-upload,
.icon-envelope,
.icon-eye,
.icon-flag,
.icon-heart,
.icon-info,
.icon-key,
.icon-link,
.icon-lock,
.icon-lock-open,
.icon-magnifier,
.icon-magnifier-add,
.icon-magnifier-remove,
.icon-paper-clip,
.icon-paper-plane,
.icon-power,
.icon-refresh,
.icon-reload,
.icon-settings,
.icon-star,
.icon-symbol-female,
.icon-symbol-male,
.icon-target,
.icon-credit-card,
.icon-paypal,
.icon-social-tumblr,
.icon-social-twitter,
.icon-social-facebook,
.icon-social-instagram,
.icon-social-linkedin,
.icon-social-pinterest,
.icon-social-github,
.icon-social-google,
.icon-social-reddit,
.icon-social-skype,
.icon-social-dribbble,
.icon-social-behance,
.icon-social-foursqare,
.icon-social-soundcloud,
.icon-social-spotify,
.icon-social-stumbleupon,
.icon-social-youtube,
.icon-social-dropbox,
.icon-social-vkontakte,
.icon-social-steam {
    font-family: 'simple-line-icons';
    speak: none;
    font-style: normal;
    font-weight: 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;
}

.tp-caption.medium_grey, .medium_grey {
    background-color: #888;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Arial;
    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, 0.5);
    white-space: nowrap;
}

.tp-caption.small_text, .small_text {
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Arial;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
    position: absolute;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.tp-caption.medium_text, .medium_text {
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Arial;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
    position: absolute;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.tp-caption.large_text, .large_text {
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Arial;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    margin: 0;
    position: absolute;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.tp-caption.very_large_text, .very_large_text {
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Arial;
    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, 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-family: Arial;
    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-family: Arial;
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
    margin: 0;
    padding: 1px 4px 0;
    position: absolute;
    text-shadow: none;
    white-space: nowrap;
}

.tp-caption.modern_medium_fat, .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;
}

.tp-caption.modern_medium_fat_white, .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;
}

.tp-caption.modern_medium_light, .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;
}

.tp-caption.modern_big_bluebg, .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;
}

.tp-caption.modern_big_redbg, .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;
}

.tp-caption.modern_small_text_dark, .modern_small_text_dark {
    border-style: none;
    border-width: 0;
    color: #555;
    font-family: Arial;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
    position: absolute;
    text-shadow: none;
    white-space: nowrap;
}

.tp-caption.boxshadow, .boxshadow {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.tp-caption.black, .black {
    color: #000;
    text-shadow: none;
}

.tp-caption.noshadow, .noshadow {
    text-shadow: none;
}

.tp-caption.thinheadline_dark, .thinheadline_dark {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.85);
    font-family: "Open Sans";
    font-size: 30px;
    font-weight: 300;
    line-height: 30px;
    position: absolute;
    text-shadow: none;
}

.tp-caption.thintext_dark, .thintext_dark {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.85);
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    position: absolute;
    text-shadow: none;
}

.tp-caption.largeblackbg, .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;
}

.tp-caption.largepinkbg, .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;
}

.tp-caption.largewhitebg, .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;
}

.tp-caption.largegreenbg, .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;
}

.tp-caption.excerpt, .excerpt {
    background-color: black;
    border-color: #fff;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Arial;
    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;
}

.tp-caption.large_bold_grey, .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;
}

.tp-caption.medium_thin_grey, .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;
}

.tp-caption.small_thin_grey, .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;
}

.tp-caption.lightgrey_divider, .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;
}

.tp-caption.large_bold_darkblue, .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;
}

.tp-caption.medium_bg_darkblue, .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;
}

.tp-caption.medium_bold_red, .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;
}

.tp-caption.medium_light_red, .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;
}

.tp-caption.medium_bg_red, .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;
}

.tp-caption.medium_bold_orange, .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;
}

.tp-caption.medium_bg_orange, .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;
}

.tp-caption.grassfloor, .grassfloor {
    background-color: #a0b397;
    border-color: #222;
    border-style: none;
    border-width: 0;
    height: 150px;
    text-decoration: none;
    width: 4000px;
}

.tp-caption.large_bold_white, .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;
}

.tp-caption.medium_light_white, .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;
}

.tp-caption.mediumlarge_light_white, .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;
}

.tp-caption.mediumlarge_light_white_center, .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;
}

.tp-caption.medium_bg_asbestos, .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;
}

.tp-caption.medium_light_black, .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;
}

.tp-caption.large_bold_black, .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;
}

.tp-caption.mediumlarge_light_darkblue, .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;
}

.tp-caption.small_light_white, .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;
}

.tp-caption.roundedimage, .roundedimage {
    border-color: #222;
    border-style: none;
    border-width: 0;
}

.tp-caption.large_bg_black, .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;
}

.tp-caption.mediumwhitebg, .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;
}

.tp-caption.maincaption, .maincaption {
    background-color: transparent;
    border-color: #000;
    border-style: none;
    border-width: 0;
    color: #212a40;
    font-family: roboto;
    font-size: 33px;
    font-weight: 500;
    line-height: 43px;
    text-decoration: none;
    text-shadow: none;
}

.tp-caption.miami_title_60px, .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;
}

.tp-caption.miami_subtitle, .miami_subtitle {
    background-color: transparent;
    border-color: #000;
    border-style: none;
    border-width: 0;
    color: rgba(255, 255, 255, 0.65);
    font-family: "Source Sans Pro";
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 24px;
    text-decoration: none;
    text-shadow: none;
}

.tp-caption.divideline30px, .divideline30px {
    background: #fff;
    background-color: #fff;
    border-color: #222;
    border-style: none;
    border-width: 0;
    height: 2px;
    min-width: 30px;
    text-decoration: none;
}

.tp-caption.Miami_nostyle, .Miami_nostyle {
    border-color: #222;
    border-style: none;
    border-width: 0;
}

.tp-caption.miami_content_light, .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;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 28px;
    text-decoration: none;
    text-shadow: none;
}

.tp-caption.miami_title_60px_dark, .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;
}

.tp-caption.miami_content_dark, .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;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 28px;
    text-decoration: none;
    text-shadow: none;
}

.tp-caption.divideline30px_dark, .divideline30px_dark {
    background-color: #333;
    border-color: #222;
    border-style: none;
    border-width: 0;
    height: 2px;
    min-width: 30px;
    text-decoration: none;
}

.tp-caption.ellipse70px, .ellipse70px {
    background-color: rgba(0, 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;
}

.tp-caption.arrowicon, .arrowicon {
    border-color: #222;
    border-style: none;
    border-width: 0;
    line-height: 1px;
}

.tp-caption.MarkerDisplay, .MarkerDisplay {
    background-color: transparent;
    border-color: #000;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    font-family: "Permanent Marker";
    font-style: normal;
    padding: 0;
    text-decoration: none;
    text-shadow: none;
}

.tp-caption.Restaurant-Display, .Restaurant-Display {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Roboto;
    font-size: 120px;
    font-style: normal;
    font-weight: 700;
    line-height: 120px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.Restaurant-Cursive, .Restaurant-Cursive {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: "Nothing you could do";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 30px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.Restaurant-ScrollDownText, .Restaurant-ScrollDownText {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 17px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.Restaurant-Description, .Restaurant-Description {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 30px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.Restaurant-Price, .Restaurant-Price {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: #fff;
    font-family: Roboto;
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 30px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.Restaurant-Menuitem, .Restaurant-Menuitem {
    background-color: black;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 17px;
    padding: 10px 30px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Furniture-LogoText, .Furniture-LogoText {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 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;
}

.tp-caption.Furniture-Plus, .Furniture-Plus {
    background-color: white;
    border-color: transparent;
    border-radius: 30px 30px 30px 30px;
    border-style: none;
    border-width: 0;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 1px 3px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 1px 3px;
    color: #e6cfa3;
    font-family: Raleway;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 6px 7px 4px;
    text-decoration: none;
    text-shadow: none;
}

.tp-caption.Furniture-Title, .Furniture-Title {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: black;
    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;
}

.tp-caption.Furniture-Subtitle, .Furniture-Subtitle {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: black;
    font-family: Raleway;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    padding: 0;
    text-decoration: none;
    text-shadow: none;
}

.tp-caption.Gym-Display, .Gym-Display {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: Raleway;
    font-size: 80px;
    font-style: normal;
    font-weight: 900;
    line-height: 70px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.Gym-Subline, .Gym-Subline {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: Raleway;
    font-size: 30px;
    font-style: normal;
    font-weight: 100;
    letter-spacing: 5px;
    line-height: 30px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.Gym-SmallText, .Gym-SmallText {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: Raleway;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 22;
    padding: 0;
    text-decoration: none;
    text-shadow: none;
}

.tp-caption.Fashion-SmallText, .Fashion-SmallText {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: Raleway;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 20px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.Fashion-BigDisplay, .Fashion-BigDisplay {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: black;
    font-family: Raleway;
    font-size: 60px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 60px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.Fashion-TextBlock, .Fashion-TextBlock {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: black;
    font-family: Raleway;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 40px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.Sports-Display, .Sports-Display {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: Raleway;
    font-size: 130px;
    font-style: normal;
    font-weight: 100;
    letter-spacing: 13px;
    line-height: 130px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.Sports-DisplayFat, .Sports-DisplayFat {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: Raleway;
    font-size: 130px;
    font-style: normal;
    font-weight: 900;
    line-height: 130px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.Sports-Subline, .Sports-Subline {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: black;
    font-family: Raleway;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 32px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.Instagram-Caption, .Instagram-Caption {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 20px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.News-Title, .News-Title {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: "Roboto Slab";
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.News-Subtitle, .News-Subtitle {
    background-color: rgba(255, 255, 255, 0);
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: "Roboto Slab";
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.News-Subtitle:hover, .News-Subtitle:hover {
    background-color: rgba(255, 255, 255, 0);
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 0;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.tp-caption.Photography-Display, .Photography-Display {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: Raleway;
    font-size: 80px;
    font-style: normal;
    font-weight: 100;
    letter-spacing: 5px;
    line-height: 70px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.Photography-Subline, .Photography-Subline {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: #777777;
    font-family: Raleway;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 30px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.Photography-ImageHover, .Photography-ImageHover {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0);
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 22;
    padding: 0;
    text-decoration: none;
}

.tp-caption.Photography-ImageHover:hover, .Photography-ImageHover:hover {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    text-decoration: none;
}

.tp-caption.Photography-Menuitem, .Photography-Menuitem {
    background-color: rgba(0, 0, 0, 0.65);
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    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;
}

.tp-caption.Photography-Menuitem:hover, .Photography-Menuitem:hover {
    background-color: rgba(0, 255, 222, 0.65);
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    text-decoration: none;
}

.tp-caption.Photography-Textblock, .Photography-Textblock {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: Raleway;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 30px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.Photography-Subline-2, .Photography-Subline-2 {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: rgba(255, 255, 255, 0.35);
    font-family: Raleway;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 30px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.Photography-ImageHover2, .Photography-ImageHover2 {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0);
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: Arial;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 22;
    padding: 0;
    text-decoration: none;
}

.tp-caption.Photography-ImageHover2:hover, .Photography-ImageHover2:hover {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    text-decoration: none;
}

.tp-caption.WebProduct-Title, .WebProduct-Title {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: #333333;
    font-family: Raleway;
    font-size: 90px;
    font-style: normal;
    font-weight: 100;
    line-height: 90px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.WebProduct-SubTitle, .WebProduct-SubTitle {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: #999999;
    font-family: Raleway;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.WebProduct-Content, .WebProduct-Content {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: #999999;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding: 0;
    text-decoration: none;
}

.tp-caption.WebProduct-Menuitem, .WebProduct-Menuitem {
    background-color: #333333;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: Raleway;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 20px;
    padding: 3px 5px 3px 8px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.WebProduct-Menuitem:hover, .WebProduct-Menuitem:hover {
    background-color: white;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: #999999;
    text-decoration: none;
}

.tp-caption.WebProduct-Title-Light, .WebProduct-Title-Light {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: Raleway;
    font-size: 90px;
    font-style: normal;
    font-weight: 100;
    line-height: 90px;
    padding: 0;
    text-align: left;
    text-decoration: none;
}

.tp-caption.WebProduct-SubTitle-Light, .WebProduct-SubTitle-Light {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: rgba(255, 255, 255, 0.35);
    font-family: Raleway;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 0;
    text-align: left;
    text-decoration: none;
}

.tp-caption.WebProduct-Content-Light, .WebProduct-Content-Light {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: rgba(255, 255, 255, 0.65);
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding: 0;
    text-align: left;
    text-decoration: none;
}

.tp-caption.FatRounded, .FatRounded {
    background-color: rgba(0, 0, 0, 0.5);
    border-color: lightgray;
    border-radius: 50px 50px 50px 50px;
    border-style: none;
    border-width: 0;
    color: white;
    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;
}

.tp-caption.FatRounded:hover, .FatRounded:hover {
    background-color: black;
    border-color: lightgray;
    border-radius: 50px 50px 50px 50px;
    border-style: none;
    border-width: 0;
    color: white;
    text-decoration: none;
}

.tp-caption.NotGeneric-Title, .NotGeneric-Title {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: Raleway;
    font-size: 70px;
    font-style: normal;
    font-weight: 800;
    line-height: 70px;
    padding: 10px 0;
    text-decoration: none;
}

.tp-caption.NotGeneric-SubTitle, .NotGeneric-SubTitle {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: Raleway;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 4px;
    line-height: 20px;
    padding: 0;
    text-align: left;
    text-decoration: none;
}

.tp-caption.NotGeneric-CallToAction, .NotGeneric-CallToAction {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 1px;
    color: white;
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 14px;
    padding: 10px 30px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.NotGeneric-CallToAction:hover, .NotGeneric-CallToAction:hover {
    background-color: transparent;
    border-color: white;
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 1px;
    color: white;
    text-decoration: none;
}

.tp-caption.NotGeneric-Icon, .NotGeneric-Icon {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0);
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 0;
    color: white;
    font-family: Raleway;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 30px;
    padding: 0;
    text-align: left;
    text-decoration: none;
}

.tp-caption.NotGeneric-Menuitem, .NotGeneric-Menuitem {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0.15);
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 1px;
    color: white;
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 14px;
    padding: 27px 30px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.NotGeneric-Menuitem:hover, .NotGeneric-Menuitem:hover {
    background-color: rgba(0, 0, 0, 0);
    border-color: white;
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 1px;
    color: white;
    text-decoration: none;
}

.tp-caption.MarkerStyle, .MarkerStyle {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: "Permanent Marker";
    font-size: 17px;
    font-style: normal;
    font-weight: 100;
    line-height: 30px;
    padding: 0;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Gym-Menuitem, .Gym-Menuitem {
    background-color: black;
    border-color: rgba(255, 255, 255, 0);
    border-radius: 3px 3px 3px 3px;
    border-style: solid;
    border-width: 2px;
    color: white;
    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;
}

.tp-caption.Gym-Menuitem:hover, .Gym-Menuitem:hover {
    background-color: black;
    border-color: rgba(255, 255, 255, 0.25);
    border-radius: 3px 3px 3px 3px;
    border-style: solid;
    border-width: 2px;
    color: white;
    text-decoration: none;
}

.tp-caption.Newspaper-Button, .Newspaper-Button {
    background-color: rgba(255, 255, 255, 0);
    border-color: rgba(255, 255, 255, 0.25);
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 1px;
    color: white;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 17px;
    padding: 12px 35px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Newspaper-Button:hover, .Newspaper-Button:hover {
    background-color: white;
    border-color: white;
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 1px;
    color: black;
    text-decoration: none;
}

.tp-caption.Newspaper-Subtitle, .Newspaper-Subtitle {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: #a8d8ee;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 900;
    line-height: 20px;
    padding: 0;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Newspaper-Title, .Newspaper-Title {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: "Roboto Slab";
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 55px;
    padding: 0 0 10px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Newspaper-Title-Centered, .Newspaper-Title-Centered {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: "Roboto Slab";
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 55px;
    padding: 0 0 10px;
    text-align: center;
    text-decoration: none;
}

.tp-caption.Hero-Button, .Hero-Button {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 1px;
    color: white;
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 14px;
    padding: 10px 30px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Hero-Button:hover, .Hero-Button:hover {
    background-color: white;
    border-color: white;
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 1px;
    color: black;
    text-decoration: none;
}

.tp-caption.Video-Title, .Video-Title {
    background-color: black;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: Raleway;
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: 30px;
    padding: 5px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Video-SubTitle, .Video-SubTitle {
    background-color: rgba(0, 0, 0, 0.35);
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: Raleway;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 12px;
    padding: 5px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.NotGeneric-Button, .NotGeneric-Button {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 1px;
    color: white;
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 14px;
    padding: 10px 30px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.NotGeneric-Button:hover, .NotGeneric-Button:hover {
    background-color: transparent;
    border-color: white;
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 1px;
    color: white;
    text-decoration: none;
}

.tp-caption.NotGeneric-BigButton, .NotGeneric-BigButton {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0.15);
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 1px;
    color: white;
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 14px;
    padding: 27px 30px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.NotGeneric-BigButton:hover, .NotGeneric-BigButton:hover {
    background-color: rgba(0, 0, 0, 0);
    border-color: white;
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 1px;
    color: white;
    text-decoration: none;
}

.tp-caption.WebProduct-Button, .WebProduct-Button {
    background-color: #333333;
    border-color: black;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 2px;
    color: white;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 48px;
    padding: 0 40px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.WebProduct-Button:hover, .WebProduct-Button:hover {
    background-color: white;
    border-color: black;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 2px;
    color: #333333;
    text-decoration: none;
}

.tp-caption.Restaurant-Button, .Restaurant-Button {
    background-color: rgba(10, 10, 10, 0);
    border-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 2px;
    color: white;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 17px;
    padding: 12px 35px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Restaurant-Button:hover, .Restaurant-Button:hover {
    background-color: rgba(0, 0, 0, 0);
    border-color: #ffe081;
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 2px;
    color: white;
    text-decoration: none;
}

.tp-caption.Gym-Button, .Gym-Button {
    background-color: #8bc027;
    border-color: rgba(0, 0, 0, 0);
    border-radius: 30px 30px 30px 30px;
    border-style: solid;
    border-width: 0;
    color: white;
    font-family: Raleway;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 15px;
    padding: 13px 35px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Gym-Button:hover, .Gym-Button:hover {
    background-color: #72a800;
    border-color: rgba(0, 0, 0, 0);
    border-radius: 30px 30px 30px 30px;
    border-style: solid;
    border-width: 0;
    color: white;
    text-decoration: none;
}

.tp-caption.Gym-Button-Light, .Gym-Button-Light {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.25);
    border-radius: 30px 30px 30px 30px;
    border-style: solid;
    border-width: 2px;
    color: white;
    font-family: Raleway;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 15px;
    padding: 12px 35px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Gym-Button-Light:hover, .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: white;
    text-decoration: none;
}

.tp-caption.Sports-Button-Light, .Sports-Button-Light {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 2px;
    color: white;
    font-family: Raleway;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 17px;
    padding: 12px 35px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Sports-Button-Light:hover, .Sports-Button-Light:hover {
    background-color: rgba(0, 0, 0, 0);
    border-color: white;
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 2px;
    color: white;
    text-decoration: none;
}

.tp-caption.Sports-Button-Red, .Sports-Button-Red {
    background-color: #db1c22;
    border-color: rgba(219, 28, 34, 0);
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 2px;
    color: white;
    font-family: Raleway;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 17px;
    padding: 12px 35px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Sports-Button-Red:hover, .Sports-Button-Red:hover {
    background-color: black;
    border-color: black;
    border-radius: 0 0 0 0;
    border-style: solid;
    border-width: 2px;
    color: white;
    text-decoration: none;
}

.tp-caption.Photography-Button, .Photography-Button {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0.25);
    border-radius: 30px 30px 30px 30px;
    border-style: solid;
    border-width: 1px;
    color: white;
    font-family: Raleway;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 15px;
    padding: 13px 35px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Photography-Button:hover, .Photography-Button:hover {
    background-color: rgba(0, 0, 0, 0);
    border-color: white;
    border-radius: 30px 30px 30px 30px;
    border-style: solid;
    border-width: 1px;
    color: white;
    text-decoration: none;
}

.tp-caption.Newspaper-Button-2, .Newspaper-Button-2 {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0.5);
    border-radius: 3px 3px 3px 3px;
    border-style: solid;
    border-width: 2px;
    color: white;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 900;
    line-height: 15px;
    padding: 10px 30px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Newspaper-Button-2:hover, .Newspaper-Button-2:hover {
    background-color: rgba(0, 0, 0, 0);
    border-color: white;
    border-radius: 3px 3px 3px 3px;
    border-style: solid;
    border-width: 2px;
    color: white;
    text-decoration: none;
}

.tp-caption.Feature-Tour, .Feature-Tour {
    background-color: #8bc027;
    border-color: rgba(0, 0, 0, 0);
    border-radius: 30px 30px 30px 30px;
    border-style: solid;
    border-width: 0;
    color: white;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 17px;
    padding: 17px 35px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Feature-Tour:hover, .Feature-Tour:hover {
    background-color: #72a800;
    border-color: rgba(0, 0, 0, 0);
    border-radius: 30px 30px 30px 30px;
    border-style: solid;
    border-width: 0;
    color: white;
    text-decoration: none;
}

.tp-caption.Feature-Examples, .Feature-Examples {
    background-color: transparent;
    border-color: rgba(33, 42, 64, 0.15);
    border-radius: 30px 30px 30px 30px;
    border-style: solid;
    border-width: 2px;
    color: rgba(33, 42, 64, 0.5);
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 17px;
    padding: 15px 35px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Feature-Examples:hover, .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;
}

.tp-caption.subcaption, .subcaption {
    background-color: transparent;
    border-color: black;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: #6f7c82;
    font-family: roboto;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding: 0;
    text-align: left;
    text-decoration: none;
    text-shadow: none;
}

.tp-caption.menutab, .menutab {
    background-color: transparent;
    border-color: black;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: #292e31;
    font-family: roboto;
    font-size: 25px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    padding: 0;
    text-align: left;
    text-decoration: none;
    text-shadow: none;
}

.tp-caption.menutab:hover, .menutab:hover {
    background-color: transparent;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: #d50000;
    text-decoration: none;
}

.tp-caption.maincontent, .maincontent {
    background-color: transparent;
    border-color: black;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: #292e31;
    font-family: roboto;
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    padding: 0;
    text-align: left;
    text-decoration: none;
    text-shadow: none;
}

.tp-caption.minitext, .minitext {
    background-color: transparent;
    border-color: black;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: #b9babb;
    font-family: roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 0;
    text-align: left;
    text-decoration: none;
    text-shadow: none;
}

.tp-caption.Feature-Buy, .Feature-Buy {
    background-color: #009aee;
    border-color: rgba(0, 0, 0, 0);
    border-radius: 30px 30px 30px 30px;
    border-style: solid;
    border-width: 0;
    color: white;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 17px;
    padding: 17px 35px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Feature-Buy:hover, .Feature-Buy:hover {
    background-color: #0085d6;
    border-color: rgba(0, 0, 0, 0);
    border-radius: 30px 30px 30px 30px;
    border-style: solid;
    border-width: 0;
    color: white;
    text-decoration: none;
}

.tp-caption.Feature-Examples-Light, .Feature-Examples-Light {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.15);
    border-radius: 30px 30px 30px 30px;
    border-style: solid;
    border-width: 2px;
    color: white;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 17px;
    padding: 15px 35px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Feature-Examples-Light:hover, .Feature-Examples-Light:hover {
    background-color: transparent;
    border-color: white;
    border-radius: 30px 30px 30px 30px;
    border-style: solid;
    border-width: 2px;
    color: white;
    text-decoration: none;
}

.tp-caption.Facebook-Likes, .Facebook-Likes {
    background-color: #3b5999;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: white;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    padding: 5px 15px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Twitter-Favorites, .Twitter-Favorites {
    background-color: rgba(255, 255, 255, 0);
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: #8899a6;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    padding: 0;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Twitter-Link, .Twitter-Link {
    background-color: white;
    border-color: transparent;
    border-radius: 30px 30px 30px 30px;
    border-style: none;
    border-width: 0;
    color: #8799a5;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 15px;
    padding: 11px 11px 9px;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Twitter-Link:hover, .Twitter-Link:hover {
    background-color: #0084b4;
    border-color: transparent;
    border-radius: 30px 30px 30px 30px;
    border-style: none;
    border-width: 0;
    color: white;
    text-decoration: none;
}

.tp-caption.Twitter-Retweet, .Twitter-Retweet {
    background-color: rgba(255, 255, 255, 0);
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: #8899a6;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    padding: 0;
    text-align: left;
    text-decoration: none;
}

.tp-caption.Twitter-Content, .Twitter-Content {
    background-color: white;
    border-color: transparent;
    border-radius: 0 0 0 0;
    border-style: none;
    border-width: 0;
    color: #292f33;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    padding: 30px 30px 70px;
    text-align: left;
    text-decoration: none;
}

.revtp-searchform input[type="text"],
.revtp-searchform input[type="email"],
.revtp-form input[type="text"],
.revtp-form input[type="email"] {
    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: 0px;
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;
    border-radius: 0px;
}

.tp-caption.BigBold-Title,
.BigBold-Title {
    color: white;
    font-size: 110px;
    line-height: 100px;
    font-weight: 800;
    font-style: normal;
    font-family: Raleway;
    padding: 10px 0px 10px 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.BigBold-SubTitle,
.BigBold-SubTitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 1px;
}

.tp-caption.BigBold-Button,
.BigBold-Button {
    color: white;
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
    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, 0.5);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 1px;
}

.tp-caption.BigBold-Button:hover,
.BigBold-Button:hover {
    color: white;
    text-decoration: none;
    background-color: transparent;
    border-color: white;
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
}

.tp-caption.FoodCarousel-Content,
.FoodCarousel-Content {
    color: #292e31;
    font-size: 17px;
    line-height: 28px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 30px 30px 30px 30px;
    text-decoration: none;
    background-color: white;
    border-color: #292e31;
    border-style: solid;
    border-width: 1px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.FoodCarousel-Button,
.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: white;
    border-color: #292e31;
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 1px;
}

.tp-caption.FoodCarousel-Button:hover,
.FoodCarousel-Button:hover {
    color: white;
    text-decoration: none;
    background-color: #292e31;
    border-color: #292e31;
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
}

.tp-caption.FoodCarousel-CloseButton,
.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;
}

.tp-caption.FoodCarousel-CloseButton:hover,
.FoodCarousel-CloseButton:hover {
    color: white;
    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;
}

.tp-caption.Video-SubTitle,
.Video-SubTitle {
    color: white;
    font-size: 12px;
    line-height: 12px;
    font-weight: 600;
    font-style: normal;
    font-family: Raleway;
    padding: 5px 5px 5px 5px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.35);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 2px;
    text-align: left;
}

.tp-caption.Video-Title,
.Video-Title {
    color: white;
    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: black;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.Travel-BigCaption,
.Travel-BigCaption {
    color: white;
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.Travel-SmallCaption,
.Travel-SmallCaption {
    color: white;
    font-size: 25px;
    line-height: 30px;
    font-weight: 300;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.Travel-CallToAction,
.Travel-CallToAction {
    color: white;
    font-size: 25px;
    line-height: 25px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 12px 20px 12px 20px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.05);
    border-color: white;
    border-style: solid;
    border-width: 2px;
    border-radius: 5px 5px 5px 5px;
    text-align: left;
    letter-spacing: 1px;
}

.tp-caption.Travel-CallToAction:hover,
.Travel-CallToAction:hover {
    color: white;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: white;
    border-style: solid;
    border-width: 2px;
    border-radius: 5px 5px 5px 5px;
}

.tp-caption.RotatingWords-TitleWhite,
.RotatingWords-TitleWhite {
    color: white;
    font-size: 70px;
    line-height: 70px;
    font-weight: 800;
    font-style: normal;
    font-family: Raleway;
    padding: 0px 0px 0px 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.RotatingWords-Button,
.RotatingWords-Button {
    color: white;
    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, 0.15);
    border-style: solid;
    border-width: 2px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 3px;
}

.tp-caption.RotatingWords-Button:hover,
.RotatingWords-Button:hover {
    color: white;
    text-decoration: none;
    background-color: transparent;
    border-color: white;
    border-style: solid;
    border-width: 2px;
    border-radius: 0px 0px 0px 0px;
}

.tp-caption.RotatingWords-SmallText,
.RotatingWords-SmallText {
    color: white;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    text-shadow: none;
}

.tp-caption.ContentZoom-SmallTitle,
.ContentZoom-SmallTitle {
    color: #292e31;
    font-size: 33px;
    line-height: 45px;
    font-weight: 600;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.ContentZoom-SmallSubtitle,
.ContentZoom-SmallSubtitle {
    color: #6f7c82;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.ContentZoom-SmallIcon,
.ContentZoom-SmallIcon {
    color: #292e31;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    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: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.ContentZoom-SmallIcon:hover,
.ContentZoom-SmallIcon:hover {
    color: #6f7c82;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
}

.tp-caption.ContentZoom-DetailTitle,
.ContentZoom-DetailTitle {
    color: #292e31;
    font-size: 70px;
    line-height: 70px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.ContentZoom-DetailSubTitle,
.ContentZoom-DetailSubTitle {
    color: #6f7c82;
    font-size: 25px;
    line-height: 25px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.ContentZoom-DetailContent,
.ContentZoom-DetailContent {
    color: #6f7c82;
    font-size: 17px;
    line-height: 28px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.ContentZoom-Button,
.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, 0.5);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 1px;
}

.tp-caption.ContentZoom-Button:hover,
.ContentZoom-Button:hover {
    color: white;
    text-decoration: none;
    background-color: #292e31;
    border-color: #292e31;
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
}

.tp-caption.ContentZoom-ButtonClose,
.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, 0.5);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: left;
    letter-spacing: 1px;
}

.tp-caption.ContentZoom-ButtonClose:hover,
.ContentZoom-ButtonClose:hover {
    color: white;
    text-decoration: none;
    background-color: #292e31;
    border-color: #292e31;
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
}

.tp-caption.Newspaper-Title,
.Newspaper-Title {
    color: white;
    font-size: 50px;
    line-height: 55px;
    font-weight: 400;
    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: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.Newspaper-Subtitle,
.Newspaper-Subtitle {
    color: #a8d8ee;
    font-size: 15px;
    line-height: 20px;
    font-weight: 900;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.Newspaper-Button,
.Newspaper-Button {
    color: white;
    font-size: 13px;
    line-height: 17px;
    font-weight: 700;
    font-style: normal;
    font-family: Roboto;
    padding: 12px 35px 12px 35px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0);
    border-color: rgba(255, 255, 255, 0.25);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    letter-spacing: 2px;
    text-align: left;
}

.tp-caption.Newspaper-Button:hover,
.Newspaper-Button:hover {
    color: black;
    text-decoration: none;
    background-color: white;
    border-color: white;
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
}

.tp-caption.rtwhitemedium,
.rtwhitemedium {
    font-size: 22px;
    line-height: 26px;
    color: white;
    text-decoration: none;
    background-color: transparent;
    border-width: 0px;
    border-color: black;
    border-style: none;
    text-shadow: none;
}

@media only screen and (max-width: 767px) {
    .revtp-searchform input[type="text"],
  .revtp-searchform input[type="email"],
  .revtp-form input[type="text"],
  .revtp-form input[type="email"] {
        width: 200px !important;
    }
}

.revtp-searchform input[type="submit"],
.revtp-form 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: 0px;
}

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

.tp-caption.Concept-Title,
.Concept-Title {
    color: white;
    font-size: 70px;
    line-height: 70px;
    font-weight: 700;
    font-style: normal;
    font-family: "Roboto Condensed";
    padding: 0px 0px 10px 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    letter-spacing: 5px;
}

.tp-caption.Concept-SubTitle,
.Concept-SubTitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 25px;
    line-height: 25px;
    font-weight: 700;
    font-style: italic;
    font-family: "" Playfair Display "";
    padding: 0px 0px 10px 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
}

.tp-caption.Concept-Content,
.Concept-Content {
    color: white;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
    font-family: "Roboto Condensed";
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    text-align: center;
    background-color: rgba(0, 0, 0, 0);
    border-color: white;
    border-style: none;
    border-width: 2px;
    border-radius: 0px 0px 0px 0px;
}

.tp-caption.Concept-MoreBtn,
.Concept-MoreBtn {
    color: white;
    font-size: 30px;
    line-height: 30px;
    font-weight: 300;
    font-style: normal;
    font-family: Roboto;
    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: 0px;
    border-radius: 50px 50px 50px 50px;
    letter-spacing: 1px;
    text-align: left;
}

.tp-caption.Concept-MoreBtn:hover,
.Concept-MoreBtn:hover {
    color: white;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0);
    border-style: solid;
    border-width: 0px;
    border-radius: 50px 50px 50px 50px;
}

.tp-caption.Concept-LessBtn,
.Concept-LessBtn {
    color: white;
    font-size: 30px;
    line-height: 30px;
    font-weight: 300;
    font-style: normal;
    font-family: Roboto;
    padding: 10px 8px 7px 10px;
    text-decoration: none;
    text-align: left;
    background-color: black;
    border-color: rgba(255, 255, 255, 0);
    border-style: solid;
    border-width: 0px;
    border-radius: 50px 50px 50px 50px;
    letter-spacing: 1px;
    text-align: left;
}

.tp-caption.Concept-LessBtn:hover,
.Concept-LessBtn:hover {
    color: black;
    text-decoration: none;
    background-color: white;
    border-color: rgba(255, 255, 255, 0);
    border-style: solid;
    border-width: 0px;
    border-radius: 50px 50px 50px 50px;
}

.tp-caption.Concept-SubTitle-Dark,
.Concept-SubTitle-Dark {
    color: rgba(0, 0, 0, 0.65);
    font-size: 25px;
    line-height: 25px;
    font-weight: 700;
    font-style: italic;
    font-family: "Playfair Display";
    padding: 0px 0px 10px 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
}

.tp-caption.Concept-Title-Dark,
.Concept-Title-Dark {
    color: black;
    font-size: 70px;
    line-height: 70px;
    font-weight: 700;
    font-style: normal;
    font-family: "Roboto Condensed";
    padding: 0px 0px 10px 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    letter-spacing: 5px;
}

.tp-caption.Concept-MoreBtn-Dark,
.Concept-MoreBtn-Dark {
    color: black;
    font-size: 30px;
    line-height: 30px;
    font-weight: 300;
    font-style: normal;
    font-family: Roboto;
    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: 0px;
    border-radius: 50px 50px 50px 50px;
    letter-spacing: 1px;
    text-align: left;
}

.tp-caption.Concept-MoreBtn-Dark:hover,
.Concept-MoreBtn-Dark:hover {
    color: white;
    text-decoration: none;
    background-color: black;
    border-color: rgba(255, 255, 255, 0);
    border-style: solid;
    border-width: 0px;
    border-radius: 50px 50px 50px 50px;
}

.tp-caption.Concept-Content-Dark,
.Concept-Content-Dark {
    color: black;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
    font-family: "Roboto Condensed";
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    text-align: center;
    background-color: rgba(0, 0, 0, 0);
    border-color: white;
    border-style: none;
    border-width: 2px;
    border-radius: 0px 0px 0px 0px;
}

.tp-caption.Concept-Notice,
.Concept-Notice {
    color: white;
    font-size: 15px;
    line-height: 15px;
    font-weight: 400;
    font-style: normal;
    font-family: "Roboto Condensed";
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    text-align: center;
    background-color: rgba(0, 0, 0, 0);
    border-color: white;
    border-style: none;
    border-width: 2px;
    border-radius: 0px 0px 0px 0px;
    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;
}

.tp-caption.Creative-Title,
.Creative-Title {
    color: white;
    font-size: 70px;
    line-height: 70px;
    font-weight: 400;
    font-style: normal;
    font-family: "Playfair Display";
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
}

.tp-caption.Creative-SubTitle,
.Creative-SubTitle {
    color: #cdb083;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    letter-spacing: 2px;
}

.tp-caption.Creative-Button,
.Creative-Button {
    color: #cdb083;
    font-size: 13px;
    line-height: 13px;
    font-weight: 400;
    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, 0.25);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    letter-spacing: 2px;
}

.tp-caption.Creative-Button:hover,
.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: 0px 0px 0px 0px;
}

.tp-caption.subcaption,
.subcaption {
    color: #6f7c82;
    font-size: 19px;
    line-height: 24px;
    font-weight: 400;
    font-style: normal;
    font-family: roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: black;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-shadow: none;
    text-align: left;
}

.tp-caption.RedDot,
.RedDot {
    color: black;
    font-weight: 400;
    font-style: normal;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    text-align: left;
    background-color: #d50000;
    border-color: white;
    border-style: solid;
    border-width: 5px;
    border-radius: 50px 50px 50px 50px;
}

.tp-caption.RedDot:hover,
.RedDot:hover {
    color: black;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.75);
    border-color: #d50000;
    border-style: solid;
    border-width: 5px;
    border-radius: 50px 50px 50px 50px;
}

.tp-caption.SlidingOverlays-Title,
.SlidingOverlays-Title {
    color: white;
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: "Playfair Display";
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
}

.tp-caption.SlidingOverlays-Title,
.SlidingOverlays-Title {
    color: white;
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: "Playfair Display";
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
}

.tp-caption.Woo-TitleLarge,
.Woo-TitleLarge {
    color: black;
    font-size: 40px;
    line-height: 40px;
    font-weight: 400;
    font-style: normal;
    font-family: "Playfair Display";
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.Woo-Rating,
.Woo-Rating {
    color: black;
    font-size: 14px;
    line-height: 30px;
    font-weight: 300;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.Woo-SubTitle,
.Woo-SubTitle {
    color: black;
    font-size: 18px;
    line-height: 18px;
    font-weight: 300;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 2px;
}

.tp-caption.Woo-PriceLarge,
.Woo-PriceLarge {
    color: black;
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.Woo-ProductInfo,
.Woo-ProductInfo {
    color: black;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 12px 75px 12px 50px;
    text-decoration: none;
    background-color: #fecf72;
    border-color: black;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px 4px 4px 4px;
    text-align: left;
}

.tp-caption.Woo-ProductInfo:hover,
.Woo-ProductInfo:hover {
    color: black;
    text-decoration: none;
    background-color: #f3a847;
    border-color: black;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px 4px 4px 4px;
}

.tp-caption.Woo-AddToCart,
.Woo-AddToCart {
    color: black;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 12px 35px 12px 35px;
    text-decoration: none;
    background-color: #fecf72;
    border-color: black;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px 4px 4px 4px;
    text-align: left;
}

.tp-caption.Woo-AddToCart:hover,
.Woo-AddToCart:hover {
    color: black;
    text-decoration: none;
    background-color: #f3a847;
    border-color: black;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px 4px 4px 4px;
}

.tp-caption.Woo-TitleLarge,
.Woo-TitleLarge {
    color: black;
    font-size: 40px;
    line-height: 40px;
    font-weight: 400;
    font-style: normal;
    font-family: "Playfair Display";
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.Woo-SubTitle,
.Woo-SubTitle {
    color: black;
    font-size: 18px;
    line-height: 18px;
    font-weight: 300;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 2px;
}

.tp-caption.Woo-PriceLarge,
.Woo-PriceLarge {
    color: black;
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.Woo-ProductInfo,
.Woo-ProductInfo {
    color: black;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 12px 75px 12px 50px;
    text-decoration: none;
    background-color: #fecf72;
    border-color: black;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px 4px 4px 4px;
    text-align: left;
}

.tp-caption.Woo-ProductInfo:hover,
.Woo-ProductInfo:hover {
    color: black;
    text-decoration: none;
    background-color: #f3a847;
    border-color: black;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px 4px 4px 4px;
}

.tp-caption.Woo-AddToCart,
.Woo-AddToCart {
    color: black;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 12px 35px 12px 35px;
    text-decoration: none;
    background-color: #fecf72;
    border-color: black;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px 4px 4px 4px;
    text-align: left;
}

.tp-caption.Woo-AddToCart:hover,
.Woo-AddToCart:hover {
    color: black;
    text-decoration: none;
    background-color: #f3a847;
    border-color: black;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px 4px 4px 4px;
}

.tp-caption.FullScreen-Toggle,
.FullScreen-Toggle {
    color: white;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Raleway;
    padding: 11px 8px 11px 12px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    letter-spacing: 3px;
    text-align: left;
}

.tp-caption.FullScreen-Toggle:hover,
.FullScreen-Toggle:hover {
    color: white;
    text-decoration: none;
    background-color: black;
    border-color: rgba(255, 255, 255, 0);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
}

.tp-caption.Agency-Title,
.Agency-Title {
    color: white;
    font-size: 70px;
    line-height: 70px;
    font-weight: 900;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 10px;
}

.tp-caption.Agency-SubTitle,
.Agency-SubTitle {
    color: white;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: italic;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.Agency-PlayBtn,
.Agency-PlayBtn {
    color: white;
    font-size: 30px;
    line-height: 71px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: white;
    border-style: solid;
    border-width: 2px;
    border-radius: 100px 100px 100px 100px;
    text-align: center;
}

.tp-caption.Agency-PlayBtn:hover,
.Agency-PlayBtn:hover {
    color: white;
    text-decoration: none;
    background-color: transparent;
    border-color: white;
    border-style: solid;
    border-width: 2px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer;
}

.tp-caption.Agency-SmallText,
.Agency-SmallText {
    color: white;
    font-size: 12px;
    line-height: 12px;
    font-weight: 900;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 5px;
}

.tp-caption.Agency-Social,
.Agency-Social {
    color: #333333;
    font-size: 25px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: #333333;
    border-style: solid;
    border-width: 2px;
    border-radius: 30px 30px 30px 30px;
    text-align: center;
}

.tp-caption.Agency-Social:hover,
.Agency-Social:hover {
    color: white;
    text-decoration: none;
    background-color: #333333;
    border-color: #333333;
    border-style: solid;
    border-width: 2px;
    border-radius: 30px 30px 30px 30px;
    cursor: pointer;
}

.tp-caption.Agency-CloseBtn,
.Agency-CloseBtn {
    color: white;
    font-size: 50px;
    line-height: 50px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0);
    border-style: none;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    text-align: center;
}

.tp-caption.Agency-CloseBtn:hover,
.Agency-CloseBtn:hover {
    color: white;
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0);
    border-style: none;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer;
}

.tp-caption.Dining-Title,
.Dining-Title {
    color: white;
    font-size: 70px;
    line-height: 70px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 10px;
}

.tp-caption.Dining-SubTitle,
.Dining-SubTitle {
    color: white;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.Dining-BtnLight,
.Dining-BtnLight {
    color: rgba(255, 255, 255, 0.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, 0.25);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 2px;
}

.tp-caption.Dining-BtnLight:hover,
.Dining-BtnLight:hover {
    color: white;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: white;
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
}

.tp-caption.Dining-Social,
.Dining-Social {
    color: white;
    font-size: 25px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.25);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: center;
}

.tp-caption.Dining-Social:hover,
.Dining-Social:hover {
    color: white;
    text-decoration: none;
    background-color: transparent;
    border-color: white;
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    cursor: pointer;
}

tp-caption.Team-Thumb,
.Team-Thumb {
    color: white;
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.Team-Thumb:hover,
.Team-Thumb:hover {
    color: white;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer;
}

.tp-caption.Team-Name,
.Team-Name {
    color: white;
    font-size: 70px;
    line-height: 70px;
    font-weight: 900;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.Team-Position,
.Team-Position {
    color: white;
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.Team-Description,
.Team-Description {
    color: white;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.Team-Social,
.Team-Social {
    color: white;
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.Team-Social:hover,
.Team-Social:hover {
    color: white;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer;
}

.tp-caption.VideoControls-Play,
.VideoControls-Play {
    color: black;
    font-size: 50px;
    line-height: 120px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 7px;
    text-decoration: none;
    background-color: white;
    border-color: black;
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    text-align: center;
}

.tp-caption.VideoControls-Play:hover,
.VideoControls-Play:hover {
    color: black;
    text-decoration: none;
    background-color: white;
    border-color: black;
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer;
}

.tp-caption.VideoPlayer-Title,
.VideoPlayer-Title {
    color: white;
    font-size: 40px;
    line-height: 40px;
    font-weight: 900;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 10px;
}

.tp-caption.VideoPlayer-SubTitle,
.VideoPlayer-SubTitle {
    color: white;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: italic;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.VideoPlayer-Social,
.VideoPlayer-Social {
    color: white;
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.VideoPlayer-Social:hover,
.VideoPlayer-Social:hover {
    color: white;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer;
}

.tp-caption.VideoControls-Mute,
.VideoControls-Mute {
    color: black;
    font-size: 20px;
    line-height: 50px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    background-color: white;
    border-color: black;
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    text-align: center;
}

.tp-caption.VideoControls-Mute:hover,
.VideoControls-Mute:hover {
    color: black;
    text-decoration: none;
    background-color: white;
    border-color: black;
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer;
}

.tp-caption.VideoControls-Pause,
.VideoControls-Pause {
    color: black;
    font-size: 20px;
    line-height: 50px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    background-color: white;
    border-color: black;
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    text-align: center;
}

.tp-caption.VideoControls-Pause:hover,
.VideoControls-Pause:hover {
    color: black;
    text-decoration: none;
    background-color: white;
    border-color: black;
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer;
}

.soundcloudwrapper iframe {
    width: 100% !important;
}

.tp-caption.SleekLanding-Title,
.SleekLanding-Title {
    color: white;
    font-size: 35px;
    line-height: 40px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 5px;
}

.tp-caption.SleekLanding-ButtonBG,
.SleekLanding-ButtonBG {
    color: black;
    font-weight: 700;
    font-style: normal;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 0, 0, 0);
    border-style: solid;
    border-width: 0px;
    border-radius: 5px 5px 5px 5px;
    text-align: left;
    -webkit-box-shadow: inset 0px 2px 0px 0px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0px 2px 0px 0px rgba(0, 0, 0, 0.15);
}

.tp-caption.SleekLanding-SmallTitle,
.SleekLanding-SmallTitle {
    color: white;
    font-size: 13px;
    line-height: 50px;
    font-weight: 900;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 2px;
}

.tp-caption.SleekLanding-BottomText,
.SleekLanding-BottomText {
    color: white;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.SleekLanding-Social,
.SleekLanding-Social {
    color: white;
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.SleekLanding-Social:hover,
.SleekLanding-Social:hover {
    color: rgba(0, 0, 0, 0.25);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer;
}

#rev_slider_429_1_wrapper .tp-loader.spinner2 {
    background-color: #555555 !important;
}

.tp-fat {
    font-weight: 900 !important;
}

.tp-caption.PostSlider-Category,
.PostSlider-Category {
    color: black;
    font-size: 15px;
    line-height: 15px;
    font-weight: 300;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 3px;
    text-align: left;
}

.tp-caption.PostSlider-Title,
.PostSlider-Title {
    color: black;
    font-size: 40px;
    line-height: 40px;
    font-weight: 400;
    font-style: normal;
    font-family: "Playfair Display";
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.PostSlider-Content,
.PostSlider-Content {
    color: #777777;
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.PostSlider-Button,
.PostSlider-Button {
    color: black;
    font-size: 15px;
    line-height: 40px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 1px 56px 1px 32px;
    text-decoration: none;
    background-color: white;
    border-color: black;
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
}

.tp-caption.PostSlider-Button:hover,
.PostSlider-Button:hover {
    color: black;
    text-decoration: none;
    background-color: #eeeeee;
    border-color: black;
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer;
}

.tp-caption.LandingPage-Title,
.LandingPage-Title {
    color: white;
    font-size: 70px;
    line-height: 80px;
    font-weight: 900;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 10px;
}

.tp-caption.LandingPage-SubTitle,
.LandingPage-SubTitle {
    color: white;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    font-style: italic;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.LandingPage-Button,
.LandingPage-Button {
    color: black;
    font-size: 15px;
    line-height: 54px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 35px 0px 35px;
    text-decoration: none;
    background-color: white;
    border-color: black;
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 3px;
}

.tp-caption.LandingPage-Button:hover,
.LandingPage-Button:hover {
    color: black;
    text-decoration: none;
    background-color: white;
    border-color: black;
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer;
}

.tp-caption.App-Content a,
.tp-caption.App-Content a:visited {
    color: #89124e !important;
    border-bottom: 1px solid transparent !important;
    font-weight: bold !important;
}

.tp-caption.App-Content a:hover {
    border-bottom: 1px solid #89124e !important;
}

.tp-caption.RockBand-LogoText,
.RockBand-LogoText {
    color: white;
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    font-style: normal;
    font-family: Oswald;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    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;
}

.tp-caption.Agency-LogoText,
.Agency-LogoText {
    color: white;
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 1px;
}

.tp-caption.ComingSoon-Highlight,
.ComingSoon-Highlight {
    color: white;
    font-size: 20px;
    line-height: 37px;
    font-weight: 400;
    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: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.ComingSoon-Count,
.ComingSoon-Count {
    color: white;
    font-size: 50px;
    line-height: 50px;
    font-weight: 900;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.ComingSoon-CountUnit,
.ComingSoon-CountUnit {
    color: white;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.ComingSoon-NotifyMe,
.ComingSoon-NotifyMe {
    color: #a49d8f;
    font-size: 27px;
    line-height: 35px;
    font-weight: 600;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    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: 0px;
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;
    border-radius: 0px;
}

#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: 0px;
}

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

.tp-caption.Agency-SmallTitle,
.Agency-SmallTitle {
    color: white;
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 6px;
}

.tp-caption.Agency-SmallContent,
.Agency-SmallContent {
    color: white;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.Agency-SmallLink,
.Agency-SmallLink {
    color: #f87c09;
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0px 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 1px solid #f87c09 !important;
}

.tp-caption.Agency-SmallLink:hover,
.Agency-SmallLink:hover {
    color: white;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer;
}

.tp-caption.Agency-NavButton,
.Agency-NavButton {
    color: #333333;
    font-size: 17px;
    line-height: 50px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    text-align: center;
    background-color: white;
    border-color: black;
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    text-align: center;
}

.tp-caption.Agency-NavButton:hover,
.Agency-NavButton:hover {
    color: white;
    text-decoration: none;
    background-color: #333333;
    border-color: black;
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer;
}

.tp-caption.Agency-SmallLinkGreen,
.Agency-SmallLinkGreen {
    color: #6db19b;
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0px 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 1px solid #6db19b !important;
}

.tp-caption.Agency-SmallLinkGreen:hover,
.Agency-SmallLinkGreen:hover {
    color: white;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer;
}

.tp-caption.Agency-SmallLinkBlue,
.Agency-SmallLinkBlue {
    color: #999999;
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0px 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 1px solid #999 !important;
}

.tp-caption.Agency-SmallLinkBlue:hover,
.Agency-SmallLinkBlue:hover {
    color: white;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer;
}

.tp-caption.Agency-LogoText,
.Agency-LogoText {
    color: white;
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 1px;
}

.tp-caption.Agency-ArrowTooltip,
.Agency-ArrowTooltip {
    color: #333333;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: "Permanent Marker";
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.Agency-SmallSocial,
.Agency-SmallSocial {
    color: white;
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.Agency-SmallSocial:hover,
.Agency-SmallSocial:hover {
    color: #333333;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    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;
}

.tp-caption.CreativeFrontPage-Btn,
.CreativeFrontPage-Btn {
    color: white;
    font-size: 14px;
    line-height: 60px;
    font-weight: 900;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 50px 0px 50px;
    text-decoration: none;
    text-align: left;
    background-color: #00685c;
    border-color: black;
    border-style: solid;
    border-width: 0px;
    border-radius: 4px 4px 4px 4px;
    letter-spacing: 2px;
}

.tp-caption.CreativeFrontPage-Btn:hover,
.CreativeFrontPage-Btn:hover {
    color: white;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.25);
    border-color: black;
    border-style: solid;
    border-width: 0px;
    border-radius: 4px 4px 4px 4px;
    cursor: pointer;
}

.tp-caption.CreativeFrontPage-Menu,
.CreativeFrontPage-Menu {
    color: white;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    font-style: normal;
    font-family: roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    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;
}

.tp-caption.FullScreenMenu-Category,
.FullScreenMenu-Category {
    color: #111111;
    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, 0.9);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 3px;
}

.tp-caption.FullScreenMenu-Title,
.FullScreenMenu-Title {
    color: white;
    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, 0.9);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
}

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

.tp-caption.TechJournal-Button,
.TechJournal-Button {
    color: white;
    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: black;
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    letter-spacing: 3px;
}

.tp-caption.TechJournal-Button:hover,
.TechJournal-Button:hover {
    color: black;
    text-decoration: none;
    background-color: white;
    border-color: black;
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer;
}

.tp-caption.TechJournal-Big,
.TechJournal-Big {
    color: white;
    font-size: 120px;
    line-height: 120px;
    font-weight: 900;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 0px;
}

.rev_slider {
    overflow: hidden;
}

.effect_layer {
    position: absolute;
    top: 0px;
    left: 0px;
    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: 0px;
    left: 0px;
    width: 100%;
}

.tp-caption.FullSiteBlock-Title,
.FullSiteBlock-Title {
    color: #333333;
    font-size: 55px;
    line-height: 65px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.FullSiteBlock-SubTitle,
.FullSiteBlock-SubTitle {
    color: #333333;
    font-size: 25px;
    line-height: 34px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.FullSiteBlock-Link,
.FullSiteBlock-Link {
    color: #0096ff;
    font-size: 25px;
    line-height: 24px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.FullSiteBlock-Link:hover,
.FullSiteBlock-Link:hover {
    color: #333333;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer;
}

.tp-caption.FullSiteBlock-DownButton,
.FullSiteBlock-DownButton {
    color: #333333;
    font-size: 25px;
    line-height: 32px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 1px 1px 1px 1px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: #333333;
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: center;
}

.tp-caption.FullSiteBlock-DownButton:hover,
.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;
}

.tp-caption.FullSiteBlock-Title,
.FullSiteBlock-Title {
    color: #333333;
    font-size: 55px;
    line-height: 65px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.FullSiteBlock-SubTitle,
.FullSiteBlock-SubTitle {
    color: #333333;
    font-size: 25px;
    line-height: 34px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.FullSiteBlock-Link,
.FullSiteBlock-Link {
    color: #0096ff;
    font-size: 25px;
    line-height: 24px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.FullSiteBlock-Link:hover,
.FullSiteBlock-Link:hover {
    color: #333333;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer;
}

.tp-caption.FullSiteBlock-DownButton,
.FullSiteBlock-DownButton {
    color: #333333;
    font-size: 25px;
    line-height: 32px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 1px 1px 1px 1px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: #333333;
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: center;
}

.tp-caption.FullSiteBlock-DownButton:hover,
.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;
}

.tp-caption.FullSiteBlock-Title,
.FullSiteBlock-Title {
    color: #333333;
    font-size: 55px;
    line-height: 65px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.FullSiteBlock-SubTitle,
.FullSiteBlock-SubTitle {
    color: #333333;
    font-size: 25px;
    line-height: 34px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.FullSiteBlock-DownButton,
.FullSiteBlock-DownButton {
    color: #333333;
    font-size: 25px;
    line-height: 32px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 1px 1px 1px 1px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: #333333;
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: center;
}

.tp-caption.FullSiteBlock-DownButton:hover,
.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;
}

.tp-caption.FullSiteBlock-Title,
.FullSiteBlock-Title {
    color: #333333;
    font-size: 55px;
    line-height: 65px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.FullSiteBlock-SubTitle,
.FullSiteBlock-SubTitle {
    color: #333333;
    font-size: 25px;
    line-height: 34px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.FullSiteBlock-Link,
.FullSiteBlock-Link {
    color: #0096ff;
    font-size: 25px;
    line-height: 24px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.FullSiteBlock-Link:hover,
.FullSiteBlock-Link:hover {
    color: #333333;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer;
}

.tp-caption.FullSiteBlock-DownButton,
.FullSiteBlock-DownButton {
    color: #333333;
    font-size: 25px;
    line-height: 32px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 1px 1px 1px 1px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: #333333;
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: center;
}

.tp-caption.FullSiteBlock-DownButton:hover,
.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: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.gyges .tp-thumb {
    opacity: 1;
}

.gyges .tp-thumb-img-wrap {
    padding: 3px;
    background-color: rgba(0, 0, 0, 0.25);
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.3s;
    -webkit-transition: all 0.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 0px rgba(0, 0, 0, 0.25);
    box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
}

.gyges .tp-thumb:hover .tp-thumb-img-wrap,
.gyges .tp-thumb.selected .tp-thumb-img-wrap {
    background: -webkit-gradient(left top, left bottom, color-stop(0%, white), color-stop(100%, white));
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(white));
    background: linear-gradient(to bottom, white 0%, white 100%);
}

.tp-caption.FullSiteBlock-Title,
.FullSiteBlock-Title {
    color: #333333;
    font-size: 55px;
    line-height: 65px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.FullSiteBlock-SubTitle,
.FullSiteBlock-SubTitle {
    color: #333333;
    font-size: 25px;
    line-height: 34px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.FullSiteBlock-Link,
.FullSiteBlock-Link {
    color: #0096ff;
    font-size: 25px;
    line-height: 24px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.FullSiteBlock-Link:hover,
.FullSiteBlock-Link:hover {
    color: #333333;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer;
}

.tp-caption.FullSiteBlock-SubTitle,
.FullSiteBlock-SubTitle {
    color: #333333;
    font-size: 25px;
    line-height: 34px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.FullSiteBlock-SubTitle,
.FullSiteBlock-SubTitle {
    color: #333333;
    font-size: 25px;
    line-height: 34px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.FullSiteBlock-FooterLink,
.FullSiteBlock-FooterLink {
    color: #555555;
    font-size: 15px;
    line-height: 20px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
}

.tp-caption.FullSiteBlock-FooterLink:hover,
.FullSiteBlock-FooterLink:hover {
    color: #0096ff;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    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: 0px;
    left: 0px;
    width: 100%;
}

#tp-menubg {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to bottom, rgba(0, 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;
    font-weight: 400;
    background-color: #fff;
    color: #888 !important;
    line-height: 46px;
    padding: 0 20px;
    cursor: text;
    border: 0;
    width: 400px;
    margin-bottom: 0px;
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.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 0.3s;
    -webkit-transition: all 0.3s;
}

#rev_slider_167_6 .uranus.tparrows:hover:before {
    opacity: 0.75;
}

.tp-caption.FullSiteBlock-SubTitle,
.FullSiteBlock-SubTitle {
    color: #333333;
    font-size: 25px;
    line-height: 34px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}

.tp-caption.ParallaxWebsite-FooterItem,
.ParallaxWebsite-FooterItem {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
}

.tp-caption.ParallaxWebsite-FooterItem:hover,
.ParallaxWebsite-FooterItem:hover {
    color: white;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    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;
}

.tp-caption.FullSiteBlock-Link,
.FullSiteBlock-Link {
    color: #0096ff;
    font-size: 25px;
    line-height: 24px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    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 0.3s;
    transition: color 0.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: 0px;
    margin-left: 30px;
    border-radius: 0px 30px 30px 0px;
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform-origin: 0% 50%;
    -webkit-transform-origin: 0% 50%;
}

.ares.tp-rightarrow .tp-title-wrap {
    right: 0px;
    margin-right: 30px;
    margin-left: 0px;
    -webkit-transform-origin: 100% 50%;
    border-radius: 30px 0px 0px 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 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    text-transform: uppercase;
    color: #000;
    font-weight: 400;
    font-size: 14px;
    line-height: 60px;
    white-space: nowrap;
    padding: 0px 20px;
    margin-left: 10px;
    opacity: 0;
}

.ares.tp-rightarrow .tp-arr-titleholder {
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
    margin-left: 0px;
    margin-right: 10px;
}

.ares.tparrows:hover .tp-arr-titleholder {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    opacity: 1;
}

.ares.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;
}

.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:hover,
.ares .tp-bullet.selected {
    background: #fff;
}

.ares .tp-bullet-title {
    position: absolute;
    color: #888;
    font-size: 12px;
    padding: 0px 10px;
    font-weight: 600;
    right: 27px;
    top: -4px;
    background: #fff;
    background: rgba(255, 255, 255, 0.75);
    visibility: hidden;
    transform: translateX(-20px);
    -webkit-transform: translateX(-20px);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transition: transform 0.3s;
    line-height: 20px;
    white-space: nowrap;
}

.ares .tp-bullet-title:after {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.75);
    content: " ";
    position: absolute;
    right: -10px;
    top: 0px;
}

.ares .tp-bullet:hover .tp-bullet-title {
    visibility: visible;
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
}

.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: 0px;
    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-weight: 500;
    font-size: 12px;
    margin-bottom: 0px;
}

.ares .tp-tab-title {
    display: block;
    text-align: left;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    line-height: 17px;
}

.ares .tp-tab:hover,
.ares .tp-tab.selected {
    background: #eee;
}

.custom.tparrows {
    cursor: pointer;
    background: #000;
    background: rgba(0, 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: transparent;
    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, 0.5);
    cursor: pointer;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.custom .tp-bullet:hover,
.custom .tp-bullet.selected {
    background: #7d7d7d;
}

.dione.tparrows {
    height: 100%;
    width: 100px;
    background: transparent;
    background: rgba(0, 0, 0, 0);
    line-height: 100%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.dione.tparrows:hover {
    background: rgba(0, 0, 0, 0.45);
}

.dione .tp-arr-imgwrapper {
    width: 100px;
    left: 0px;
    position: absolute;
    height: 100%;
    top: 0px;
    overflow: hidden;
}

.dione.tp-rightarrow .tp-arr-imgwrapper {
    left: auto;
    right: 0px;
}

.dione .tp-arr-imgholder {
    background-position: center center;
    background-size: cover;
    width: 100px;
    height: 100%;
    top: 0px;
    visibility: hidden;
    transform: translateX(-50px);
    -webkit-transform: translateX(-50px);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    opacity: 0;
    left: 0px;
}

.dione.tparrows.tp-rightarrow .tp-arr-imgholder {
    right: 0px;
    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 0.3s;
    -webkit-transition: all 0.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(0px);
    -webkit-transform: translateX(0px);
    opacity: 1;
    visibility: visible;
}

.dione .tp-bullet {
    opacity: 1;
    width: 50px;
    height: 50px;
    padding: 3px;
    background: #000;
    background-color: rgba(0, 0, 0, 0.25);
    margin: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.3s;
    -webkit-transition: all 0.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 0px rgba(0, 0, 0, 0.25);
    box-shadow: inset 5px 5px 10px 0px rgba(0, 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, 0.75);
    color: #fff;
    padding: 10px 30px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    opacity: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    transform-origin: 50% 100%;
    -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    -webkit-transform-origin: 50% 100%;
    opacity: 0;
    white-space: nowrap;
}

.dione .tp-bullet:hover .tp-bullet-title {
    transform: rotateX(0deg) translateX(-50%);
    -webkit-transform: rotateX(0deg) translateX(-50%);
    opacity: 1;
}

.dione .tp-bullet.selected,
.dione .tp-bullet:hover {
    background: white;
    background: -webkit-gradient(left top, left bottom, color-stop(0%, white), color-stop(100%, #777777));
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(#777777));
    background: linear-gradient(to bottom, white 0%, #777777 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );
}

.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, 0.75) transparent transparent transparent;
    bottom: -8px;
}

.erinyen.tparrows {
    cursor: pointer;
    background: #000;
    background: rgba(0, 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, 0.5);
    min-height: 70px;
    line-height: 70px;
    top: 0px;
    margin-left: 0px;
    border-radius: 35px;
    overflow: hidden;
    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.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: 0px;
    margin-right: 0px;
    margin-left: 0px;
    -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 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    line-height: 70px;
    white-space: nowrap;
    padding: 0px 20px;
    margin-left: 11px;
    opacity: 0;
}

.erinyen .tp-arr-imgholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-position: center center;
    background-size: cover;
}

.erinyen .tp-arr-img-over {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: #000;
    background: rgba(0, 0, 0, 0.5);
}

.erinyen.tp-rightarrow .tp-arr-titleholder {
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
    margin-left: 0px;
    margin-right: 11px;
}

.erinyen.tparrows:hover .tp-arr-titleholder {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    opacity: 1;
}

.erinyen.tp-bullets:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #555555;
    background: -webkit-gradient(linear, left top, left bottom, from(#555555), to(#222222));
    background: linear-gradient(to bottom, #555555 0%, #222222 100%);
    -webkit-filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#555555", endcolorstr="#222222",gradienttype=0 );
    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: 0px 0px 2px 1px rgba(33, 33, 33, 0.3);
    box-shadow: 0px 0px 2px 1px rgba(33, 33, 33, 0.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:hover,
.erinyen .tp-bullet.selected {
    background: #e5e5e5;
    background: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#999999));
    background: linear-gradient(to bottom, #e5e5e5 0%, #999999 100%);
    -webkit-filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#e5e5e5", endcolorstr="#999999",gradienttype=0 );
    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, 0.25);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.erinyen .tp-thumb-more:before {
    font-family: "revicons";
    font-size: 12px;
    color: #aaa;
    color: rgba(255, 255, 255, 0.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: 0px;
    left: 0px;
    z-index: 2;
    padding: 20px 35px 20px 20px;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    font-weight: 500;
}

.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;
    font-weight: 400;
    color: #fff;
    line-height: 25px;
    font-family: "Roboto Slab";
}

.gyges.tp-bullets:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #777777;
    background: -webkit-gradient(linear, left top, left bottom, from(#777777), to(#666666));
    background: linear-gradient(to bottom, #777777 0%, #666666 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#777777",  endColorstr="#666666",GradientType=0 );
    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:hover,
.gyges .tp-bullet.selected {
    background: #ffffff;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e1e1e1));
    background: linear-gradient(to bottom, #ffffff 0%, #e1e1e1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff",  endColorstr="#e1e1e1",GradientType=0 );
}

.gyges .tp-thumb {
    opacity: 1;
}

.gyges .tp-thumb-img-wrap {
    padding: 3px;
    background: #000;
    background-color: rgba(0, 0, 0, 0.25);
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.3s;
    -webkit-transition: all 0.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 0px rgba(0, 0, 0, 0.25);
    box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
}

.gyges .tp-thumb-title {
    position: absolute;
    bottom: 100%;
    display: inline-block;
    left: 50%;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 30px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    margin-bottom: 20px;
    opacity: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    transform-origin: 50% 100%;
    -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    -webkit-transform-origin: 50% 100%;
    white-space: nowrap;
}

.gyges .tp-thumb:hover .tp-thumb-title {
    transform: rotateX(0deg) translateX(-50%);
    -webkit-transform: rotateX(0deg) translateX(-50%);
    opacity: 1;
}

.gyges .tp-thumb:hover .tp-thumb-img-wrap,
.gyges .tp-thumb.selected .tp-thumb-img-wrap {
    background: white;
    background: -webkit-gradient(left top, left bottom, color-stop(0%, white), color-stop(100%, #777777));
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(#777777));
    background: linear-gradient(to bottom, white 0%, #777777 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );
}

.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, 0.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, 0.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: 0px;
    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, 0.25);
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 0px;
}

.gyges .tp-tab-title {
    display: block;
    text-align: left;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    line-height: 17px;
}

.gyges .tp-tab:hover,
.gyges .tp-tab.selected {
    background: rgba(0, 0, 0, 0.5);
}

.hades.tparrows {
    cursor: pointer;
    background: #000;
    background: rgba(0, 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 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
}

.hades.tparrows.tp-leftarrow:before {
    content: "\e824";
}

.hades.tparrows.tp-rightarrow:before {
    content: "\e825";
}

.hades.tparrows:hover:before {
    color: #aaa;
    background: #fff;
    background: white;
}

.hades .tp-arr-allwrapper {
    position: absolute;
    left: 100%;
    top: 0px;
    background: #888;
    width: 100px;
    height: 100px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -ms-filter: "progid:dximagetransform.microsoft.alpha(opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0.0;
    -khtml-opacity: 0.0;
    opacity: 0.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 {
    -ms-filter: "progid:dximagetransform.microsoft.alpha(opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    -webkit-transform: rotatey(0deg);
    transform: rotatey(0deg);
}

.hades .tp-arr-imgholder {
    background-size: cover;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.hades.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;
}

.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: 0px 0px 3px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.2);
    -webkit-perspective: 400;
    perspective: 400;
    -webkit-transform: translatez(0.01px);
    transform: translatez(0.01px);
}

.hades .tp-bullet:hover,
.hades .tp-bullet.selected {
    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 0.3s;
    transition: all 0.3s;
    -webkit-transform-style: flat;
    transform-style: flat;
    perspective: 600;
    -webkit-perspective: 600;
    transform: rotatex(-90deg);
    -webkit-transform: rotatex(-90deg);
    -webkit-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 3px 1px rgba(0, 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(0deg);
    -webkit-transform: rotatex(0deg);
    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, 0.25);
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.3s;
    -webkit-transition: all 0.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 0px rgba(0, 0, 0, 0.25);
    box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
}

.hades .tp-thumb:hover .tp-thumb-img-wrap,
.hades .tp-thumb.selected .tp-thumb-img-wrap {
    background: white;
    background: -webkit-gradient(left top, left bottom, color-stop(0%, white), color-stop(100%, #777777));
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(#777777));
    background: linear-gradient(to bottom, white 0%, #777777 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );
}

.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, 0.75) transparent transparent transparent;
    bottom: -8px;
}

.hades .tp-tab {
    opacity: 1;
}

.hades .tp-tab-title {
    display: block;
    color: #333;
    font-weight: 600;
    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 0.3s;
    transition: color 0.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, 0.75);
    min-height: 60px;
    line-height: 60px;
    top: -10px;
    margin-left: 0px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform-origin: 0% 50%;
    -webkit-transform-origin: 0% 50%;
}

.hebe.tp-rightarrow .tp-title-wrap {
    right: 0px;
    -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-weight: 600;
    font-size: 12px;
    line-height: 90px;
    white-space: nowrap;
    padding: 0px 20px 0px 90px;
}

.hebe.tp-rightarrow .tp-arr-titleholder {
    margin-left: 0px;
    padding: 0px 90px 0px 20px;
}

.hebe.tparrows:hover .tp-arr-titleholder {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.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: 0px;
    right: -90px;
}

.hebe.tp-rightarrow .tp-arr-imgholder {
    right: auto;
    left: -90px;
}

.hebe.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;
}

.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(0.01px);
    transform: translateZ(0.01px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.hebe .tp-bullet:hover,
.hebe .tp-bullet.selected {
    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 0.3s;
    transition: all 0.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;
    font-weight: 400;
    color: #fff;
    line-height: 25px;
    font-family: "Roboto Slab";
}

.hephaistos.tparrows {
    cursor: pointer;
    background: #000;
    background: rgba(0, 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: transparent;
    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: 0px 0px 2px 1px rgba(130, 130, 130, 0.3);
    box-shadow: 0px 0px 2px 1px rgba(130, 130, 130, 0.3);
}

.hephaistos .tp-bullet:hover,
.hephaistos .tp-bullet.selected {
    background: #fff;
    border-color: #000;
}

.hermes.tparrows {
    cursor: pointer;
    background: #000;
    background: rgba(0, 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(0px);
    -webkit-transform: translateX(0px);
    transition: all 0.3s;
    -webkit-transition: all 0.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: 0px;
    left: 0px;
    visibility: hidden;
    -webkit-transition: -webkit-transform 0.3s 0.3s;
    transition: -webkit-transform 0.3s 0.3s;
    transition: transform 0.3s 0.3s;
    transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.hermes.tp-rightarrow .tp-arr-allwrapper {
    right: 0px;
    left: auto;
}

.hermes.tparrows:hover .tp-arr-allwrapper {
    visibility: visible;
}

.hermes .tp-arr-imgholder {
    width: 180px;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 110px;
    transform: translateX(-180px);
    -webkit-transform: translateX(-180px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.hermes.tp-rightarrow .tp-arr-imgholder {
    transform: translateX(180px);
    -webkit-transform: translateX(180px);
}

.hermes.tparrows:hover .tp-arr-imgholder {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
}

.hermes .tp-arr-titleholder {
    top: 110px;
    width: 180px;
    text-align: left;
    display: block;
    padding: 0px 10px;
    line-height: 30px;
    background: #000;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-weight: 600;
    position: absolute;
    font-size: 12px;
    white-space: nowrap;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s;
    transition: all 0.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: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.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 0.3s ease;
    transition: background 0.3s ease;
    position: absolute;
}

.hermes .tp-bullet:hover {
    background-color: rgba(0, 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 0.3s ease;
    transition: height 0.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: 0px;
    left: -10px;
}

.hermes .tp-tab-date {
    display: block;
    color: #888;
    font-weight: 600;
    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: 0px;
    height: 0px;
    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, 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: transparent;
    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: #999999;
    background: -webkit-gradient(linear, left top, left bottom, from(#999999), to(#e1e1e1));
    background: linear-gradient(to bottom, #999999 0%, #e1e1e1 100%);
    -webkit-filter: progid:dximagetransform.microsoft.gradient(  startcolorstr="#999999", endcolorstr="#e1e1e1",gradienttype=0 );
    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:hover,
.hesperiden .tp-bullet.selected {
    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: 0px;
    left: 0px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transform: rotatex(90deg) translatez(0.001px);
    transform-origin: 50% 100%;
    -webkit-transform: rotatex(90deg) translatez(0.001px);
    -webkit-transform-origin: 50% 100%;
    opacity: 0;
}

.hesperiden .tp-thumb:hover .tp-thumb-title {
    transform: rotatex(0deg);
    -webkit-transform: rotatex(0deg);
    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: 0px;
    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-weight: 500;
    font-size: 12px;
    margin-bottom: 0px;
}

.hesperiden .tp-tab-title {
    display: block;
    text-align: left;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    line-height: 17px;
}

.hesperiden .tp-tab:hover,
.hesperiden .tp-tab.selected {
    background: #eee;
}

.metis.tparrows {
    background: #fff;
    padding: 10px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    width: 60px;
    height: 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.metis.tparrows:hover {
    background: #fff;
    background: rgba(255, 255, 255, 0.75);
}

.metis.tparrows:before {
    color: #000;
    transition: all 0.3s;
    -webkit-transition: all 0.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, 0.25);
    margin: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.3s;
    -webkit-transition: all 0.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 0px rgba(0, 0, 0, 0.25);
    box-shadow: inset 5px 5px 10px 0px rgba(0, 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, 0.75);
    color: #fff;
    padding: 10px 30px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    opacity: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    transform-origin: 50% 100%;
    -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    -webkit-transform-origin: 50% 100%;
    opacity: 0;
    white-space: nowrap;
}

.metis .tp-bullet:hover .tp-bullet-title {
    transform: rotateX(0deg) translateX(-50%);
    -webkit-transform: rotateX(0deg) translateX(-50%);
    opacity: 1;
}

.metis .tp-bullet.selected,
.metis .tp-bullet:hover {
    background: white;
    background: -webkit-gradient(left top, left bottom, color-stop(0%, white), color-stop(100%, #777777));
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(#777777));
    background: linear-gradient(to bottom, white 0%, #777777 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );
}

.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, 0.75) transparent transparent transparent;
    bottom: -8px;
}

.metis .tp-tab-number {
    color: #fff;
    font-size: 40px;
    line-height: 30px;
    font-weight: 400;
    font-family: "Playfair Display";
    width: 50px;
    margin-right: 17px;
    display: inline-block;
    float: left;
}

.metis .tp-tab-mask {
    padding-left: 20px;
    left: 0px;
    max-width: 90px !important;
    -webkit-transition: 0.4s padding-left, 0.4s left, 0.4s max-width;
    transition: 0.4s padding-left, 0.4s left, 0.4s max-width;
}

.metis:hover .tp-tab-mask {
    padding-left: 0px;
    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-weight: 400;
    font-family: "Playfair Display";
    position: relative;
    padding-top: 10px;
    padding-left: 30px;
    display: inline-block;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.4s all;
    transition: 0.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: 0.15;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
}

.metis .tp-tab:hover,
.metis .tp-tab.selected {
    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, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    left: 0px;
    top: 0px;
    position: absolute;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
}

.metis.tp-tabs:hover:before {
    width: 118px;
}

@media (max-width: 499px) {
    .metis.tp-tabs:before {
        background: rgba(0, 0, 0, 0.75);
    }
}

.persephone.tparrows {
    cursor: pointer;
    background: #aaa;
    background: rgba(200, 200, 200, 0.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:hover,
.persephone .tp-bullet.selected {
    background: #222;
}

.uranus.tparrows {
    width: 50px;
    height: 50px;
    background: transparent;
}

.uranus.tparrows:before {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 40px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.uranus.tparrows:hover:before {
    opacity: 0.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 0.3s ease;
    -webkit-transition: -webkit-box-shadow 0.3s ease;
    transition: -webkit-box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
    background: transparent;
}

.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: transparent;
}

.uranus .tp-bullet-inner {
    background-color: rgba(255, 255, 255, 0.7);
    -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
    transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
    transition: background-color 0.3s ease, transform 0.3s ease;
    transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
    border-radius: 50%;
    background-color: #FFF;
    background-color: rgba(255, 255, 255, 0.3);
    text-indent: -999em;
    cursor: pointer;
    position: absolute;
}

.uranus .tp-bullet.selected .tp-bullet-inner,
.uranus .tp-bullet:hover .tp-bullet-inner {
    transform: scale(0.4);
    -webkit-transform: scale(0.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, 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, 0.5);
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    border-radius: 50%;
}

.zeus .tp-arr-imgholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-position: center center;
    background-size: cover;
    border-radius: 50%;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.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 0.3s ease;
    transition: opacity 0.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 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.zeus .tp-bullet:hover:after,
.zeus .tp-bullet.selected: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, 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 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.zeus .tp-bullet-title,
.zeus .tp-bullet-imageoverlay {
    z-index: 2;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.zeus .tp-bullet-title {
    color: #fff;
    text-align: center;
    line-height: 15px;
    font-size: 13px;
    font-weight: 600;
    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 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 45px;
    width: 135px;
    vertical-align: middle;
    left: -57px;
}

.zeus .tp-bullet:hover .tp-bullet-title,
.zeus .tp-bullet:hover .tp-bullet-image,
.zeus .tp-bullet:hover .tp-bullet-imageoverlay {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.zeus .tp-thumb {
    opacity: 1;
}

.zeus .tp-thumb-over {
    background: #000;
    background: rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.zeus .tp-thumb-more:before {
    font-family: "revicons";
    font-size: 12px;
    color: #aaa;
    color: rgba(255, 255, 255, 0.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: 0px;
    left: 0px;
    z-index: 2;
    padding: 20px 35px 20px 20px;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    font-weight: 500;
}

.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, 0.25);
    font-family: "Roboto Slab", serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 13px;
    color: #fff;
    padding: 9px 10px;
}

.zeus .tp-tab:hover .tp-tab-title,
.zeus .tp-tab.selected .tp-tab-title {
    color: #000;
    background: white;
}

.post-tabs .tp-thumb {
    opacity: 1;
}

.post-tabs .tp-thumb-over {
    background: #252525;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.post-tabs .tp-thumb-more:before {
    font-family: "revicons";
    font-size: 12px;
    color: #aaa;
    color: rgba(255, 255, 255, 0.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: 0px;
    left: 0px;
    z-index: 2;
    padding: 15px 30px 15px 15px;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    font-weight: 500;
}

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

@charset "UTF-8";

#debungcontrolls {
    z-index: 100000;
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: auto;
    background: rgba(0, 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: 0px;
    left: 0px;
    height: 100%;
    width: 0;
}

.rs-go-fullscreen {
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0px !important;
    left: 0px !important;
    z-index: 9999999 !important;
    background: #ffffff !important;
}

.debugtimeline.tl_slide .the_timeline_tester {
    background: #f39c12;
}

.debugtimeline.tl_frame .the_timeline_tester {
    background: #3498db;
}

.debugtimline_txt {
    color: #fff;
    font-weight: 400;
    font-size: 7px;
    position: absolute;
    left: 10px;
    top: 0px;
    white-space: nowrap;
    line-height: 10px;
}

.rtl {
    direction: rtl;
}

@font-face {
    font-family: 'revicons';
  src: url("../fonts/revicons.eot?5510888");
  src: url("../fonts/revicons.eot?5510888#iefix") format("embedded-opentype"), url("../fonts/revicons.woff?5510888") format("woff"), url("../fonts/revicons.ttf?5510888") format("truetype"), url("../fonts/revicons.svg?5510888#revicons") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="revicon-"]:before, [class*=" revicon-"]:before {
    font-family: "revicons";
    font-style: normal;
    font-weight: 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;
}

.tp-simpleresponsive img,
.rev_slider img {
    max-width: none !important;
    -webkit-transition: none;
    transition: none;
    margin: 0px;
    padding: 0px;
    border: none;
}

.rev_slider .no-slides-text {
    font-weight: bold;
    text-align: center;
    padding-top: 80px;
}

.rev_slider &gt; ul,
.rev_slider_wrapper &gt; ul,
.tp-revslider-mainul &gt; li,
.rev_slider &gt; ul &gt; li,
.rev_slider &gt; ul &gt; li:before,
.tp-revslider-mainul &gt; li:before,
.tp-simpleresponsive &gt; ul,
.tp-simpleresponsive &gt; ul &gt; li,
.tp-simpleresponsive &gt; ul &gt; li:before,
.tp-revslider-mainul &gt; li,
.tp-simpleresponsive &gt; ul &gt; li {
    list-style: none !important;
    position: absolute;
    margin: 0px !important;
    padding: 0px !important;
    overflow-x: visible;
    overflow-y: visible;
    list-style-type: none !important;
    background-image: none;
    background-position: 0px 0px;
    text-indent: 0em;
    top: 0px;
    left: 0px;
}

.tp-revslider-mainul &gt; li,
.rev_slider &gt; ul &gt; li,
.rev_slider &gt; ul &gt; li:before,
.tp-revslider-mainul &gt; li:before,
.tp-simpleresponsive &gt; ul &gt; li,
.tp-simpleresponsive &gt; ul &gt; li:before,
.tp-revslider-mainul &gt; li,
.tp-simpleresponsive &gt; ul &gt; li {
    visibility: hidden;
}

.tp-revslider-slidesli,
.tp-revslider-mainul {
    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 .tp-caption,
.rev_slider .caption {
    position: relative;
    visibility: hidden;
    white-space: nowrap;
    display: block;
    -webkit-font-smoothing: antialiased !important;
    z-index: 1;
}

.rev_slider .tp-caption,
.rev_slider .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.cur), move;
}

.tp-carousel-wrapper.dragged {
    cursor: url(closedhand.cur), 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-forcenotvisible,
.tp-hide-revslider,
.tp-caption.tp-hidden-caption,
.tp-parallax-wrap.tp-hidden-caption {
    visibility: hidden !important;
    display: none !important;
}

.rev_slider embed,
.rev_slider iframe,
.rev_slider object,
.rev_slider audio,
.rev_slider video {
    max-width: none !important;
}

.tp-element-background {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.tp-blockmask,
.tp-blockmask_in,
.tp-blockmask_out {
    position: absolute;
    top: 0px;
    left: 0px;
    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: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 50px;
    font-size: 0px;
}

.rev_row_zone_top {
    top: 0px;
}

.rev_row_zone_middle {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.rev_row_zone_bottom {
    bottom: 0px;
}

.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: 0px;
}

.rev_column {
    display: table-cell;
    position: relative;
    vertical-align: top;
    height: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 0px;
}

.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: 0px;
    left: 0px;
    z-index: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-clip: content-box;
    border: 0px solid transparent;
}

.rev_column_inner .tp-parallax-wrap,
.rev_column_inner .tp-loop-wrap,
.rev_column_inner .tp-mask-wrap {
    text-align: inherit;
}

.rev_column_inner .tp-mask-wrap {
    display: inline-block;
}

.rev_column_inner .tp-parallax-wrap .tp-loop-wrap,
.rev_column_inner .tp-parallax-wrap .tp-mask-wrap,
.rev_column_inner .tp-parallax-wrap {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    line-height: 0px;
}

.rev_column_inner .tp-parallax-wrap .tp-loop-wrap,
.rev_column_inner .tp-parallax-wrap .tp-mask-wrap,
.rev_column_inner .tp-parallax-wrap,
.rev_column_inner .rev_layer_in_column {
    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: 0px;
    left: 0px;
}

.tp-caption .frontcorner {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 0px solid transparent;
    border-top: 40px solid #00A8FF;
    position: absolute;
    left: -40px;
    top: 0px;
}

.tp-caption .backcorner {
    width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 40px solid #00A8FF;
    position: absolute;
    right: 0px;
    top: 0px;
}

.tp-caption .frontcornertop {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 40px solid #00A8FF;
    position: absolute;
    left: -40px;
    top: 0px;
}

.tp-caption .backcornertop {
    width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 40px solid transparent;
    border-top: 40px solid #00A8FF;
    position: absolute;
    right: 0px;
    top: 0px;
}

.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: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 0;
}

.tp-caption.coverscreenvideo {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
}

.caption.fullscreenvideo,
.tp-caption.fullscreenvideo {
    left: 0px;
    top: 0px;
    position: absolute;
    width: 100%;
    height: 100%;
}

.caption.fullscreenvideo iframe,
.caption.fullscreenvideo audio,
.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: 0px;
    left: 0px;
}

.videoisplaying .html5vid .tp-poster {
    display: none;
}

.tp-video-play-button {
    background: #000;
    background: rgba(0, 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 300ms ease-out !important;
    transition: opacity 300ms ease-out !important;
}

.tp-hiddenaudio,
.tp-audio-html5 .tp-video-play-button {
    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%, black), to(#323232));
    background-image: linear-gradient(to bottom, black 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, 0.5);
    border: 0;
    color: #EEE;
    border-radius: 3px;
    cursor: pointer;
    line-height: 12px;
    font-size: 12px;
    color: #fff;
    padding: 0px;
    margin: 0px;
    outline: none;
}

.tp-video-button:hover {
    cursor: pointer;
}

.tp-video-button-wrap,
.tp-video-seek-bar-wrap,
.tp-video-vol-bar-wrap {
    padding: 0px 5px;
    display: table-cell;
    vertical-align: middle;
}

.tp-video-seek-bar-wrap {
    width: 80%;
}

.tp-video-vol-bar-wrap {
    width: 20%;
}

.tp-volume-bar,
.tp-seek-bar {
    width: 100%;
    cursor: pointer;
    outline: none;
    line-height: 12px;
    margin: 0;
    padding: 0;
}

.rs-fullvideo-cover {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    background: transparent;
    z-index: 5;
}

.disabled_lc .tp-video-play-button,
.rs-background-video-layer video::-webkit-media-controls-start-playback-button,
.rs-background-video-layer video::-webkit-media-controls,
.rs-background-video-layer audio::-webkit-media-controls {
    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: 0px;
    left: 0px;
    z-index: 3;
}

.tp-dottedoverlay.twoxtwo {
    background: url(../assets/gridtile.png);
}

.tp-dottedoverlay.twoxtwowhite {
    background: url(../assets/gridtile_white.png);
}

.tp-dottedoverlay.threexthree {
    background: url(../assets/gridtile_3x3.png);
}

.tp-dottedoverlay.threexthreewhite {
    background: url(../assets/gridtile_3x3_white.png);
}

.tp-shadowcover {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: #fff;
    position: absolute;
    z-index: -1;
}

.tp-shadow1 {
    -webkit-box-shadow: 0 10px 6px -6px rgba(0, 0, 0, 0.8);
    box-shadow: 0 10px 6px -6px rgba(0, 0, 0, 0.8);
}

.tp-shadow2:before, .tp-shadow2:after,
.tp-shadow3:before, .tp-shadow4:after {
    z-index: -2;
    position: absolute;
    content: "";
    bottom: 10px;
    left: 10px;
    width: 50%;
    top: 85%;
    max-width: 300px;
    background: transparent;
    -webkit-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.8);
    box-shadow: 0 15px 10px rgba(0, 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, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

.tp-shadow5:before, .tp-shadow5:after {
    content: "";
    position: absolute;
    z-index: -2;
    -webkit-box-shadow: 0 0 25px 0px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 25px 0px rgba(0, 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: 0px 1px 1px rgba(0, 0, 0, 0.6) !important;
    font-size: 15px;
    line-height: 45px !important;
    font-family: arial, sans-serif;
    font-weight: bold;
    letter-spacing: -1px;
    text-decoration: none;
}

.tp-button.big {
    color: #fff;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.6);
    font-weight: bold;
    padding: 9px 20px;
    font-size: 19px;
    line-height: 57px !important;
}

.purchase:hover,
.tp-button:hover,
.tp-button.big:hover {
    background-position: bottom, 15px 11px;
}

.tp-button.green, .tp-button:hover.green,
.purchase.green, .purchase:hover.green {
    background-color: #21a117;
    -webkit-box-shadow: 0px 3px 0px 0px #104d0b;
    box-shadow: 0px 3px 0px 0px #104d0b;
}

.tp-button.blue, .tp-button:hover.blue,
.purchase.blue, .purchase:hover.blue {
    background-color: #1d78cb;
    -webkit-box-shadow: 0px 3px 0px 0px #0f3e68;
    box-shadow: 0px 3px 0px 0px #0f3e68;
}

.tp-button.red, .tp-button:hover.red,
.purchase.red, .purchase:hover.red {
    background-color: #cb1d1d;
    -webkit-box-shadow: 0px 3px 0px 0px #7c1212;
    box-shadow: 0px 3px 0px 0px #7c1212;
}

.tp-button.orange, .tp-button:hover.orange,
.purchase.orange, .purchase:hover.orange {
    background-color: #ff7700;
    -webkit-box-shadow: 0px 3px 0px 0px #a34c00;
    box-shadow: 0px 3px 0px 0px #a34c00;
}

.tp-button.darkgrey, .tp-button.grey,
.tp-button:hover.darkgrey, .tp-button:hover.grey,
.purchase.darkgrey, .purchase:hover.darkgrey {
    background-color: #555;
    -webkit-box-shadow: 0px 3px 0px 0px #222;
    box-shadow: 0px 3px 0px 0px #222;
}

.tp-button.lightgrey, .tp-button:hover.lightgrey,
.purchase.lightgrey, .purchase:hover.lightgrey {
    background-color: #888;
    -webkit-box-shadow: 0px 3px 0px 0px #555;
    box-shadow: 0px 3px 0px 0px #555;
}

.rev-btn,
.rev-btn:visited {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    line-height: 44px;
    font-size: 17px;
    font-weight: 500;
    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;
    font-weight: normal;
    position: relative;
    top: 0px;
    -webkit-transition: all 0.2s ease-out !important;
    transition: all 0.2s ease-out !important;
    margin-left: 10px !important;
}

.rev-btn.rev-hiddenicon i {
    font-size: 15px;
    font-weight: normal;
    position: relative;
    top: 0px;
    -webkit-transition: all 0.2s ease-out !important;
    transition: all 0.2s ease-out !important;
    opacity: 0;
    margin-left: 0px !important;
    width: 0px !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: 0px;
}

.rev-btn.rev-medium.rev-hiddenicon i {
    font-size: 14px;
    top: 0px;
}

.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: 0px;
}

.rev-btn.rev-small.rev-hiddenicon i {
    font-size: 12px;
    top: 0px;
}

.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, 0.25);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -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, 0.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 white;
    border-radius: 23px;
}

.rev-scroll-btn &gt; * {
    display: inline-block;
    line-height: 18px;
    font-size: 13px;
    font-weight: normal;
    color: #7f8c8d;
    color: #ffffff;
    font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 2px;
}

.rev-scroll-btn &gt; *:hover,
.rev-scroll-btn &gt; *:focus,
.rev-scroll-btn &gt; *.active {
    color: #ffffff;
}

.rev-scroll-btn &gt; *:hover,
.rev-scroll-btn &gt; *:focus,
.rev-scroll-btn &gt; *:active,
.rev-scroll-btn &gt; *.active {
    opacity: 0.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: white;
    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-weight: 400;
    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, 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, 0.75);
}

.rev-cbutton-light-sr {
    color: #333;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.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, 0.15);
    position: absolute;
    z-index: 200;
    top: 0px;
}

.tp-bannertimer.tp-bottom {
    top: auto;
    bottom: 0px !important;
    height: 5px;
}

.tp-caption img {
    background: transparent;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
    zoom: 1;
}

.caption.slidelink a div,
.tp-caption.slidelink a div {
    width: 3000px;
    height: 1500px;
    background: url(../assets/coloredbg.png) repeat;
}

.tp-caption.slidelink a span {
    background: url(../assets/coloredbg.png) 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,
.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.gif);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 20px 0px rgba(0, 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: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 20px 0px rgba(0, 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.gif);
    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(0deg) rotateY(0deg);
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }

    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(0deg) rotateY(0deg);
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }

    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: #ff0000;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    border-radius: 100%;
    -webkit-animation: tp-scaleout 1.0s infinite ease-in-out;
    animation: tp-scaleout 1.0s 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 0px 0px -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: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 20px 0px rgba(0, 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: -0.32s;
    animation-delay: -0.32s;
}

.tp-loader.spinner3 .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes tp-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes tp-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.tp-loader.spinner4 {
    margin: -20px 0px 0px -20px;
    width: 40px;
    height: 40px;
    text-align: center;
    -webkit-animation: tp-rotate 2.0s infinite linear;
    animation: tp-rotate 2.0s 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 2.0s infinite ease-in-out;
    animation: tp-bounce 2.0s infinite ease-in-out;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.tp-loader.spinner4 .dot2 {
    top: auto;
    bottom: 0px;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-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-thumbs.navbar,
.tp-bullets.navbar,
.tp-tabs.navbar {
    border: none;
    min-height: 0;
    margin: 0;
    border-radius: 0;
}

.tp-tabs,
.tp-thumbs,
.tp-bullets {
    position: absolute;
    display: block;
    z-index: 1000;
    top: 0px;
    left: 0px;
}

.tp-tab,
.tp-thumb {
    cursor: pointer;
    position: absolute;
    opacity: 0.5;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.tp-arr-imgholder,
.tp-videoposter,
.tp-thumb-image,
.tp-tab-image {
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
}

.tp-tab:hover,
.tp-tab.selected,
.tp-thumb:hover,
.tp-thumb.selected {
    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, 0.3);
    cursor: pointer;
}

.tp-bullet.selected,
.tp-bullet:hover {
    background: #fff;
}

.tparrows {
    cursor: pointer;
    background: #000;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    position: absolute;
    display: block;
    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, 0.4);
    box-shadow: 0 45px 100px rgba(0, 0, 0, 0.4);
}

.hglayerinfo {
    position: fixed;
    bottom: 0px;
    left: 0px;
    color: #FFF;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    background: rgba(0, 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;
    font-weight: 600;
    background: #000;
    padding: 2px 5px;
}

.indebugmode .tp-caption:hover {
    border: 1px dashed #c0392b !important;
}

.helpgrid {
    border: 2px dashed #c0392b;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
}

#revsliderlogloglog {
    padding: 15px;
    color: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 200px;
    height: 150px;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100000;
    font-size: 10px;
    overflow: scroll;
}

.aden {
    -webkit-filter: hue-rotate(-20deg) contrast(0.9) saturate(0.85) brightness(1.2);
    filter: hue-rotate(-20deg) contrast(0.9) saturate(0.85) brightness(1.2);
}

.aden::after {
    background: -webkit-gradient(linear, left top, right top, from(rgba(66, 10, 14, 0.2)), to(transparent));
    background: linear-gradient(to right, rgba(66, 10, 14, 0.2), transparent);
    mix-blend-mode: darken;
}

.perpetua::after, .reyes::after {
    mix-blend-mode: soft-light;
    opacity: .5;
}

.inkwell {
    -webkit-filter: sepia(0.3) contrast(1.1) brightness(1.1) grayscale(1);
    filter: sepia(0.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(0.22) brightness(1.1) contrast(0.85) saturate(0.75);
    filter: sepia(0.22) brightness(1.1) contrast(0.85) saturate(0.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, 0.2)), to(transparent));
    background: linear-gradient(to right, rgba(66, 10, 14, 0.2), transparent);
    mix-blend-mode: darken;
}

.toaster {
    -webkit-filter: contrast(1.5) brightness(0.9);
    filter: contrast(1.5) brightness(0.9);
}

.toaster::after {
    background: radial-gradient(circle, #804e0f, #3b003b);
    mix-blend-mode: screen;
}

.walden {
    -webkit-filter: brightness(1.1) hue-rotate(-10deg) sepia(0.3) saturate(1.6);
    filter: brightness(1.1) hue-rotate(-10deg) sepia(0.3) saturate(1.6);
}

.walden::after {
    background: #04c;
    mix-blend-mode: screen;
    opacity: .3;
}

.hudson {
    -webkit-filter: brightness(1.2) contrast(0.9) saturate(1.1);
    filter: brightness(1.2) contrast(0.9) saturate(1.1);
}

.hudson::after {
    background: radial-gradient(circle, #a6b1ff 50%, #342134);
    mix-blend-mode: multiply;
    opacity: .5;
}

.earlybird {
    -webkit-filter: contrast(0.9) sepia(0.2);
    filter: contrast(0.9) sepia(0.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, 0.8), rgba(255, 200, 200, 0.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, 0.3);
    mix-blend-mode: screen;
}

.brooklyn {
    -webkit-filter: contrast(0.9) brightness(1.1);
    filter: contrast(0.9) brightness(1.1);
}

.brooklyn::after {
    background: radial-gradient(circle, rgba(168, 223, 193, 0.4) 70%, #c4b7c8);
    mix-blend-mode: overlay;
}

.xpro2 {
    -webkit-filter: sepia(0.3);
    filter: sepia(0.3);
}

.xpro2::after {
    background: radial-gradient(circle, #e6e7e0 40%, rgba(43, 42, 161, 0.6) 110%);
    mix-blend-mode: color-burn;
}

.nashville {
    -webkit-filter: sepia(0.2) contrast(1.2) brightness(1.05) saturate(1.2);
    filter: sepia(0.2) contrast(1.2) brightness(1.05) saturate(1.2);
}

.nashville::after {
    background: rgba(0, 70, 150, 0.4);
    mix-blend-mode: lighten;
}

.nashville::before {
    background: rgba(247, 176, 153, 0.56);
    mix-blend-mode: darken;
}

.lark {
    -webkit-filter: contrast(0.9);
    filter: contrast(0.9);
}

.lark::after {
    background: rgba(242, 242, 242, 0.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, 0.2);
    mix-blend-mode: overlay;
}

.willow {
    -webkit-filter: grayscale(0.5) contrast(0.95) brightness(0.9);
    filter: grayscale(0.5) contrast(0.95) brightness(0.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(0.2) contrast(0.9) saturate(0.9);
    filter: brightness(1.05) sepia(0.2) contrast(0.9) saturate(0.9);
}

.rise::after {
    background: radial-gradient(circle, rgba(232, 197, 152, 0.8), transparent 90%);
    mix-blend-mode: overlay;
    opacity: .6;
}

.rise::before {
    background: radial-gradient(circle, rgba(236, 205, 169, 0.15) 55%, rgba(50, 30, 7, 0.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(0.66) brightness(1.05);
    filter: saturate(0.66) brightness(1.05);
}

.slumber::after {
    background: rgba(125, 105, 24, 0.5);
    mix-blend-mode: soft-light;
}

.slumber::before {
    background: rgba(69, 41, 12, 0.4);
    mix-blend-mode: lighten;
}

.tp-kbimg-wrap:before,
.tp-kbimg-wrap:after {
    height: 500%;
    width: 500%;
}


</pre></body></html>