﻿/*
* Cirrus 0.7.1
* Stanley Lim, Copyright 2022
* https://spiderpig86.github.io/Cirrus
*/
@charset "UTF-8";

:root {
    --cirrus-fg: #0f172a;
    --cirrus-bg: #ffffff;
    --cirrus-select-bg: rgba(0, 161, 255, 0.2);
    --cirrus-code-bg: rgba(255, 218, 221, 1);
    --cirrus-code-fg: #dc4753;
    --cirrus-form-group-bg: rgba(248, 249, 250, 1);
    --cirrus-form-group-fg: rgba(144, 144, 144, 1);
    --toast-primary-bg: rgba(49, 59, 80, 0.9);
    --animation-duration: 0.2s;
    --focus-opacity: 0.55;
    --font-size-xs: 0.75rem;
    --font-size-s: 0.875rem;
    --font-size-m: 1rem;
    --font-size-l: 1.25rem;
    --font-size-xl: 1.5rem;
    --cirrus-focus-size: 0 0 0.1rem 0.15rem;
    --cirrus-focus-color: rgba(240, 61, 77, 0.13);
    --bg-opacity: 1;
    --color-opacity: 1;
    --border-opacity: 1;
    --grid-template-column: repeat(12, minmax(0, 1fr));
    --grid-column-start: auto;
    --grid-column-end: auto;
    --grid-row-start: auto;
    --grid-row-end: auto
}

*, ::after, ::before {
    box-sizing: border-box;
    border: 0 solid currentColor;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent
}

blockquote, body, dd, dl, dt, fieldset, figure, h1, h2, h3, h4, h5, h6, hr, html, iframe, legend, li, ol, p, pre, textarea, ul {
    margin: 0;
    padding: 0
}

body, html {
    border: none;
    height: 100%
}

body {
    letter-spacing: .01rem;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
    font-family: "Nunito Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    color: var(--cirrus-fg)
}

ul {
    list-style: none;
    list-style: disc
}

audio, canvas, embed, iframe, img, object, svg, video {
    display: block;
    max-width: 100%;
    height: auto
}

iframe {
    outline: 0;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0,0,0,.05)
}

article, aside, figure, footer, header, hgroup, section {
    display: block
}

button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit
}

label {
    display: inline-block;
    margin: .25rem 0
}

fieldset {
    padding: 1rem
}

    fieldset legend {
        font-weight: 700
    }

[hidden] {
    display: none !important
}

::selection {
    background-color: var(--cirrus-select-bg)
}

:focus {
    box-shadow: var(--cirrus-focus-size) var(--cirrus-focus-color);
    outline: 0
}

@keyframes loading {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(359deg)
    }
}

@keyframes pound {
    to {
        transform: scale(1.1)
    }
}

@keyframes bounce {
    20%,53%,80%,from,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        transform: translate3d(0,0,0)
    }

    40%,43% {
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-30px,0)
    }

    70% {
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-15px,0)
    }

    90% {
        transform: translate3d(0,-4px,0)
    }
}

@keyframes bounceIn {
    20%,40%,60%,80%,from,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    20% {
        transform: scale3d(1.1,1.1,1.1)
    }

    40% {
        transform: scale3d(.9,.9,.9)
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03,1.03,1.03)
    }

    80% {
        transform: scale3d(.97,.97,.97)
    }

    to {
        opacity: 1;
        transform: scale3d(1,1,1)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes pulse {
    50% {
        opacity: .5
    }
}

@keyframes ping {
    100%,75% {
        transform: scale(2);
        opacity: 0
    }
}

.hover-grow {
    transition-duration: .32s
}

    .hover-grow:hover {
        transform: scale(1.1);
        transition-duration: 80ms
    }

.animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

    .animated.loading {
        display: block;
        position: relative
    }

        .animated.loading::after {
            border: 2px solid #ced4da;
            border-radius: 50%;
            border-right-color: transparent;
            border-top-color: transparent;
            content: "";
            display: block;
            height: 1rem;
            width: 1rem;
            left: calc(50% - .8em);
            top: calc(50% - .7407407407em);
            position: absolute;
            animation: .5s linear infinite loading
        }

        .animated.loading.loading-white::after {
            border-left-color: #fff;
            border-bottom-color: #fff
        }

        .animated.loading.loading-left {
            padding-left: 3rem
        }

            .animated.loading.loading-left::after {
                left: 1rem;
                right: auto
            }

        .animated.loading.loading-right {
            padding-right: 3rem
        }

            .animated.loading.loading-right::after {
                left: auto;
                right: 1rem
            }

        .animated.loading.hide-text {
            color: transparent !important
        }

    .animated.pound {
        animation: .35s infinite alternate pound;
        vertical-align: baseline
    }

    .animated.bounce {
        animation-name: bounce;
        transform-origin: center bottom
    }

    .animated.bounceIn {
        animation-name: bounceIn
    }

    .animated.fadeIn {
        animation-name: fadeIn
    }

    .animated.infinite {
        animation-iteration-count: infinite
    }

        .animated.infinite.alternate {
            animation-direction: alternate
        }

    .animated.paused {
        animation-play-state: paused !important
    }

    .animated.pulse {
        animation: 1.25s cubic-bezier(.4,0,.6,1) infinite pulse
    }

    .animated.ping {
        animation: 1s cubic-bezier(0,0,.2,1) infinite ping
    }

h6 {
    font-size: 1.25rem;
    font-family: Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem
}

h5 {
    font-size: 1.5rem;
    font-family: Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem
}

h4 {
    font-size: 1.75rem;
    font-family: Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem
}

h3 {
    font-size: 2rem;
    font-family: Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem
}

h2 {
    font-size: 2.5rem;
    font-family: Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem
}

h1 {
    font-size: 3rem;
    letter-spacing: .025rem;
    font-family: Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem
}

article, blockquote, p {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 1rem
}

    p.lead {
        font-size: 1.2rem
    }

blockquote {
    background-color: #f8f9fa;
    border-left: 5px solid #e9ecef;
    border-radius: 3px;
    margin-bottom: 1rem;
    padding: 1rem 2rem
}

    blockquote.text--large {
        font-size: 1.15rem
    }

    blockquote p {
        margin: 0
    }

cite {
    opacity: .7
}

.mark, mark {
    padding: .2em;
    background-color: #f0e8c4
}

.font-primary {
    font-family: Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"
}

.font-alt, .font-secondary {
    font-family: "Nunito Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"
}

.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
    line-height: 1.125em;
    margin: 1rem 0
}

.title {
    font-weight: 700
}

    .subtitle:not(:last-child), .title:not(:last-child) {
        margin-bottom: 1rem
    }

    .title + .subtitle {
        margin-top: -.75rem
    }

.card-tile article, .card-tile blockquote, .card-tile p {
    line-height: inherit
}

.icon {
    display: inline-block;
    text-align: center;
    width: 1.5rem;
    vertical-align: baseline
}

    .icon.x-small {
        margin: .55rem 0 0 .1rem
    }

    .icon.small {
        margin: .95rem 0 0 .1rem
    }

    .icon .fa-wrapper {
        font-size: inherit
    }

.info {
    display: block;
    font-size: var(--font-size-s);
    margin-top: .25rem;
    color: #868e96
}

    .info.inline {
        display: inline-block;
        margin-left: .5rem
    }

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

abbr[title] {
    border-bottom: .1rem dotted;
    cursor: help;
    text-decoration: none
}

kbd {
    background-color: var(--cirrus-fg);
    border-radius: .2rem;
    color: #fff;
    display: inline-block;
    line-height: 1;
    padding: .5rem;
    vertical-align: baseline
}

.tracking-tightest {
    letter-spacing: -.075em !important
}

.tracking-tighter {
    letter-spacing: -.05em !important
}

.tracking-tight {
    letter-spacing: -.025em !important
}

.tracking-normal {
    letter-spacing: 0 !important
}

.tracking-loose {
    letter-spacing: .025em !important
}

.tracking-looser {
    letter-spacing: .05em !important
}

.tracking-loosest {
    letter-spacing: .1em !important
}

.leading-none {
    line-height: 1 !important
}

.leading-tighter {
    line-height: 1.25 !important
}

.leading-tight {
    line-height: 1.375 !important
}

.leading-normal {
    line-height: 1.5 !important
}

.leading-loose {
    line-height: 1.625 !important
}

.leading-looser {
    line-height: 2 !important
}

@media screen and (max-width:639px) {
    h6 {
        font-size: 1rem
    }

    h5 {
        font-size: 1.25rem
    }

    h4 {
        font-size: 1.5rem
    }

    h3 {
        font-size: 1.75rem
    }

    h2 {
        font-size: 2rem
    }

    h1 {
        font-size: 2.25rem
    }

    .headline-4 {
        font-size: 3rem
    }

    .headline-3 {
        font-size: 3.25rem
    }

    .headline-2 {
        font-size: 3.5rem
    }

    .headline-1 {
        font-size: 3.75rem
    }

    article, blockquote, p {
        margin: 1rem 0
    }
}


section {
    display: block
}

.content {
    max-width: 48em;
    margin: 0 auto 1.5em;
    width: 100%
}

@media screen and (min-width:1536px) {
    .content {
        max-width: 96em
    }
}

.fullscreen {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 100vh
}

.divider {
    border-top: .05rem solid rgba(173,181,189,.5);
    height: .1rem;
    margin: 1.8rem 0 1.6rem;
    position: relative
}

    .divider[data-content] {
        margin: .8rem 0
    }

        .divider--v[data-content]::after, .divider[data-content]::after {
            background: #fff;
            color: #adb5bd;
            content: attr(data-content);
            left: 50%;
            display: inline-block;
            padding: 0 .4rem;
            position: absolute;
            transform: translate(-50%,-50%);
            top: 50%
        }

.divider--v, .divider--v[data-content] {
    display: block;
    padding: .8rem
}

    .divider--v::before, .divider--v[data-content]::before {
        border-left: .05rem solid rgba(173,181,189,.5);
        bottom: .4rem;
        content: "";
        display: block;
        left: 50%;
        position: absolute;
        top: 0;
        transform: translateX(-50%)
    }

    .divider--v[data-content] {
        left: 50%;
        padding: .2rem 0;
        position: absolute;
        top: 50%;
        transform: translate(-50%,-50%)
    }

.hero-img {
    background-size: cover
}

.parallax-img {
    background-attachment: fixed !important
}

.hero {
    align-items: stretch;
    display: flex;
    justify-content: space-between
}

    .hero .hero-body {
        flex-grow: 1;
        flex-shrink: 0;
        padding: 3rem 1.5rem;
        align-items: center;
        display: flex;
        width: 100%
    }

.space {
    display: block;
    width: 100%;
    height: 1rem
}

    .space.space--lg {
        padding: 1rem 0
    }

    .space.space--xl {
        padding: 2rem 0
    }

.row {
    flex: 1;
    flex-wrap: wrap;
    display: flex
}

    .row::after {
        content: "";
        clear: both;
        display: table
    }

    .row.row--no-wrap {
        flex-wrap: nowrap;
        overflow-x: auto
    }

    .row .col {
        display: block;
        flex: 1;
        padding: .15rem .75rem
    }

    .row .offset-right {
        margin-left: 0;
        margin-right: auto
    }

    .row .offset-center {
        margin-left: auto;
        margin-right: auto
    }

    .row .offset-left {
        margin-left: auto;
        margin-right: 0
    }

    .row.divided [class*=" col"], .row.divided [class^=col] {
        box-shadow: 0 -1px 0 0 rgba(173,181,189,.5)
    }

    .row [class*=" col-"], .row [class^=col-] {
        width: 100%;
        margin-left: 0;
        padding: 0 .5rem
    }

@media screen and (min-width:768px) {
    .row .col-1 {
        width: 8.3333333333%
    }

    .row .col-2 {
        width: 16.6666666667%
    }

    .row .col-3 {
        width: 25%
    }

    .row .col-4 {
        width: 33.3333333333%
    }

    .row .col-5 {
        width: 41.6666666667%
    }

    .row .col-6 {
        width: 50%
    }

    .row .col-7 {
        width: 58.3333333333%
    }

    .row .col-8 {
        width: 66.6666666667%
    }

    .row .col-9 {
        width: 75%
    }

    .row .col-10 {
        width: 83.3333333333%
    }

    .row .col-11 {
        width: 91.6666666667%
    }

    .row .col-12 {
        width: 100%
    }
}

.row .col-xs-1 {
    width: 8.3333333333%
}

.row .col-xs-2 {
    width: 16.6666666667%
}

.row .col-xs-3 {
    width: 25%
}

.row .col-xs-4 {
    width: 33.3333333333%
}

.row .col-xs-5 {
    width: 41.6666666667%
}

.row .col-xs-6 {
    width: 50%
}

.row .col-xs-7 {
    width: 58.3333333333%
}

.row .col-xs-8 {
    width: 66.6666666667%
}

.row .col-xs-9 {
    width: 75%
}

.row .col-xs-10 {
    width: 83.3333333333%
}

.row .col-xs-11 {
    width: 91.6666666667%
}

.row .col-xs-12 {
    width: 100%
}

@media screen and (min-width:640px) {
    .row .col-sm-1 {
        width: 8.3333333333%
    }

    .row .col-sm-2 {
        width: 16.6666666667%
    }

    .row .col-sm-3 {
        width: 25%
    }

    .row .col-sm-4 {
        width: 33.3333333333%
    }

    .row .col-sm-5 {
        width: 41.6666666667%
    }

    .row .col-sm-6 {
        width: 50%
    }

    .row .col-sm-7 {
        width: 58.3333333333%
    }

    .row .col-sm-8 {
        width: 66.6666666667%
    }

    .row .col-sm-9 {
        width: 75%
    }

    .row .col-sm-10 {
        width: 83.3333333333%
    }

    .row .col-sm-11 {
        width: 91.6666666667%
    }

    .row .col-sm-12 {
        width: 100%
    }

    .row .offset-1 {
        margin-left: 8.3333333333%
    }
}

@media screen and (min-width:768px) {
    .row .col-md-1 {
        width: 8.3333333333%
    }

    .row .col-md-2 {
        width: 16.6666666667%
    }

    .row .col-md-3 {
        width: 25%
    }

    .row .col-md-4 {
        width: 33.3333333333%
    }

    .row .col-md-5 {
        width: 41.6666666667%
    }

    .row .col-md-6 {
        width: 50%
    }

    .row .col-md-7 {
        width: 58.3333333333%
    }

    .row .col-md-8 {
        width: 66.6666666667%
    }

    .row .col-md-9 {
        width: 75%
    }

    .row .col-md-10 {
        width: 83.3333333333%
    }

    .row .col-md-11 {
        width: 91.6666666667%
    }

    .row .col-md-12 {
        width: 100%
    }
}

@media screen and (min-width:1024px) {
    .row .col-lg-1 {
        width: 8.3333333333%
    }

    .row .col-lg-2 {
        width: 16.6666666667%
    }

    .row .col-lg-3 {
        width: 25%
    }

    .row .col-lg-4 {
        width: 33.3333333333%
    }

    .row .col-lg-5 {
        width: 41.6666666667%
    }

    .row .col-lg-6 {
        width: 50%
    }

    .row .col-lg-7 {
        width: 58.3333333333%
    }

    .row .col-lg-8 {
        width: 66.6666666667%
    }

    .row .col-lg-9 {
        width: 75%
    }

    .row .col-lg-10 {
        width: 83.3333333333%
    }

    .row .col-lg-11 {
        width: 91.6666666667%
    }

    .row .col-lg-12 {
        width: 100%
    }
}

@media screen and (min-width:1280px) {
    .row .col-xl-1 {
        width: 8.3333333333%
    }

    .row .col-xl-2 {
        width: 16.6666666667%
    }

    .row .col-xl-3 {
        width: 25%
    }

    .row .col-xl-4 {
        width: 33.3333333333%
    }

    .row .col-xl-5 {
        width: 41.6666666667%
    }

    .row .col-xl-6 {
        width: 50%
    }

    .row .col-xl-7 {
        width: 58.3333333333%
    }

    .row .col-xl-8 {
        width: 66.6666666667%
    }

    .row .col-xl-9 {
        width: 75%
    }

    .row .col-xl-10 {
        width: 83.3333333333%
    }

    .row .col-xl-11 {
        width: 91.6666666667%
    }

    .row .col-xl-12 {
        width: 100%
    }
}

    .row.no-space [class*=" col-"], .row.no-space [class^=col-] {
        padding: 0
    }

    .min-h-screen {
        min-height: 100vh !important
    }

    .min-w-xs {
        min-width: 640px !important
    }

    .min-w-sm {
        min-width: 768px !important
    }

    .min-w-md {
        min-width: 1024px !important
    }

    .min-w-lg {
        min-width: 1280px !important
    }

    .min-w-xl {
        min-width: 1536px !important
    }

    .min-w-10p {
        min-width: 10% !important
    }

    .min-w-20p {
        min-width: 20% !important
    }

    .min-w-30p {
        min-width: 30% !important
    }

    .min-w-40p {
        min-width: 40% !important
    }

    .min-w-50p {
        min-width: 50% !important
    }

    .min-w-60p {
        min-width: 60% !important
    }

    .min-w-70p {
        min-width: 70% !important
    }

    .min-w-80p {
        min-width: 80% !important
    }

    .min-w-90p {
        min-width: 90% !important
    }

    .min-w-100p {
        min-width: 100% !important
    }

    .min-w-0 {
        min-width: 0 !important
    }

    .min-w-screen {
        min-width: 100vw !important
    }

    .max-h-none {
        max-height: none !important
    }

    .max-h-screen {
        max-height: 100vh !important
    }

    .max-w-xs {
        max-width: 640px !important
    }

    .max-w-sm {
        max-width: 768px !important
    }

    .max-w-md {
        max-width: 1024px !important
    }

    .max-w-lg {
        max-width: 1280px !important
    }

    .max-w-xl {
        max-width: 1536px !important
    }

    .max-w-10p {
        max-width: 10% !important
    }

    .max-w-20p {
        max-width: 20% !important
    }

    .max-w-30p {
        max-width: 30% !important
    }

    .max-w-40p {
        max-width: 40% !important
    }

    .max-w-50p {
        max-width: 50% !important
    }

    .max-w-60p {
        max-width: 60% !important
    }

    .max-w-70p {
        max-width: 70% !important
    }

    .max-w-80p {
        max-width: 80% !important
    }

    .max-w-90p {
        max-width: 90% !important
    }

    .max-w-100p {
        max-width: 100% !important
    }

    .max-w-none {
        max-width: none !important
    }

    .max-w-screen {
        max-width: 100vw !important
    }

    .btn.btn--pilled, [type=button].btn--pilled, [type=reset].btn--pilled, [type=submit].btn--pilled, button.btn--pilled {
        border-radius: 6.25rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem
    }

    .btn.btn--circle, [type=button].btn--circle, [type=reset].btn--circle, [type=submit].btn--circle, button.btn--circle {
        border-radius: 100%;
        min-width: 60px;
        overflow: hidden;
        padding: 0;
        text-align: center
    }

    .btn.btn--circle:before, [type=button].btn--circle:before, [type=reset].btn--circle:before, [type=submit].btn--circle:before, button.btn--circle:before {
        content: "";
        display: inline-block;
        vertical-align: middle;
        padding-top: 100%
    }

    .btn.btn--circle *, [type=button].btn--circle *, [type=reset].btn--circle *, [type=submit].btn--circle *, button.btn--circle * {
        display: inline;
        max-width: 90%;
        vertical-align: middle;
        white-space: pre-wrap
    }

.input-control--pilled {
    border-radius: 6.25rem !important
}

.btn, [type=button], [type=reset], [type=submit], button {
    line-height: 2rem;
    overflow: hidden;
    padding: .5rem 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    cursor: pointer;
    text-align: center;
    transition: all var(--animation-duration);
    background-color: rgba(var(--btn-color),var(--bg-opacity));
    border-color: rgba(var(--btn-border-color),var(--color-opacity));
    color: rgba(var(--btn-fg),var(--color-opacity));
    font-size: .75rem;
    font-weight: inherit;
    letter-spacing: .03rem;
    text-transform: uppercase;
    font-family: Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    min-width: 2rem;
    user-select: none;
    margin-bottom: 1rem;
    outline: 0;
    --btn-color: 248,249,250;
    --btn-fg: 73,80,87;
    --btn-border-color: 233,236,239
}

    .btn:hover, [type=button]:hover, [type=reset]:hover, [type=submit]:hover, button:hover {
        transition: all var(--animation-duration);
        --btn-color: 241,243,245;
        color: rgba(var(--btn-fg),var(--color-opacity))
    }

    .btn:active, [type=button]:active, [type=reset]:active, [type=submit]:active, button:active {
        transition: var(--animation-duration) ease
    }

    .btn:focus, [type=button]:focus, [type=reset]:focus, [type=submit]:focus, button:focus {
        outline: 0
    }

        .btn:focus:not([disabled]), [type=button]:focus:not([disabled]), [type=reset]:focus:not([disabled]), [type=submit]:focus:not([disabled]), button:focus:not([disabled]) {
            box-shadow: var(--btn-shadow)
        }

    .btn.btn--disabled, .btn:disabled, [type=button].btn--disabled, [type=button]:disabled, [type=reset].btn--disabled, [type=reset]:disabled, [type=submit].btn--disabled, [type=submit]:disabled, button.btn--disabled, button:disabled {
        cursor: not-allowed;
        opacity: .5
    }

        .btn.btn--disabled:active, .btn:disabled:active, [type=button].btn--disabled:active, [type=button]:disabled:active, [type=reset].btn--disabled:active, [type=reset]:disabled:active, [type=submit].btn--disabled:active, [type=submit]:disabled:active, button.btn--disabled:active, button:disabled:active {
            pointer-events: none
        }

    .btn.outline, [type=button].outline, [type=reset].outline, [type=submit].outline, button.outline {
        --btn-color: transparent
    }

        .btn.outline:hover, [type=button].outline:hover, [type=reset].outline:hover, [type=submit].outline:hover, button.outline:hover {
            --btn-color: 233,236,239
        }

    .btn.loading:active::after, [type=button].loading:active::after, [type=reset].loading:active::after, [type=submit].loading:active::after, button.loading:active::after {
        border-radius: 50%;
        border-right-color: transparent;
        border-top-color: transparent;
        transition: var(--animation-duration) ease
    }

    .btn.btn-animated, [type=button].btn-animated, [type=reset].btn-animated, [type=submit].btn-animated, button.btn-animated {
        transition: calc(var(--animation-duration)/ 2) ease
    }

        .btn.btn-animated:active, [type=button].btn-animated:active, [type=reset].btn-animated:active, [type=submit].btn-animated:active, button.btn-animated:active {
            transform: scale(.95);
            transition: calc(var(--animation-duration)/ 2) ease
        }

    .btn.btn-close, [type=button].btn-close, [type=reset].btn-close, [type=submit].btn-close, button.btn-close {
        background-color: rgba(10,10,10,.2);
        border: none;
        border-radius: 290486px;
        cursor: pointer;
        display: inline-block;
        flex-grow: 0;
        flex-shrink: 0;
        font-size: 0;
        height: 20px;
        outline: 0;
        position: relative;
        vertical-align: top;
        width: 20px;
        padding: 0;
        min-width: 20px
    }

        .btn.btn-close:hover, [type=button].btn-close:hover, [type=reset].btn-close:hover, [type=submit].btn-close:hover, button.btn-close:hover {
            background-color: rgba(10,10,10,.3)
        }

        .btn.btn-close::before, [type=button].btn-close::before, [type=reset].btn-close::before, [type=submit].btn-close::before, button.btn-close::before {
            background-color: var(--cirrus-bg);
            content: "";
            display: block;
            left: 50%;
            position: absolute;
            top: 50%;
            transform: translateX(-50%) translateY(-50%) rotate(45deg);
            transform-origin: center center;
            height: 2px;
            width: 50%
        }

        .btn.btn-close::after, [type=button].btn-close::after, [type=reset].btn-close::after, [type=submit].btn-close::after, button.btn-close::after {
            background-color: var(--cirrus-bg);
            content: "";
            display: block;
            left: 50%;
            position: absolute;
            top: 50%;
            transform: translateX(-50%) translateY(-50%) rotate(45deg);
            transform-origin: center center;
            height: 50%;
            width: 2px
        }

    .btn.btn-transparent, [type=button].btn-transparent, [type=reset].btn-transparent, [type=submit].btn-transparent, button.btn-transparent {
        --btn-color: transparent;
        --btn-fg: 54,54,54;
        --btn-border-color: transparent;
        --btn-shadow: 0 0 0 0.2rem rgba(246, 249, 252, 0.5)
    }

        .btn.btn-transparent:hover, [type=button].btn-transparent:hover, [type=reset].btn-transparent:hover, [type=submit].btn-transparent:hover, button.btn-transparent:hover {
            --bg-opacity: 0.1;
            --btn-color: 0,0,0
        }

        .btn.btn-transparent.outline, [type=button].btn-transparent.outline, [type=reset].btn-transparent.outline, [type=submit].btn-transparent.outline, button.btn-transparent.outline {
            --btn-fg: 54,54,54
        }

    .btn.btn-light, [type=button].btn-light, [type=reset].btn-light, [type=submit].btn-light, button.btn-light {
        --btn-color: 246,249,252;
        --btn-fg: 54,54,54;
        --btn-border-color: 246,249,252;
        --btn-shadow: 0 0 0 0.2rem rgba(246, 249, 252, 0.5)
    }

        .btn.btn-light:hover, [type=button].btn-light:hover, [type=reset].btn-light:hover, [type=submit].btn-light:hover, button.btn-light:hover {
            --btn-color: 208,224,239
        }

    .btn.btn-black, [type=button].btn-black, [type=reset].btn-black, [type=submit].btn-black, button.btn-black {
        --btn-color: 0,0,0;
        --btn-fg: 246,249,252;
        --btn-border-color: 0,0,0;
        --btn-shadow: 0 0 0 0.2rem rgba(54, 54, 54, 0.5)
    }

        .btn.btn-black:hover, [type=button].btn-black:hover, [type=reset].btn-black:hover, [type=submit].btn-black:hover, button.btn-black:hover {
            --btn-color: 0,0,0
        }

    .btn.btn-primary, [type=button].btn-primary, [type=reset].btn-primary, [type=submit].btn-primary, button.btn-primary {
        --btn-color: 240,61,77;
        --btn-fg: 246,249,252;
        --btn-border-color: 240,61,77;
        --btn-shadow: 0 0 0 0.2rem rgba(240, 61, 77, 0.5)
    }

        .btn.btn-primary:hover, [type=button].btn-primary:hover, [type=reset].btn-primary:hover, [type=submit].btn-primary:hover, button.btn-primary:hover {
            --btn-color: 232,18,37
        }

        .btn.btn-primary.outline:hover, [type=button].btn-primary.outline:hover, [type=reset].btn-primary.outline:hover, [type=submit].btn-primary.outline:hover, button.btn-primary.outline:hover {
            --btn-color: 240,61,77
        }

    .btn.btn-dark, [type=button].btn-dark, [type=reset].btn-dark, [type=submit].btn-dark, button.btn-dark {
        --btn-color: 54,54,54;
        --btn-fg: 246,249,252;
        --btn-border-color: 54,54,54;
        --btn-shadow: 0 0 0 0.2rem rgba(54, 54, 54, 0.5)
    }

        .btn.btn-dark:hover, [type=button].btn-dark:hover, [type=reset].btn-dark:hover, [type=submit].btn-dark:hover, button.btn-dark:hover {
            --btn-color: 29,29,29
        }

        .btn.btn-dark.outline:hover, [type=button].btn-dark.outline:hover, [type=reset].btn-dark.outline:hover, [type=submit].btn-dark.outline:hover, button.btn-dark.outline:hover {
            --btn-color: 54,54,54
        }

    .btn.btn-link, [type=button].btn-link, [type=reset].btn-link, [type=submit].btn-link, button.btn-link {
        --btn-color: 94,92,199;
        --btn-fg: 246,249,252;
        --btn-border-color: 94,92,199;
        --btn-shadow: 0 0 0 0.2rem rgba(94, 92, 199, 0.5)
    }

        .btn.btn-link:hover, [type=button].btn-link:hover, [type=reset].btn-link:hover, [type=submit].btn-link:hover, button.btn-link:hover {
            --btn-color: 64,61,179
        }

        .btn.btn-link.outline:hover, [type=button].btn-link.outline:hover, [type=reset].btn-link.outline:hover, [type=submit].btn-link.outline:hover, button.btn-link.outline:hover {
            --btn-color: 94,92,199
        }

    .btn.btn-info, [type=button].btn-info, [type=reset].btn-info, [type=submit].btn-info, button.btn-info {
        --btn-color: 41,114,250;
        --btn-fg: 246,249,252;
        --btn-border-color: 41,114,250;
        --btn-shadow: 0 0 0 0.2rem rgba(41, 114, 250, 0.5)
    }

        .btn.btn-info:hover, [type=button].btn-info:hover, [type=reset].btn-info:hover, [type=submit].btn-info:hover, button.btn-info:hover {
            --btn-color: 5,85,235
        }

        .btn.btn-info.outline:hover, [type=button].btn-info.outline:hover, [type=reset].btn-info.outline:hover, [type=submit].btn-info.outline:hover, button.btn-info.outline:hover {
            --btn-color: 41,114,250
        }

    .btn.btn-success, [type=button].btn-success, [type=reset].btn-success, [type=submit].btn-success, button.btn-success {
        --btn-color: 13,209,87;
        --btn-fg: 246,249,252;
        --btn-border-color: 13,209,87;
        --btn-shadow: 0 0 0 0.2rem rgba(13, 209, 87, 0.5)
    }

    .btn.btn-success:hover, [type=button].btn-success:hover, [type=reset].btn-success:hover, [type=submit].btn-success:hover, button.btn-success:hover {
        --btn-color: 10,161,67
    }

    .btn.btn-success.outline:hover, [type=button].btn-success.outline:hover, [type=reset].btn-success.outline:hover, [type=submit].btn-success.outline:hover, button.btn-success.outline:hover {
        --btn-color: 13,209,87
    }

    .btn.btn-warning, [type=button].btn-warning, [type=reset].btn-warning, [type=submit].btn-warning, button.btn-warning {
        --btn-color: 250,182,51;
        --btn-fg: 54,54,54;
        --btn-border-color: 250,182,51;
        --btn-shadow: 0 0 0 0.2rem rgba(250, 182, 51, 0.5)
    }

    .btn.btn-warning:hover, [type=button].btn-warning:hover, [type=reset].btn-warning:hover, [type=submit].btn-warning:hover, button.btn-warning:hover {
        --btn-color: 244,163,6
    }

    .btn.btn-warning.outline:hover, [type=button].btn-warning.outline:hover, [type=reset].btn-warning.outline:hover, [type=submit].btn-warning.outline:hover, button.btn-warning.outline:hover {
        --btn-color: 250,182,51
    }

    .btn.btn-danger, [type=button].btn-danger, [type=reset].btn-danger, [type=submit].btn-danger, button.btn-danger {
        --btn-color: 251,65,67;
        --btn-fg: 246,249,252;
        --btn-border-color: 251,65,67;
        --btn-shadow: 0 0 0 0.2rem rgba(251, 65, 67, 0.5)
    }

    .btn.btn-danger:hover, [type=button].btn-danger:hover, [type=reset].btn-danger:hover, [type=submit].btn-danger:hover, button.btn-danger:hover {
        --btn-color: 250,15,18
    }

    .btn.btn-danger.outline:hover, [type=button].btn-danger.outline:hover, [type=reset].btn-danger.outline:hover, [type=submit].btn-danger.outline:hover, button.btn-danger.outline:hover {
        --btn-color: 251,65,67
    }

    .btn.btn--xs, [type=button].btn--xs, [type=reset].btn--xs, [type=submit].btn--xs, button.btn--xs {
        padding: 0 .5rem;
        font-size: 50%
    }

    .btn.btn--sm, [type=button].btn--sm, [type=reset].btn--sm, [type=submit].btn--sm, button.btn--sm {
        padding: .25rem 1rem;
        font-size: 70%
    }

    .btn.btn--md, [type=button].btn--md, [type=reset].btn--md, [type=submit].btn--md, button.btn--md {
        padding: .5rem 1.5rem;
        font-size: 90%
    }

    .btn.btn--lg, [type=button].btn--lg, [type=reset].btn--lg, [type=submit].btn--lg, button.btn--lg {
        padding: .75rem 2rem;
        font-size: 110%
    }

    .btn.btn--xl, [type=button].btn--xl, [type=reset].btn--xl, [type=submit].btn--xl, button.btn--xl {
        padding: 1rem 2.5rem;
        font-size: 130%
    }

    .btn .fa-wrapper.pad-right, [type=button] .fa-wrapper.pad-right, [type=reset] .fa-wrapper.pad-right, [type=submit] .fa-wrapper.pad-right, button .fa-wrapper.pad-right {
        margin-right: .4rem
    }

    .btn .fa-wrapper.pad-left, [type=button] .fa-wrapper.pad-left, [type=reset] .fa-wrapper.pad-left, [type=submit] .fa-wrapper.pad-left, button .fa-wrapper.pad-left {
        margin-left: .4rem
    }

    .btn span:first-child, [type=button] span:first-child, [type=reset] span:first-child, [type=submit] span:first-child, button span:first-child {
        margin-right: .2rem
    }

    .btn span:last-child, [type=button] span:last-child, [type=reset] span:last-child, [type=submit] span:last-child, button span:last-child {
        margin-left: .2rem
    }

    a.btn {
        display: inline-flex
    }

    [class*=" btn-"]:not(.btn-container):not(.btn-close), [class^=btn-]:not(.btn-container):not(.btn-close) {
        background-color: rgba(var(--btn-color),var(--bg-opacity));
        border: 1px solid rgba(var(--btn-border-color),var(--color-opacity));
        color: rgba(var(--btn-fg),var(--color-opacity));
        transition: all var(--animation-duration)
    }

    [class*=" btn-"]:not(.btn-container):not(.btn-close):hover, [class^=btn-]:not(.btn-container):not(.btn-close):hover {
        background-color: rgba(var(--btn-color),var(--bg-opacity));
        border-color: rgba(var(--btn-border-color),var(--color-opacity));
        transition: all var(--animation-duration)
    }

    [class*=" btn-"]:not(.btn-container):not(.btn-close).outline, [class^=btn-]:not(.btn-container):not(.btn-close).outline {
        background-color: transparent;
        color: rgba(var(--btn-color),var(--color-opacity))
    }

    [class*=" btn-"]:not(.btn-container):not(.btn-close).outline:hover, [class^=btn-]:not(.btn-container):not(.btn-close).outline:hover {
        background-color: rgba(var(--btn-color),var(--bg-opacity));
        color: rgba(var(--btn-fg),var(--color-opacity));
        transition: all var(--animation-duration)
    }

    [class*=" btn-"]:not(.btn-container):not(.btn-close).outline.btn-transparent, [class^=btn-]:not(.btn-container):not(.btn-close).outline.btn-transparent {
        color: 73,80,87 !important
    }

    .loading.btn-accent:after {
        border: 2px solid #fff;
        border-right-color: transparent;
        border-top-color: transparent
    }

    .btn-group {
        display: inline-flex
    }

    .btn-group .btn, .btn-group [type=button], .btn-group [type=reset], .btn-group [type=submit], .btn-group button {
        flex: 1 0 auto;
        margin: 0
    }

    .btn-group .btn:first-child:not(:last-child), .btn-group [type=button]:first-child:not(:last-child), .btn-group [type=reset]:first-child:not(:last-child), .btn-group [type=submit]:first-child:not(:last-child), .btn-group button:first-child:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }

    .btn-group .btn:last-child:not(:first-child), .btn-group [type=button]:last-child:not(:first-child), .btn-group [type=reset]:last-child:not(:first-child), .btn-group [type=submit]:last-child:not(:first-child), .btn-group button:last-child:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        margin-left: -1px
    }

    .btn-group .btn:not(:first-child):not(:last-child), .btn-group [type=button]:not(:first-child):not(:last-child), .btn-group [type=reset]:not(:first-child):not(:last-child), .btn-group [type=submit]:not(:first-child):not(:last-child), .btn-group button:not(:first-child):not(:last-child) {
        border-radius: 0;
        margin-left: -1px
    }

    .btn-group .btn:focus, .btn-group [type=button]:focus, .btn-group [type=reset]:focus, .btn-group [type=submit]:focus, .btn-group button:focus {
        z-index: 1
    }

    .btn-group.btn-group-fill {
        display: flex
    }

    .btn-group.btn-group-fill .btn, .btn-group.btn-group-fill [type=button], .btn-group.btn-group-fill [type=reset], .btn-group.btn-group-fill [type=submit], .btn-group.btn-group-fill button {
        flex: 1 0
    }

    .btn-group.btn-group-fill:focus {
        z-index: 1
    }

@media screen and (max-width:767px) {
    .btn-group {
        display: flex;
        flex-direction: column
    }

    .btn-group .btn, .btn-group [type=button], .btn-group [type=reset], .btn-group [type=submit], .btn-group button {
        margin-bottom: -1px
    }

    .btn-group .btn:first-child:not(:last-child), .btn-group [type=button]:first-child:not(:last-child), .btn-group [type=reset]:first-child:not(:last-child), .btn-group [type=submit]:first-child:not(:last-child), .btn-group button:first-child:not(:last-child) {
        border-radius: .25rem .25rem 0 0
    }

    .btn-group .btn:not(:first-child):not(:last-child), .btn-group [type=button]:not(:first-child):not(:last-child), .btn-group [type=reset]:not(:first-child):not(:last-child), .btn-group [type=submit]:not(:first-child):not(:last-child), .btn-group button:not(:first-child):not(:last-child) {
        margin-left: 0
    }

    .btn-group .btn:last-child:not(:first-child), .btn-group [type=button]:last-child:not(:first-child), .btn-group [type=reset]:last-child:not(:first-child), .btn-group [type=submit]:last-child:not(:first-child), .btn-group button:last-child:not(:first-child) {
        border-radius: 0 0 .25rem .25rem;
        margin-left: 0
    }
}

input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]), select {
    width: 100%;
    border: 1px solid #dee2e6;
    border-radius: 3px;
    font-family: "Nunito Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: var(--font-size-m);
    letter-spacing: .02rem;
    transition: .3s;
    outline: 0;
    padding: .85rem 1.1rem
}

    input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input--xs, select.input--xs {
        font-size: .75rem;
        padding: .35rem .9rem
    }

    input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input--sm, select.input--sm {
        font-size: .875rem;
        padding: .55rem 1rem
    }

    input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input--lg, select.input--lg {
        font-size: 1.25rem
    }

    input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input--xl, select.input--xl {
        font-size: 1.5rem
    }

    input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon, input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon-left, select.input-contains-icon, select.input-contains-icon-left {
        padding-left: 2.75rem
    }

    input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon-right, select.input-contains-icon-right {
        padding-right: 2.75rem
    }

        input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon-right.input-xs, input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon.input--xs, select.input-contains-icon-right.input-xs, select.input-contains-icon.input--xs {
            padding-left: 2rem
        }

        input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon-right.input-sm, input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon.input--sm, select.input-contains-icon-right.input-sm, select.input-contains-icon.input--sm {
            padding-left: 2.5rem
        }

        input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon-right.input-lg, input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon.input--lg, select.input-contains-icon-right.input-lg, select.input-contains-icon.input--lg {
            padding-left: 3.5rem
        }

        input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon-right.input-xl, input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon.input--xl, select.input-contains-icon-right.input-xl, select.input-contains-icon.input--xl {
            padding-left: 4rem
        }

        input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon-left.input--xs ~ .icon, input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon-right.input--xs ~ .icon.icon-right, input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon.input--xs ~ .icon, select.input-contains-icon-left.input--xs ~ .icon, select.input-contains-icon-right.input--xs ~ .icon.icon-right, select.input-contains-icon.input--xs ~ .icon {
            line-height: 1.75rem;
            width: 1.75rem;
            font-size: 7px
        }

        input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon-left.input--sm ~ .icon, input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon-right.input--sm ~ .icon.icon-right, input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon.input--sm ~ .icon, select.input-contains-icon-left.input--sm ~ .icon, select.input-contains-icon-right.input--sm ~ .icon.icon-right, select.input-contains-icon.input--sm ~ .icon {
            width: 2.5rem;
            font-size: 14px
        }

        input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon-left.input--lg ~ .icon, input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon-right.input--lg ~ .icon.icon-right, input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon.input--lg ~ .icon, select.input-contains-icon-left.input--lg ~ .icon, select.input-contains-icon-right.input--lg ~ .icon.icon-right, select.input-contains-icon.input--lg ~ .icon {
            line-height: 3.5rem;
            width: 3.5rem;
            font-size: 28px
        }

        input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon-left.input--xl ~ .icon, input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon-right.input--xl ~ .icon.icon-right, input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-contains-icon.input--xl ~ .icon, select.input-contains-icon-left.input--xl ~ .icon, select.input-contains-icon-right.input--xl ~ .icon.icon-right, select.input-contains-icon.input--xl ~ .icon {
            line-height: 2.5rem;
            width: 3.75rem;
            font-size: 35px
        }

    input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).search, input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset])[type=search], select.search, select[type=search] {
        background-repeat: no-repeat;
        background-position: left .6rem center;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path opacity="0.45" d="M14.891,14.39l-0.5.5a0.355,0.355,0,0,1-.5,0L9.526,10.529a5.3,5.3,0,1,1,2.106-4.212,5.268,5.268,0,0,1-1.1,3.21l4.362,4.362A0.354,0.354,0,0,1,14.891,14.39ZM6.316,2.418a3.9,3.9,0,1,0,3.9,3.9A3.9,3.9,0,0,0,6.316,2.418Z"/></svg>');
        padding-left: 2rem !important
    }

    input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset])[type=color], select[type=color] {
        box-shadow: inset 0 1px 2px rgba(0,0,0,.05);
        box-sizing: border-box;
        transition: .3s;
        outline: 0;
        position: relative;
        height: 3rem;
        background-color: #fff;
        padding: .55rem .8rem !important
    }

    input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-success, select.input-success {
        border-color: #0dd157;
        background-color: rgba(0,224,0,.05) !important
    }

        input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-success:focus, select.input-success:focus {
            box-shadow: 0 0 0 .2rem rgba(13,209,87,.55),inset 0 1px 8px rgba(0,0,0,.07)
        }

    input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-error, select.input-error {
        border-color: #fb4143;
        background-color: rgba(244,67,54,.05) !important
    }

        input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]).input-error:focus, select.input-error:focus {
            box-shadow: 0 0 0 .2rem rgba(251,65,67,.55),inset 0 1px 8px rgba(0,0,0,.07)
        }

textarea, textarea[type=text] {
    width: 100%;
    border: 1px solid #dee2e6;
    border-radius: 3px;
    font-family: "Nunito Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: var(--font-size-m);
    letter-spacing: .02rem;
    transition: .3s;
    outline: 0;
    padding: .85rem 1.1rem;
    min-height: 8rem;
    line-height: 1.5rem;
    resize: vertical
}

    textarea.input--xs, textarea[type=text].input--xs {
        font-size: .75rem;
        padding: .35rem .9rem
    }

    textarea.input--sm, textarea[type=text].input--sm {
        font-size: .875rem;
        padding: .55rem 1rem
    }

    textarea.input--lg, textarea[type=text].input--lg {
        font-size: 1.25rem
    }

    textarea.input--xl, textarea[type=text].input--xl {
        font-size: 1.5rem
    }

    textarea.input-contains-icon, textarea.input-contains-icon-left, textarea[type=text].input-contains-icon, textarea[type=text].input-contains-icon-left {
        padding-left: 2.75rem
    }

    textarea.input-contains-icon-right, textarea[type=text].input-contains-icon-right {
        padding-right: 2.75rem
    }

        textarea.input-contains-icon-right.input-xs, textarea.input-contains-icon.input--xs, textarea[type=text].input-contains-icon-right.input-xs, textarea[type=text].input-contains-icon.input--xs {
            padding-left: 2rem
        }

        textarea.input-contains-icon-right.input-sm, textarea.input-contains-icon.input--sm, textarea[type=text].input-contains-icon-right.input-sm, textarea[type=text].input-contains-icon.input--sm {
            padding-left: 2.5rem
        }

        textarea.input-contains-icon-right.input-lg, textarea.input-contains-icon.input--lg, textarea[type=text].input-contains-icon-right.input-lg, textarea[type=text].input-contains-icon.input--lg {
            padding-left: 3.5rem
        }

        textarea.input-contains-icon-right.input-xl, textarea.input-contains-icon.input--xl, textarea[type=text].input-contains-icon-right.input-xl, textarea[type=text].input-contains-icon.input--xl {
            padding-left: 4rem
        }

        textarea.input-contains-icon-left.input--xs ~ .icon, textarea.input-contains-icon-right.input--xs ~ .icon.icon-right, textarea.input-contains-icon.input--xs ~ .icon, textarea[type=text].input-contains-icon-left.input--xs ~ .icon, textarea[type=text].input-contains-icon-right.input--xs ~ .icon.icon-right, textarea[type=text].input-contains-icon.input--xs ~ .icon {
            line-height: 1.75rem;
            width: 1.75rem;
            font-size: 7px
        }

        textarea.input-contains-icon-left.input--sm ~ .icon, textarea.input-contains-icon-right.input--sm ~ .icon.icon-right, textarea.input-contains-icon.input--sm ~ .icon, textarea[type=text].input-contains-icon-left.input--sm ~ .icon, textarea[type=text].input-contains-icon-right.input--sm ~ .icon.icon-right, textarea[type=text].input-contains-icon.input--sm ~ .icon {
            width: 2.5rem;
            font-size: 14px
        }

        textarea.input-contains-icon-left.input--lg ~ .icon, textarea.input-contains-icon-right.input--lg ~ .icon.icon-right, textarea.input-contains-icon.input--lg ~ .icon, textarea[type=text].input-contains-icon-left.input--lg ~ .icon, textarea[type=text].input-contains-icon-right.input--lg ~ .icon.icon-right, textarea[type=text].input-contains-icon.input--lg ~ .icon {
            line-height: 3.5rem;
            width: 3.5rem;
            font-size: 28px
        }

        textarea.input-contains-icon-left.input--xl ~ .icon, textarea.input-contains-icon-right.input--xl ~ .icon.icon-right, textarea.input-contains-icon.input--xl ~ .icon, textarea[type=text].input-contains-icon-left.input--xl ~ .icon, textarea[type=text].input-contains-icon-right.input--xl ~ .icon.icon-right, textarea[type=text].input-contains-icon.input--xl ~ .icon {
            line-height: 2.5rem;
            width: 3.75rem;
            font-size: 35px
        }

    .input-focused, input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]):focus, input[type=text].input-focused, select:focus, textarea:focus, textarea[type=text]:focus {
        border-color: #3dabf0;
        box-shadow: 0 0 0 .2rem rgba(61,171,240,.45),inset 0 1px 8px rgba(0,0,0,.07)
    }

        .input-focused.input-success, input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]):focus.input-success, input[type=text].input-focused.input-success, select:focus.input-success, textarea:focus.input-success, textarea[type=text]:focus.input-success {
            border-color: #0dd157;
            background-color: rgba(0,224,0,.05) !important
        }

            .input-focused.input-success:focus, input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]):focus.input-success:focus, input[type=text].input-focused.input-success:focus, select:focus.input-success:focus, textarea:focus.input-success:focus, textarea[type=text]:focus.input-success:focus {
                box-shadow: 0 0 0 .2rem rgba(13,209,87,.55),inset 0 1px 8px rgba(0,0,0,.07)
            }

        .input-focused.input-error, input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]):focus.input-error, input[type=text].input-focused.input-error, select:focus.input-error, textarea:focus.input-error, textarea[type=text]:focus.input-error {
            border-color: #fb4143;
            background-color: rgba(244,67,54,.05) !important
        }

            .input-focused.input-error:focus, input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]):not([type=reset]):focus.input-error:focus, input[type=text].input-focused.input-error:focus, select:focus.input-error:focus, textarea:focus.input-error:focus, textarea[type=text]:focus.input-error:focus {
                box-shadow: 0 0 0 .2rem rgba(251,65,67,.55),inset 0 1px 8px rgba(0,0,0,.07)
            }

select {
    width: 100%;
    border: 1px solid #dee2e6;
    border-radius: 3px;
    font-family: "Nunito Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: var(--font-size-m);
    letter-spacing: .02rem;
    transition: .3s;
    outline: 0;
    padding: .85rem 1.1rem;
    background-color: #fff;
    border: 1px solid #ddd
}

    select.input--xs {
        font-size: .75rem;
        padding: .35rem .9rem
    }

    select.input--sm {
        font-size: .875rem;
        padding: .55rem 1rem
    }

    select.input--lg {
        font-size: 1.25rem
    }

    select.input--xl {
        font-size: 1.5rem
    }

    select.input-contains-icon, select.input-contains-icon-left {
        padding-left: 2.75rem
    }

    select.input-contains-icon-right {
        padding-right: 2.75rem
    }

        select.input-contains-icon-right.input-xs, select.input-contains-icon.input--xs {
            padding-left: 2rem
        }

        select.input-contains-icon-right.input-sm, select.input-contains-icon.input--sm {
            padding-left: 2.5rem
        }

        select.input-contains-icon-right.input-lg, select.input-contains-icon.input--lg {
            padding-left: 3.5rem
        }

        select.input-contains-icon-right.input-xl, select.input-contains-icon.input--xl {
            padding-left: 4rem
        }

        select.input-contains-icon-left.input--xs ~ .icon, select.input-contains-icon-right.input--xs ~ .icon.icon-right, select.input-contains-icon.input--xs ~ .icon {
            line-height: 1.75rem;
            width: 1.75rem;
            font-size: 7px
        }

        select.input-contains-icon-left.input--sm ~ .icon, select.input-contains-icon-right.input--sm ~ .icon.icon-right, select.input-contains-icon.input--sm ~ .icon {
            width: 2.5rem;
            font-size: 14px
        }

        select.input-contains-icon-left.input--lg ~ .icon, select.input-contains-icon-right.input--lg ~ .icon.icon-right, select.input-contains-icon.input--lg ~ .icon {
            line-height: 3.5rem;
            width: 3.5rem;
            font-size: 28px
        }

        select.input-contains-icon-left.input--xl ~ .icon, select.input-contains-icon-right.input--xl ~ .icon.icon-right, select.input-contains-icon.input--xl ~ .icon {
            line-height: 2.5rem;
            width: 3.75rem;
            font-size: 35px
        }

    select[multiple] option {
        padding: .2rem .4rem
    }

    select.select:not([size]):not([multiple]) {
        background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%204%205'%3E%3Cpath%20fill='%23667189'%20d='M2%200L0%202h4zm0%205L0%203h4z'/%3E%3C/svg%3E") right .85rem center/.5rem .6rem no-repeat no-repeat;
        appearance: none
    }

    input:not([class*=" btn-"]):disabled:hover, input:not([class*=btn-]):disabled, select:disabled, textarea:disabled {
        background-color: #f1f3f5;
        cursor: not-allowed;
        border: 1px solid #f1f3f5
    }

label.label {
    color: #495057;
    display: inline-block;
    font-weight: 700;
    margin-top: .8rem
}

label + .input-control {
    margin-top: 0
}

label.label:not(:last-child) {
    margin-bottom: 0
}

label:first-child:not(:last-child):not(.form-group-label) {
    margin-right: .5rem
}

label:not(:first-child):not(:last-child):not(.form-group-label) {
    margin: 0 .5rem
}

label:last-child:not(:first-child):not(.form-group-label) {
    margin-left: .5rem
}

.required {
    position: relative;
    top: 1px;
    font-weight: 700;
    color: #c81e1e;
    padding-left: .1rem
}

.input-control {
    position: relative;
    margin: .5rem 0
}

.input-contains-icon-left ~ .icon, .input-contains-icon-right ~ .icon, .input-contains-icon ~ .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%
}

    .input-contains-icon-left ~ .icon.icon-left, .input-contains-icon ~ .icon:not(.icon-right) {
        position: absolute;
        left: 0;
        top: 0;
        width: 3rem;
        z-index: 1
    }

    .input-contains-icon-right ~ .icon.icon-right {
        position: absolute;
        pointer-events: none;
        line-height: 2.75rem;
        vertical-align: baseline;
        top: 0;
        right: 0;
        width: 3rem;
        z-index: 1
    }

.form-group {
    display: flex;
    margin: .5rem 0
}

    .form-group .form-group-btn {
        flex: 1 0 auto;
        margin-bottom: 0
    }

        .form-group .form-group-btn:first-child:not(:last-child) {
            border-top-right-radius: 0 !important;
            border-bottom-right-radius: 0 !important
        }

        .form-group .form-group-btn:not(:first-child):not(:last-child) {
            border-radius: 0 !important;
            margin-left: -1px;
            margin-right: -1px
        }

        .form-group .form-group-btn:last-child:not(:first-child) {
            border-top-left-radius: 0 !important;
            border-bottom-left-radius: 0 !important;
            margin-left: -1px;
            z-index: 0
        }

        .form-group .form-group-btn:focus {
            z-index: 1
        }

    .form-group .form-group-label {
        background-color: var(--cirrus-form-group-bg);
        border: 1px solid #dee2e6;
        border-radius: .2rem;
        color: var(--cirrus-form-group-fg);
        margin: 0;
        padding: .8rem;
        user-select: none
    }

        .form-group .form-group-label:first-child:not(:last-child) {
            border-top-right-radius: 0 !important;
            border-bottom-right-radius: 0 !important
        }

        .form-group .form-group-label:not(:first-child):not(:last-child) {
            border-radius: 0 !important;
            margin-left: -1px;
            margin-right: -1px
        }

        .form-group .form-group-label:last-child:not(:first-child) {
            border-top-left-radius: 0 !important;
            border-bottom-left-radius: 0 !important;
            margin-left: -1px;
            z-index: 0
        }

        .form-group .form-group-label.label--xs {
            font-size: .75rem
        }

        .form-group .form-group-label.label--sm {
            font-size: .875rem
        }

        .form-group .form-group-label.label--lg {
            font-size: 1.25rem
        }

        .form-group .form-group-label.label--xl {
            font-size: 1.5rem
        }

    .form-group .form-group-input:first-child:not(:last-child) {
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important
    }

    .form-group .form-group-input:not(:first-child):not(:last-child) {
        border-radius: 0 !important;
        margin-left: -1px;
        margin-right: -1px
    }

    .form-group .form-group-input:last-child:not(:first-child) {
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
        margin-left: -1px;
        z-index: 0
    }

    .form-group .form-group-input:focus {
        z-index: 1
    }

::-moz-placeholder {
    color: #a9a9a9
}

::-webkit-input-placeholder {
    color: #a9a9a9
}

.frame {
    border-radius: 3px;
    box-shadow: 0 .2rem 1.25rem 0 rgba(27,30,36,.07);
    display: flex;
    flex-direction: column
}

    .frame .frame__footer, .frame .frame__header {
        flex: 0 0 auto;
        padding: 1rem
    }

    .frame .frame__nav {
        flex: 0 0 auto
    }

    .frame .frame__body {
        flex: 1 1 auto;
        overflow-y: auto;
        padding: 0 1rem
    }

    .frame .frame__title {
        color: #0f172a;
        font-size: 1rem;
        margin: .75rem auto 0
    }

    .frame .frame__subtitle {
        color: rgba(15,23,42,.6);
        font-size: 1rem;
        margin: 0 auto .75rem
    }

.header {
    flex-grow: 1;
    width: 100%;
    z-index: 100;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(57,63,72,.1);
    background-color: var(--cirrus-bg);
    max-height: 100vh;
    padding: 0 2rem;
    transition: .3s;
    display: flex;
    --header-link-color: #495057;
    --header-link-color-hover: #606a73
}

    .header h1, .header h2, .header h3, .header h4, .header h5, .header h6 {
        margin: 0
    }

    .header a {
        color: var(--header-link-color)
    }

        .header a:hover {
            color: var(--header-link-color-hover)
        }

    .header.header-dark {
        background-color: rgba(0,0,0,.87);
        color: #fff;
        --header-link-color: #fff;
        --header-link-color-hover: #fff
    }

    .header.header-clear {
        background-color: transparent;
        box-shadow: none
    }

        .header.header-clear .nav-item .dropdown-menu {
            border-radius: 4px
        }

    .header.header-animated .header-nav {
        transition: .3s
    }

    .header .header-nav {
        overflow: auto
    }

    .header .header-brand {
        align-items: stretch;
        display: flex;
        flex-shrink: 0;
        max-width: 100vw;
        min-height: 3.25rem;
        overflow-x: auto;
        overflow-y: hidden
    }

    .header.header-fixed {
        position: fixed;
        top: 0
    }

    .header:not(.header-clear) .nav-item:not(.no-hover).hovered, .header:not(.header-clear) .nav-item:not(.no-hover):hover {
        background-color: rgba(216,216,216,.15);
        transition: .3s
    }

    .header:not(.header-clear) .nav-item.active, .header:not(.header-clear) .nav-item.active:hover {
        background-color: rgba(216,216,216,.35)
    }

    .header .nav-btn {
        cursor: pointer;
        display: block;
        height: 3.5rem;
        position: relative;
        width: 3.5rem
    }

    .header .btn, .header [type=button], .header [type=reset], .header [type=submit], .header button {
        margin: 0
    }

.nav-menu {
    transition: .3s
}

    .nav-menu .has-sub {
        position: relative
    }

.nav-overflow-x {
    justify-content: inherit;
    overflow-x: scroll
}

.nav-item {
    align-items: center;
    display: flex;
    position: relative;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: center;
    transition: .3s;
    padding: 0 .3rem;
    cursor: pointer
}

    .nav-item a {
        align-items: center;
        display: flex
    }

    .nav-item .dropdown-menu {
        background-color: var(--cirrus-bg);
        position: absolute;
        top: 95%;
        z-index: 1000;
        float: left;
        min-width: 160px;
        padding: 5px 0;
        margin: 2px 0 0;
        font-size: 14px;
        text-align: left;
        list-style: none;
        background-clip: padding-box;
        border: 1px solid #e9ecef;
        border-radius: 0 0 4px 4px;
        box-shadow: 0 .5rem 1rem rgba(10,10,10,.1)
    }

        .nav-item .dropdown-menu.dropdown-animated {
            transition: all var(--animation-duration)
        }

        .nav-item .dropdown-menu > li > a {
            display: block;
            padding: .5rem 1rem;
            clear: both;
            line-height: 1.42857143;
            white-space: nowrap
        }

        .nav-item .dropdown-menu > li {
            margin: 0;
            transition: .3s
        }

            .nav-item .dropdown-menu > li:hover {
                transition: .3s;
                background-color: rgba(216,216,216,.15)
            }

            .nav-item .dropdown-menu > li:active {
                transition: .3s;
                background-color: rgba(216,216,216,.25)
            }

            .nav-item .dropdown-menu > li:last-child {
                margin-bottom: 0
            }

        .nav-item .dropdown-menu .dropdown-menu-divider {
            border: none;
            background-color: rgba(216,216,216,.15);
            height: 1px;
            margin: .5rem 0
        }

    .nav-item.has-sub .nav-dropdown-link {
        padding-right: 2.5rem;
        position: relative
    }

        .nav-item.has-sub .nav-dropdown-link::after {
            border: 2px solid #f03d4d;
            border-right: 0;
            border-top: 0;
            display: block;
            height: .5em;
            width: .5em;
            content: " ";
            transform: rotate(-45deg);
            pointer-events: none;
            margin-top: -.435em;
            right: 1.125em;
            top: 50%;
            position: absolute
        }

    .header.header-dark .dropdown-menu, .nav-item .dropdown-menu.dropdown-dark {
        background-color: rgba(0,0,0,.87);
        border: 1px solid #343a40;
        color: #fff
    }

    .dropdown-menu.dropdown-shown, .nav-item.active {
        opacity: 1
    }

@media screen and (min-width:768px) {
    .header {
        align-items: stretch;
        display: flex
    }

        .header .header-nav {
            flex-grow: 1;
            align-items: stretch;
            display: flex;
            position: relative;
            text-align: center;
            width: 100%;
            top: 0;
            overflow: visible
        }

        .header .nav-left {
            align-items: stretch;
            flex-basis: 0;
            flex-grow: 1;
            flex-shrink: 0;
            display: flex;
            justify-content: flex-start;
            white-space: nowrap
        }

            .header .nav-left .has-sub .dropdown-menu {
                left: 0;
                right: auto
            }

        .header .nav-right {
            align-items: stretch;
            flex-basis: 0;
            flex-grow: 1;
            flex-shrink: 0;
            display: flex;
            justify-content: flex-end;
            white-space: nowrap
        }

            .header .nav-right .has-sub .dropdown-menu {
                left: auto;
                right: 0
            }

        .header .nav-center {
            align-items: stretch;
            display: flex;
            flex-grow: 0;
            flex-shrink: 0;
            justify-content: center;
            margin-left: auto;
            margin-right: auto
        }

        .header .nav-btn {
            display: none
        }

        .header .nav-item a {
            padding: .5rem 1rem
        }

        .header .nav-item .dropdown-menu {
            opacity: 0;
            pointer-events: none
        }

            .header .nav-item .dropdown-menu.dropdown-animated {
                transform: translateY(-5px)
            }

                .header .nav-item .dropdown-menu.dropdown-animated.dropdown-shown, .header .nav-item .dropdown-menu.dropdown-shown, .header .nav-item.toggle-hover:hover .dropdown-menu {
                    opacity: 1;
                    transform: none;
                    pointer-events: auto
                }
}

@media screen and (max-width:767px) {
    .header {
        flex-direction: column
    }

        .header .header-brand .nav-item:first-child {
            padding: 0 1rem
        }

        .header .header-nav {
            height: 0
        }

            .header .header-nav.active {
                height: 100vh
            }

            .header .header-nav .nav-item {
                padding: 1rem
            }

                .header .header-nav .nav-item > a {
                    padding: 0;
                    width: 100%
                }

    .nav-item.has-sub {
        display: block
    }

        .nav-item.has-sub .dropdown-menu {
            display: none
        }

            .nav-item.has-sub .dropdown-menu.dropdown-shown {
                border-radius: 0;
                box-shadow: none;
                display: block;
                position: relative;
                top: 1rem;
                float: none;
                border: none;
                background-color: transparent;
                margin-bottom: 1rem
            }

            .nav-item.has-sub .dropdown-menu.dropdown-dark {
                background-color: rgba(0,0,0,.17);
                border: 0
            }

    .nav-btn {
        cursor: pointer;
        display: block;
        position: relative;
        margin-left: auto
    }

        .nav-btn span {
            background-color: var(--header-link-color);
            display: block;
            height: 2px;
            left: 50%;
            margin-left: -7px;
            position: absolute;
            top: 50%;
            transition: 86ms ease-out;
            width: 15px
        }

            .nav-btn span:nth-child(1) {
                margin-top: -6px
            }

            .nav-btn span:nth-child(2) {
                margin-top: -1px
            }

            .nav-btn span:nth-child(3) {
                margin-top: 4px
            }

        .nav-btn.active span:nth-child(1) {
            margin-left: -5px;
            transform: rotate(45deg);
            transform-origin: left top
        }

        .nav-btn.active span:nth-child(2) {
            opacity: 0
        }

        .nav-btn.active span:nth-child(3) {
            margin-left: -5px;
            transform: rotate(-45deg);
            transform-origin: left bottom
        }

    .nav-center, .nav-left, .nav-right {
        overflow: hidden
    }

    .header .nav-item.has-sub.toggle-hover:not(.no-hover):hover > .dropdown-menu {
        border-radius: 0;
        box-shadow: none;
        display: block;
        position: relative;
        top: 1rem;
        float: none;
        border: none;
        background-color: transparent;
        margin-bottom: 1rem
    }
}

a {
    color: #5e5cc7;
    font-weight: 600;
    padding: 2px;
    text-decoration: none;
    transition: .3s
}

    a:hover {
        color: #4643e2;
        transition: .3s
    }

    a.underline {
        text-decoration: underline
    }

.subtitle a {
    padding: 0
}

article a, blockquote a, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    display: inline
}

[type=submit] a, a .btn, a button {
    margin-bottom: 0
}

ol, ul {
    margin: 1rem 0 1rem 1rem;
    padding-inline-start: .5rem
}

    ol ol, ol ul, ul ol, ul ul {
        margin: 0 0 0 1rem
    }

    ul ul {
        list-style-type: circle
    }

        ul ul ul {
            list-style-type: square
        }

    ol ol {
        list-style: lower-alpha
    }

        ol ol ol {
            list-style: upper-roman
        }

dl {
    margin: 1rem 0
}

dt {
    font-weight: 700
}

dd {
    margin-bottom: .5rem
}

li {
    margin: .25rem 0
}

ul.no-bullets {
    list-style: none
}

ul.menu {
    font-size: 1rem;
    list-style: none;
    margin: .5rem 0
}

ul .menu-title:not(:first-child) {
    margin-bottom: 1rem
}

ul .menu-title:not(:last-child) {
    margin-top: 1rem
}

ul .menu-item a {
    color: #495057;
    display: block;
    padding: .5em .75em;
    border-radius: 3px;
    font-size: var(--font-size-s);
    cursor: pointer;
    transition: all var(--animation-duration)
}

ul .menu-item:hover > a {
    background-color: rgba(208,208,208,.3);
    color: #f03d4d;
    transition: all var(--animation-duration)
}

ul .menu-item.selected > a {
    color: #fff;
    background-color: #f03d4d
}

ul .menu-item .menu-addon {
    padding: .3rem;
    z-index: 1;
    position: relative;
    color: var(--cirrus-fg);
    cursor: pointer;
    float: left;
    margin-right: .1rem;
    transition: all var(--animation-duration)
}

    ul .menu-item .menu-addon .icon {
        font-size: inherit;
        vertical-align: auto
    }

    ul .menu-item .menu-addon:hover {
        transition: all var(--animation-duration)
    }

    ul .menu-item .menu-addon.right {
        float: right;
        margin-right: 0;
        margin-left: .1rem
    }

ul .menu-item.selected .menu-addon {
    color: #fff
}

ul .menu-item ul {
    border-left: 1px solid #dee2e6;
    margin: .75rem;
    padding-left: .75rem
}

ul .divider {
    border-top: .1rem solid #e9ecef;
    height: .1rem;
    margin: 1rem 0
}

    ul .divider::after {
        content: attr(data-label);
        background-color: var(--cirrus-bg);
        color: #adb5bd;
        display: inline-block;
        padding: 0 .7rem;
        margin: .5rem;
        font-size: .7rem;
        transform: translateY(-1.1rem)
    }

.list-dropdown {
    display: inline-block;
    position: relative
}

    .list-dropdown .menu {
        position: absolute;
        top: 75%;
        left: 0;
        animation: slide-down var(--animation-duration) ease 1;
        background-color: var(--cirrus-bg);
        border-radius: .2rem;
        box-shadow: 0 1rem 3rem rgba(149,157,165,.3);
        margin: 0;
        opacity: 0;
        min-width: 15rem;
        padding: .25rem .5rem;
        transform: translateY(.5rem);
        z-index: 10;
        pointer-events: none;
        overflow: hidden;
        transition: all var(--animation-duration)
    }

@media screen and (max-width:767px) {
    .list-dropdown .menu {
        height: 0;
        padding: 0 !important;
        position: relative
    }
}

.list-dropdown.dropdown-right .menu {
    left: auto;
    right: 0
}

.list-dropdown .btn-dropdown:focus + .menu, .list-dropdown .menu:hover, .list-dropdown.shown .menu {
    display: block;
    opacity: 1;
    top: 100%;
    z-index: 100;
    pointer-events: auto;
    height: auto;
    transition: all var(--animation-duration)
}

.list-dropdown .btn-group .btn-dropdown:nth-last-child(2) {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px
}

.tree {
    margin: 0
}

    .tree .tree-item .tree-item-header {
        display: block;
        padding: .25rem .5rem;
        cursor: pointer;
        font-weight: 700
    }

        .tree .tree-item .tree-item-header .icon {
            transition: all var(--animation-duration)
        }

    .tree .tree-item input:checked ~ .tree-item-body {
        max-height: 100vh
    }

    .tree .tree-item input:checked ~ .tree-item-header .icon {
        transform: rotate(90deg)
    }

    .tree .tree-item .tree-item-body {
        max-height: 0;
        margin-left: 1.5rem;
        overflow: hidden;
        transition: all var(--animation-duration)
    }

.tree-nav-body {
    display: flex;
    height: 100vh;
    flex-wrap: nowrap
}

    .tree-nav-body .tree-nav {
        flex-grow: 0;
        flex-shrink: 1;
        padding: 2rem 1rem 2rem 2rem;
        min-width: 15rem;
        height: 100vh;
        overflow: auto
    }

    .tree-nav-body .tree-nav-container {
        overflow-y: auto;
        top: 4rem;
        bottom: 1rem
    }

    .tree-nav-body + .tree-nav-close {
        display: none
    }

    .tree-nav-body + .tree-nav-content {
        max-width: 100%;
        padding: 2rem;
        flex: 1 0 auto;
        overflow: auto;
        margin: 0
    }

    .tree-nav-body .tree-nav-content {
        width: 100%;
        overflow: auto;
        margin: 0;
        padding: 2rem
    }

@media screen and (max-width:767px) {
    .tree-nav {
        height: 100%;
        left: 0;
        overflow-y: auto;
        padding: 3rem 1.5rem;
        position: fixed;
        top: 0;
        transform: translateX(-100%);
        transition: transform var(--animation-duration) ease;
        z-index: 400
    }

        .tree-nav:target {
            transform: translateX(0);
            transition: transform var(--animation-duration) ease
        }

            .tree-nav:target + .tree-nav-close {
                display: block;
                background-color: rgba(0,0,0,.15);
                height: 100%;
                left: 0;
                position: fixed;
                right: 0;
                top: 0;
                width: 100%;
                z-index: 300
            }

        .tree-nav .tree-nav-close {
            background-color: rgba(0,0,0,.15);
            display: none;
            height: 100%;
            left: 0;
            position: fixed;
            right: 0;
            top: 0;
            width: 100%;
            z-index: 300
        }

        .tree-nav + .tree-nav-body {
            max-width: inherit
        }

    .tree-nav-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: rgba(248,249,250,.8);
        height: 3.5rem;
        padding: .75rem .5rem;
        text-align: center;
        z-index: 300
    }

    .nav-item.has-sub .list-dropdown, .nav-item.has-sub .list-dropdown .btn-group {
        width: 100%
    }

        .nav-item.has-sub .list-dropdown .btn-group .btn-dropdown {
            flex-grow: 0
        }

    .list-dropdown .btn-dropdown:focus + .menu {
        position: relative;
        width: 100%
    }
}

.progress {
    --progress-color: #f03d4d;
    background-color: #e9ecef;
    border: none;
    border-radius: .25rem;
    overflow: hidden;
    padding: 0;
    width: 100%;
    height: .75rem
}

    .progress::-webkit-progress-bar {
        background-color: transparent
    }

    .progress::-webkit-progress-value {
        background-color: var(--progress-color)
    }

    .progress::-moz-progress-bar {
        background-color: var(--progress-color)
    }

    .progress::-ms-fill {
        background-color: var(--progress-color);
        border: none
    }

    .progress.progress--xs {
        height: .25rem
    }

    .progress.progress--sm {
        height: .5rem
    }

    .progress.progress--md {
        height: .75rem
    }

    .progress.progress--lg {
        height: 1rem
    }

    .progress.progress--xl {
        height: 1.25rem
    }

    .progress.progress--primary {
        --progress-color: #f03d4d
    }

    .progress.progress--dark {
        --progress-color: #363636
    }

    .progress.progress--link {
        --progress-color: #5e5cc7
    }

    .progress.progress--info {
        --progress-color: #2972fa
    }

    .progress.progress--success {
        --progress-color: #0dd157
    }

    .progress.progress--warning {
        --progress-color: #fab633
    }

    .progress.progress--danger {
        --progress-color: #fb4143
    }

    .progress:indeterminate {
        animation: 1.5s linear infinite progress-indeterminate;
        background: #e9ecef linear-gradient(to right,var(--progress-color) 30%,#e9ecef 30%) top left/150% 150% no-repeat
    }

    .progress:indeterminate::-webkit-progress-bar {
        --progress-color: transparent
    }

    .progress:indeterminate::-moz-progress-bar {
        --progress-color: transparent
    }

    .progress:indeterminate::-ms-fill {
        animation-name: none
    }

@keyframes progress-indeterminate {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

.u-blur-none {
    --cirrus-blur: blur(0);
    filter: var(--cirrus-blur)
}

.u-blur-xs {
    --cirrus-blur: blur(0.25rem);
    filter: var(--cirrus-blur)
}

.u-blur-sm {
    --cirrus-blur: blur(0.5rem);
    filter: var(--cirrus-blur)
}

.u-blur-md {
    --cirrus-blur: blur(1rem);
    filter: var(--cirrus-blur)
}

.u-blur-lg {
    --cirrus-blur: blur(1.5rem);
    filter: var(--cirrus-blur)
}

.u-blur-xl {
    --cirrus-blur: blur(3rem);
    filter: var(--cirrus-blur)
}

.u-none {
    display: none !important
}

.u-inline {
    display: inline !important
}

.u-inline-block {
    display: inline-block !important
}

.u-block {
    display: block !important
}

.u-flex {
    display: flex !important
}

.u-inline-flex {
    display: inline-flex !important
}

.u-table {
    display: table !important
}

.u-table-row {
    display: table-row !important
}

.u-table-column {
    display: table-column !important
}

.u-table-cell {
    display: table-cell !important
}

.u-flex-row {
    flex-direction: row !important
}

.u-flex-row-reverse {
    flex-direction: row-reverse !important
}

.u-flex-column {
    flex-direction: column !important
}

.u-flex-column-reverse {
    flex-direction: column-reverse !important
}

.u-justify-flex-start {
    justify-content: flex-start !important
}

.u-justify-center {
    justify-content: center !important
}

.u-justify-flex-end {
    justify-content: flex-end !important
}

.u-justify-space-between {
    justify-content: space-between !important
}

.u-justify-space-around {
    justify-content: space-around !important
}

.u-justify-space-evenly {
    justify-content: space-evenly !important
}

@media screen and (min-width:640px) {
    .u-justify-flex-start-sm {
        justify-content: flex-start !important
    }

    .u-justify-center-sm {
        justify-content: center !important
    }

    .u-justify-flex-end-sm {
        justify-content: flex-end !important
    }

    .u-justify-space-between-sm {
        justify-content: space-between !important
    }

    .u-justify-space-around-sm {
        justify-content: space-around !important
    }

    .u-justify-space-evenly-sm {
        justify-content: space-evenly !important
    }
}

@media screen and (min-width:768px) {
    .u-justify-flex-start-md {
        justify-content: flex-start !important
    }

    .u-justify-center-md {
        justify-content: center !important
    }

    .u-justify-flex-end-md {
        justify-content: flex-end !important
    }

    .u-justify-space-between-md {
        justify-content: space-between !important
    }

    .u-justify-space-around-md {
        justify-content: space-around !important
    }

    .u-justify-space-evenly-md {
        justify-content: space-evenly !important
    }
}

@media screen and (min-width:1024px) {
    .u-justify-flex-start-lg {
        justify-content: flex-start !important
    }

    .u-justify-center-lg {
        justify-content: center !important
    }

    .u-justify-flex-end-lg {
        justify-content: flex-end !important
    }

    .u-justify-space-between-lg {
        justify-content: space-between !important
    }

    .u-justify-space-around-lg {
        justify-content: space-around !important
    }

    .u-justify-space-evenly-lg {
        justify-content: space-evenly !important
    }
}

@media screen and (min-width:1280px) {
    .u-justify-flex-start-xl {
        justify-content: flex-start !important
    }

    .u-justify-center-xl {
        justify-content: center !important
    }

    .u-justify-flex-end-xl {
        justify-content: flex-end !important
    }

    .u-justify-space-between-xl {
        justify-content: space-between !important
    }

    .u-justify-space-around-xl {
        justify-content: space-around !important
    }

    .u-justify-space-evenly-xl {
        justify-content: space-evenly !important
    }
}

.u-items-stretch {
    align-items: stretch !important
}

.u-items-flex-start {
    align-items: flex-start !important
}

.u-items-center {
    align-items: center !important
}

.u-items-flex-end {
    align-items: flex-end !important
}

.u-items-baseline {
    align-items: baseline !important
}

@media screen and (min-width:640px) {
    .u-items-stretch-sm {
        align-items: stretch !important
    }

    .u-items-flex-start-sm {
        align-items: flex-start !important
    }

    .u-items-center-sm {
        align-items: center !important
    }

    .u-items-flex-end-sm {
        align-items: flex-end !important
    }

    .u-items-baseline-sm {
        align-items: baseline !important
    }
}

@media screen and (min-width:768px) {
    .u-items-stretch-md {
        align-items: stretch !important
    }

    .u-items-flex-start-md {
        align-items: flex-start !important
    }

    .u-items-center-md {
        align-items: center !important
    }

    .u-items-flex-end-md {
        align-items: flex-end !important
    }

    .u-items-baseline-md {
        align-items: baseline !important
    }
}

@media screen and (min-width:1024px) {
    .u-items-stretch-lg {
        align-items: stretch !important
    }

    .u-items-flex-start-lg {
        align-items: flex-start !important
    }

    .u-items-center-lg {
        align-items: center !important
    }

    .u-items-flex-end-lg {
        align-items: flex-end !important
    }

    .u-items-baseline-lg {
        align-items: baseline !important
    }
}

@media screen and (min-width:1280px) {
    .u-items-stretch-xl {
        align-items: stretch !important
    }

    .u-items-flex-start-xl {
        align-items: flex-start !important
    }

    .u-items-center-xl {
        align-items: center !important
    }

    .u-items-flex-end-xl {
        align-items: flex-end !important
    }

    .u-items-baseline-xl {
        align-items: baseline !important
    }
}

.u-flex-grow-0 {
    flex-grow: 0 !important
}

.u-flex-grow-1 {
    flex-grow: 1 !important
}

@media screen and (min-width:640px) {
    .u-flex-grow-0-sm {
        flex-grow: 0 !important
    }

    .u-flex-grow-1-sm {
        flex-grow: 1 !important
    }
}

@media screen and (min-width:768px) {
    .u-flex-grow-0-md {
        flex-grow: 0 !important
    }

    .u-flex-grow-1-md {
        flex-grow: 1 !important
    }
}

@media screen and (min-width:1024px) {
    .u-flex-grow-0-lg {
        flex-grow: 0 !important
    }

    .u-flex-grow-1-lg {
        flex-grow: 1 !important
    }
}

@media screen and (min-width:1280px) {
    .u-flex-grow-0-xl {
        flex-grow: 0 !important
    }

    .u-flex-grow-1-xl {
        flex-grow: 1 !important
    }
}

.u-flex-shrink-0 {
    flex-shrink: 0 !important
}

.u-flex-shrink-1 {
    flex-shrink: 1 !important
}

@media screen and (min-width:640px) {
    .u-flex-shrink-0-sm {
        flex-shrink: 0 !important
    }

    .u-flex-shrink-1-sm {
        flex-shrink: 1 !important
    }
}

@media screen and (min-width:768px) {
    .u-flex-shrink-0-md {
        flex-shrink: 0 !important
    }

    .u-flex-shrink-1-md {
        flex-shrink: 1 !important
    }
}

@media screen and (min-width:1024px) {
    .u-flex-shrink-0-lg {
        flex-shrink: 0 !important
    }

    .u-flex-shrink-1-lg {
        flex-shrink: 1 !important
    }
}

@media screen and (min-width:1280px) {
    .u-flex-shrink-0-xl {
        flex-shrink: 0 !important
    }

    .u-flex-shrink-1-xl {
        flex-shrink: 1 !important
    }
}

.u-flex-wrap {
    flex-wrap: wrap !important
}

.u-flex-wrap-reverse {
    flex-wrap: wrap-reverse !important
}

.u-flex-nowrap {
    flex-wrap: nowrap !important
}

@media screen and (min-width:640px) {
    .u-flex-wrap-sm {
        flex-wrap: wrap !important
    }

    .u-flex-wrap-reverse-sm {
        flex-wrap: wrap-reverse !important
    }

    .u-flex-nowrap-sm {
        flex-wrap: nowrap !important
    }
}

@media screen and (min-width:768px) {
    .u-flex-wrap-md {
        flex-wrap: wrap !important
    }

    .u-flex-wrap-reverse-md {
        flex-wrap: wrap-reverse !important
    }

    .u-flex-nowrap-md {
        flex-wrap: nowrap !important
    }
}

@media screen and (min-width:1024px) {
    .u-flex-wrap-lg {
        flex-wrap: wrap !important
    }

    .u-flex-wrap-reverse-lg {
        flex-wrap: wrap-reverse !important
    }

    .u-flex-nowrap-lg {
        flex-wrap: nowrap !important
    }
}

@media screen and (min-width:1280px) {
    .u-flex-wrap-xl {
        flex-wrap: wrap !important
    }

    .u-flex-wrap-reverse-xl {
        flex-wrap: wrap-reverse !important
    }

    .u-flex-nowrap-xl {
        flex-wrap: nowrap !important
    }
}

.u-basis-auto {
    flex-basis: auto !important
}

.u-basis-max-content {
    flex-basis: max-content !important
}

.u-basis-min-content {
    flex-basis: min-content !important
}

.u-basis-fit-content {
    flex-basis: fit-content !important
}

.u-basis-content {
    flex-basis: content !important
}

.u-basis-revert {
    flex-basis: revert !important
}

.u-basis-revert-layer {
    flex-basis: revert-layer !important
}

.u-basis-10p {
    flex-basis: 10% !important
}

.u-basis-20p {
    flex-basis: 20% !important
}

.u-basis-30p {
    flex-basis: 30% !important
}

.u-basis-40p {
    flex-basis: 40% !important
}

.u-basis-50p {
    flex-basis: 50% !important
}

.u-basis-60p {
    flex-basis: 60% !important
}

.u-basis-70p {
    flex-basis: 70% !important
}

.u-basis-80p {
    flex-basis: 80% !important
}

.u-basis-90p {
    flex-basis: 90% !important
}

.u-basis-100p {
    flex-basis: 100% !important
}

.u-gap-0 {
    gap: 0 !important
}

.u-gap-1 {
    gap: .5rem !important
}

.u-gap-2 {
    gap: 1rem !important
}

.u-gap-3 {
    gap: 1.5rem !important
}

.u-gap-4 {
    gap: 2rem !important
}

.u-gap-5 {
    gap: 2.5rem !important
}

.u-gap-6 {
    gap: 3rem !important
}

.u-gap-8 {
    gap: 4rem !important
}

.u-gap-10 {
    gap: 5rem !important
}

.u-gap-12 {
    gap: 6rem !important
}

.u-gap-16 {
    gap: 8rem !important
}

.u-gap-20 {
    gap: 10rem !important
}

.u-gap-24 {
    gap: 12rem !important
}

.u-gap-32 {
    gap: 16rem !important
}

.u-pull-left {
    float: left !important
}

.u-pull-right {
    float: right !important
}

.u-text-justify {
    text-align: justify !important
}

.u-text-left {
    text-align: left !important
}

.u-text-right {
    text-align: right !important
}

.u-text-center {
    text-align: center !important
}

@media screen and (min-width:640px) {
    .u-basis-auto-sm {
        flex-basis: auto !important
    }

    .u-basis-max-content-sm {
        flex-basis: max-content !important
    }

    .u-basis-min-content-sm {
        flex-basis: min-content !important
    }

    .u-basis-fit-content-sm {
        flex-basis: fit-content !important
    }

    .u-basis-content-sm {
        flex-basis: content !important
    }

    .u-basis-revert-sm {
        flex-basis: revert !important
    }

    .u-basis-revert-layer-sm {
        flex-basis: revert-layer !important
    }

    .u-basis-10p-sm {
        flex-basis: 10% !important
    }

    .u-basis-20p-sm {
        flex-basis: 20% !important
    }

    .u-basis-30p-sm {
        flex-basis: 30% !important
    }

    .u-basis-40p-sm {
        flex-basis: 40% !important
    }

    .u-basis-50p-sm {
        flex-basis: 50% !important
    }

    .u-basis-60p-sm {
        flex-basis: 60% !important
    }

    .u-basis-70p-sm {
        flex-basis: 70% !important
    }

    .u-basis-80p-sm {
        flex-basis: 80% !important
    }

    .u-basis-90p-sm {
        flex-basis: 90% !important
    }

    .u-basis-100p-sm {
        flex-basis: 100% !important
    }

    .u-pull-left-sm {
        float: left !important
    }

    .u-pull-right-sm {
        float: right !important
    }

    .u-text-justify-sm {
        text-align: justify !important
    }

    .u-text-left-sm {
        text-align: left !important
    }

    .u-text-right-sm {
        text-align: right !important
    }

    .u-text-center-sm {
        text-align: center !important
    }
}

@media screen and (min-width:768px) {
    .u-basis-auto-md {
        flex-basis: auto !important
    }

    .u-basis-max-content-md {
        flex-basis: max-content !important
    }

    .u-basis-min-content-md {
        flex-basis: min-content !important
    }

    .u-basis-fit-content-md {
        flex-basis: fit-content !important
    }

    .u-basis-content-md {
        flex-basis: content !important
    }

    .u-basis-revert-md {
        flex-basis: revert !important
    }

    .u-basis-revert-layer-md {
        flex-basis: revert-layer !important
    }

    .u-basis-10p-md {
        flex-basis: 10% !important
    }

    .u-basis-20p-md {
        flex-basis: 20% !important
    }

    .u-basis-30p-md {
        flex-basis: 30% !important
    }

    .u-basis-40p-md {
        flex-basis: 40% !important
    }

    .u-basis-50p-md {
        flex-basis: 50% !important
    }

    .u-basis-60p-md {
        flex-basis: 60% !important
    }

    .u-basis-70p-md {
        flex-basis: 70% !important
    }

    .u-basis-80p-md {
        flex-basis: 80% !important
    }

    .u-basis-90p-md {
        flex-basis: 90% !important
    }

    .u-basis-100p-md {
        flex-basis: 100% !important
    }

    .u-pull-left-md {
        float: left !important
    }

    .u-pull-right-md {
        float: right !important
    }

    .u-text-justify-md {
        text-align: justify !important
    }

    .u-text-left-md {
        text-align: left !important
    }

    .u-text-right-md {
        text-align: right !important
    }

    .u-text-center-md {
        text-align: center !important
    }
}

@media screen and (min-width:1024px) {
    .u-basis-auto-lg {
        flex-basis: auto !important
    }

    .u-basis-max-content-lg {
        flex-basis: max-content !important
    }

    .u-basis-min-content-lg {
        flex-basis: min-content !important
    }

    .u-basis-fit-content-lg {
        flex-basis: fit-content !important
    }

    .u-basis-content-lg {
        flex-basis: content !important
    }

    .u-basis-revert-lg {
        flex-basis: revert !important
    }

    .u-basis-revert-layer-lg {
        flex-basis: revert-layer !important
    }

    .u-basis-10p-lg {
        flex-basis: 10% !important
    }

    .u-basis-20p-lg {
        flex-basis: 20% !important
    }

    .u-basis-30p-lg {
        flex-basis: 30% !important
    }

    .u-basis-40p-lg {
        flex-basis: 40% !important
    }

    .u-basis-50p-lg {
        flex-basis: 50% !important
    }

    .u-basis-60p-lg {
        flex-basis: 60% !important
    }

    .u-basis-70p-lg {
        flex-basis: 70% !important
    }

    .u-basis-80p-lg {
        flex-basis: 80% !important
    }

    .u-basis-90p-lg {
        flex-basis: 90% !important
    }

    .u-basis-100p-lg {
        flex-basis: 100% !important
    }

    .u-pull-left-lg {
        float: left !important
    }

    .u-pull-right-lg {
        float: right !important
    }

    .u-text-justify-lg {
        text-align: justify !important
    }

    .u-text-left-lg {
        text-align: left !important
    }

    .u-text-right-lg {
        text-align: right !important
    }

    .u-text-center-lg {
        text-align: center !important
    }
}

@media screen and (min-width:1280px) {
    .u-basis-auto-xl {
        flex-basis: auto !important
    }

    .u-basis-max-content-xl {
        flex-basis: max-content !important
    }

    .u-basis-min-content-xl {
        flex-basis: min-content !important
    }

    .u-basis-fit-content-xl {
        flex-basis: fit-content !important
    }

    .u-basis-content-xl {
        flex-basis: content !important
    }

    .u-basis-revert-xl {
        flex-basis: revert !important
    }

    .u-basis-revert-layer-xl {
        flex-basis: revert-layer !important
    }

    .u-basis-10p-xl {
        flex-basis: 10% !important
    }

    .u-basis-20p-xl {
        flex-basis: 20% !important
    }

    .u-basis-30p-xl {
        flex-basis: 30% !important
    }

    .u-basis-40p-xl {
        flex-basis: 40% !important
    }

    .u-basis-50p-xl {
        flex-basis: 50% !important
    }

    .u-basis-60p-xl {
        flex-basis: 60% !important
    }

    .u-basis-70p-xl {
        flex-basis: 70% !important
    }

    .u-basis-80p-xl {
        flex-basis: 80% !important
    }

    .u-basis-90p-xl {
        flex-basis: 90% !important
    }

    .u-basis-100p-xl {
        flex-basis: 100% !important
    }

    .u-pull-left-xl {
        float: left !important
    }

    .u-pull-right-xl {
        float: right !important
    }

    .u-text-justify-xl {
        text-align: justify !important
    }

    .u-text-left-xl {
        text-align: left !important
    }

    .u-text-right-xl {
        text-align: right !important
    }

    .u-text-center-xl {
        text-align: center !important
    }
}

.u-text-ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}

.u-text-break {
    hyphens: auto;
    word-break: break-word;
    word-wrap: break-word
}

.u-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    flex-wrap: wrap
}

.u-center-alt, .u-center-alt:active, .u-center-alt:hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}

.u-overlay {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    position: absolute
}

.u-disabled {
    cursor: not-allowed !important;
    pointer-events: none !important
}

details.accordion {
    border-bottom: 1px solid #dee2e6;
    display: block;
    padding: 1rem
}

    details.accordion summary.accordion__summary {
        align-items: center;
        cursor: pointer;
        display: flex;
        font-weight: 700;
        justify-content: space-between;
        list-style-type: none;
        opacity: .75;
        transition: 250ms
    }

        details.accordion summary.accordion__summary:after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(65, 84, 98)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-position: right center;
            background-size: 1rem auto;
            background-repeat: no-repeat;
            content: "";
            display: block;
            float: right;
            height: 1rem;
            transform: rotate(-90deg);
            width: 1rem
        }

    details.accordion[open] summary.accordion__summary {
        margin-bottom: 1rem;
        opacity: 1
    }

        details.accordion[open] summary.accordion__summary:after {
            transform: rotate(0)
        }

.avatar {
    border-radius: 50%;
    position: relative;
    display: block;
    margin: auto;
    font-size: 1.5rem;
    font-weight: lighter;
    width: 3.2rem;
    height: 3.2rem;
    background-color: #f03d4d;
    overflow: hidden
}

    .avatar::before {
        content: attr(data-text);
        color: currentColor;
        left: 50%;
        top: 50%;
        position: absolute;
        transform: translate(-50%,-50%)
    }

    .avatar.avatar--xs {
        font-size: .8rem;
        width: 1.6rem;
        height: 1.6rem
    }

    .avatar.avatar--sm {
        font-size: 1rem;
        width: 2.4rem;
        height: 2.4rem
    }

    .avatar.avatar--lg {
        font-size: 2rem;
        width: 4.8rem;
        height: 4.8rem
    }

    .avatar.avatar--xl {
        font-size: 3rem;
        width: 6.4rem;
        height: 6.4rem
    }

    .avatar img.padded {
        padding: .5rem;
        width: 100%
    }

.card {
    background-color: #fff;
    backface-visibility: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 12px 0 rgba(42,51,83,.12),0 0 5px rgba(0,0,0,.06);
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
    transition: .3s
}

    .card:hover {
        transition: .3s;
        box-shadow: 0 8px 20px 0 rgba(42,51,83,.12),0 5px 5px rgba(0,0,0,.06)
    }

        .card:hover .card-image::after {
            opacity: 0
        }

    .card.card--slide-up, .card.slide-up {
        display: flex;
        flex-direction: column;
        max-height: 550px
    }

        .card.card--slide-up:hover .card-body, .card.card--slide-up:hover .card__body, .card.slide-up:hover .card-body, .card.slide-up:hover .card__body {
            opacity: 1
        }

        .card.card--slide-up:hover .card-image, .card.card--slide-up:hover .card__image, .card.slide-up:hover .card-image, .card.slide-up:hover .card__image {
            transform: translateY(-40px)
        }

        .card.card--slide-up:hover .card__mobile-title, .card.card--slide-up:hover .mobile-title, .card.slide-up:hover .card__mobile-title, .card.slide-up:hover .mobile-title {
            bottom: 35%;
            transition: .3s ease-in-out
        }

        .card.card--slide-up .card__mobile-title, .card.card--slide-up .mobile-title, .card.slide-up .card__mobile-title, .card.slide-up .mobile-title {
            position: absolute;
            left: 0;
            bottom: 5rem;
            background-color: var(--cirrus-bg);
            transition: .3s ease-in-out;
            width: 100%;
            padding: 1.5rem 0 0;
            backface-visibility: hidden
        }

        .card.card--slide-up .card-body, .card.card--slide-up .card__body, .card.slide-up .card-body, .card.slide-up .card__body {
            opacity: 0;
            overflow: auto;
            transition: all var(--animation-duration) ease-in-out
        }

    .card.u-flex .content {
        flex-grow: 1
    }

    .card p {
        margin: 1rem 0
    }

    .card .card-image, .card .card__image {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        border-radius: 5px 5px 0 0;
        background-size: cover;
        background-repeat: no-repeat;
        transition: .3s ease-in-out
    }

        .card .card-image::after, .card .card__image::after {
            content: "";
            display: block;
            position: absolute;
            background-color: rgba(0,0,0,.1);
            top: 0;
            left: 0;
            right: 0;
            transition: .5s;
            bottom: 0
        }

    .card .card-container, .card .card__container {
        display: block;
        position: relative;
        height: 40%;
        min-height: 21rem
    }

    .card .card__title-container, .card .title-container {
        position: absolute;
        bottom: 1rem;
        width: 100%;
        padding: 0 1rem
    }

        .card .card__title-container .subtitle, .card .card__title-container .title, .card .title-container .subtitle, .card .title-container .title {
            color: #fff;
            margin: 1rem auto
        }

        .card .card__title-container .title, .card .title-container .title {
            font-weight: 300;
            font-size: 1.5rem;
            margin-bottom: 0;
            text-shadow: 0 1px 2px rgba(0,0,0,.25)
        }

    .card .action-bar, .card .card__action-bar {
        user-select: none;
        padding: .5rem;
        margin: 0;
        border-top: 1px solid #e9ecef;
        box-sizing: border-box;
        transition: left .2s cubic-bezier(.075,.82,.165,1)
    }

        .card .action-bar .btn, .card .action-bar [type=button], .card .action-bar [type=reset], .card .action-bar [type=submit], .card .action-bar button, .card .card__action-bar .btn, .card .card__action-bar [type=button], .card .card__action-bar [type=reset], .card .card__action-bar [type=submit], .card .card__action-bar button {
            margin: 0 .5rem
        }

        .card .action-bar + .card-footer, .card .action-bar + .card__footer, .card .card__action-bar + .card-footer, .card .card__action-bar + .card__footer {
            padding: 1rem 0;
            border-top: 1px solid #e9ecef
        }

    .card .card-footer, .card .card__footer {
        position: relative;
        font-size: .875rem;
        color: #868e96
    }

    .card .card-head, .card .card__header {
        align-items: stretch;
        display: flex;
        border-bottom: 1px solid #e9ecef
    }

.form-ext-control {
    padding-left: 1.5rem;
    position: relative
}

    .form-ext-control.form-ext-checkbox .form-ext-input:checked ~ .form-ext-label:after {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")
    }

    .form-ext-control.form-ext-checkbox .form-ext-label:before {
        border-radius: .25rem
    }

    .form-ext-control.form-ext-radio .form-ext-input:checked ~ .form-ext-label:after {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")
    }

    .form-ext-control.form-ext-radio .form-ext-label:before {
        border-radius: 50%
    }

    .form-ext-control .form-ext-input {
        opacity: 0;
        position: absolute;
        z-index: -1
    }

        .form-ext-control .form-ext-input:disabled ~ .form-ext-label {
            opacity: .4
        }

        .form-ext-control .form-ext-input.form-ext-input--primary:checked ~ .form-ext-label {
            color: #f03d4d
        }

            .form-ext-control .form-ext-input.form-ext-input--primary:checked ~ .form-ext-label:before {
                background-color: #f03d4d
            }

        .form-ext-control .form-ext-input.form-ext-input--primary:focus ~ .form-ext-label:before {
            border-color: inherit;
            box-shadow: 0 0 0 .2rem rgba(240,61,77,.55),inset 0 1px 8px rgba(0,0,0,.07)
        }

        .form-ext-control .form-ext-input.form-ext-input--dark:checked ~ .form-ext-label {
            color: #363636
        }

            .form-ext-control .form-ext-input.form-ext-input--dark:checked ~ .form-ext-label:before {
                background-color: #363636
            }

        .form-ext-control .form-ext-input.form-ext-input--dark:focus ~ .form-ext-label:before {
            border-color: inherit;
            box-shadow: 0 0 0 .2rem rgba(54,54,54,.55),inset 0 1px 8px rgba(0,0,0,.07)
        }

        .form-ext-control .form-ext-input.form-ext-input--link:checked ~ .form-ext-label {
            color: #5e5cc7
        }

            .form-ext-control .form-ext-input.form-ext-input--link:checked ~ .form-ext-label:before {
                background-color: #5e5cc7
            }

        .form-ext-control .form-ext-input.form-ext-input--link:focus ~ .form-ext-label:before {
            border-color: inherit;
            box-shadow: 0 0 0 .2rem rgba(94,92,199,.55),inset 0 1px 8px rgba(0,0,0,.07)
        }

        .form-ext-control .form-ext-input.form-ext-input--info:checked ~ .form-ext-label {
            color: #2972fa
        }

            .form-ext-control .form-ext-input.form-ext-input--info:checked ~ .form-ext-label:before {
                background-color: #2972fa
            }

        .form-ext-control .form-ext-input.form-ext-input--info:focus ~ .form-ext-label:before {
            border-color: inherit;
            box-shadow: 0 0 0 .2rem rgba(41,114,250,.55),inset 0 1px 8px rgba(0,0,0,.07)
        }

        .form-ext-control .form-ext-input.form-ext-input--success:checked ~ .form-ext-label {
            color: #0dd157
        }

            .form-ext-control .form-ext-input.form-ext-input--success:checked ~ .form-ext-label:before {
                background-color: #0dd157
            }

        .form-ext-control .form-ext-input.form-ext-input--success:focus ~ .form-ext-label:before {
            border-color: inherit;
            box-shadow: 0 0 0 .2rem rgba(13,209,87,.55),inset 0 1px 8px rgba(0,0,0,.07)
        }

        .form-ext-control .form-ext-input.form-ext-input--warning:checked ~ .form-ext-label {
            color: #fab633
        }

            .form-ext-control .form-ext-input.form-ext-input--warning:checked ~ .form-ext-label:before {
                background-color: #fab633
            }

        .form-ext-control .form-ext-input.form-ext-input--warning:focus ~ .form-ext-label:before {
            border-color: inherit;
            box-shadow: 0 0 0 .2rem rgba(250,182,51,.55),inset 0 1px 8px rgba(0,0,0,.07)
        }

        .form-ext-control .form-ext-input.form-ext-input--danger:checked ~ .form-ext-label {
            color: #fb4143
        }

            .form-ext-control .form-ext-input.form-ext-input--danger:checked ~ .form-ext-label:before {
                background-color: #fb4143
            }

        .form-ext-control .form-ext-input.form-ext-input--danger:focus ~ .form-ext-label:before {
            border-color: inherit;
            box-shadow: 0 0 0 .2rem rgba(251,65,67,.55),inset 0 1px 8px rgba(0,0,0,.07)
        }

        .form-ext-control .form-ext-input:disabled ~ .form-ext-toggle__toggler {
            opacity: .5
        }

    .form-ext-control .form-ext-toggle__label {
        align-items: center;
        display: flex;
        justify-content: space-between
    }

    .form-ext-control .form-ext-toggle {
        cursor: pointer;
        position: relative
    }

        .form-ext-control .form-ext-toggle input[type=checkbox], .form-ext-control .form-ext-toggle input[type=radio] {
            opacity: 0;
            position: absolute;
            z-index: -1
        }

        .form-ext-control .form-ext-toggle .form-ext-toggle__toggler {
            border: 1px solid #d5d7dc;
            border-radius: 6.25rem;
            color: #d5d7dc;
            display: block;
            font-size: 9px;
            height: 1.5rem;
            position: relative;
            width: 3rem
        }

            .form-ext-control .form-ext-toggle .form-ext-toggle__toggler i {
                display: inline-block
            }

        .form-ext-control .form-ext-toggle input[type=checkbox]:checked + * .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle input[type=checkbox]:checked + .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle input[type=radio]:checked + * .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle input[type=radio]:checked + .form-ext-toggle__toggler {
            background-color: #f03d4d;
            border-color: #f03d4d;
            color: #fff;
            position: relative;
            transition: .4s
        }

            .form-ext-control .form-ext-toggle input[type=checkbox]:checked + * .form-ext-toggle__toggler i::after, .form-ext-control .form-ext-toggle input[type=checkbox]:checked + .form-ext-toggle__toggler i::after, .form-ext-control .form-ext-toggle input[type=radio]:checked + * .form-ext-toggle__toggler i::after, .form-ext-control .form-ext-toggle input[type=radio]:checked + .form-ext-toggle__toggler i::after {
                background-color: #fff;
                left: calc(100% - 20px)
            }

            .form-ext-control .form-ext-toggle input[type=checkbox]:checked + * .form-ext-toggle__toggler i::before, .form-ext-control .form-ext-toggle input[type=checkbox]:checked + .form-ext-toggle__toggler i::before, .form-ext-control .form-ext-toggle input[type=radio]:checked + * .form-ext-toggle__toggler i::before, .form-ext-control .form-ext-toggle input[type=radio]:checked + .form-ext-toggle__toggler i::before {
                color: #fff;
                content: attr(data-check-icon);
                text-align: left
            }

        .form-ext-control .form-ext-toggle.form-ext-toggle--primary input[type=checkbox]:checked + * .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle.form-ext-toggle--primary input[type=checkbox]:checked + .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle.form-ext-toggle--primary input[type=radio]:checked + * .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle.form-ext-toggle--primary input[type=radio]:checked + .form-ext-toggle__toggler {
            background-color: #f03d4d;
            border-color: #f03d4d
        }

        .form-ext-control .form-ext-toggle .form-ext-toggle--primary .form-ext-toggle__toggler {
            border-color: #f03d4d;
            color: #f03d4d
        }

            .form-ext-control .form-ext-toggle .form-ext-toggle--primary .form-ext-toggle__toggler i::after {
                background-color: #f03d4d
            }

        .form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before, .form-ext-control .form-ext-toggle.form-ext-toggle--primary .form-ext-input:focus + .form-ext-toggle__toggler {
            box-shadow: 0 0 0 .2rem rgba(240,61,77,.55),inset 0 1px 8px rgba(0,0,0,.07)
        }

        .form-ext-control .form-ext-toggle.form-ext-toggle--dark input[type=checkbox]:checked + * .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle.form-ext-toggle--dark input[type=checkbox]:checked + .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle.form-ext-toggle--dark input[type=radio]:checked + * .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle.form-ext-toggle--dark input[type=radio]:checked + .form-ext-toggle__toggler {
            background-color: #363636;
            border-color: #363636
        }

        .form-ext-control .form-ext-toggle .form-ext-toggle--dark .form-ext-toggle__toggler {
            border-color: #363636;
            color: #363636
        }

            .form-ext-control .form-ext-toggle .form-ext-toggle--dark .form-ext-toggle__toggler i::after {
                background-color: #363636
            }

        .form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before, .form-ext-control .form-ext-toggle.form-ext-toggle--dark .form-ext-input:focus + .form-ext-toggle__toggler {
            box-shadow: 0 0 0 .2rem rgba(54,54,54,.55),inset 0 1px 8px rgba(0,0,0,.07)
        }

        .form-ext-control .form-ext-toggle.form-ext-toggle--link input[type=checkbox]:checked + * .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle.form-ext-toggle--link input[type=checkbox]:checked + .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle.form-ext-toggle--link input[type=radio]:checked + * .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle.form-ext-toggle--link input[type=radio]:checked + .form-ext-toggle__toggler {
            background-color: #5e5cc7;
            border-color: #5e5cc7
        }

        .form-ext-control .form-ext-toggle .form-ext-toggle--link .form-ext-toggle__toggler {
            border-color: #5e5cc7;
            color: #5e5cc7
        }

            .form-ext-control .form-ext-toggle .form-ext-toggle--link .form-ext-toggle__toggler i::after {
                background-color: #5e5cc7
            }

        .form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before, .form-ext-control .form-ext-toggle.form-ext-toggle--link .form-ext-input:focus + .form-ext-toggle__toggler {
            box-shadow: 0 0 0 .2rem rgba(94,92,199,.55),inset 0 1px 8px rgba(0,0,0,.07)
        }

        .form-ext-control .form-ext-toggle.form-ext-toggle--info input[type=checkbox]:checked + * .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle.form-ext-toggle--info input[type=checkbox]:checked + .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle.form-ext-toggle--info input[type=radio]:checked + * .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle.form-ext-toggle--info input[type=radio]:checked + .form-ext-toggle__toggler {
            background-color: #2972fa;
            border-color: #2972fa
        }

        .form-ext-control .form-ext-toggle .form-ext-toggle--info .form-ext-toggle__toggler {
            border-color: #2972fa;
            color: #2972fa
        }

            .form-ext-control .form-ext-toggle .form-ext-toggle--info .form-ext-toggle__toggler i::after {
                background-color: #2972fa
            }

        .form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before, .form-ext-control .form-ext-toggle.form-ext-toggle--info .form-ext-input:focus + .form-ext-toggle__toggler {
            box-shadow: 0 0 0 .2rem rgba(41,114,250,.55),inset 0 1px 8px rgba(0,0,0,.07)
        }

        .form-ext-control .form-ext-toggle.form-ext-toggle--success input[type=checkbox]:checked + * .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle.form-ext-toggle--success input[type=checkbox]:checked + .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle.form-ext-toggle--success input[type=radio]:checked + * .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle.form-ext-toggle--success input[type=radio]:checked + .form-ext-toggle__toggler {
            background-color: #0dd157;
            border-color: #0dd157
        }

        .form-ext-control .form-ext-toggle .form-ext-toggle--success .form-ext-toggle__toggler {
            border-color: #0dd157;
            color: #0dd157
        }

            .form-ext-control .form-ext-toggle .form-ext-toggle--success .form-ext-toggle__toggler i::after {
                background-color: #0dd157
            }

        .form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before, .form-ext-control .form-ext-toggle.form-ext-toggle--success .form-ext-input:focus + .form-ext-toggle__toggler {
            box-shadow: 0 0 0 .2rem rgba(13,209,87,.55),inset 0 1px 8px rgba(0,0,0,.07)
        }

        .form-ext-control .form-ext-toggle.form-ext-toggle--warning input[type=checkbox]:checked + * .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle.form-ext-toggle--warning input[type=checkbox]:checked + .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle.form-ext-toggle--warning input[type=radio]:checked + * .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle.form-ext-toggle--warning input[type=radio]:checked + .form-ext-toggle__toggler {
            background-color: #fab633;
            border-color: #fab633
        }

        .form-ext-control .form-ext-toggle .form-ext-toggle--warning .form-ext-toggle__toggler {
            border-color: #fab633;
            color: #fab633
        }

            .form-ext-control .form-ext-toggle .form-ext-toggle--warning .form-ext-toggle__toggler i::after {
                background-color: #fab633
            }

        .form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before, .form-ext-control .form-ext-toggle.form-ext-toggle--warning .form-ext-input:focus + .form-ext-toggle__toggler {
            box-shadow: 0 0 0 .2rem rgba(250,182,51,.55),inset 0 1px 8px rgba(0,0,0,.07)
        }

        .form-ext-control .form-ext-toggle.form-ext-toggle--danger input[type=checkbox]:checked + * .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle.form-ext-toggle--danger input[type=checkbox]:checked + .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle.form-ext-toggle--danger input[type=radio]:checked + * .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle.form-ext-toggle--danger input[type=radio]:checked + .form-ext-toggle__toggler {
            background-color: #fb4143;
            border-color: #fb4143
        }

        .form-ext-control .form-ext-toggle .form-ext-toggle--danger .form-ext-toggle__toggler {
            border-color: #fb4143;
            color: #fb4143
        }

            .form-ext-control .form-ext-toggle .form-ext-toggle--danger .form-ext-toggle__toggler i::after {
                background-color: #fb4143
            }

        .form-ext-control .form-ext-toggle .form-ext-input:focus + .form-ext-toggle__toggler, .form-ext-control .form-ext-toggle .form-ext-input:focus ~ .form-ext-label:before, .form-ext-control .form-ext-toggle.form-ext-toggle--danger .form-ext-input:focus + .form-ext-toggle__toggler {
            box-shadow: 0 0 0 .2rem rgba(251,65,67,.55),inset 0 1px 8px rgba(0,0,0,.07)
        }

        .form-ext-control .form-ext-toggle .form-ext-toggle__toggler i::after, .form-ext-control .form-ext-toggle .form-ext-toggle__toggler i::before {
            content: "";
            display: block;
            position: absolute
        }

        .form-ext-control .form-ext-toggle .form-ext-toggle__toggler i::before {
            content: attr(data-uncheck-icon);
            padding: 2px 7px;
            line-height: 18px;
            text-align: right;
            top: 0;
            width: 55%;
            font-size: 12px
        }

        .form-ext-control .form-ext-toggle .form-ext-toggle__toggler i::after {
            background-color: #d5d7dc;
            border-radius: 50%;
            height: 16px;
            left: 4px;
            width: 16px;
            transform: translateY(-50%);
            transition: left var(--animation-duration) ease;
            text-align: left;
            top: 50%
        }

    .form-ext-control .form-ext-label {
        margin-bottom: 0;
        position: relative
    }

        .form-ext-control .form-ext-label:after, .form-ext-control .form-ext-label:before {
            content: "";
            display: block;
            height: 1rem;
            left: -1.5rem;
            position: absolute;
            top: .3rem;
            transition: all var(--animation-duration);
            width: 1rem
        }

        .form-ext-control .form-ext-label:before {
            background-color: #f6f9fc;
            border: 1px solid #dee2e6;
            border-radius: .25rem;
            pointer-events: none;
            user-select: none;
            box-sizing: border-box
        }

        .form-ext-control .form-ext-label:after {
            background-position: center;
            background-repeat: no-repeat;
            background-size: 50% 50%
        }

    .form-ext-control .form-ext-input:checked ~ .form-ext-label:before {
        background-color: #f03d4d;
        border: none
    }

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-3rem)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@media screen and (max-width:767px) {
    .modal .modal-content, .modal-content {
        max-width: 90%
    }
}

    .tag {
        align-items: center;
        background-color: #f6f9fc;
        border-radius: .25rem;
        color: currentColor;
        display: inline-flex;
        height: 2em;
        line-height: 1.5;
        font-size: .875rem;
        padding: .625rem;
        white-space: nowrap
    }

    .tag.tag--xs {
        font-size: .75rem;
        padding: .5rem
    }

    .tag.tag--sm {
        font-size: .875rem;
        padding: .625rem
    }

    .tag.tag--md {
        font-size: 1rem;
        padding: .75rem
    }

    .tag.tag--lg {
        font-size: 1.25rem;
        padding: .875rem
    }

    .tag.tag--xl {
        font-size: 1.5rem;
        padding: 1rem
    }

    .tag.tag--rounded {
        border-radius: 290486px
    }

    .tag.tag__delete {
        aspect-ratio: 1/1;
        background-color: rgba(10,10,10,.2);
        border-radius: 290486px;
        cursor: pointer;
        pointer-events: auto;
        display: inline-block;
        height: auto;
        position: relative;
        width: auto;
        margin-left: .25rem;
        margin-right: -.125rem
    }

    .tag.tag__delete:hover {
        background-color: rgba(10,10,10,.3)
    }

    .tag.tag__delete::after, .tag.tag__delete::before {
        background-color: #f6f9fc;
        content: "";
        display: block;
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
        transform-origin: center center
    }

    .tag.tag__delete::before {
        height: 1px;
        width: 50%
    }

    .tag.tag__delete::after {
        height: 50%;
        width: 1px
    }

    .tag.tag--white {
        background-color: #fff;
        color: #363636
    }

    .tag.tag--black {
        background-color: #000;
        color: #fff
    }

    .tag.tag--primary {
        background-color: #f03d4d;
        color: #fff;
        background-color: #f03d4d;
        color: #fff;
        cursor: pointer
    }

    .tag.tag--primary.tag__close-btn:hover {
        background-color: #ee2537
    }

    .tag.tag--primary.tag__close-btn:active {
        background-color: #e81225
    }

    .tag.tag--dark {
        background-color: #363636;
        color: #fff;
        cursor: pointer
    }

    .tag.tag--dark.tag__close-btn:hover {
        background-color: #292929
    }

    .tag.tag--dark.tag__close-btn:active {
        background-color: #1d1d1d
    }

    .tag.tag--link {
        background-color: #5e5cc7;
        color: #fff;
        cursor: pointer
    }

    .tag.tag--link.tag__close-btn:hover {
        background-color: #4b49c0
    }

    .tag.tag--link.tag__close-btn:active {
        background-color: #403db3
    }

    .tag.tag--info {
        background-color: #2972fa;
        color: #fff;
        cursor: pointer
    }

    .tag.tag--info.tag__close-btn:hover {
        background-color: #1062f9
    }

    .tag.tag--info.tag__close-btn:active {
        background-color: #0555eb
    }

    .tag.tag--success {
        background-color: #0dd157;
        color: #fff;
        cursor: pointer
    }

    .tag.tag--success.tag__close-btn:hover {
        background-color: #0cb94d
    }

    .tag.tag--success.tag__close-btn:active {
        background-color: #0aa143
    }

    .tag.tag--warning {
        background-color: #fab633;
        color: #fff;
        cursor: pointer
    }

    .tag.tag--warning.tag__close-btn:hover {
        background-color: #f9ad1a
    }

    .tag.tag--warning.tag__close-btn:active {
        background-color: #f4a306
    }

    .tag.tag--danger {
        background-color: #fb4143;
        color: #fff;
        cursor: pointer
    }

    .tag.tag--danger.tag__close-btn:hover {
        background-color: #fa282a
    }

    .tag.tag--danger.tag__close-btn:active {
        background-color: #fa0f12
    }

    .tag.tag__close-btn {
        position: relative;
        width: 2em
    }

    .tag.tag__close-btn::after, .tag.tag__close-btn::before {
        background-color: currentColor;
        content: "";
        display: block;
        left: 50%;
        top: 50%;
        position: absolute;
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
        transform-origin: center center
    }

    .tag.tag__close-btn::before {
        height: 1px;
        width: 50%
    }

    .tag.tag__close-btn::after {
        height: 50%;
        width: 1px
    }