:root {
    --sm: 576px;
    --md: 768px;
    --lg: 992px;
    --xl: 1200px;
    --xxl: 1400px
}

.t-0 {
    top: 0 !important;
    z-index: 1
}

.b-0 {
    bottom: 0 !important;
    z-index: 1
}

.s-0 {
    left: 0 !important;
    z-index: 1
}

.e-0 {
    right: 0 !important;
    z-index: 1
}

.t-n0 {
    top: 0 !important;
    z-index: 1
}

.b-n0 {
    bottom: 0 !important;
    z-index: 1
}

.s-n0 {
    left: 0 !important;
    z-index: 1
}

.e-n0 {
    right: 0 !important;
    z-index: 1
}

.t-1 {
    top: .25rem !important;
    z-index: 1
}

.b-1 {
    bottom: .25rem !important;
    z-index: 1
}

.s-1 {
    left: .25rem !important;
    z-index: 1
}

.e-1 {
    right: .25rem !important;
    z-index: 1
}

.t-n1 {
    top: -.25rem !important;
    z-index: 1
}

.b-n1 {
    bottom: -.25rem !important;
    z-index: 1
}

.s-n1 {
    left: -.25rem !important;
    z-index: 1
}

.e-n1 {
    right: -.25rem !important;
    z-index: 1
}

.t-2 {
    top: .5rem !important;
    z-index: 1
}

.b-2 {
    bottom: .5rem !important;
    z-index: 1
}

.s-2 {
    left: .5rem !important;
    z-index: 1
}

.e-2 {
    right: .5rem !important;
    z-index: 1
}

.t-n2 {
    top: -.5rem !important;
    z-index: 1
}

.b-n2 {
    bottom: -.5rem !important;
    z-index: 1
}

.s-n2 {
    left: -.5rem !important;
    z-index: 1
}

.e-n2 {
    right: -.5rem !important;
    z-index: 1
}

.t-3 {
    top: 1rem !important;
    z-index: 1
}

.b-3 {
    bottom: 1rem !important;
    z-index: 1
}

.s-3 {
    left: 1rem !important;
    z-index: 1
}

.e-3 {
    right: 1rem !important;
    z-index: 1
}

.t-n3 {
    top: -1rem !important;
    z-index: 1
}

.b-n3 {
    bottom: -1rem !important;
    z-index: 1
}

.s-n3 {
    left: -1rem !important;
    z-index: 1
}

.e-n3 {
    right: -1rem !important;
    z-index: 1
}

.t-4 {
    top: 1.5rem !important;
    z-index: 1
}

.b-4 {
    bottom: 1.5rem !important;
    z-index: 1
}

.s-4 {
    left: 1.5rem !important;
    z-index: 1
}

.e-4 {
    right: 1.5rem !important;
    z-index: 1
}

.t-n4 {
    top: -1.5rem !important;
    z-index: 1
}

.b-n4 {
    bottom: -1.5rem !important;
    z-index: 1
}

.s-n4 {
    left: -1.5rem !important;
    z-index: 1
}

.e-n4 {
    right: -1.5rem !important;
    z-index: 1
}

.t-5 {
    top: 2rem !important;
    z-index: 1
}

.b-5 {
    bottom: 2rem !important;
    z-index: 1
}

.s-5 {
    left: 2rem !important;
    z-index: 1
}

.e-5 {
    right: 2rem !important;
    z-index: 1
}

.t-n5 {
    top: -2rem !important;
    z-index: 1
}

.b-n5 {
    bottom: -2rem !important;
    z-index: 1
}

.s-n5 {
    left: -2rem !important;
    z-index: 1
}

.e-n5 {
    right: -2rem !important;
    z-index: 1
}

a {
    transition: color var(--transition-time-short);
    text-decoration: initial;
    color: var(--primary);
    outline: initial !important
}

    a:active, a:hover {
        text-decoration: initial;
        color: var(--secondary)
    }

    a.body {
        color: var(--body)
    }

        a.body:active, a.body:hover {
            color: var(--primary)
        }

.body-link {
    color: var(--body)
}

    .body-link:hover {
        color: var(--primary)
    }

.alternate-link {
    color: var(--alternate)
}

    .alternate-link:hover {
        color: var(--primary)
    }

.muted-link {
    color: var(--muted)
}

    .muted-link:hover {
        color: var(--primary)
    }

.underline-link {
    text-decoration: underline
}

.underline-hover-link:hover {
    text-decoration: underline
}

img {
    object-fit: cover
}

.absolute-center {
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%)
}

.absolute-center-vertical {
    top: 50%;
    transform: translateY(-50%)
}

.absolute-center-horizontal {
    left: 50%;
    transform: translateX(-50%)
}

.opacity-0 {
    opacity: 0
}

.opacity-10 {
    opacity: .1
}

.opacity-25 {
    opacity: .25
}

.opacity-50 {
    opacity: .5
}

.opacity-75 {
    opacity: .75
}

.opacity-100 {
    opacity: 1
}

.grayscale {
    filter: grayscale(1)
}

.img-fluid-width {
    max-width: 100%;
    height: auto
}

.img-fluid-height {
    max-height: 100%;
    width: auto
}

.shadow {
    box-shadow: 0 4px 10px rgba(0,0,0,.03) !important
}

.shadow-deep {
    box-shadow: 0 2px 18px rgba(0,0,0,.03) !important
}

.bg-cover-center {
    background-size: cover;
    background-position: center
}

.z-index-1 {
    z-index: 1
}

.z-index-1000 {
    z-index: 1000
}

.basic-transform-transition {
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
    pointer-events: none;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0)
}

.fixed-background {
    background: url(../img/background/background-blue.jpg) no-repeat center center fixed;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.hover-trigger:hover .visible-hover {
    visibility: visible !important
}

.cursor-default {
    cursor: default
}

.cursor-pointer {
    cursor: pointer
}

.theme-filter {
    filter: var(--theme-image-filter)
}

.flex-grow-1 {
    flex: 1
}

.h-100-card {
    height: calc(100% - var(--small-title-height)) !important
}

.w-100 {
    width: 100% !important
}

.w-90 {
    width: 90% !important
}

.w-80 {
    width: 80% !important
}

.w-75 {
    width: 75% !important
}

.w-70 {
    width: 70% !important
}

.w-60 {
    width: 60% !important
}

.w-50 {
    width: 50% !important
}

.w-40 {
    width: 40% !important
}

.w-33 {
    width: 33.3% !important
}

.w-30 {
    width: 30% !important
}

.w-25 {
    width: 25% !important
}

.w-20 {
    width: 20% !important
}

.w-10 {
    width: 10% !important
}

.h-auto {
    height: auto !important
}

.w-auto {
    width: auto !important
}

.sh-0 {
    height: 0 !important
}

.sw-0 {
    width: 0 !important
}

.sh-1 {
    height: .5rem !important
}

.sw-1 {
    width: .5rem !important
}

.sh-2 {
    height: 1rem !important
}

.sw-2 {
    width: 1rem !important
}

.sh-3 {
    height: 1.5rem !important
}

.sw-3 {
    width: 1.5rem !important
}

.sh-4 {
    height: 2rem !important
}

.sw-4 {
    width: 2rem !important
}

.sh-5 {
    height: 2.5rem !important
}

.sw-5 {
    width: 2.5rem !important
}

.sh-6 {
    height: 3rem !important
}

.sw-6 {
    width: 3rem !important
}

.sh-7 {
    height: 3.5rem !important
}

.sw-7 {
    width: 3.5rem !important
}

.sh-8 {
    height: 4rem !important
}

.sw-8 {
    width: 4rem !important
}

.sh-9 {
    height: 4.5rem !important
}

.sw-9 {
    width: 4.5rem !important
}

.sh-10 {
    height: 5rem !important
}

.sw-10 {
    width: 5rem !important
}

.sh-11 {
    height: 5.5rem !important
}

.sw-11 {
    width: 5.5rem !important
}

.sh-12 {
    height: 6rem !important
}

.sw-12 {
    width: 6rem !important
}

.sh-13 {
    height: 6.5rem !important
}

.sw-13 {
    width: 6.5rem !important
}

.sh-14 {
    height: 7rem !important
}

.sw-14 {
    width: 7rem !important
}

.sh-15 {
    height: 7.5rem !important
}

.sw-15 {
    width: 7.5rem !important
}

.sh-16 {
    height: 8rem !important
}

.sw-16 {
    width: 8rem !important
}

.sh-17 {
    height: 8.5rem !important
}

.sw-17 {
    width: 8.5rem !important
}

.sh-18 {
    height: 9rem !important
}

.sw-18 {
    width: 9rem !important
}

.sh-19 {
    height: 9.5rem !important
}

.sw-19 {
    width: 9.5rem !important
}

.sh-20 {
    height: 10rem !important
}

.sw-20 {
    width: 10rem !important
}

.sh-21 {
    height: 10.5rem !important
}

.sw-21 {
    width: 10.5rem !important
}

.sh-22 {
    height: 11rem !important
}

.sw-22 {
    width: 11rem !important
}

.sh-23 {
    height: 11.5rem !important
}

.sw-23 {
    width: 11.5rem !important
}

.sh-24 {
    height: 12rem !important
}

.sw-24 {
    width: 12rem !important
}

.sh-25 {
    height: 12.5rem !important
}

.sw-25 {
    width: 12.5rem !important
}

.sh-30 {
    height: 15rem !important
}

.sw-30 {
    width: 15rem !important
}

.sh-35 {
    height: 17.5rem !important
}

.sw-35 {
    width: 17.5rem !important
}

.sh-40 {
    height: 20rem !important
}

.sw-40 {
    width: 20rem !important
}

.sh-45 {
    height: 22.5rem !important
}

.sw-45 {
    width: 22.5rem !important
}

.sh-50 {
    height: 25rem !important
}

.sw-50 {
    width: 25rem !important
}

.sh-60 {
    height: 30rem !important
}

.sw-60 {
    width: 30rem !important
}

.sh-70 {
    height: 35rem !important
}

.sw-70 {
    width: 35rem !important
}

.sh-80 {
    height: 40rem !important
}

.sw-80 {
    width: 40rem !important
}

@media (min-width:576px) {
    .sh-sm-0 {
        height: 0 !important
    }
}

@media (min-width:576px) {
    .sw-sm-0 {
        width: 0 !important
    }
}

@media (min-width:576px) {
    .sh-sm-1 {
        height: .5rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-1 {
        width: .5rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-2 {
        height: 1rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-2 {
        width: 1rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-3 {
        height: 1.5rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-3 {
        width: 1.5rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-4 {
        height: 2rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-4 {
        width: 2rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-5 {
        height: 2.5rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-5 {
        width: 2.5rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-6 {
        height: 3rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-6 {
        width: 3rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-7 {
        height: 3.5rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-7 {
        width: 3.5rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-8 {
        height: 4rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-8 {
        width: 4rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-9 {
        height: 4.5rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-9 {
        width: 4.5rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-10 {
        height: 5rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-10 {
        width: 5rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-11 {
        height: 5.5rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-11 {
        width: 5.5rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-12 {
        height: 6rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-12 {
        width: 6rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-13 {
        height: 6.5rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-13 {
        width: 6.5rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-14 {
        height: 7rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-14 {
        width: 7rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-15 {
        height: 7.5rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-15 {
        width: 7.5rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-16 {
        height: 8rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-16 {
        width: 8rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-17 {
        height: 8.5rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-17 {
        width: 8.5rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-18 {
        height: 9rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-18 {
        width: 9rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-19 {
        height: 9.5rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-19 {
        width: 9.5rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-20 {
        height: 10rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-20 {
        width: 10rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-21 {
        height: 10.5rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-21 {
        width: 10.5rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-22 {
        height: 11rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-22 {
        width: 11rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-23 {
        height: 11.5rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-23 {
        width: 11.5rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-24 {
        height: 12rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-24 {
        width: 12rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-25 {
        height: 12.5rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-25 {
        width: 12.5rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-30 {
        height: 15rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-30 {
        width: 15rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-35 {
        height: 17.5rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-35 {
        width: 17.5rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-40 {
        height: 20rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-40 {
        width: 20rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-45 {
        height: 22.5rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-45 {
        width: 22.5rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-50 {
        height: 25rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-50 {
        width: 25rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-60 {
        height: 30rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-60 {
        width: 30rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-70 {
        height: 35rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-70 {
        width: 35rem !important
    }
}

@media (min-width:576px) {
    .sh-sm-80 {
        height: 40rem !important
    }
}

@media (min-width:576px) {
    .sw-sm-80 {
        width: 40rem !important
    }
}

@media (min-width:768px) {
    .sh-md-0 {
        height: 0 !important
    }
}

@media (min-width:768px) {
    .sw-md-0 {
        width: 0 !important
    }
}

@media (min-width:768px) {
    .sh-md-1 {
        height: .5rem !important
    }
}

@media (min-width:768px) {
    .sw-md-1 {
        width: .5rem !important
    }
}

@media (min-width:768px) {
    .sh-md-2 {
        height: 1rem !important
    }
}

@media (min-width:768px) {
    .sw-md-2 {
        width: 1rem !important
    }
}

@media (min-width:768px) {
    .sh-md-3 {
        height: 1.5rem !important
    }
}

@media (min-width:768px) {
    .sw-md-3 {
        width: 1.5rem !important
    }
}

@media (min-width:768px) {
    .sh-md-4 {
        height: 2rem !important
    }
}

@media (min-width:768px) {
    .sw-md-4 {
        width: 2rem !important
    }
}

@media (min-width:768px) {
    .sh-md-5 {
        height: 2.5rem !important
    }
}

@media (min-width:768px) {
    .sw-md-5 {
        width: 2.5rem !important
    }
}

@media (min-width:768px) {
    .sh-md-6 {
        height: 3rem !important
    }
}

@media (min-width:768px) {
    .sw-md-6 {
        width: 3rem !important
    }
}

@media (min-width:768px) {
    .sh-md-7 {
        height: 3.5rem !important
    }
}

@media (min-width:768px) {
    .sw-md-7 {
        width: 3.5rem !important
    }
}

@media (min-width:768px) {
    .sh-md-8 {
        height: 4rem !important
    }
}

@media (min-width:768px) {
    .sw-md-8 {
        width: 4rem !important
    }
}

@media (min-width:768px) {
    .sh-md-9 {
        height: 4.5rem !important
    }
}

@media (min-width:768px) {
    .sw-md-9 {
        width: 4.5rem !important
    }
}

@media (min-width:768px) {
    .sh-md-10 {
        height: 5rem !important
    }
}

@media (min-width:768px) {
    .sw-md-10 {
        width: 5rem !important
    }
}

@media (min-width:768px) {
    .sh-md-11 {
        height: 5.5rem !important
    }
}

@media (min-width:768px) {
    .sw-md-11 {
        width: 5.5rem !important
    }
}

@media (min-width:768px) {
    .sh-md-12 {
        height: 6rem !important
    }
}

@media (min-width:768px) {
    .sw-md-12 {
        width: 6rem !important
    }
}

@media (min-width:768px) {
    .sh-md-13 {
        height: 6.5rem !important
    }
}

@media (min-width:768px) {
    .sw-md-13 {
        width: 6.5rem !important
    }
}

@media (min-width:768px) {
    .sh-md-14 {
        height: 7rem !important
    }
}

@media (min-width:768px) {
    .sw-md-14 {
        width: 7rem !important
    }
}

@media (min-width:768px) {
    .sh-md-15 {
        height: 7.5rem !important
    }
}

@media (min-width:768px) {
    .sw-md-15 {
        width: 7.5rem !important
    }
}

@media (min-width:768px) {
    .sh-md-16 {
        height: 8rem !important
    }
}

@media (min-width:768px) {
    .sw-md-16 {
        width: 8rem !important
    }
}

@media (min-width:768px) {
    .sh-md-17 {
        height: 8.5rem !important
    }
}

@media (min-width:768px) {
    .sw-md-17 {
        width: 8.5rem !important
    }
}

@media (min-width:768px) {
    .sh-md-18 {
        height: 9rem !important
    }
}

@media (min-width:768px) {
    .sw-md-18 {
        width: 9rem !important
    }
}

@media (min-width:768px) {
    .sh-md-19 {
        height: 9.5rem !important
    }
}

@media (min-width:768px) {
    .sw-md-19 {
        width: 9.5rem !important
    }
}

@media (min-width:768px) {
    .sh-md-20 {
        height: 10rem !important
    }
}

@media (min-width:768px) {
    .sw-md-20 {
        width: 10rem !important
    }
}

@media (min-width:768px) {
    .sh-md-21 {
        height: 10.5rem !important
    }
}

@media (min-width:768px) {
    .sw-md-21 {
        width: 10.5rem !important
    }
}

@media (min-width:768px) {
    .sh-md-22 {
        height: 11rem !important
    }
}

@media (min-width:768px) {
    .sw-md-22 {
        width: 11rem !important
    }
}

@media (min-width:768px) {
    .sh-md-23 {
        height: 11.5rem !important
    }
}

@media (min-width:768px) {
    .sw-md-23 {
        width: 11.5rem !important
    }
}

@media (min-width:768px) {
    .sh-md-24 {
        height: 12rem !important
    }
}

@media (min-width:768px) {
    .sw-md-24 {
        width: 12rem !important
    }
}

@media (min-width:768px) {
    .sh-md-25 {
        height: 12.5rem !important
    }
}

@media (min-width:768px) {
    .sw-md-25 {
        width: 12.5rem !important
    }
}

@media (min-width:768px) {
    .sh-md-30 {
        height: 15rem !important
    }
}

@media (min-width:768px) {
    .sw-md-30 {
        width: 15rem !important
    }
}

@media (min-width:768px) {
    .sh-md-35 {
        height: 17.5rem !important
    }
}

@media (min-width:768px) {
    .sw-md-35 {
        width: 17.5rem !important
    }
}

@media (min-width:768px) {
    .sh-md-40 {
        height: 20rem !important
    }
}

@media (min-width:768px) {
    .sw-md-40 {
        width: 20rem !important
    }
}

@media (min-width:768px) {
    .sh-md-45 {
        height: 22.5rem !important
    }
}

@media (min-width:768px) {
    .sw-md-45 {
        width: 22.5rem !important
    }
}

@media (min-width:768px) {
    .sh-md-50 {
        height: 25rem !important
    }
}

@media (min-width:768px) {
    .sw-md-50 {
        width: 25rem !important
    }
}

@media (min-width:768px) {
    .sh-md-60 {
        height: 30rem !important
    }
}

@media (min-width:768px) {
    .sw-md-60 {
        width: 30rem !important
    }
}

@media (min-width:768px) {
    .sh-md-70 {
        height: 35rem !important
    }
}

@media (min-width:768px) {
    .sw-md-70 {
        width: 35rem !important
    }
}

@media (min-width:768px) {
    .sh-md-80 {
        height: 40rem !important
    }
}

@media (min-width:768px) {
    .sw-md-80 {
        width: 40rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-0 {
        height: 0 !important
    }
}

@media (min-width:992px) {
    .sw-lg-0 {
        width: 0 !important
    }
}

@media (min-width:992px) {
    .sh-lg-1 {
        height: .5rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-1 {
        width: .5rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-2 {
        height: 1rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-2 {
        width: 1rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-3 {
        height: 1.5rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-3 {
        width: 1.5rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-4 {
        height: 2rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-4 {
        width: 2rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-5 {
        height: 2.5rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-5 {
        width: 2.5rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-6 {
        height: 3rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-6 {
        width: 3rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-7 {
        height: 3.5rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-7 {
        width: 3.5rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-8 {
        height: 4rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-8 {
        width: 4rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-9 {
        height: 4.5rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-9 {
        width: 4.5rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-10 {
        height: 5rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-10 {
        width: 5rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-11 {
        height: 5.5rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-11 {
        width: 5.5rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-12 {
        height: 6rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-12 {
        width: 6rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-13 {
        height: 6.5rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-13 {
        width: 6.5rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-14 {
        height: 7rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-14 {
        width: 7rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-15 {
        height: 7.5rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-15 {
        width: 7.5rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-16 {
        height: 8rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-16 {
        width: 8rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-17 {
        height: 8.5rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-17 {
        width: 8.5rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-18 {
        height: 9rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-18 {
        width: 9rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-19 {
        height: 9.5rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-19 {
        width: 9.5rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-20 {
        height: 10rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-20 {
        width: 10rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-21 {
        height: 10.5rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-21 {
        width: 10.5rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-22 {
        height: 11rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-22 {
        width: 11rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-23 {
        height: 11.5rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-23 {
        width: 11.5rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-24 {
        height: 12rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-24 {
        width: 12rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-25 {
        height: 12.5rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-25 {
        width: 12.5rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-30 {
        height: 15rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-30 {
        width: 15rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-35 {
        height: 17.5rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-35 {
        width: 17.5rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-40 {
        height: 20rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-40 {
        width: 20rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-45 {
        height: 22.5rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-45 {
        width: 22.5rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-50 {
        height: 25rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-50 {
        width: 25rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-60 {
        height: 30rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-60 {
        width: 30rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-70 {
        height: 35rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-70 {
        width: 35rem !important
    }
}

@media (min-width:992px) {
    .sh-lg-80 {
        height: 40rem !important
    }
}

@media (min-width:992px) {
    .sw-lg-80 {
        width: 40rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-0 {
        height: 0 !important
    }
}

@media (min-width:1200px) {
    .sw-xl-0 {
        width: 0 !important
    }
}

@media (min-width:1200px) {
    .sh-xl-1 {
        height: .5rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-1 {
        width: .5rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-2 {
        height: 1rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-2 {
        width: 1rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-3 {
        height: 1.5rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-3 {
        width: 1.5rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-4 {
        height: 2rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-4 {
        width: 2rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-5 {
        height: 2.5rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-5 {
        width: 2.5rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-6 {
        height: 3rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-6 {
        width: 3rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-7 {
        height: 3.5rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-7 {
        width: 3.5rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-8 {
        height: 4rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-8 {
        width: 4rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-9 {
        height: 4.5rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-9 {
        width: 4.5rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-10 {
        height: 5rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-10 {
        width: 5rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-11 {
        height: 5.5rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-11 {
        width: 5.5rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-12 {
        height: 6rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-12 {
        width: 6rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-13 {
        height: 6.5rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-13 {
        width: 6.5rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-14 {
        height: 7rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-14 {
        width: 7rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-15 {
        height: 7.5rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-15 {
        width: 7.5rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-16 {
        height: 8rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-16 {
        width: 8rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-17 {
        height: 8.5rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-17 {
        width: 8.5rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-18 {
        height: 9rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-18 {
        width: 9rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-19 {
        height: 9.5rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-19 {
        width: 9.5rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-20 {
        height: 10rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-20 {
        width: 10rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-21 {
        height: 10.5rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-21 {
        width: 10.5rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-22 {
        height: 11rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-22 {
        width: 11rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-23 {
        height: 11.5rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-23 {
        width: 11.5rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-24 {
        height: 12rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-24 {
        width: 12rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-25 {
        height: 12.5rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-25 {
        width: 12.5rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-30 {
        height: 15rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-30 {
        width: 15rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-35 {
        height: 17.5rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-35 {
        width: 17.5rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-40 {
        height: 20rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-40 {
        width: 20rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-45 {
        height: 22.5rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-45 {
        width: 22.5rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-50 {
        height: 25rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-50 {
        width: 25rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-60 {
        height: 30rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-60 {
        width: 30rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-70 {
        height: 35rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-70 {
        width: 35rem !important
    }
}

@media (min-width:1200px) {
    .sh-xl-80 {
        height: 40rem !important
    }
}

@media (min-width:1200px) {
    .sw-xl-80 {
        width: 40rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-0 {
        height: 0 !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-0 {
        width: 0 !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-1 {
        height: .5rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-1 {
        width: .5rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-2 {
        height: 1rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-2 {
        width: 1rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-3 {
        height: 1.5rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-3 {
        width: 1.5rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-4 {
        height: 2rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-4 {
        width: 2rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-5 {
        height: 2.5rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-5 {
        width: 2.5rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-6 {
        height: 3rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-6 {
        width: 3rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-7 {
        height: 3.5rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-7 {
        width: 3.5rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-8 {
        height: 4rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-8 {
        width: 4rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-9 {
        height: 4.5rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-9 {
        width: 4.5rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-10 {
        height: 5rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-10 {
        width: 5rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-11 {
        height: 5.5rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-11 {
        width: 5.5rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-12 {
        height: 6rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-12 {
        width: 6rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-13 {
        height: 6.5rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-13 {
        width: 6.5rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-14 {
        height: 7rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-14 {
        width: 7rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-15 {
        height: 7.5rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-15 {
        width: 7.5rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-16 {
        height: 8rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-16 {
        width: 8rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-17 {
        height: 8.5rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-17 {
        width: 8.5rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-18 {
        height: 9rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-18 {
        width: 9rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-19 {
        height: 9.5rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-19 {
        width: 9.5rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-20 {
        height: 10rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-20 {
        width: 10rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-21 {
        height: 10.5rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-21 {
        width: 10.5rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-22 {
        height: 11rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-22 {
        width: 11rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-23 {
        height: 11.5rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-23 {
        width: 11.5rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-24 {
        height: 12rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-24 {
        width: 12rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-25 {
        height: 12.5rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-25 {
        width: 12.5rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-30 {
        height: 15rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-30 {
        width: 15rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-35 {
        height: 17.5rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-35 {
        width: 17.5rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-40 {
        height: 20rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-40 {
        width: 20rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-45 {
        height: 22.5rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-45 {
        width: 22.5rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-50 {
        height: 25rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-50 {
        width: 25rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-60 {
        height: 30rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-60 {
        width: 30rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-70 {
        height: 35rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-70 {
        width: 35rem !important
    }
}

@media (min-width:1400px) {
    .sh-xxl-80 {
        height: 40rem !important
    }
}

@media (min-width:1400px) {
    .sw-xxl-80 {
        width: 40rem !important
    }
}

@media (min-width:576px) {
    .h-sm-100-card {
        height: calc(100% - var(--small-title-height)) !important
    }
}

@media (min-width:768px) {
    .h-md-100-card {
        height: calc(100% - var(--small-title-height)) !important
    }
}

@media (min-width:992px) {
    .h-lg-100-card {
        height: calc(100% - var(--small-title-height)) !important
    }
}

@media (min-width:1200px) {
    .h-xl-100-card {
        height: calc(100% - var(--small-title-height)) !important
    }
}

@media (min-width:1400px) {
    .h-xxl-100-card {
        height: calc(100% - var(--small-title-height)) !important
    }
}

@media (min-width:576px) {
    .h-sm-100 {
        height: 100% !important
    }
}

@media (min-width:768px) {
    .h-md-100 {
        height: 100% !important
    }
}

@media (min-width:992px) {
    .h-lg-100 {
        height: 100% !important
    }
}

@media (min-width:1200px) {
    .h-xl-100 {
        height: 100% !important
    }
}

@media (min-width:1400px) {
    .h-xxl-100 {
        height: 100% !important
    }
}

@media (min-width:576px) {
    .h-sm-auto {
        height: auto !important
    }
}

@media (min-width:768px) {
    .h-md-auto {
        height: auto !important
    }
}

@media (min-width:992px) {
    .h-lg-auto {
        height: auto !important
    }
}

@media (min-width:1200px) {
    .h-xl-auto {
        height: auto !important
    }
}

@media (min-width:1400px) {
    .h-xxl-auto {
        height: auto !important
    }
}

@media (min-width:576px) {
    .w-sm-auto {
        width: auto !important
    }
}

@media (min-width:768px) {
    .w-md-auto {
        width: auto !important
    }
}

@media (min-width:992px) {
    .w-lg-auto {
        width: auto !important
    }
}

@media (min-width:1200px) {
    .w-xl-auto {
        width: auto !important
    }
}

@media (min-width:1400px) {
    .w-xxl-auto {
        width: auto !important
    }
}

@media (min-width:576px) {
    .h-sm-25 {
        height: 25% !important
    }
}

@media (min-width:576px) {
    .w-sm-25 {
        width: 25% !important
    }
}

@media (min-width:576px) {
    .h-sm-50 {
        height: 50% !important
    }
}

@media (min-width:576px) {
    .w-sm-50 {
        width: 50% !important
    }
}

@media (min-width:576px) {
    .h-sm-75 {
        height: 75% !important
    }
}

@media (min-width:576px) {
    .w-sm-75 {
        width: 75% !important
    }
}

@media (min-width:576px) {
    .h-sm-100 {
        height: 100% !important
    }
}

@media (min-width:576px) {
    .w-sm-100 {
        width: 100% !important
    }
}

@media (min-width:768px) {
    .h-md-25 {
        height: 25% !important
    }
}

@media (min-width:768px) {
    .w-md-25 {
        width: 25% !important
    }
}

@media (min-width:768px) {
    .h-md-50 {
        height: 50% !important
    }
}

@media (min-width:768px) {
    .w-md-50 {
        width: 50% !important
    }
}

@media (min-width:768px) {
    .h-md-75 {
        height: 75% !important
    }
}

@media (min-width:768px) {
    .w-md-75 {
        width: 75% !important
    }
}

@media (min-width:768px) {
    .h-md-100 {
        height: 100% !important
    }
}

@media (min-width:768px) {
    .w-md-100 {
        width: 100% !important
    }
}

@media (min-width:992px) {
    .h-lg-25 {
        height: 25% !important
    }
}

@media (min-width:992px) {
    .w-lg-25 {
        width: 25% !important
    }
}

@media (min-width:992px) {
    .h-lg-50 {
        height: 50% !important
    }
}

@media (min-width:992px) {
    .w-lg-50 {
        width: 50% !important
    }
}

@media (min-width:992px) {
    .h-lg-75 {
        height: 75% !important
    }
}

@media (min-width:992px) {
    .w-lg-75 {
        width: 75% !important
    }
}

@media (min-width:992px) {
    .h-lg-100 {
        height: 100% !important
    }
}

@media (min-width:992px) {
    .w-lg-100 {
        width: 100% !important
    }
}

@media (min-width:1200px) {
    .h-xl-25 {
        height: 25% !important
    }
}

@media (min-width:1200px) {
    .w-xl-25 {
        width: 25% !important
    }
}

@media (min-width:1200px) {
    .h-xl-50 {
        height: 50% !important
    }
}

@media (min-width:1200px) {
    .w-xl-50 {
        width: 50% !important
    }
}

@media (min-width:1200px) {
    .h-xl-75 {
        height: 75% !important
    }
}

@media (min-width:1200px) {
    .w-xl-75 {
        width: 75% !important
    }
}

@media (min-width:1200px) {
    .h-xl-100 {
        height: 100% !important
    }
}

@media (min-width:1200px) {
    .w-xl-100 {
        width: 100% !important
    }
}

@media (min-width:1400px) {
    .h-xxl-25 {
        height: 25% !important
    }
}

@media (min-width:1400px) {
    .w-xxl-25 {
        width: 25% !important
    }
}

@media (min-width:1400px) {
    .h-xxl-50 {
        height: 50% !important
    }
}

@media (min-width:1400px) {
    .w-xxl-50 {
        width: 50% !important
    }
}

@media (min-width:1400px) {
    .h-xxl-75 {
        height: 75% !important
    }
}

@media (min-width:1400px) {
    .w-xxl-75 {
        width: 75% !important
    }
}

@media (min-width:1400px) {
    .h-xxl-100 {
        height: 100% !important
    }
}

@media (min-width:1400px) {
    .w-xxl-100 {
        width: 100% !important
    }
}

.min-h-100 {
    min-height: 100%
}

.max-h-100 {
    max-height: 100%
}

.min-w-100 {
    min-width: 100%
}

.max-w-100 {
    max-width: 100%
}

.min-w-0 {
    min-width: 0
}

.min-h-0 {
    min-height: 0
}

:root {
    --transition-time: 400ms;
    --transition-time-long: 1000ms;
    --transition-time-short: 200ms;
    --nav-size-slim: 5rem;
    --nav-size: 18rem;
    --footer-size: 500px;
    --input-height: 2.25rem;
    --small-title-height: 2rem;
    --font: 'Nunito Sans',sans-serif;
    --font-heading: 'Montserrat',sans-serif
}

html[data-radius=rounded] {
    --border-radius-lg: 16px;
    --border-radius-md: 10px;
    --border-radius-sm: 6px;
    --border-radius-xl: 50px
}

html[data-radius=standard] {
    --border-radius-lg: 6px;
    --border-radius-md: 4px;
    --border-radius-sm: 3px;
    --border-radius-xl: 4px
}

html[data-radius=flat] {
    --border-radius-lg: 0;
    --border-radius-sm: 0;
    --border-radius-md: 0;
    --border-radius-xl: 0
}

:root {
    --card-spacing: 2rem;
    --card-spacing-sm: 1.25rem;
    --card-spacing-xs: 0.75rem;
    --card-spacing-sm-horizontal: 1.75rem 1.25rem;
    --card-spacing-sm-vertical: 1.25rem 1.75rem;
    --main-spacing-horizontal: 2.5rem;
    --main-spacing-vertical: 2rem;
    --title-spacing: 1.25rem
}

@media (max-width:1199.98px) {
    :root {
        --main-spacing-horizontal: 2rem
    }
}

@media (max-width:991.98px) {
    :root {
        --nav-size-slim: 4rem;
        --title-spacing: 1rem;
        --footer-size: 300px
    }
}

@media (max-width:767.98px) {
    :root {
        --card-spacing: 1.75rem;
        --main-spacing-horizontal: 1.25rem;
        --main-spacing-vertical: 1.25rem
    }
}
.topIntro {
    color: white;
}
.topIntro .d-blockA{
    color: white;
    font-size: 1.8em;
}
    .topIntro .d-blockB {
        color: white;
    }
html[data-color=light-blue] { /*tu*/
    --primary: #02a95c;
    --secondary: #6cdbef;
    --tertiary: #5de3c8;
    --quaternary: #558df3;
    --primary-rgb: 2,169,92;
    --secondary-rgb: 108,219,239;
    --tertiary-rgb: 93,227,200;
    --quaternary-rgb: 85,141,243;
    --primary-darker: #02a95c;
    --secondary-darker: #61c6d8;
    --tertiary-darker: #54ccb4;
    --quaternary-darker: #4c7dd6;
    --body: #4e4e4e;
    --alternate: #7c7c7c;
    --muted: #afafaf;
    --separator: #dddddd;
    --separator-light: #f1f1f1;
    --body-rgb: 59,59,59;
    --alternate-rgb: 124,124,124;
    --muted-rgb: 176,176,176;
    --separator-rgb: 221,221,221;
    --separator-light-rgb: 241,241,241;
    --background: #f9f9f9;
    --foreground: #ffffff;
    --background-rgb: 249,249,249;
    --foreground-rgb: 255,255,255;
    --background-theme: #eaf0f1;
    --background-light: #f8f8f8;
    --gradient-1: white;
    --gradient-2: white;
    --gradient-3: white;
    --gradient-1-lighter: #2abdff;
    --gradient-1-darker: #1fa5e2;
    --light-text: #fff;
    --dark-text: #343a40;
    --light-text-darker: #eeeeee;
    --dark-text-darker: #23272b;
    --light-text-rgb: 255,255,255;
    --dark-text-rgb: 52,58,64;
    --danger: #cf2637;
    --info: #279aac;
    --warning: #ebb71a;
    --success: #439b38;
    --light: #dadada;
    --dark: #4e4e4e;
    --danger-darker: #771a23;
    --info-darker: #19545d;
    --warning-darker: #aa830f;
    --success-darker: #285422;
    --light-darker: #c9c9c9;
    --dark-darker: #282828;
    --body-darker: #333333;
    --alternate-darker: #616161;
    --muted-darker: #888888;
    --separator-darker: #c0c0c0;
    --danger-rgb: 182,40,54;
    --info-rgb: 41,138,153;
    --warning-rgb: 235,183,26;
    --success-rgb: 65,139,56;
    --light-rgb: 218,218,218;
    --dark-rgb: 78,78,78;
    --menu-shadow: 0px 3px 10px rgba(0, 0, 0, 0.12);
    --menu-shadow-navcolor: 0px 2px 6px rgba(0, 0, 0, 0.05);
    --background-navcolor-light: #fff;
    --background-navcolor-dark: #253a52;
    --theme-image-filter: hue-rotate(0deg)
}

.accordion-button {
    border-color: var(--separator);
    color: var(--body);
    font-size: 1em
}

    .accordion-button:not(.collapsed) {
        color: var(--primary);
        background: initial
    }

    .accordion-button:focus {
        border-color: var(--separator)
    }

.accordion-collapse {
    border-color: var(--separator)
}

.accordion-button::after {
    background: initial !important;
    font-family: CS-Interface !important;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\e915';
    text-align: center;
    transform-origin: center
}

.accordion-item {
    border: 1px solid var(--separator)
}

.accordion-button, .accordion-item {
    background: initial
}

    .accordion-item:first-of-type .accordion-button {
        border-top-left-radius: var(--border-radius-md);
        border-top-right-radius: var(--border-radius-md)
    }

    .accordion-item:last-of-type .accordion-button.collapsed {
        border-bottom-right-radius: var(--border-radius-md);
        border-bottom-left-radius: var(--border-radius-md)
    }

.alert {
    border: initial;
    border-radius: var(--border-radius-md)
}

.alert-primary {
    color: var(--primary);
    background-color: rgba(var(--primary-rgb),.15)
}

    .alert-primary .alert-link {
        color: var(--primary)
    }

.alert-secondary {
    color: var(--secondary);
    background-color: rgba(var(--secondary-rgb),.15)
}

    .alert-secondary .alert-link {
        color: var(--secondary)
    }

.alert-tertiary {
    color: var(--tertiary);
    background-color: rgba(var(--tertiary-rgb),.15)
}

    .alert-tertiary .alert-link {
        color: var(--tertiary)
    }

.alert-quaternary {
    color: var(--quaternary);
    background-color: rgba(var(--quaternary-rgb),.15)
}

    .alert-quaternary .alert-link {
        color: var(--quaternary)
    }

.alert-success {
    color: var(--success);
    background-color: rgba(var(--success-rgb),.15)
}

    .alert-success .alert-link {
        color: var(--success)
    }

.alert-danger {
    color: var(--danger);
    background-color: rgba(var(--danger-rgb),.15)
}

    .alert-danger .alert-link {
        color: var(--danger)
    }

.alert-info {
    color: var(--info);
    background-color: rgba(var(--info-rgb),.15)
}

    .alert-info .alert-link {
        color: var(--info)
    }

.alert-warning {
    color: var(--warning);
    background-color: rgba(var(--warning-rgb),.15)
}

    .alert-warning .alert-link {
        color: var(--warning)
    }

.alert-light {
    color: var(--alternate);
    background-color: rgba(var(--dark-rgb),.05)
}

    .alert-light .alert-link {
        color: var(--alternate)
    }

.alert-dark {
    color: var(--alternate);
    background-color: rgba(var(--dark-rgb),.15)
}

    .alert-dark .alert-link {
        color: var(--alternate)
    }

.alert-heading {
    color: inherit !important
}

.alert-dismissible .btn-close {
    top: 3px;
    right: 3px;
    padding: .5rem
}

.bg-primary {
    background-color: var(--primary) !important
}

.bg-secondary {
    background-color: var(--secondary) !important
}

.bg-tertiary {
    color: var(--light-text) !important;
    background-color: var(--tertiary) !important
}

.bg-quaternary {
    color: var(--light-text) !important;
    background-color: var(--quaternary) !important
}

.bg-success {
    background-color: var(--success) !important;
    color: var(--light-text) !important
}

.bg-danger {
    background-color: var(--danger) !important;
    color: var(--light-text) !important
}

.bg-warning {
    background-color: var(--warning) !important;
    color: var(--light-text) !important
}

.bg-info {
    background-color: var(--info) !important;
    color: var(--light-text) !important
}

.bg-light {
    background-color: var(--background-light) !important;
    color: var(--dark-text) !important
}

.bg-dark {
    background-color: var(--dark) !important;
    color: var(--light-text) !important
}

.bg-separator {
    background-color: var(--separator) !important;
    color: var(--light-text) !important
}

.bg-separator-light {
    background-color: var(--separator-light) !important;
    color: var(--light-text) !important
}

.bg-theme {
    background-color: var(--background-theme) !important
}

.bg-muted {
    background-color: var(--muted) !important;
    color: var(--light-text) !important
}

.bg-alternate {
    background-color: var(--alternate) !important
}

.bg-body {
    background-color: var(--body) !important
}

.bg-foreground {
    background-color: var(--foreground) !important;
    color: var(--primary) !important
}

.bg-background {
    background-color: var(--background) !important;
    color: var(--primary) !important
}

.bg-outline-primary {
    box-shadow: inset 0 0 0 1px var(--primary) !important;
    color: var(--primary) !important
}

.bg-outline-secondary {
    box-shadow: inset 0 0 0 1px var(--secondary) !important;
    color: var(--secondary) !important
}

.bg-outline-tertiary {
    box-shadow: inset 0 0 0 1px var(--tertiary) !important;
    color: var(--tertiary) !important
}

.bg-outline-quaternary {
    box-shadow: inset 0 0 0 1px var(--quaternary) !important;
    color: var(--quaternary) !important
}

.bg-outline-success {
    box-shadow: inset 0 0 0 1px var(--success) !important;
    color: var(--success) !important
}

.bg-outline-danger {
    box-shadow: inset 0 0 0 1px var(--danger) !important;
    color: var(--danger) !important
}

.bg-outline-warning {
    box-shadow: inset 0 0 0 1px var(--warning) !important;
    color: var(--warning) !important
}

.bg-outline-info {
    box-shadow: inset 0 0 0 1px var(--info) !important;
    color: var(--info) !important
}

.bg-outline-light {
    box-shadow: inset 0 0 0 1px var(--light) !important;
    color: var(--light) !important
}

.bg-outline-dark {
    box-shadow: inset 0 0 0 1px var(--dark) !important;
    color: var(--dark) !important
}

.bg-outline-muted {
    box-shadow: inset 0 0 0 1px var(--muted) !important;
    color: var(--muted) !important
}

.bg-outline-body {
    box-shadow: inset 0 0 0 1px var(--body) !important;
    color: var(--body) !important
}

.bg-outline-alternate {
    box-shadow: inset 0 0 0 1px var(--alternate) !important;
    color: var(--alternate) !important
}

.bg-outline-separator {
    box-shadow: inset 0 0 0 1px var(--separator) !important;
    color: var(--separator) !important
}

.bg-outline-foreground {
    box-shadow: inset 0 0 0 1px var(--foreground) !important;
    color: var(--primary) !important
}

.bg-outline-background {
    box-shadow: inset 0 0 0 1px var(--background) !important;
    color: var(--primary) !important
}

.bg-gradient-single-1 {
    background-color: var(--gradient-1) !important
}

.bg-gradient-single-2 {
    background-color: var(--gradient-2) !important
}

.bg-gradient-single-3 {
    background-color: var(--gradient-3) !important
}

.bg-gradient-light {
    background-image: linear-gradient(160deg,var(--gradient-1),var(--gradient-1),var(--gradient-1-lighter)) !important
}

.bg-gradient-dark {
    background-image: linear-gradient(160deg,var(--gradient-1),var(--gradient-1),var(--gradient-1-darker)) !important
}

a:focus.bg-primary, a:hover.bg-primary {
    background-color: var(--primary-darker) !important;
    border-color: var(--primary-darker) !important;
    color: var(--light-text) !important
}

a:focus.bg-secondary, a:hover.bg-secondary {
    background-color: var(--secondary-darker) !important;
    border-color: var(--secondary-darker) !important;
    color: var(--light-text) !important
}

a:focus.bg-tertiary, a:hover.bg-tertiary {
    background-color: var(--tertiary-darker) !important;
    border-color: var(--tertiary-darker) !important;
    color: var(--light-text) !important
}

a:focus.bg-quaternary, a:hover.bg-quaternary {
    background-color: var(--quaternary-darker) !important;
    border-color: var(--quaternary-darker) !important;
    color: var(--light-text) !important
}

a:focus.bg-warning, a:hover.bg-warning {
    background-color: var(--warning-darker) !important;
    border-color: var(--warning-darker) !important;
    color: var(--light-text) !important
}

a:focus.bg-danger, a:hover.bg-danger {
    background-color: var(--danger-darker) !important;
    border-color: var(--danger-darker) !important;
    color: var(--light-text) !important
}

a:focus.bg-success, a:hover.bg-success {
    background-color: var(--success-darker) !important;
    border-color: var(--success-darker) !important;
    color: var(--light-text) !important
}

a:focus.bg-info, a:hover.bg-info {
    background-color: var(--info-darker) !important;
    border-color: var(--info-darker) !important;
    color: var(--light-text) !important
}

a:focus.bg-light, a:hover.bg-light {
    background-color: var(--light-darker) !important;
    border-color: var(--light-darker) !important;
    color: var(--dark-text) !important
}

a:focus.bg-dark, a:hover.bg-dark {
    background-color: var(--dark-darker) !important;
    border-color: var(--dark-darker) !important;
    color: var(--light-text) !important
}

a:focus.bg-muted, a:hover.bg-muted {
    background-color: var(--muted-darker) !important;
    border-color: var(--muted-darker) !important;
    color: var(--light-text) !important
}

a:focus.bg-separator, a:hover.bg-separator {
    background-color: var(--separator-darker) !important;
    border-color: var(--separator-darker) !important;
    color: var(--light-text) !important
}

.badge {
    padding: .25em .75em;
    font-size: .75em;
    font-weight: 400;
    border-radius: var(--border-radius-md);
    color: var(--light-text);
    text-indent: -1px;
    line-height: 1.25
}

.btn .badge {
    padding-top: 1px;
    padding-bottom: 1px
}

.btn.badge, a.badge {
    box-shadow: initial !important
}

.badge {
    background: unset;
    border: initial !important
}

.rounded-top {
    border-top-left-radius: var(--border-radius-lg) !important;
    border-top-right-radius: var(--border-radius-lg) !important
}

.rounded-top-start {
    border-top-left-radius: var(--border-radius-lg) !important
}

.rounded-top-end {
    border-top-right-radius: var(--border-radius-lg) !important
}

.rounded-end {
    border-top-right-radius: var(--border-radius-lg) !important;
    border-bottom-right-radius: var(--border-radius-lg) !important
}

.rounded-bottom {
    border-bottom-right-radius: var(--border-radius-lg) !important;
    border-bottom-left-radius: var(--border-radius-lg) !important
}

.rounded-bottom-start {
    border-bottom-left-radius: var(--border-radius-lg) !important
}

.rounded-bottom-end {
    border-bottom-right-radius: var(--border-radius-lg) !important
}

.rounded-start {
    border-top-left-radius: var(--border-radius-lg) !important;
    border-bottom-left-radius: var(--border-radius-lg) !important
}

.rounded-pill {
    border-radius: 50px !important
}

.rounded, .rounded-lg {
    border-radius: var(--border-radius-lg) !important
}

.rounded-xl {
    border-radius: var(--border-radius-xl) !important
}

.rounded-xl-top {
    border-top-left-radius: var(--border-radius-lg) !important;
    border-top-right-radius: var(--border-radius-lg) !important
}

.rounded-xl-top-start {
    border-top-left-radius: var(--border-radius-lg) !important
}

.rounded-xl-top-end {
    border-top-right-radius: var(--border-radius-lg) !important
}

.rounded-xl-end {
    border-top-right-radius: var(--border-radius-lg) !important;
    border-bottom-right-radius: var(--border-radius-lg) !important
}

.rounded-xl-bottom {
    border-bottom-right-radius: var(--border-radius-lg) !important;
    border-bottom-left-radius: var(--border-radius-lg) !important
}

.rounded-xl-bottom-start {
    border-bottom-left-radius: var(--border-radius-lg) !important
}

.rounded-xl-bottom-end {
    border-bottom-right-radius: var(--border-radius-lg) !important
}

.rounded-xl-start {
    border-top-left-radius: var(--border-radius-lg) !important;
    border-bottom-left-radius: var(--border-radius-lg) !important
}

.rounded-sm {
    border-radius: var(--border-radius-sm) !important
}

.rounded-sm-top {
    border-top-left-radius: var(--border-radius-sm) !important;
    border-top-right-radius: var(--border-radius-sm) !important
}

.rounded-sm-top-start {
    border-top-left-radius: var(--border-radius-sm) !important
}

.rounded-sm-top-end {
    border-top-right-radius: var(--border-radius-sm) !important
}

.rounded-sm-end {
    border-top-right-radius: var(--border-radius-sm) !important;
    border-bottom-right-radius: var(--border-radius-sm) !important
}

.rounded-sm-bottom {
    border-bottom-right-radius: var(--border-radius-sm) !important;
    border-bottom-left-radius: var(--border-radius-sm) !important
}

.rounded-sm-bottom-start {
    border-bottom-left-radius: var(--border-radius-sm) !important
}

.rounded-sm-bottom-end {
    border-bottom-right-radius: var(--border-radius-sm) !important
}

.rounded-sm-start {
    border-top-left-radius: var(--border-radius-sm) !important;
    border-bottom-left-radius: var(--border-radius-sm) !important
}

.rounded-md {
    border-radius: var(--border-radius-md) !important
}

.rounded-md-top {
    border-top-left-radius: var(--border-radius-md) !important;
    border-top-right-radius: var(--border-radius-md) !important
}

.rounded-md-top-start {
    border-top-left-radius: var(--border-radius-md) !important
}

.rounded-md-top-end {
    border-top-right-radius: var(--border-radius-md) !important
}

.rounded-md-end {
    border-top-right-radius: var(--border-radius-md) !important;
    border-bottom-right-radius: var(--border-radius-md) !important
}

.rounded-md-bottom {
    border-bottom-right-radius: var(--border-radius-md) !important;
    border-bottom-left-radius: var(--border-radius-md) !important
}

.rounded-md-bottom-start {
    border-bottom-left-radius: var(--border-radius-md) !important
}

.rounded-md-bottom-end {
    border-bottom-right-radius: var(--border-radius-md) !important
}

.rounded-md-start {
    border-top-left-radius: var(--border-radius-md) !important;
    border-bottom-left-radius: var(--border-radius-md) !important
}

.border {
    border-color: var(--separator) !important
}

.border-bottom {
    border-bottom: 1px solid var(--separator) !important
}

.border-top {
    border-top: 1px solid var(--separator) !important
}

.border-start {
    border-left: 1px solid var(--separator) !important
}

.border-end {
    border-right: 1px solid var(--separator) !important
}

.border-primary {
    border-color: var(--primary) !important
}

.border-secondary {
    border-color: var(--secondary) !important
}

.border-tertiary {
    border-color: var(--tertiary) !important
}

.border-quaternary {
    border-color: var(--quaternary) !important
}

.border-separator {
    border-color: var(--separator) !important
}

.border-separator-light {
    border-color: var(--separator-light) !important
}

.border-muted {
    border-color: var(--muted) !important
}

.border-alternate {
    border-color: var(--alternate) !important
}

.border-body {
    border-color: var(--body) !important
}

.border-success {
    border-color: var(--success) !important
}

.border-danger {
    border-color: var(--danger) !important
}

.border-warning {
    border-color: var(--warning) !important
}

.border-info {
    border-color: var(--info) !important
}

.border-light {
    border-color: var(--light) !important
}

.border-dark {
    border-color: var(--dark) !important
}

.border-white {
    border-color: var(--light-text) !important
}

.border-foreground {
    border-color: var(--foreground) !important
}

.border-background {
    border-color: var(--background) !important
}

.border-transparent {
    border-color: transparent !important
}

.border-1 {
    border-width: 1px !important
}

.border-2 {
    border-width: 2px !important
}

.border-3 {
    border-width: 3px !important
}

.border-4 {
    border-width: 4px !important
}

.border-5 {
    border-width: 5px !important
}

.border-dashed {
    border-style: dashed !important
}

.border-last-none > :last-child {
    border: initial !important
}

.separator {
    border-bottom: 1px solid var(--separator)
}

.separator-light {
    border-bottom: 1px solid var(--separator-light)
}

.full-page-content-right-border {
    border-radius: initial !important;
    border-bottom-left-radius: var(--border-radius-lg) !important;
    border-bottom-right-radius: var(--border-radius-lg) !important
}

@media (min-width:992px) {
    .full-page-content-right-border {
        border-radius: initial !important;
        border-bottom-left-radius: var(--border-radius-lg) !important;
        border-top-left-radius: var(--border-radius-lg) !important
    }
}

.full-page-content-single-border {
    border-radius: initial !important;
    border-bottom-left-radius: var(--border-radius-lg) !important;
    border-bottom-right-radius: var(--border-radius-lg) !important
}

button {
    outline: initial !important;
    box-shadow: initial !important;
    text-decoration: initial !important
}

.btn {
    font-family: var(--font);
    padding: 10px 20px;
    font-size: 1em;
    line-height: 1rem;
    border: initial;
    box-shadow: initial !important;
    transition: all var(--transition-time-short);
    transition-property: color,background-color,background-image,background;
    border-radius: var(--border-radius-md);
    color: var(--light-text) !important;
    white-space: nowrap
}

    .btn.shadow {
        box-shadow: 0 4px 13px rgba(0,0,0,.07) !important
    }

    .btn.disabled, .btn:disabled {
        cursor: initial
    }

.btn-icon {
    padding: 9px 20px;
    height: var(--input-height)
}

    .btn-icon span {
        vertical-align: middle
    }

    .btn-icon.btn-icon-only {
        padding: 9px 9px;
        flex-shrink: 0;
        width: var(--input-height)
    }

    .btn-icon.btn-sm.btn-icon-only {
        padding: 7px 7px;
        width: 30px
    }

    .btn-icon svg {
        width: 15px;
        height: 15px
    }

    .btn-icon.btn-xs {
        height: 28px
    }

        .btn-icon.btn-xs svg {
            width: 12px;
            height: 12px;
            margin-top: -1px
        }

.btn-group-xl > .btn, .btn-xl {
    padding: 13px 40px;
    line-height: 1;
    font-size: 1em;
    border-radius: var(--border-radius-md)
}

    .btn-group-xl > .btn.btn-icon, .btn-xl.btn-icon {
        padding: 11px 40px;
        height: 40px
    }

.btn-group-lg > .btn, .btn-lg {
    padding: 11px 35px;
    line-height: 1;
    font-size: 1em;
    border-radius: var(--border-radius-md)
}

    .btn-group-lg > .btn.btn-icon, .btn-lg.btn-icon {
        padding: 9px 35px;
        height: var(--input-height)
    }

.btn-group-sm > .btn, .btn-sm {
    padding: 9px 14px;
    font-size: .9em;
    border-radius: var(--border-radius-md);
    line-height: 1;
    height: 30px
}

    .btn-group-sm > .btn.btn-icon, .btn-sm.btn-icon {
        height: 30px
    }

        .btn-group-sm > .btn.btn-icon i, .btn-sm.btn-icon i {
            font-size: 14px;
            width: 16px
        }

.btn-primary, .btn-primary:not(:disabled):not(.disabled).focus, .btn-primary:not(:disabled):not(.disabled):focus {
    background-color: var(--primary)
}

    .btn-primary:hover, .btn-primary:not(:disabled):not(.disabled).focus:hover, .btn-primary:not(:disabled):not(.disabled):focus:hover {
        background-color: var(--primary-darker)
    }

    .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-primary:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--primary-darker)
    }

    .btn-primary.disabled, .btn-primary:disabled {
        background-color: var(--primary)
    }

.btn-secondary, .btn-secondary:not(:disabled):not(.disabled).focus, .btn-secondary:not(:disabled):not(.disabled):focus {
    background-color: var(--secondary)
}

    .btn-secondary:hover, .btn-secondary:not(:disabled):not(.disabled).focus:hover, .btn-secondary:not(:disabled):not(.disabled):focus:hover {
        background-color: var(--secondary-darker)
    }

    .btn-secondary.disabled, .btn-secondary:disabled {
        background-color: var(--secondary)
    }

    .btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show > .btn-secondary:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-secondary:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--secondary-darker)
    }

.btn-tertiary, .btn-tertiary:not(:disabled):not(.disabled).focus, .btn-tertiary:not(:disabled):not(.disabled):focus {
    background-color: var(--tertiary)
}

    .btn-tertiary:hover, .btn-tertiary:not(:disabled):not(.disabled).focus:hover, .btn-tertiary:not(:disabled):not(.disabled):focus:hover {
        background-color: var(--tertiary-darker)
    }

    .btn-tertiary.disabled, .btn-tertiary:disabled {
        background-color: var(--tertiary)
    }

    .btn-tertiary:not(:disabled):not(.disabled).active, .btn-tertiary:not(:disabled):not(.disabled):active, .show > .btn-tertiary:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-tertiary:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--tertiary-darker)
    }

.btn-quaternary, .btn-quaternary:not(:disabled):not(.disabled).focus, .btn-quaternary:not(:disabled):not(.disabled):focus {
    background-color: var(--quaternary)
}

    .btn-quaternary:hover, .btn-quaternary:not(:disabled):not(.disabled).focus:hover, .btn-quaternary:not(:disabled):not(.disabled):focus:hover {
        background-color: var(--quaternary-darker)
    }

    .btn-quaternary.disabled, .btn-quaternary:disabled {
        background-color: var(--quaternary)
    }

    .btn-quaternary:not(:disabled):not(.disabled).active, .btn-quaternary:not(:disabled):not(.disabled):active, .show > .btn-quaternary:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-quaternary:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--quaternary-darker)
    }

.btn-success, .btn-success:not(:disabled):not(.disabled).focus, .btn-success:not(:disabled):not(.disabled):focus {
    background-color: var(--success)
}

    .btn-success:hover, .btn-success:not(:disabled):not(.disabled).focus:hover, .btn-success:not(:disabled):not(.disabled):focus:hover {
        background-color: var(--success-darker)
    }

    .btn-success.disabled, .btn-success:disabled {
        background-color: var(--success)
    }

    .btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active, .show > .btn-success:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-success:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--success-darker)
    }

.btn-white, .btn-white:not(:disabled):not(.disabled).focus, .btn-white:not(:disabled):not(.disabled):focus {
    background-color: var(--light-text);
    color: var(--primary) !important
}

    .btn-white:hover, .btn-white:not(:disabled):not(.disabled).focus:hover, .btn-white:not(:disabled):not(.disabled):focus:hover {
        background-color: var(--light-text-darker)
    }

    .btn-white.disabled, .btn-white:disabled {
        background-color: var(--light-text)
    }

    .btn-white:not(:disabled):not(.disabled).active, .btn-white:not(:disabled):not(.disabled):active, .show > .btn-white:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-white:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--light-text-darker)
    }

.btn-black, .btn-black:not(:disabled):not(.disabled).focus, .btn-black:not(:disabled):not(.disabled):focus {
    background-color: var(--dark-text);
    color: var(--primary) !important
}

    .btn-black:hover, .btn-black:not(:disabled):not(.disabled).focus:hover, .btn-black:not(:disabled):not(.disabled):focus:hover {
        background-color: var(--dark-text-darker)
    }

    .btn-black.disabled, .btn-black:disabled {
        background-color: var(--dark-text)
    }

    .btn-black:not(:disabled):not(.disabled).active, .btn-black:not(:disabled):not(.disabled):active, .show > .btn-black:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-black:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--dark-text-darker)
    }

.btn-warning, .btn-warning:not(:disabled):not(.disabled).focus, .btn-warning:not(:disabled):not(.disabled):focus {
    background-color: var(--warning)
}

    .btn-warning:hover, .btn-warning:not(:disabled):not(.disabled).focus:hover, .btn-warning:not(:disabled):not(.disabled):focus:hover {
        background-color: var(--warning-darker)
    }

    .btn-warning.disabled, .btn-warning:disabled {
        background-color: var(--warning)
    }

    .btn-warning:not(:disabled):not(.disabled).active, .btn-warning:not(:disabled):not(.disabled):active, .show > .btn-warning:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-warning:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--warning-darker)
    }

.btn-info, .btn-info:not(:disabled):not(.disabled).focus, .btn-info:not(:disabled):not(.disabled):focus {
    background-color: var(--info)
}

    .btn-info:hover, .btn-info:not(:disabled):not(.disabled).focus:hover, .btn-info:not(:disabled):not(.disabled):focus:hover {
        background-color: var(--info-darker)
    }

    .btn-info.disabled, .btn-info:disabled {
        background-color: var(--info)
    }

    .btn-info:not(:disabled):not(.disabled).active, .btn-info:not(:disabled):not(.disabled):active, .show > .btn-info:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-info:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--info-darker)
    }

.btn-danger, .btn-danger:not(:disabled):not(.disabled).focus, .btn-danger:not(:disabled):not(.disabled):focus {
    background-color: var(--danger)
}

    .btn-danger:hover, .btn-danger:not(:disabled):not(.disabled).focus:hover, .btn-danger:not(:disabled):not(.disabled):focus:hover {
        background-color: var(--danger-darker)
    }

    .btn-danger.disabled, .btn-danger:disabled {
        background-color: var(--danger)
    }

    .btn-danger:not(:disabled):not(.disabled).active, .btn-danger:not(:disabled):not(.disabled):active, .show > .btn-danger:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-danger:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--danger-darker)
    }

.btn-light, .btn-light:not(:disabled):not(.disabled).focus, .btn-light:not(:disabled):not(.disabled):focus {
    background-color: var(--light);
    color: var(--dark-text) !important
}

    .btn-light:hover, .btn-light:not(:disabled):not(.disabled).focus:hover, .btn-light:not(:disabled):not(.disabled):focus:hover {
        background-color: var(--light-darker)
    }

    .btn-light.disabled, .btn-light:disabled {
        background-color: var(--light)
    }

    .btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show > .btn-light:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-light:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--light-darker)
    }

.btn-dark, .btn-dark:not(:disabled):not(.disabled).focus, .btn-dark:not(:disabled):not(.disabled):focus {
    background-color: var(--dark)
}

    .btn-dark:hover, .btn-dark:not(:disabled):not(.disabled).focus:hover, .btn-dark:not(:disabled):not(.disabled):focus:hover {
        background-color: var(--dark-darker)
    }

    .btn-dark.disabled, .btn-dark:disabled {
        background-color: var(--light)
    }

    .btn-dark:not(:disabled):not(.disabled).active, .btn-dark:not(:disabled):not(.disabled):active, .show > .btn-dark:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-dark:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--dark-darker)
    }

.btn-body, .btn-body:not(:disabled):not(.disabled).focus, .btn-body:not(:disabled):not(.disabled):focus {
    background-color: var(--body)
}

    .btn-body:hover, .btn-body:not(:disabled):not(.disabled).focus:hover, .btn-body:not(:disabled):not(.disabled):focus:hover {
        background-color: var(--body-darker)
    }

    .btn-body.disabled, .btn-body:disabled {
        background-color: var(--light)
    }

    .btn-body:not(:disabled):not(.disabled).active, .btn-body:not(:disabled):not(.disabled):active, .show > .btn-body:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-body:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--body-darker)
    }

.btn-muted, .btn-muted:not(:disabled):not(.disabled).focus, .btn-muted:not(:disabled):not(.disabled):focus {
    background-color: var(--muted)
}

    .btn-muted:hover, .btn-muted:not(:disabled):not(.disabled).focus:hover, .btn-muted:not(:disabled):not(.disabled):focus:hover {
        background-color: var(--muted-darker)
    }

    .btn-muted.disabled, .btn-muted:disabled {
        background-color: var(--light)
    }

    .btn-muted:not(:disabled):not(.disabled).active, .btn-muted:not(:disabled):not(.disabled):active, .show > .btn-muted:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-muted:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--muted-darker)
    }

.btn-separator, .btn-separator:not(:disabled):not(.disabled).focus, .btn-separator:not(:disabled):not(.disabled):focus {
    background-color: var(--separator)
}

    .btn-separator:hover, .btn-separator:not(:disabled):not(.disabled).focus:hover, .btn-separator:not(:disabled):not(.disabled):focus:hover {
        background-color: var(--separator-darker)
    }

    .btn-separator.disabled, .btn-separator:disabled {
        background-color: var(--light)
    }

    .btn-separator:not(:disabled):not(.disabled).active, .btn-separator:not(:disabled):not(.disabled):active, .show > .btn-separator:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-separator:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--separator-darker)
    }

.btn-separator-light, .btn-separator-light:not(:disabled):not(.disabled).focus, .btn-separator-light:not(:disabled):not(.disabled):focus {
    background-color: var(--separator-light);
    color: var(--body) !important
}

    .btn-separator-light:hover, .btn-separator-light:not(:disabled):not(.disabled).focus:hover, .btn-separator-light:not(:disabled):not(.disabled):focus:hover {
        background-color: var(--separator-darker);
        color: var(--light-text) !important
    }

    .btn-separator-light.disabled, .btn-separator-light:disabled {
        background-color: var(--light)
    }

    .btn-separator-light:not(:disabled):not(.disabled).active, .btn-separator-light:not(:disabled):not(.disabled):active, .show > .btn-separator-light:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-separator-light:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--separator-darker)
    }

.btn-alternate, .btn-alternate:not(:disabled):not(.disabled).focus, .btn-alternate:not(:disabled):not(.disabled):focus {
    background-color: var(--alternate)
}

    .btn-alternate:hover, .btn-alternate:not(:disabled):not(.disabled).focus:hover, .btn-alternate:not(:disabled):not(.disabled):focus:hover {
        background-color: var(--alternate-darker)
    }

    .btn-alternate.disabled, .btn-alternate:disabled {
        background-color: var(--light)
    }

    .btn-alternate:not(:disabled):not(.disabled).active, .btn-alternate:not(:disabled):not(.disabled):active, .show > .btn-alternate:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-alternate:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--alternate-darker)
    }

.btn-link, .btn-link:not(:disabled):not(.disabled).focus, .btn-link:not(:disabled):not(.disabled):focus {
    transition: color var(--transition-time-short);
    color: var(--primary) !important;
    text-decoration: initial !important
}

    .btn-link:active, .btn-link:hover, .btn-link:not(:disabled):not(.disabled).focus:active, .btn-link:not(:disabled):not(.disabled).focus:hover, .btn-link:not(:disabled):not(.disabled):focus:active, .btn-link:not(:disabled):not(.disabled):focus:hover {
        text-decoration: initial;
        color: var(--secondary) !important
    }

    .btn-link.disabled, .btn-link:disabled {
        background-color: var(--link)
    }

    .btn-link:not(:disabled):not(.disabled).active, .btn-link:not(:disabled):not(.disabled):active, .show > .btn-link:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-link:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        color: var(--primary-darker) !important
    }

.btn-outline-primary {
    box-shadow: inset 0 0 0 1px var(--primary) !important;
    color: var(--primary) !important
}

    .btn-outline-primary:hover {
        color: var(--light-text) !important;
        background-color: var(--primary);
        box-shadow: initial !important
    }

    .btn-outline-primary.disabled, .btn-outline-primary:disabled {
        box-shadow: inset 0 0 0 1px var(--primary) !important;
        background: initial;
        color: var(--primary) !important
    }

    .btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show > .btn-outline-primary:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-outline-primary:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--primary);
        box-shadow: inset 0 0 0 1px var(--primary) !important;
        color: var(--light-text) !important
    }

.btn-outline-secondary {
    box-shadow: inset 0 0 0 1px var(--secondary) !important;
    color: var(--secondary) !important
}

    .btn-outline-secondary:hover {
        color: var(--light-text) !important;
        background-color: var(--secondary);
        box-shadow: initial !important
    }

    .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
        box-shadow: inset 0 0 0 1px var(--secondary) !important;
        background: initial;
        color: var(--secondary) !important
    }

    .btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary:not(:disabled):not(.disabled):active, .show > .btn-outline-secondary:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-outline-secondary:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--secondary);
        box-shadow: inset 0 0 0 1px var(--secondary) !important;
        color: var(--light-text) !important
    }

.btn-outline-tertiary {
    box-shadow: inset 0 0 0 1px var(--tertiary) !important;
    color: var(--tertiary) !important
}

    .btn-outline-tertiary:hover {
        color: var(--light-text) !important;
        background-color: var(--tertiary);
        box-shadow: initial !important
    }

    .btn-outline-tertiary.disabled, .btn-outline-tertiary:disabled {
        box-shadow: inset 0 0 0 1px var(--tertiary) !important;
        background: initial;
        color: var(--tertiary) !important
    }

    .btn-outline-tertiary:not(:disabled):not(.disabled).active, .btn-outline-tertiary:not(:disabled):not(.disabled):active, .show > .btn-outline-tertiary:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-outline-tertiary:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--tertiary);
        box-shadow: inset 0 0 0 1px var(--tertiary) !important;
        color: var(--light-text) !important
    }

.btn-outline-quaternary {
    box-shadow: inset 0 0 0 1px var(--quaternary) !important;
    color: var(--quaternary) !important
}

    .btn-outline-quaternary:hover {
        color: var(--light-text) !important;
        background-color: var(--quaternary);
        box-shadow: initial !important
    }

    .btn-outline-quaternary.disabled, .btn-outline-quaternary:disabled {
        box-shadow: inset 0 0 0 1px var(--quaternary) !important;
        background: initial;
        color: var(--quaternary) !important
    }

    .btn-outline-quaternary:not(:disabled):not(.disabled).active, .btn-outline-quaternary:not(:disabled):not(.disabled):active, .show > .btn-outline-quaternary:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-outline-quaternary:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--quaternary);
        box-shadow: inset 0 0 0 1px var(--quaternary) !important;
        color: var(--light-text) !important
    }

.btn-outline-success {
    box-shadow: inset 0 0 0 1px var(--success) !important;
    color: var(--success) !important
}

    .btn-outline-success:hover {
        color: var(--light-text) !important;
        background-color: var(--success);
        box-shadow: initial !important
    }

    .btn-outline-success.disabled, .btn-outline-success:disabled {
        box-shadow: inset 0 0 0 1px var(--success) !important;
        background: initial;
        color: var(--success) !important
    }

    .btn-outline-success:not(:disabled):not(.disabled).active, .btn-outline-success:not(:disabled):not(.disabled):active, .show > .btn-outline-success:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-outline-success:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--success);
        box-shadow: inset 0 0 0 1px var(--success) !important;
        color: var(--light-text) !important
    }

.btn-outline-warning {
    box-shadow: inset 0 0 0 1px var(--warning) !important;
    color: var(--warning) !important
}

    .btn-outline-warning:hover {
        color: var(--light-text) !important;
        background-color: var(--warning);
        box-shadow: initial !important
    }

    .btn-outline-warning.disabled, .btn-outline-warning:disabled {
        box-shadow: inset 0 0 0 1px var(--warning) !important;
        background: initial;
        color: var(--warning) !important
    }

    .btn-outline-warning:not(:disabled):not(.disabled).active, .btn-outline-warning:not(:disabled):not(.disabled):active, .show > .btn-outline-warning:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-outline-warning:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--warning);
        box-shadow: inset 0 0 0 1px var(--warning) !important;
        color: var(--light-text) !important
    }

.btn-outline-light {
    box-shadow: inset 0 0 0 1px var(--light) !important;
    color: var(--light) !important
}

    .btn-outline-light:hover {
        color: var(--dark-text) !important;
        background-color: var(--light);
        box-shadow: initial !important
    }

    .btn-outline-light.disabled, .btn-outline-light:disabled {
        box-shadow: inset 0 0 0 1px var(--light) !important;
        background: initial;
        color: var(--light) !important
    }

    .btn-outline-light:not(:disabled):not(.disabled).active, .btn-outline-light:not(:disabled):not(.disabled):active, .show > .btn-outline-light:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-outline-light:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--light);
        box-shadow: inset 0 0 0 1px var(--light) !important;
        color: var(--dark-text) !important
    }

.btn-outline-white {
    box-shadow: inset 0 0 0 1px var(--light-text) !important;
    color: var(--light-text) !important
}

    .btn-outline-white:hover {
        color: var(--dark-text) !important;
        background-color: var(--light-text);
        box-shadow: initial !important
    }

    .btn-outline-white.disabled, .btn-outline-white:disabled {
        box-shadow: inset 0 0 0 1px var(--light-text) !important;
        background: initial;
        color: var(--light-text) !important
    }

    .btn-outline-white:not(:disabled):not(.disabled).active, .btn-outline-white:not(:disabled):not(.disabled):active, .show > .btn-outline-white:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-outline-white:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--light-text);
        box-shadow: inset 0 0 0 1px var(--light-text) !important;
        color: var(--dark-text) !important
    }

.btn-outline-black {
    box-shadow: inset 0 0 0 1px var(--dark-text) !important;
    color: var(--dark-text) !important
}

    .btn-outline-black:hover {
        color: var(--light-text) !important;
        background-color: var(--dark-text);
        box-shadow: initial !important
    }

    .btn-outline-black.disabled, .btn-outline-black:disabled {
        box-shadow: inset 0 0 0 1px var(--dark-text) !important;
        background: initial;
        color: var(--dark-text) !important
    }

    .btn-outline-black:not(:disabled):not(.disabled).active, .btn-outline-black:not(:disabled):not(.disabled):active, .show > .btn-outline-black:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-outline-black:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--dark-text);
        box-shadow: inset 0 0 0 1px var(--dark-text) !important;
        color: var(--light-text) !important
    }

.btn-outline-info {
    box-shadow: inset 0 0 0 1px var(--info) !important;
    color: var(--info) !important
}

    .btn-outline-info:hover {
        color: var(--light-text) !important;
        background-color: var(--info);
        box-shadow: initial !important
    }

    .btn-outline-info.disabled, .btn-outline-info:disabled {
        box-shadow: inset 0 0 0 1px var(--info) !important;
        background: initial;
        color: var(--info) !important
    }

    .btn-outline-info:not(:disabled):not(.disabled).active, .btn-outline-info:not(:disabled):not(.disabled):active, .show > .btn-outline-info:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-outline-info:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--info);
        box-shadow: inset 0 0 0 1px var(--info) !important;
        color: var(--light-text) !important
    }

.btn-outline-danger {
    box-shadow: inset 0 0 0 1px var(--danger) !important;
    color: var(--danger) !important
}

    .btn-outline-danger:hover {
        color: var(--light-text) !important;
        background-color: var(--danger);
        box-shadow: initial !important
    }

    .btn-outline-danger.disabled, .btn-outline-danger:disabled {
        box-shadow: inset 0 0 0 1px var(--info) !important;
        background: initial;
        color: var(--danger) !important
    }

    .btn-outline-danger:not(:disabled):not(.disabled).active, .btn-outline-danger:not(:disabled):not(.disabled):active, .show > .btn-outline-danger:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-outline-danger:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--danger);
        box-shadow: inset 0 0 0 1px var(--danger) !important;
        color: var(--light-text) !important
    }

.btn-outline-dark {
    box-shadow: inset 0 0 0 1px var(--dark) !important;
    color: var(--dark) !important
}

    .btn-outline-dark:hover {
        color: var(--light-text) !important;
        background-color: var(--dark);
        box-shadow: initial !important
    }

    .btn-outline-dark.disabled, .btn-outline-dark:disabled {
        box-shadow: inset 0 0 0 1px var(--dark) !important;
        background: initial;
        color: var(--dark) !important
    }

    .btn-outline-dark:not(:disabled):not(.disabled).active, .btn-outline-dark:not(:disabled):not(.disabled):active, .show > .btn-outline-dark:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-outline-dark:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--dark);
        box-shadow: inset 0 0 0 1px var(--dark) !important;
        color: var(--light-text) !important
    }

.btn-outline-body {
    box-shadow: inset 0 0 0 1px var(--body) !important;
    color: var(--body) !important
}

    .btn-outline-body:hover {
        color: var(--light-text) !important;
        background-color: var(--body);
        box-shadow: initial !important
    }

    .btn-outline-body.disabled, .btn-outline-body:disabled {
        box-shadow: inset 0 0 0 1px var(--body) !important;
        background: initial;
        color: var(--body) !important
    }

    .btn-outline-body:not(:disabled):not(.disabled).active, .btn-outline-body:not(:disabled):not(.disabled):active, .show > .btn-outline-body:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-outline-body:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--body);
        box-shadow: inset 0 0 0 1px var(--body) !important;
        color: var(--light-text) !important
    }

.btn-outline-muted {
    box-shadow: inset 0 0 0 1px var(--muted) !important;
    color: var(--muted) !important
}

    .btn-outline-muted:hover {
        color: var(--light-text) !important;
        background-color: var(--muted);
        box-shadow: initial !important
    }

    .btn-outline-muted.disabled, .btn-outline-muted:disabled {
        box-shadow: inset 0 0 0 1px var(--muted) !important;
        background: initial;
        color: var(--muted) !important
    }

    .btn-outline-muted:not(:disabled):not(.disabled).active, .btn-outline-muted:not(:disabled):not(.disabled):active, .show > .btn-outline-muted:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-outline-muted:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--muted);
        box-shadow: inset 0 0 0 1px var(--muted) !important;
        color: var(--light-text) !important
    }

.btn-outline-separator {
    box-shadow: inset 0 0 0 1px var(--separator) !important;
    color: var(--separator) !important
}

    .btn-outline-separator:hover {
        color: var(--light-text) !important;
        background-color: var(--separator);
        box-shadow: initial !important
    }

    .btn-outline-separator.disabled, .btn-outline-separator:disabled {
        box-shadow: inset 0 0 0 1px var(--separator) !important;
        background: initial;
        color: var(--separator) !important
    }

    .btn-outline-separator:not(:disabled):not(.disabled).active, .btn-outline-separator:not(:disabled):not(.disabled):active, .show > .btn-outline-separator:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-outline-separator:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--separator);
        box-shadow: inset 0 0 0 1px var(--separator) !important;
        color: var(--light-text) !important
    }

.btn-outline-alternate {
    box-shadow: inset 0 0 0 1px var(--alternate) !important;
    color: var(--alternate) !important
}

    .btn-outline-alternate:hover {
        color: var(--light-text) !important;
        background-color: var(--alternate);
        box-shadow: initial !important
    }

    .btn-outline-alternate.disabled, .btn-outline-alternate:disabled {
        box-shadow: inset 0 0 0 1px var(--alternate) !important;
        background: initial;
        color: var(--alternate) !important
    }

    .btn-outline-alternate:not(:disabled):not(.disabled).active, .btn-outline-alternate:not(:disabled):not(.disabled):active, .show > .btn-outline-alternate:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-outline-alternate:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--alternate);
        box-shadow: inset 0 0 0 1px var(--alternate) !important;
        color: var(--light-text) !important
    }

.btn-gradient-primary, .btn-gradient-primary:not(:disabled):not(.disabled).focus, .btn-gradient-primary:not(:disabled):not(.disabled):focus {
    z-index: 1;
    position: relative;
    background-color: var(--primary);
    background-image: linear-gradient(to right,var(--primary),var(--primary),rgba(var(--secondary-rgb),.5))
}

    .btn-gradient-primary::before, .btn-gradient-primary:not(:disabled):not(.disabled).focus::before, .btn-gradient-primary:not(:disabled):not(.disabled):focus::before {
        position: absolute;
        content: '';
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        transition: opacity var(--transition-time-short) linear;
        opacity: 0;
        background-image: linear-gradient(to right,var(--primary-darker),var(--primary-darker));
        border-radius: var(--border-radius-md)
    }

    .btn-gradient-primary:hover::before, .btn-gradient-primary:not(:disabled):not(.disabled).focus:hover::before, .btn-gradient-primary:not(:disabled):not(.disabled):focus:hover::before {
        opacity: 1
    }

    .btn-gradient-primary:not(:disabled):not(.disabled).active, .btn-gradient-primary:not(:disabled):not(.disabled):active, .show > .btn-gradient-primary:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-gradient-primary:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-image: linear-gradient(to right,var(--primary-darker),var(--primary-darker))
    }

        .btn-gradient-primary:not(:disabled):not(.disabled).active::before, .btn-gradient-primary:not(:disabled):not(.disabled):active::before, .show > .btn-gradient-primary:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true]::before, .show > .btn-gradient-primary:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true]::before {
            transition: opacity var(--transition-time-short) linear;
            opacity: 0
        }

    .btn-gradient-primary.disabled, .btn-gradient-primary:disabled {
        background-color: var(--primary);
        background-image: linear-gradient(to right,var(--primary),var(--primary),rgba(var(--secondary-rgb),.5))
    }

        .btn-gradient-primary.disabled::before, .btn-gradient-primary:disabled::before {
            opacity: 0
        }

.btn-gradient-secondary, .btn-gradient-secondary:not(:disabled):not(.disabled).focus, .btn-gradient-secondary:not(:disabled):not(.disabled):focus {
    z-index: 1;
    position: relative;
    background-color: var(--secondary);
    background-image: linear-gradient(to right,var(--secondary),var(--secondary),rgba(var(--primary-rgb),.4))
}

    .btn-gradient-secondary::before, .btn-gradient-secondary:not(:disabled):not(.disabled).focus::before, .btn-gradient-secondary:not(:disabled):not(.disabled):focus::before {
        position: absolute;
        content: '';
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        transition: opacity var(--transition-time-short) linear;
        opacity: 0;
        background-image: linear-gradient(to right,var(--secondary-darker),var(--secondary-darker));
        border-radius: var(--border-radius-md)
    }

    .btn-gradient-secondary:hover::before, .btn-gradient-secondary:not(:disabled):not(.disabled).focus:hover::before, .btn-gradient-secondary:not(:disabled):not(.disabled):focus:hover::before {
        opacity: 1
    }

    .btn-gradient-secondary:not(:disabled):not(.disabled).active, .btn-gradient-secondary:not(:disabled):not(.disabled):active, .show > .btn-gradient-secondary:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-gradient-secondary:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-image: linear-gradient(to right,var(--secondary-darker),var(--secondary-darker))
    }

        .btn-gradient-secondary:not(:disabled):not(.disabled).active::before, .btn-gradient-secondary:not(:disabled):not(.disabled):active::before, .show > .btn-gradient-secondary:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true]::before, .show > .btn-gradient-secondary:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true]::before {
            transition: opacity var(--transition-time-short) linear;
            opacity: 0
        }

    .btn-gradient-secondary.disabled, .btn-gradient-secondary:disabled {
        background-color: var(--secondary);
        background-image: linear-gradient(to right,var(--secondary),var(--secondary),rgba(var(--primary-rgb),.4))
    }

        .btn-gradient-secondary.disabled::before, .btn-gradient-secondary:disabled::before {
            opacity: 0
        }

.btn-group-vertical > .btn-group:first-child > .btn, .btn-group-vertical > .btn:first-child {
    border-top-left-radius: var(--border-radius-md);
    border-top-right-radius: var(--border-radius-md)
}

.btn-group-vertical > .btn-group:last-child > .btn, .btn-group-vertical > .btn:last-child {
    border-bottom-left-radius: var(--border-radius-md);
    border-bottom-right-radius: var(--border-radius-md)
}

.btn-foreground, .btn-foreground:not(:disabled):not(.disabled).focus, .btn-foreground:not(:disabled):not(.disabled):focus {
    background-color: var(--foreground);
    color: var(--primary) !important
}

    .btn-foreground:hover, .btn-foreground:not(:disabled):not(.disabled).focus:hover, .btn-foreground:not(:disabled):not(.disabled):focus:hover {
        background-color: var(--foreground);
        color: var(--secondary) !important
    }

    .btn-foreground:not(:disabled):not(.disabled).active, .btn-foreground:not(:disabled):not(.disabled):active, .show > .btn-foreground:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-foreground:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--foreground);
        color: var(--primary) !important
    }

    .btn-foreground.disabled, .btn-foreground:disabled {
        background-color: var(--foreground);
        color: var(--primary) !important
    }

.btn-foreground-alternate, .btn-foreground-alternate:not(:disabled):not(.disabled).focus, .btn-foreground-alternate:not(:disabled):not(.disabled):focus {
    background-color: var(--foreground);
    color: var(--alternate) !important
}

    .btn-foreground-alternate:hover, .btn-foreground-alternate:not(:disabled):not(.disabled).focus:hover, .btn-foreground-alternate:not(:disabled):not(.disabled):focus:hover {
        background-color: var(--foreground);
        color: var(--primary) !important
    }

    .btn-foreground-alternate:not(:disabled):not(.disabled).active, .btn-foreground-alternate:not(:disabled):not(.disabled):active, .show > .btn-foreground-alternate:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-foreground-alternate:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--foreground);
        color: var(--alternate) !important
    }

    .btn-foreground-alternate.disabled, .btn-foreground-alternate:disabled {
        background-color: var(--foreground);
        color: var(--alternate) !important
    }

.btn-background-alternate, .btn-background-alternate:not(:disabled):not(.disabled).focus, .btn-background-alternate:not(:disabled):not(.disabled):focus {
    background-color: var(--background);
    color: var(--alternate) !important
}

    .btn-background-alternate:hover, .btn-background-alternate:not(:disabled):not(.disabled).focus:hover, .btn-background-alternate:not(:disabled):not(.disabled):focus:hover {
        background-color: var(--background);
        color: var(--primary) !important
    }

    .btn-background-alternate:not(:disabled):not(.disabled).active, .btn-background-alternate:not(:disabled):not(.disabled):active, .show > .btn-background-alternate:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-background-alternate:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--background);
        color: var(--alternate) !important
    }

    .btn-background-alternate.disabled, .btn-background-alternate:disabled {
        background-color: var(--background);
        color: var(--alternate) !important
    }

.btn-background, .btn-background:not(:disabled):not(.disabled).focus, .btn-background:not(:disabled):not(.disabled):focus {
    background-color: var(--background);
    color: var(--primary) !important
}

    .btn-background:hover, .btn-background:not(:disabled):not(.disabled).focus:hover, .btn-background:not(:disabled):not(.disabled):focus:hover {
        background-color: var(--background);
        color: var(--secondary) !important
    }

    .btn-background:not(:disabled):not(.disabled).active, .btn-background:not(:disabled):not(.disabled):active, .show > .btn-background:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-background:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--background);
        color: var(--primary) !important
    }

    .btn-background.disabled, .btn-background:disabled {
        background-color: var(--background);
        color: var(--primary) !important
    }

.btn-foreground.hover-outline, .btn-foreground.hover-outline:not(:disabled):not(.disabled).focus, .btn-foreground.hover-outline:not(:disabled):not(.disabled):focus {
    background-color: var(--foreground);
    color: var(--primary) !important
}

    .btn-foreground.hover-outline:hover, .btn-foreground.hover-outline:not(:disabled):not(.disabled).focus:hover, .btn-foreground.hover-outline:not(:disabled):not(.disabled):focus:hover {
        color: var(--primary) !important;
        box-shadow: inset 0 0 0 1px var(--primary) !important
    }

    .btn-foreground.hover-outline:not(:disabled):not(.disabled).active, .btn-foreground.hover-outline:not(:disabled):not(.disabled):active, .show > .btn-foreground.hover-outline:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-foreground.hover-outline:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        background-color: var(--foreground);
        color: var(--primary) !important;
        box-shadow: inset 0 0 0 1px var(--primary) !important
    }

    .btn-foreground.hover-outline.disabled, .btn-foreground.hover-outline:disabled {
        background-color: var(--foreground);
        color: var(--primary) !important
    }

.btn-background.hover-outline, .btn-background.hover-outline:not(:disabled):not(.disabled).focus, .btn-background.hover-outline:not(:disabled):not(.disabled):focus {
    background-color: var(--background);
    color: var(--primary) !important
}

    .btn-background.hover-outline:hover, .btn-background.hover-outline:not(:disabled):not(.disabled).focus:hover, .btn-background.hover-outline:not(:disabled):not(.disabled):focus:hover {
        color: var(--primary) !important;
        background-color: var(--foreground);
        box-shadow: inset 0 0 0 1px var(--primary) !important
    }

    .btn-background.hover-outline:not(:disabled):not(.disabled).active, .btn-background.hover-outline:not(:disabled):not(.disabled):active, .show > .btn-background.hover-outline:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true], .show > .btn-background.hover-outline:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true] {
        color: var(--primary) !important;
        background-color: var(--foreground);
        box-shadow: inset 0 0 0 1px var(--primary) !important
    }

    .btn-background.hover-outline.disabled, .btn-background.hover-outline:disabled {
        background-color: var(--background);
        color: var(--primary) !important
    }

.btn-overlay.btn-foreground {
    background-color: rgba(var(--foreground-rgb),.7)
}

    .btn-overlay.btn-foreground:hover {
        background-color: rgba(var(--foreground-rgb),1)
    }

.btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-primary:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true]:active:focus, .show > .btn-outline-primary:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true]:active:focus {
    color: var(--light-text) !important
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-secondary:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true]:active:focus, .show > .btn-outline-secondary:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true]:active:focus {
    color: var(--light-text) !important
}

.btn-outline-tertiary:not(:disabled):not(.disabled).active:focus, .btn-outline-tertiary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-tertiary:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true]:active:focus, .show > .btn-outline-tertiary:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true]:active:focus {
    color: var(--light-text) !important
}

.btn-outline-quaternary:not(:disabled):not(.disabled).active:focus, .btn-outline-quaternary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-quaternary:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true]:active:focus, .show > .btn-outline-quaternary:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true]:active:focus {
    color: var(--light-text) !important
}

.btn-outline-success:not(:disabled):not(.disabled).active:focus, .btn-outline-success:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-success:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true]:active:focus, .show > .btn-outline-success:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true]:active:focus {
    color: var(--light-text) !important
}

.btn-outline-warning:not(:disabled):not(.disabled).active:focus, .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-warning:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true]:active:focus, .show > .btn-outline-warning:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true]:active:focus {
    color: var(--light-text) !important
}

.btn-outline-info:not(:disabled):not(.disabled).active:focus, .btn-outline-info:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-info:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true]:active:focus, .show > .btn-outline-info:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true]:active:focus {
    color: var(--light-text) !important
}

.btn-outline-danger:not(:disabled):not(.disabled).active:focus, .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-danger:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true]:active:focus, .show > .btn-outline-danger:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true]:active:focus {
    color: var(--light-text) !important
}

.btn-outline-light:not(:disabled):not(.disabled).active:focus, .btn-outline-light:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-light:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true]:active:focus, .show > .btn-outline-light:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true]:active:focus {
    color: var(--dark-text) !important
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus, .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-dark:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true]:active:focus, .show > .btn-outline-dark:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true]:active:focus {
    color: var(--light-text) !important
}

.btn-outline-body:not(:disabled):not(.disabled).active:focus, .btn-outline-body:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-body:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true]:active:focus, .show > .btn-outline-body:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true]:active:focus {
    color: var(--light-text) !important
}

.btn-outline-alternate:not(:disabled):not(.disabled).active:focus, .btn-outline-alternate:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-alternate:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true]:active:focus, .show > .btn-outline-alternate:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true]:active:focus {
    color: var(--light-text) !important
}

.btn-outline-muted:not(:disabled):not(.disabled).active:focus, .btn-outline-muted:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-muted:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true]:active:focus, .show > .btn-outline-muted:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true]:active:focus {
    color: var(--light-text) !important
}

.btn-outline-separator:not(:disabled):not(.disabled).active:focus, .btn-outline-separator:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-separator:not(:disabled):not(.disabled).dropdown-toggle[aria-expanded=true]:active:focus, .show > .btn-outline-separator:not(:disabled):not(.disabled)[data-bs-toggle=dropdown][aria-expanded=true]:active:focus {
    color: var(--light-text) !important
}

.dropdown-toggle-split {
    padding-left: 12px;
    padding-right: 12px
}

.btn-group-xl > .btn + .dropdown-toggle-split, .btn-xl + .dropdown-toggle-split {
    padding-left: 20px;
    padding-right: 20px
}

.btn-group-lg > .btn + .dropdown-toggle-split, .btn-lg + .dropdown-toggle-split {
    padding-left: 15px;
    padding-right: 15px
}

.btn-group-sm > .btn + .dropdown-toggle-split, .btn-sm + .dropdown-toggle-split {
    padding-left: 10px;
    padding-right: 10px
}

.btn-close {
    width: calc(var(--input-height)/ 2);
    height: calc(var(--input-height)/ 2);
    margin: 0;
    padding: .25rem;
    background: initial;
    opacity: 1;
    font-size: 18px;
    font-family: CS-Interface !important;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--alternate)
}

    .btn-close:after {
        display: inline-block;
        content: '\e91b'
    }

    .btn-close:hover:after {
        color: var(--primary)
    }

.btn.disabled, .btn:disabled {
    opacity: .5
}

.btn-custom-control .form-check-input {
    pointer-events: none;
    margin-top: .25rem !important;
    background-color: transparent
}

.btn-custom-control .form-check {
    margin-bottom: 0
}

.btn-custom-control.btn-sm {
    padding-top: 3px
}

[class*=btn-outline-].btn-custom-control:hover .form-check-input {
    border-color: var(--light-text) !important
}

.btn-outline-primary.btn-custom-control .form-check-input {
    border-color: var(--primary) !important
}

    .btn-outline-primary.btn-custom-control .form-check-input:checked {
        background-color: var(--primary) !important
    }

.btn-outline-secondary.btn-custom-control .form-check-input {
    border-color: var(--secondary) !important
}

    .btn-outline-secondary.btn-custom-control .form-check-input:checked {
        background-color: var(--secondary) !important
    }

    .btn-outline-secondary.btn-custom-control .form-check-input[type=checkbox]:indeterminate {
        background-color: var(--secondary);
        border-color: var(--secondary)
    }

.btn-primary.btn-custom-control .form-check-input, .btn-secondary.btn-custom-control .form-check-input {
    border-color: var(--light-text) !important
}

    .btn-primary.btn-custom-control .form-check-input:checked, .btn-secondary.btn-custom-control .form-check-input:checked {
        border-color: var(--light-text) !important
    }

.check-all-container .btn-sm.btn-custom-control {
    padding-left: 10px !important;
    font-size: .8em;
    padding-right: 2px !important
}

    .check-all-container .btn-sm.btn-custom-control .form-check {
        padding-top: 0
    }

.check-all-container .btn-custom-control .form-check, .check-all-container-checkbox-click .btn-custom-control .form-check {
    padding-top: .3rem
}

.hover-scale-up {
    backface-visibility: hidden;
    transition: transform var(--transition-time-short)
}

    .hover-scale-up:hover {
        transform: scale(1.03);
        z-index: 1
    }

.hover-scale-down {
    backface-visibility: hidden;
    transition: transform var(--transition-time-short)
}

    .hover-scale-down:hover {
        transform: scale(.98)
    }

.active-scale-up {
    backface-visibility: hidden;
    transition: transform var(--transition-time-short)
}

    .active-scale-up:active {
        z-index: 1;
        transform: scale(1.05)
    }

.active-scale-down {
    backface-visibility: hidden;
    transition: transform var(--transition-time-short)
}

    .active-scale-down:active {
        transform: scale(.95)
    }

.btn-group-vertical > .btn-check:checked + .btn, .btn-group-vertical > .btn-check:focus + .btn, .btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:hover, .btn-group > .btn-check:checked + .btn, .btn-group > .btn-check:focus + .btn, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus, .btn-group > .btn:hover {
    z-index: initial
}

.btn-check:active + .btn-outline-primary, .btn-check:checked + .btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
    color: var(--light-text) !important;
    background-color: var(--primary);
    border-color: initial
}

.btn-check:active + .btn-outline-secondary, .btn-check:checked + .btn-outline-secondary, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show, .btn-outline-secondary:active {
    color: var(--light-text) !important;
    background-color: var(--secondary);
    border-color: initial
}

.btn-check:active + .btn-primary, .btn-check:checked + .btn-primary, .btn-primary.active, .btn-primary:active, .show > .btn-primary.dropdown-toggle {
    background-color: var(--primary-darker);
    border-color: var(--primary-darker)
}

.btn-check:focus + .btn-primary, .btn-primary:focus {
    background-color: var(--primary-darker);
    border-color: var(--primary-darker)
}

.btn-check:not(:checked):focus + .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary)
}

.btn-check:active + .btn-secondary, .btn-check:checked + .btn-secondary, .btn-secondary.active, .btn-secondary:active, .show > .btn-secondary.dropdown-toggle {
    background-color: var(--secondary-darker);
    border-color: var(--secondary-darker)
}

.btn-check:focus + .btn-secondary, .btn-secondary:focus {
    background-color: var(--secondary-darker);
    border-color: var(--secondary-darker)
}

.btn-check:not(:checked):focus + .btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary)
}

.card {
    box-shadow: 0 4px 10px rgba(0,0,0,.03) !important;
    background: var(--foreground);
    border-radius: var(--border-radius-lg);
    border: initial
}

    .card.no-shadow {
        box-shadow: initial !important
    }

    .card .card-body, .card .card-footer, .card .card-header {
        padding: var(--card-spacing)
    }

    .card .half-padding.card-body, .card .half-padding.card-footer, .card .half-padding.card-header {
        padding: calc(var(--card-spacing)/ 2)
    }

    .card.sm .card-body, .card.sm .card-footer, .card.sm .card-header {
        padding: var(--card-spacing-sm)
    }

    .card .card-header .handle {
        cursor: default
    }

    .card .card-header {
        background: var(--foreground);
        border-color: rgba(var(--separator-rgb),.5)
    }

    .card .card-footer {
        background: initial;
        border-color: rgba(var(--separator-rgb),.3)
    }

    .card .card-img {
        border-radius: var(--border-radius-lg)
    }

    .card .card-img-top {
        width: 100%;
        border-radius: initial;
        border-top-left-radius: var(--border-radius-lg);
        border-top-right-radius: var(--border-radius-lg)
    }

    .card .card-img-overlay {
        background: rgba(0,0,0,.35);
        border-radius: var(--border-radius-lg)
    }

    .card .card-img-bottom {
        width: 100%;
        border-radius: initial;
        border-bottom-left-radius: var(--border-radius-lg);
        border-bottom-right-radius: var(--border-radius-lg)
    }

    .card .card-img-left {
        border-radius: initial;
        border-top-left-radius: var(--border-radius-lg);
        border-bottom-left-radius: var(--border-radius-lg);
        border-bottom-right-radius: initial;
        border-top-right-radius: initial
    }

@media (max-width:767.98px) {
    .card .card-img-left {
        border-radius: initial;
        border-bottom-left-radius: initial;
        border-top-left-radius: var(--border-radius-lg);
        border-top-right-radius: var(--border-radius-lg);
        border-bottom-right-radius: initial
    }
}

.card [class*=card-img-horizontal] {
    border-radius: initial;
    border-top-left-radius: var(--border-radius-lg);
    border-bottom-left-radius: var(--border-radius-lg);
    border-bottom-right-radius: initial;
    border-top-right-radius: initial;
    height: 100%
}

@media (max-width:575.98px) {
    .card .card-img-horizontal-sm {
        border-radius: initial;
        border-bottom-left-radius: initial;
        border-top-left-radius: var(--border-radius-lg);
        border-top-right-radius: var(--border-radius-lg);
        border-bottom-right-radius: initial
    }
}

@media (max-width:767.98px) {
    .card .card-img-horizontal-md {
        border-radius: initial;
        border-bottom-left-radius: initial;
        border-top-left-radius: var(--border-radius-lg);
        border-top-right-radius: var(--border-radius-lg);
        border-bottom-right-radius: initial
    }
}

@media (max-width:991.98px) {
    .card .card-img-horizontal-lg {
        border-radius: initial;
        border-bottom-left-radius: initial;
        border-top-left-radius: var(--border-radius-lg);
        border-top-right-radius: var(--border-radius-lg);
        border-bottom-right-radius: initial
    }
}

@media (max-width:1199.98px) {
    .card .card-img-horizontal-xl {
        border-radius: initial;
        border-bottom-left-radius: initial;
        border-top-left-radius: var(--border-radius-lg);
        border-top-right-radius: var(--border-radius-lg);
        border-bottom-right-radius: initial
    }
}

.card .card-footer {
    border-bottom-right-radius: var(--border-radius-lg);
    border-bottom-left-radius: var(--border-radius-lg)
}

.card .card[class*=border] {
    border: 1px solid var(--separator)
}

.card .card-header:first-child {
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg)
}

.card .card-img-overlay {
    padding: var(--card-spacing)
}

.card .card-top-buttons {
    right: 0;
    top: 0
}

@media (max-width:575.98px) {
    .card .card-top-buttons {
        padding: .35rem
    }
}

.card.activatable.context-menu-active:after, .card.active:after, .card.selected:after {
    box-shadow: inset 0 0 0 1px rgba(var(--primary-rgb),.5),0 4px 13px rgba(0,0,0,.04) !important;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    border-radius: var(--border-radius-lg);
    z-index: 0;
    pointer-events: none
}

.card .card {
    border-radius: var(--border-radius-md)
}

.card-top-buttons {
    position: absolute;
    right: 0;
    top: 0
}

    .card-top-buttons .btn {
        color: var(--primary) !important
    }

.card-deck {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -20px;
    margin-left: -20px
}

@media (max-width:767.98px) {
    .card-deck {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: initial;
        margin-left: initial
    }
}

.card-deck .card {
    margin-right: 20px;
    margin-left: 20px
}

@media (max-width:767.98px) {
    .card-deck .card {
        margin-right: initial;
        margin-left: initial
    }
}

.bg-primary .card-header {
    background-color: var(--primary)
}

.bg-secondary .card-header {
    background-color: var(--secondary)
}

.bg-tertiary .card-header {
    background-color: var(--tertiary)
}

.bg-quaternary .card-header {
    background-color: var(--quaternary)
}

.bg-warning .card-header {
    background-color: var(--warning)
}

.bg-danger .card-header {
    background-color: var(--danger)
}

.bg-success .card-header {
    background-color: var(--success)
}

.bg-info .card-header {
    background-color: var(--info)
}

.bg-light {
    background-color: var(--background-light) !important
}

    .bg-light .card-header {
        background-color: var(--background-light) !important;
        border-color: rgba(var(--muted-rgb),.6)
    }

    .bg-light .card-footer {
        border-color: rgba(var(--muted-rgb),.6)
    }

.bg-dark .card-header {
    background-color: var(--dark)
}

.border-primary.card {
    border: 1px solid var(--primary)
}

    .border-primary.card .card-header {
        border-color: var(--primary)
    }

.border-secondary {
    border: 1px solid var(--secondary)
}

    .border-secondary .card-header {
        border-color: var(--secondary)
    }

.border-tertiary {
    border: 1px solid var(--tertiary)
}

    .border-tertiary .card-header {
        border-color: var(--tertiary)
    }

.border-quaternary {
    border: 1px solid var(--quaternary)
}

    .border-quaternary .card-header {
        border-color: var(--quaternary)
    }

.border-info {
    border: 1px solid var(--info)
}

    .border-info .card-header {
        border-color: var(--info)
    }

.border-success {
    border: 1px solid var(--success)
}

    .border-success .card-header {
        border-color: var(--success)
    }

.border-danger {
    border: 1px solid var(--danger)
}

    .border-danger .card-header {
        border-color: var(--danger)
    }

.border-light {
    border: 1px solid var(--light)
}

    .border-light .card-header {
        border-color: var(--light)
    }

.border-dark {
    border: 1px solid var(--dark)
}

    .border-dark .card-header {
        border-color: var(--dark)
    }

.border-warning {
    border: 1px solid var(--warning)
}

    .border-warning .card-header {
        border-color: var(--warning)
    }

.p-card {
    padding: var(--card-spacing)
}

.pe-card {
    padding-right: var(--card-spacing)
}

.ps-card {
    padding-left: var(--card-spacing)
}

.pt-card {
    padding-top: var(--card-spacing)
}

.pb-card {
    padding-bottom: var(--card-spacing)
}

.m-card {
    margin: var(--card-spacing)
}

.mb-card {
    margin-bottom: var(--card-spacing)
}

.mt-card {
    margin-top: var(--card-spacing)
}

.ms-card {
    margin-left: var(--card-spacing)
}

.me-card {
    margin-right: var(--card-spacing)
}

.list-group-item.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--light-text)
}

    .list-group-item.active * {
        color: var(--light-text)
    }

.list-group-item-action:focus, .list-group-item-action:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--light-text)
}

    .list-group-item-action:focus *, .list-group-item-action:hover * {
        color: var(--light-text)
    }

.list-group-item {
    background: var(--foreground);
    color: var(--body);
    border-color: rgba(var(--separator-rgb),.5);
    padding: var(--card-spacing-sm) var(--card-spacing)
}

    .list-group-item.list-group-item-primary {
        background: var(--primary)
    }

    .list-group-item.list-group-item-secondary {
        background: var(--secondary)
    }

    .list-group-item.list-group-item-success {
        background: var(--success)
    }

    .list-group-item.list-group-item-danger {
        background: var(--danger)
    }

    .list-group-item.list-group-item-warning {
        background: var(--warning)
    }

    .list-group-item.list-group-item-info {
        background: var(--info)
    }

    .list-group-item.list-group-item-light {
        background: var(--light)
    }

    .list-group-item.list-group-item-dark {
        background: var(--dark);
        color: var(--light)
    }

    .list-group-item.disabled, .list-group-item:disabled {
        color: var(--muted);
        background: var(--foreground)
    }

    .list-group-item:first-child {
        border-top-left-radius: var(--border-radius-md);
        border-top-right-radius: var(--border-radius-md)
    }

    .list-group-item:last-child {
        border-bottom-right-radius: var(--border-radius-md);
        border-bottom-left-radius: var(--border-radius-md)
    }

.list-group-horizontal > .list-group-item:first-child {
    border-top-left-radius: var(--border-radius-md);
    border-bottom-left-radius: var(--border-radius-md);
    border-top-right-radius: initial;
    border-bottom-right-radius: initial
}

.list-group-horizontal > .list-group-item:last-child {
    border-top-left-radius: initial;
    border-bottom-left-radius: initial;
    border-top-right-radius: var(--border-radius-md);
    border-bottom-right-radius: var(--border-radius-md)
}

@media (min-width:576px) {
    .list-group-horizontal-sm > .list-group-item:first-child {
        border-top-left-radius: var(--border-radius-md);
        border-bottom-left-radius: var(--border-radius-md);
        border-top-right-radius: initial;
        border-bottom-right-radius: initial
    }

    .list-group-horizontal-sm > .list-group-item:last-child {
        border-top-left-radius: initial;
        border-bottom-left-radius: initial;
        border-top-right-radius: var(--border-radius-md);
        border-bottom-right-radius: var(--border-radius-md)
    }
}

@media (min-width:768px) {
    .list-group-horizontal-md > .list-group-item:first-child {
        border-top-left-radius: var(--border-radius-md);
        border-bottom-left-radius: var(--border-radius-md);
        border-top-right-radius: initial;
        border-bottom-right-radius: initial
    }

    .list-group-horizontal-md > .list-group-item:last-child {
        border-top-left-radius: initial;
        border-bottom-left-radius: initial;
        border-top-right-radius: var(--border-radius-md);
        border-bottom-right-radius: var(--border-radius-md)
    }
}

@media (min-width:992px) {
    .list-group-horizontal-lg > .list-group-item:first-child {
        border-top-left-radius: var(--border-radius-md);
        border-bottom-left-radius: var(--border-radius-md);
        border-top-right-radius: initial;
        border-bottom-right-radius: initial
    }

    .list-group-horizontal-lg > .list-group-item:last-child {
        border-top-left-radius: initial;
        border-bottom-left-radius: initial;
        border-top-right-radius: var(--border-radius-md);
        border-bottom-right-radius: var(--border-radius-md)
    }
}

@media (min-width:1200px) {
    .list-group-horizontal-xl > .list-group-item:first-child {
        border-top-left-radius: var(--border-radius-md);
        border-bottom-left-radius: var(--border-radius-md);
        border-top-right-radius: initial;
        border-bottom-right-radius: initial
    }

    .list-group-horizontal-xl > .list-group-item:last-child {
        border-top-left-radius: initial;
        border-bottom-left-radius: initial;
        border-top-right-radius: var(--border-radius-md);
        border-bottom-right-radius: var(--border-radius-md)
    }
}

@media (min-width:1400px) {
    .list-group-horizontal-xxl > .list-group-item:first-child {
        border-top-left-radius: var(--border-radius-md);
        border-bottom-left-radius: var(--border-radius-md);
        border-top-right-radius: initial;
        border-bottom-right-radius: initial
    }

    .list-group-horizontal-xxl > .list-group-item:last-child {
        border-top-left-radius: initial;
        border-bottom-left-radius: initial;
        border-top-right-radius: var(--border-radius-md);
        border-bottom-right-radius: var(--border-radius-md)
    }
}

.card.hover-border-primary {
    cursor: pointer
}

    .card.hover-border-primary:hover:after {
        box-shadow: inset 0 0 0 1px rgba(var(--primary-rgb),.5),0 4px 13px rgba(0,0,0,.04) !important;
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        top: 0;
        width: 100%;
        border-radius: var(--border-radius-lg);
        z-index: 0;
        pointer-events: none
    }

.hover-img-scale-up {
    overflow: hidden;
    backface-visibility: hidden;
    transform: scale(1)
}

    .hover-img-scale-up img.scale {
        transition: transform var(--transition-time)
    }

    .hover-img-scale-up:hover img.scale {
        transform: scale(1.1)
    }

.hover-img-scale-down {
    overflow: hidden;
    backface-visibility: hidden;
    transform: scale(1)
}

    .hover-img-scale-down img.scale {
        transition: transform var(--transition-time);
        transform: scale(1.15)
    }

    .hover-img-scale-down:hover img.scale {
        transform: scale(1.05)
    }

.hover-reveal .reveal-content {
    opacity: 0;
    transition: opacity var(--transition-time)
}

.hover-reveal:hover .reveal-content {
    opacity: 1
}

.hover-reveal-buttons .lower-opacity {
    transition-property: opacity;
    transition-duration: var(--transition-time)
}

.hover-reveal-buttons:hover .lower-opacity {
    opacity: .35
}

.dropdown-menu {
    line-height: 1.3;
    background-color: var(--foreground);
    border-radius: var(--border-radius-md);
    border-color: var(--separator);
    color: var(--body);
    font-family: var(--font);
    font-size: 1em
}

    .dropdown-menu.shadow {
        border: initial;
        box-shadow: 0 4px 13px rgba(0,0,0,.07) !important
    }

    .dropdown-menu ul {
        padding-left: 0;
        list-style: none;
        margin-bottom: 0
    }

        .dropdown-menu ul li {
            padding: 3px 0 3px 0
        }

    .dropdown-menu .dropdown-item, .dropdown-menu .nav-link, .dropdown-menu a {
        text-decoration: initial;
        color: var(--body);
        background: initial;
        border: initial !important;
        padding-top: .5rem;
        padding-bottom: .5rem
    }

        .dropdown-menu .dropdown-item.active, .dropdown-menu .dropdown-item:hover, .dropdown-menu .nav-link.active, .dropdown-menu .nav-link:hover, .dropdown-menu a.active, .dropdown-menu a:hover {
            background-color: initial;
            color: var(--primary) !important
        }

.nav-tabs .dropdown-menu {
    border-top-left-radius: var(--border-radius-md);
    border-top-right-radius: var(--border-radius-md)
}

.dropdown-item.disabled, .dropdown-item:disabled {
    color: var(--body);
    opacity: .5
}

.dropdown-toggle-split::after {
    margin-bottom: 0
}

.dropend .dropdown-toggle-split::after, .dropend .dropdown-toggle::after, .dropup .dropdown-toggle-split::after {
    margin-bottom: 1px
}

.dropstart .caret-absolute {
    position: relative
}

    .dropstart .caret-absolute:before {
        position: absolute;
        left: 13px;
        top: calc(50% - 3px)
    }

.dropend .caret-absolute {
    position: relative
}

    .dropend .caret-absolute:after {
        position: absolute;
        right: 13px;
        top: calc(50% - 3px)
    }

.dropdown-toggle::after, .dropend .dropdown-toggle::after, .dropstart .dropdown-toggle::before, .dropup .dropdown-toggle::after {
    width: 5px;
    height: 5px;
    border: initial;
    transform: rotate(45deg);
    border-top: 1px solid;
    border-right: 1px solid;
    margin-top: initial;
    vertical-align: middle;
    margin-bottom: 2px
}

.dropstart .dropdown-toggle::before {
    transform: rotate(225deg)
}

.dropstart .dropdown-toggle.show::before {
    transform: rotate(135deg)
}

.dropup .dropdown-toggle.show::after {
    transform: rotate(-45deg)
}

.dropdown-toggle.show::after {
    transform: rotate(135deg)
}

.dropdown-toggle[data-bs-toggle=collapse]:not(.collapsed)::after {
    transform: rotate(135deg)
}

.dropdown-menu.dropdown-menu-sm {
    min-width: 7rem;
    padding: .5rem 0
}

    .dropdown-menu.dropdown-menu-sm .dropdown-item, .dropdown-menu.dropdown-menu-sm .nav-link, .dropdown-menu.dropdown-menu-sm a {
        padding: .4rem 1.25rem;
        font-size: .9em
    }

.dropdown-header {
    font-size: .8em
}

.dropdown-divider {
    border-color: var(--separator)
}

.dropdown-submenu.dropend .dropdown-menu {
    margin-left: 4px !important
}

.dropdown-submenu.dropstart .dropdown-menu {
    margin-right: 4px !important
}

.navbar .dropdown-submenu .dropdown-menu, [x-placement^=bottom-] .dropdown-submenu .dropdown-menu {
    bottom: auto;
    margin-top: calc(-.5rem - 1px) !important
}

[x-placement^=top-] .dropdown-submenu .dropdown-menu {
    top: auto;
    bottom: 0;
    margin-bottom: calc(-.5rem - 1px) !important
}

.dropdown-submenu.dropend > .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.dropdown-header, .dropdown-item, .dropdown-item-text {
    padding: .5rem 1.5rem
}

.dropend.dropdown-submenu .dropdown-menu {
    bottom: initial
}

.custom-select, .form-control, .form-select {
    font-size: 1em;
    height: auto;
    min-height: var(--input-height);
    color: var(--body);
    box-shadow: initial !important;
    background-color: var(--foreground);
    border-color: var(--separator);
    border-radius: var(--border-radius-md);
    filter: none;
    transition: border-color .15s ease-in-out
}

    .custom-select.borderless, .form-control.borderless, .form-select.borderless {
        border: initial;
        box-shadow: initial
    }

    .custom-select:focus, .form-control:focus, .form-select:focus {
        background-color: var(--foreground);
        color: var(--body);
        border-color: rgba(var(--primary-rgb),1)
    }

    .custom-select.shadow, .form-control.shadow, .form-select.shadow {
        border: initial;
        box-shadow: 0 4px 13px rgba(0,0,0,.07) !important
    }

.form-text {
    color: var(--muted)
}

.form-select {
    padding-right: 2rem
}

textarea.form-control {
    height: initial
}

.col-form-label, .form-label {
    color: var(--alternate)
}

.form-control-muted {
    border-color: var(--muted)
}

    .form-control-muted:focus {
        border-color: var(--alternate)
    }

.form-control-separator {
    border-color: var(--separator)
}

    .form-control-separator:focus {
        border-color: var(--alternate)
    }

.custom-select-sm, .form-control-sm {
    min-height: 30px;
    font-size: .9em;
    padding: .25rem .75rem;
    line-height: 1.25
}

.custom-select-lg, .form-control-lg {
    height: 44px;
    font-size: 1.25em;
    line-height: 1.5;
    padding: .375rem .75rem .375rem .75rem
}

.form-control-xl {
    font-size: 1.6em;
    height: 56px
}

.search-input-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    pointer-events: none;
    width: 17px;
    height: 17px
}

.custom-select {
    background: var(--foreground) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23777777' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px
}

.search-input-container {
    position: relative;
    border-radius: var(--border-radius-md)
}

    .search-input-container .search-delete-icon, .search-input-container .search-magnifier-icon {
        color: var(--muted);
        position: absolute;
        right: 0;
        top: 0;
        width: 40px;
        height: 100%;
        text-align: center;
        cursor: pointer
    }

        .search-input-container .search-delete-icon:hover, .search-input-container .search-magnifier-icon:hover {
            color: var(--primary)
        }

        .search-input-container .search-delete-icon svg, .search-input-container .search-magnifier-icon svg {
            width: 17px;
            height: 17px;
            margin-top: 9px
        }

    .search-input-container input {
        background: 0 0 !important;
        width: calc(100% - 25px);
        border: initial
    }

    .search-input-container.search-sm .search-delete-icon, .search-input-container.search-sm .search-magnifier-icon {
        width: 28px
    }

        .search-input-container.search-sm .search-delete-icon svg, .search-input-container.search-sm .search-magnifier-icon svg {
            width: 15px;
            height: 15px;
            margin-top: 4px
        }

.form-control:disabled, .form-control[readonly] {
    background: rgba(var(--separator-rgb),.5) !important;
    border-color: rgba(var(--separator-rgb),.5) !important;
    color: var(--muted);
    -webkit-text-fill-color: var(--muted) !important
}

    .form-control:disabled ~ span {
        background: 0 0 !important
    }

.filled {
    position: relative
}

    .filled .form-control {
        min-height: 44px;
        border: 1px solid transparent;
        background: var(--background-light);
        padding-left: 45px
    }

        .filled .form-control:focus {
            border-color: rgba(var(--primary-rgb),1);
            background: initial
        }

        .filled .form-control:disabled, .filled .form-control[readonly] {
            background: rgba(var(--separator-rgb),.5) !important;
            color: var(--muted)
        }

            .filled .form-control:disabled > svg, .filled .form-control[readonly] > svg {
                color: rgba(var(--alternate-rgb),.25)
            }

    .filled .form-control-lg {
        min-height: 52px
    }

    .filled .form-control-sm {
        min-height: var(--input-height)
    }

    .filled > svg {
        position: absolute;
        top: 12px;
        left: 16px;
        color: rgba(var(--alternate-rgb),.5);
        z-index: 1
    }

    .filled.lg > svg {
        top: 15px
    }

    .filled.sm > svg {
        top: 9px;
        font-size: 14px;
        width: 17px;
        height: 17px
    }

    .filled textarea {
        padding-top: .7rem;
        padding-bottom: .7rem
    }

    .filled > textarea ~ svg {
        margin-top: 0;
        top: 14px
    }

    .filled.custom-control-container {
        min-height: 44px;
        border: 1px solid transparent;
        background: var(--background-light);
        padding-left: 45px;
        border-radius: var(--border-radius-md);
        padding-top: .75rem;
        padding-bottom: .25rem;
        padding-right: .75rem
    }

    .filled .form-check {
        margin-bottom: initial;
        margin-top: 0
    }

[disabled] .filled i {
    opacity: .3
}

.top-label .bootstrap-tagsinput, .top-label .form-control {
    padding: 1.5rem .75rem .25rem .75rem
}

.top-label {
    display: block;
    position: relative
}

    .top-label label:not(.form-check-label), .top-label > span:last-of-type {
        position: absolute;
        cursor: text;
        font-size: .8em !important;
        line-height: 1.1rem !important;
        opacity: 1;
        top: .5rem;
        left: .75rem;
        z-index: 1;
        line-height: 1;
        padding: 0 1px;
        background: var(--foreground)
    }

        .top-label label:not(.form-check-label)::after, .top-label > span::after {
            content: ' ';
            display: block;
            position: absolute;
            height: 2px;
            top: 50%;
            left: -.2em;
            right: -.2em;
            z-index: -1
        }

.input-group .top-label {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.top-label textarea ~ span {
    left: 0 !important;
    top: 0 !important;
    margin-top: 1px;
    margin-left: 1px;
    padding-left: .75rem !important;
    padding-top: calc(.5rem - 1px) !important;
    width: calc(100% - 2px);
    border-top-left-radius: var(--border-radius-md);
    border-top-right-radius: var(--border-radius-md)
}

.top-label .bootstrap-tagsinput, .top-label .form-control {
    height: auto;
    min-height: 52px
}

.top-label textarea.form-control {
    min-height: 52px;
    height: initial
}

.top-label select.form-control:not([size]):not([multiple]) {
    height: auto;
    min-height: 52px;
    padding: 1.7rem .75rem .5rem .5rem
}

.top-label label:not(.form-check-label), .top-label > span {
    color: var(--muted)
}

.top-label .bootstrap-tagsinput.form-control-lg, .top-label .form-control.form-control-lg {
    min-height: 62px;
    height: auto;
    padding: 1.8rem .75rem .5rem .75rem
}

.top-label textarea.form-control.form-control-lg {
    min-height: 62px;
    height: auto;
    padding: 1.8rem .75rem .5rem .75rem
}

.top-label select.form-control.form-control-lg:not([size]):not([multiple]) {
    min-height: 62px;
    height: auto;
    padding: 1.8rem .75rem .5rem .75rem
}

.top-label .bootstrap-tagsinput.form-control-sm, .top-label .form-control.form-control-sm {
    min-height: 44px;
    height: auto;
    padding: 1.4rem .75rem .25rem .75rem
}

.top-label textarea.form-control.form-control-sm {
    min-height: 44px;
    height: initial;
    padding: 1.4rem .75rem .25rem .75rem
}

.top-label select.form-control.form-control-sm:not([size]):not([multiple]) {
    min-height: 44px;
    height: auto;
    padding: 1.4rem .75rem .25rem .75rem
}

.top-label .form-check {
    margin-left: 4px;
    margin-bottom: initial;
    margin-top: 0
}

.top-label.custom-control-container {
    border: 1px solid var(--separator) !important;
    background: var(--foreground) !important;
    border-radius: var(--border-radius-md) !important;
    color: var(--alternate) !important;
    padding: 1.5rem .75rem .1rem .75rem !important;
    height: auto;
    min-height: 52px
}

input:-webkit-autofill, input:-webkit-autofill:hover, select:-webkit-autofill, select:-webkit-autofill:hover, textarea:-webkit-autofill, textarea:-webkit-autofill:hover {
    -webkit-text-fill-color: var(--body);
    border-color: var(--separator) !important;
    box-shadow: 0 0 0 1000px var(--foreground) inset !important;
    -webkit-box-shadow: 0 0 0 1000px var(--foreground) inset !important;
    background-color: initial !important;
    background-clip: content-box !important
}

    input:-webkit-autofill ~ label, select:-webkit-autofill ~ label, textarea:-webkit-autofill ~ label {
        transition: initial
    }

    input:-webkit-autofill:focus, select:-webkit-autofill:focus, textarea:-webkit-autofill:focus {
        -webkit-text-fill-color: var(--body);
        border-color: rgba(var(--primary-rgb),1) !important;
        box-shadow: 0 0 0 1000px var(--foreground) inset !important;
        -webkit-box-shadow: 0 0 0 1000px var(--foreground) inset !important;
        background-color: initial !important;
        background-clip: content-box !important
    }

.filled input:-webkit-autofill, .filled input:-webkit-autofill:focus, .filled input:-webkit-autofill:hover, .filled select:-webkit-autofill, .filled select:-webkit-autofill:focus, .filled select:-webkit-autofill:hover, .filled textarea:-webkit-autofill, .filled textarea:-webkit-autofill:focus, .filled textarea:-webkit-autofill:hover {
    -webkit-text-fill-color: var(--body);
    border-color: var(--separator) !important;
    box-shadow: 0 0 0 1000px var(--separator-light) inset !important;
    -webkit-box-shadow: 0 0 0 1000px var(--foreground) inset !important;
    background-color: initial !important;
    background-clip: content-box !important
}

.form-check-input[type=checkbox] {
    border-radius: var(--border-radius-sm)
}

.form-switch.form-check {
    padding-left: 2.5em
}

    .form-switch.form-check .form-check-input {
        margin-left: -2.5em
    }

.form-switch .form-check-input {
    border-radius: var(--border-radius-md)
}

    .form-switch .form-check-input:focus {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280,0,0,0.25%29'/%3e%3c/svg%3e")
    }

    .form-switch .form-check-input:checked:focus {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")
    }

.form-check.custom-icon .content {
    display: flex !important;
    flex-direction: column
}

.form-check.custom-icon .form-check-label {
    padding-top: initial
}

    .form-check.custom-icon .form-check-label::before {
        width: 26px;
        min-width: 26px;
        height: 26px;
        left: -40px;
        top: 0;
        border-radius: var(--border-radius-xl);
        border-color: var(--muted) !important;
        opacity: .3
    }

.form-check.custom-icon .form-check-input {
    width: 25px;
    height: 25px;
    background: initial !important;
    font-size: 16px;
    text-align: center;
    padding-top: 1px;
    border-radius: var(--border-radius-xl);
    border-color: var(--muted) !important;
    color: var(--muted) !important;
    opacity: .3;
    margin-top: 0;
    margin-right: 1rem
}

    .form-check.custom-icon .form-check-input:checked {
        border-color: var(--primary) !important;
        background: initial !important;
        opacity: 1
    }

        .form-check.custom-icon .form-check-input:checked:after {
            font-family: CS-Interface !important;
            font-style: normal;
            font-weight: 400;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            color: var(--primary) !important;
            opacity: 1;
            content: '\e913'
        }

    .form-check.custom-icon .form-check-input[type=radio]:checked:after {
        content: '\e922'
    }

.form-check.custom-card .form-check-input:checked ~ .form-check-label::before, .form-check.custom-card:hover .form-check-label::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: inset 0 0 0 1px rgba(var(--primary-rgb),.5) !important
}

.form-check.custom-card .form-check-input {
    border: initial;
    background-color: initial !important
}

    .form-check.custom-card .form-check-input:checked {
        border: 1px solid var(--primary);
        background-color: var(--primary) !important
    }

.form-check .custom-border {
    border: initial !important;
    box-shadow: initial !important
}

    .form-check .custom-border .form-check-input:checked ~ .form-check-label::before, .form-check .custom-border:hover .form-check-label::before {
        box-shadow: inset 0 0 0 1px rgba(var(--primary-rgb),.5) !important
    }

    .form-check .custom-border.form-check-label::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: var(--border-radius-md);
        box-shadow: inset 0 0 0 1px var(--separator)
    }

.custom-icon input[type=radio] .form-check-label::after {
    content: '\e9d3'
}

.input-group.spinner {
    z-index: 0
}

    .input-group.spinner .input-group-text {
        flex-direction: column;
        justify-content: center;
        padding-top: 0;
        padding-bottom: 0;
        padding: 0
    }

        .input-group.spinner .input-group-text .spin-down, .input-group.spinner .input-group-text .spin-up {
            display: flex;
            background: 0 0;
            border: none;
            padding: 0;
            height: 40%;
            padding: 0 1rem;
            display: flex;
            align-items: center
        }

            .input-group.spinner .input-group-text .spin-down.single, .input-group.spinner .input-group-text .spin-up.single {
                height: 100%;
                color: var(--alternate)
            }

            .input-group.spinner .input-group-text .spin-down:hover .arrow, .input-group.spinner .input-group-text .spin-up:hover .arrow {
                border-color: var(--primary)
            }

            .input-group.spinner .input-group-text .spin-down:hover, .input-group.spinner .input-group-text .spin-up:hover {
                color: var(--primary)
            }

            .input-group.spinner .input-group-text .spin-down .arrow, .input-group.spinner .input-group-text .spin-up .arrow {
                border: initial;
                border-top: 1px solid var(--alternate);
                border-right: 1px solid var(--alternate);
                width: 5px;
                height: 5px;
                margin: 0 auto
            }

            .input-group.spinner .input-group-text .spin-up .arrow {
                transform: rotate(-45deg)
            }

            .input-group.spinner .input-group-text .spin-down .arrow {
                transform: rotate(135deg)
            }

.form-check.checked-line-through .form-check-input:checked ~ .form-check-label {
    text-decoration: line-through
}

    .form-check.checked-line-through .form-check-input:checked ~ .form-check-label span {
        text-decoration: line-through
    }

.form-check.checked-opacity-100 .form-check-input:checked ~ .form-check-label > div:first-of-type, .form-check.checked-opacity-100 .form-check-input:checked ~ .form-check-label > span:first-of-type {
    opacity: 1
}

.form-check.checked-opacity-75 .form-check-input:checked ~ .form-check-label > div:first-of-type, .form-check.checked-opacity-75 .form-check-input:checked ~ .form-check-label > span:first-of-type {
    opacity: .75
}

.form-check.checked-opacity-50 .form-check-input:checked ~ .form-check-label > div:first-of-type, .form-check.checked-opacity-50 .form-check-input:checked ~ .form-check-label > span:first-of-type {
    opacity: .5
}

.form-check.checked-opacity-25 .form-check-input:checked ~ .form-check-label > div:first-of-type, .form-check.checked-opacity-25 .form-check-input:checked ~ .form-check-label > span:first-of-type {
    opacity: .25
}

.form-check.checked-opacity-0 .form-check-input:checked ~ .form-check-label > div:first-of-type, .form-check.checked-opacity-0 .form-check-input:checked ~ .form-check-label > span:first-of-type {
    opacity: 0
}

.form-check.unchecked-opacity-100 .form-check-input:not(:checked) ~ .form-check-label > div:first-of-type, .form-check.unchecked-opacity-100 .form-check-input:not(:checked) ~ .form-check-label > span:first-of-type {
    opacity: 1
}

.form-check.unchecked-opacity-75 .form-check-input:not(:checked) ~ .form-check-label > div:first-of-type, .form-check.unchecked-opacity-75 .form-check-input:not(:checked) ~ .form-check-label > span:first-of-type {
    opacity: .75
}

.form-check.unchecked-opacity-50 .form-check-input:not(:checked) ~ .form-check-label > div:first-of-type, .form-check.unchecked-opacity-50 .form-check-input:not(:checked) ~ .form-check-label > span:first-of-type {
    opacity: .5
}

.form-check.unchecked-opacity-25 .form-check-input:not(:checked) ~ .form-check-label > div:first-of-type, .form-check.unchecked-opacity-25 .form-check-input:not(:checked) ~ .form-check-label > span:first-of-type {
    opacity: .25
}

.form-check.unchecked-opacity-0 .form-check-input:not(:checked) ~ .form-check-label > div:first-of-type, .form-check.unchecked-opacity-0 .form-check-input:not(:checked) ~ .form-check-label > span:first-of-type {
    opacity: 0
}

textarea {
    resize: none
}

.form-check {
    margin-bottom: .25rem;
    padding-left: 1.75em;
    line-height: 1.5
}

.form-check-input[type=checkbox]:indeterminate {
    background-color: var(--primary);
    border-color: var(--primary)
}

.form-check-input, .form-check-input input, .form-check-input label {
    outline: initial !important;
    box-shadow: initial !important
}

.form-check-input {
    width: 16px;
    height: 16px
}

.form-check .form-check-input {
    border-color: var(--muted) !important;
    background-color: initial;
    margin-top: .2em;
    margin-left: -1.75em
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary) !important
}

.form-check-label {
    color: var(--body);
    margin-top: 1px
}

.form-floating > label {
    color: var(--alternate);
    padding: .85rem .75rem
}

.form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
    color: var(--muted);
    opacity: 1
}

.form-floating > textarea.form-control ~ label {
    transition: transform .1s ease-in-out,padding .1s ease-in-out,background-color 0s ease-in-out,height .1s ease-in-out
}

.form-floating > textarea.form-control:focus ~ label, .form-floating > textarea.form-control:not(:placeholder-shown) ~ label {
    background-color: var(--foreground);
    padding-top: .25rem;
    padding-bottom: .05rem;
    border-top-left-radius: var(--border-radius-md);
    height: auto;
    -webkit-transform: scale(.85) translateY(1px) translateX(.15rem);
    transform: scale(.85) translateY(1px) translateX(.15rem);
    transition: transform .1s ease-in-out,padding .1s ease-in-out,background-color .1s ease-in-out .1s,height .1s ease-in-out
}

.form-floating > .form-control, .form-floating > .form-select {
    height: auto;
    min-height: 52px;
    padding: .85rem .75rem
}

    .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
        padding-top: 1.45rem;
        padding-bottom: .25rem
    }

.form-floating .form-control.form-control-lg {
    min-height: 62px;
    height: auto;
    padding: 1.2rem .75rem 1.2rem .75rem
}

    .form-floating .form-control.form-control-lg ~ label {
        padding: 1.2rem .75rem 1.2rem .75rem
    }

    .form-floating .form-control.form-control-lg:focus, .form-floating .form-control.form-control-lg:not(:placeholder-shown) {
        padding-top: 2rem;
        padding-bottom: .4rem
    }

.form-floating .form-control.form-control-sm {
    min-height: 44px;
    height: auto;
    padding: .7rem .75rem .8rem .75rem
}

    .form-floating .form-control.form-control-sm ~ label {
        padding: .7rem .75rem .8rem .75rem
    }

    .form-floating .form-control.form-control-sm:focus, .form-floating .form-control.form-control-sm:not(:placeholder-shown) {
        padding-top: 1.4rem;
        padding-bottom: .2rem
    }

.col, .col-lg, .col-md, .col-sm, .col-xl {
    min-width: 0
}

.input-group-text {
    border-radius: var(--border-radius-md);
    font-size: 1em;
    padding: .25rem .75rem .35rem .75rem;
    background-color: var(--foreground);
    border-color: var(--separator);
    color: var(--body)
}

.input-group .form-control {
    border-top-right-radius: var(--border-radius-md);
    border-bottom-right-radius: var(--border-radius-md)
}

.input-group-lg > .custom-select, .input-group-lg > .form-control {
    border-radius: var(--border-radius-md)
}

.input-group .top-label .form-control {
    width: 100%
}

.input-group .top-label:not(:last-child), .input-group .top-label:not(:last-child) .form-control {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-right: 0
}

.input-group .top-label:not(:first-child), .input-group .top-label:not(:first-child) .form-control {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.custom-file, .custom-file-input, .custom-file-label {
    height: var(--input-height);
    border-color: var(--separator);
    background: var(--foreground)
}

.custom-file-label {
    border-radius: var(--border-radius-md)
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.custom-file-label::after {
    border-radius: var(--border-radius-md);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    height: 34px;
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--light-text)
}

.input-group-lg > .btn, .input-group-lg > .form-control, .input-group-lg > .form-select, .input-group-lg > .input-group-text {
    height: 44px;
    font-size: 1.25em;
    line-height: 1.5
}

.input-group-sm > .btn, .input-group-sm > .form-control, .input-group-sm > .form-select, .input-group-sm > .input-group-text {
    border-radius: var(--border-radius-md);
    font-size: .9em;
    padding: .25rem .75rem;
    height: 28px;
    min-height: 28px
}

.input-group-lg > .btn, .input-group-lg > .form-control, .input-group-lg > .form-select, .input-group-lg > .input-group-text {
    border-radius: var(--border-radius-md)
}

.input-group-text .form-check-input {
    margin-top: 1px !important
}

.input-group .form-control[type=file] {
    padding-left: .75rem;
    padding-right: .75rem;
    line-height: 1.6
}

input[type=file]::file-selector-button {
    background: var(--foreground);
    color: var(--body)
}

.modal-body, .modal-footer, .modal-header {
    padding: var(--card-spacing)
}

.modal-content {
    border-radius: var(--border-radius-lg);
    background: var(--foreground)
}

.modal-header {
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg);
    border-color: var(--separator)
}

.modal-footer {
    border-bottom-left-radius: var(--border-radius-lg);
    border-bottom-right-radius: var(--border-radius-lg);
    border-color: var(--separator)
}

.modal-under-nav .modal-dialog {
    margin-top: var(--nav-size-slim)
}

.modal-close-out .btn-close {
    position: absolute;
    right: -50px;
    top: 0;
    background: var(--foreground);
    opacity: 1;
    color: var(--primary);
    border-radius: var(--border-radius-md);
    width: var(--input-height);
    height: var(--input-height);
    margin: 0;
    padding: 0
}

@media (max-width:767.98px) {
    .modal-close-out .btn-close {
        right: 0;
        top: -50px
    }
}

.modal-close-out .modal-dialog:not(.modal-dialog-centered) {
    margin-top: var(--nav-size-slim)
}

.modal-right {
    padding-right: 0 !important
}

    .modal-right .modal-dialog {
        margin: 0 auto;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
        height: 100%;
        max-width: 330px
    }

    .modal-right .modal-body {
        height: 100% !important
    }

    .modal-right .modal-content {
        min-height: 100%;
        border: initial;
        border-radius: initial;
        border-top-left-radius: var(--border-radius-lg);
        border-bottom-left-radius: var(--border-radius-lg)
    }

    .modal-right .modal-header {
        flex: 0 0 var(--nav-size-slim);
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-top-left-radius: var(--border-radius-lg)
    }

    .modal-right .modal-footer {
        justify-content: center;
        flex-grow: 0;
        flex-shrink: 0;
        border-bottom-left-radius: var(--border-radius-lg)
    }

    .modal-right.modal.fade .modal-dialog {
        transform: translate(25%,0)
    }

    .modal-right.modal.show .modal-dialog {
        transform: translate(0,0)
    }

    .modal-right.large .modal-dialog {
        max-width: 530px
    }

.modal-left {
    padding-left: 0 !important
}

    .modal-left .modal-dialog {
        margin: 0 auto;
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 0;
        height: 100%;
        max-width: 330px
    }

    .modal-left .modal-body {
        height: 100% !important
    }

    .modal-left .modal-content {
        min-height: 100%;
        border: initial;
        border-radius: initial;
        border-top-right-radius: var(--border-radius-lg);
        border-bottom-right-radius: var(--border-radius-lg)
    }

    .modal-left .modal-header {
        flex: 0 0 var(--nav-size-slim);
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-top-right-radius: var(--border-radius-lg)
    }

    .modal-left .modal-footer {
        justify-content: center;
        flex-grow: 0;
        flex-shrink: 0;
        border-bottom-right-radius: var(--border-radius-lg)
    }

    .modal-left.modal.fade .modal-dialog {
        transform: translate(-25%,0)
    }

    .modal-left.modal.show .modal-dialog {
        transform: translate(0,0)
    }

    .modal-left.large .modal-dialog {
        max-width: 530px
    }

.modal-dialog-scrollable.long .modal-body {
    overflow: initial
}

    .modal-dialog-scrollable.long .modal-body .scroll, .modal-dialog-scrollable.long .modal-body .scroll-track-visible {
        max-height: calc(100vh - 25rem)
    }

.modal-dialog-scrollable.full {
    max-height: 100% !important
}

    .modal-dialog-scrollable.full .modal-content {
        height: 100%;
        min-height: unset
    }

    .modal-dialog-scrollable.full .modal-body {
        overflow: initial;
        max-height: 100% !important
    }

        .modal-dialog-scrollable.full .modal-body .scroll, .modal-dialog-scrollable.full .modal-body .scroll-track-visible {
            max-height: 100%;
            height: 100%
        }

.modal-dialog-scrollable.short .modal-body {
    overflow: initial
}

    .modal-dialog-scrollable.short .modal-body .scroll, .modal-dialog-scrollable.short .modal-body .scroll-track-visible {
        max-height: calc(50vh)
    }

.modal.modal-right .os-content {
    padding: 0 !important
}

.modal.modal-right .os-host-resize-disabled.os-host-scrollbar-horizontal-hidden > .os-scrollbar-vertical {
    padding-right: 0;
    padding-left: 4px
}

.modal.modal-left .os-content {
    padding: 0 !important
}

.modal.modal-left .os-host-resize-disabled.os-host-scrollbar-horizontal-hidden > .os-scrollbar-vertical {
    padding-right: 4px;
    padding-left: 0
}

.modal-semi-full {
    max-width: 90%;
    height: 95%;
    margin-left: auto;
    margin-right: auto
}

    .modal-semi-full .modal-content {
        height: 100%
    }

.page-item {
    margin: 0 5px;
    text-align: center
}

.page-link {
    outline: initial !important;
    box-shadow: initial;
    border: initial;
    padding: 8px 9px;
    line-height: 1.5;
    font-size: 1em;
    width: var(--input-height);
    height: var(--input-height);
    color: var(--primary);
    border-radius: var(--border-radius-md) !important;
    background: var(--foreground)
}

    .page-link:focus {
        background: var(--foreground);
        color: var(--primary)
    }

    .page-link:hover, .page-link:hover:focus {
        background: var(--primary);
        color: var(--light-text)
    }

    .page-link svg {
        width: 15px;
        height: 15px;
        vertical-align: top;
        margin-top: 2px;
        margin-left: 2px
    }

    .page-link i {
        margin-left: 1px
    }

.page-item.active .page-link {
    background: var(--primary);
    box-shadow: initial !important
}

.page-item.disabled .page-link {
    opacity: .5;
    color: var(--primary);
    background: var(--foreground);
    box-shadow: initial !important
}

.page-item:first-child .page-link, .page-item:last-child .page-link {
    border-radius: var(--border-radius-md)
}

.pagination.bordered .page-item .page-link {
    color: var(--primary);
    box-shadow: inset 0 0 0 1px var(--primary) !important;
    border-radius: var(--border-radius-md);
    background-color: transparent
}

    .pagination.bordered .page-item .page-link:hover {
        background: var(--primary);
        color: var(--light-text)
    }

.pagination.bordered .page-item.active .page-link {
    box-shadow: initial !important;
    background: var(--primary);
    color: var(--light-text)
}

.pagination.semibordered .page-item .page-link:hover {
    background-color: transparent;
    color: var(--primary);
    box-shadow: inset 0 0 0 1px var(--primary) !important;
    border-radius: var(--border-radius-md)
}

.pagination.semibordered .page-item.active .page-link {
    background-color: transparent;
    color: var(--primary);
    box-shadow: inset 0 0 0 1px var(--primary) !important;
    border-radius: var(--border-radius-md)
}

.pagination.pagination-xl .page-link {
    line-height: 1;
    font-size: 1em;
    height: 44px;
    padding: 14px 26px;
    width: 65px
}

    .pagination.pagination-xl .page-link svg {
        margin-top: 0
    }

.pagination.pagination-lg .page-link {
    font-size: 1em;
    line-height: 18px;
    width: 50px;
    padding: 8px 15px
}

.pagination.pagination-sm .page-link {
    font-size: .9em;
    height: 30px;
    width: 30px;
    line-height: 1;
    padding: 9px 3px
}

    .pagination.pagination-sm .page-link svg {
        margin-top: -1px
    }

.nav-tabs {
    border-color: var(--separator)
}

.nav-link {
    font-family: var(--font);
    font-size: 1em;
    line-height: 1;
    border: initial;
    box-shadow: initial !important;
    transition: all var(--transition-time-short);
    transition-property: color,background-color,background-image,background;
    color: var(--body)
}

    .nav-link.active, .nav-link:active, .nav-link:hover {
        color: var(--primary)
    }

.nav:not(.nav-pills):not(.nav-tabs-line) .nav-link {
    padding-top: .6rem;
    padding-bottom: .6rem
}

.nav-tabs .nav-link {
    border-top-left-radius: var(--border-radius-md);
    border-top-right-radius: var(--border-radius-md)
}

    .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
        color: var(--body);
        background: var(--foreground)
    }

.nav-item.disabled .nav-link {
    opacity: .5
}

.card-header-tabs .nav-link {
    border-bottom-left-radius: initial;
    border-bottom-right-radius: initial
}

    .card-header-tabs .nav-link:not(a) {
        color: var(--body)
    }

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: var(--primary)
}

.nav-pills .dropdown-menu .nav-item .nav-link.active {
    background: initial !important
}

.card-header-tabs-border > div > .nav-link, .card-header-tabs-border > li > .nav-link {
    border: initial;
    border-radius: initial;
    position: relative;
    padding-top: 15px
}

.card-header-tabs-border .nav-item.show .nav-link::before, .card-header-tabs-border .nav-link.active::before {
    content: ' ';
    border-radius: 10px;
    position: absolute;
    width: 100%;
    height: 5px;
    left: 0;
    top: 0;
    background: var(--primary);
    color: var(--light-text)
}

.nav-pills .nav-link {
    line-height: 1.5;
    font-size: 1em;
    height: var(--input-height);
    border-radius: var(--border-radius-md)
}

.card .card-header-tabs {
    margin-bottom: calc(var(--card-spacing) * -1);
    margin-top: calc(var(--card-spacing) * -.25)
}

.card-header-pills, .card-header-tabs {
    margin-left: initial;
    margin-right: initial
}

.card .card-header-tabs.nav-tabs-line {
    margin-top: calc(var(--card-spacing) * -1);
    margin-left: calc(var(--card-spacing)/ 2 * -1);
    margin-right: calc(var(--card-spacing)/ 2 * -1);
    margin-bottom: initial
}

.nav-tabs-line {
    border: initial
}

    .nav-tabs-line > div > .nav-link, .nav-tabs-line > li > .nav-link {
        border: initial;
        position: relative;
        padding-top: 20px;
        color: var(--body)
    }

        .nav-tabs-line > div > .nav-link.active, .nav-tabs-line > div > .nav-link:hover, .nav-tabs-line > li > .nav-link.active, .nav-tabs-line > li > .nav-link:hover {
            color: var(--primary)
        }

        .nav-tabs-line > div > .nav-link.active, .nav-tabs-line > li > .nav-link.active {
            border: initial
        }

            .nav-tabs-line > div > .nav-link.active::before, .nav-tabs-line > li > .nav-link.active::before {
                content: ' ';
                background: var(--primary);
                color: var(--foreground);
                border-radius: 10px;
                position: absolute;
                width: calc(100%);
                height: 3px;
                top: 0;
                left: 50%;
                transform: translateX(-50%)
            }

    .nav-tabs-line .dropdown-menu .nav-link.active {
        border: initial
    }

        .nav-tabs-line .dropdown-menu .nav-link.active::before {
            background: initial
        }

.nav-tabs-title {
    margin: initial
}

    .nav-tabs-title .nav-item {
        margin: initial
    }

    .nav-tabs-title > div > .nav-link, .nav-tabs-title > li > .nav-link {
        height: var(--small-title-height);
        border: initial;
        background: initial;
        position: relative;
        color: var(--alternate);
        font-family: var(--font-heading);
        font-weight: 400;
        margin-bottom: 0;
        font-size: 1em;
        padding: 12px;
        padding-top: initial !important;
        padding-bottom: initial !important
    }

        .nav-tabs-title > div > .nav-link.active, .nav-tabs-title > div > .nav-link:hover, .nav-tabs-title > li > .nav-link.active, .nav-tabs-title > li > .nav-link:hover {
            color: var(--primary)
        }

        .nav-tabs-title > div > .nav-link.active, .nav-tabs-title > li > .nav-link.active {
            border: initial;
            background: initial;
            color: var(--primary)
        }

    .nav-tabs-title > div:first-of-type > .nav-link, .nav-tabs-title > li:first-of-type > .nav-link {
        padding-left: initial
    }

    .nav-tabs-title > div:last-of-type > .nav-link, .nav-tabs-title > li:last-of-type > .nav-link {
        padding-right: initial
    }

.nav-tabs-line-title {
    border-bottom: 1px solid rgba(var(--separator-rgb),.3) !important;
    margin-bottom: calc(var(--small-title-height)/ 3)
}

    .nav-tabs-line-title > li {
        margin-bottom: calc(-1px - calc(var(--small-title-height)/ 3)) !important;
        padding-right: 12px;
        padding-left: 12px
    }

        .nav-tabs-line-title > li > .nav-link {
            padding-right: initial;
            padding-left: initial;
            padding-top: 1px !important
        }

            .nav-tabs-line-title > li > .nav-link.active:after {
                content: ' ';
                left: 0;
                bottom: calc(-1px + var(--small-title-height)/ 3);
                position: absolute;
                width: calc(100% + 1px);
                height: 1px;
                background: var(--primary)
            }

        .nav-tabs-line-title > div:first-of-type, .nav-tabs-line-title > li:first-of-type {
            padding-left: initial
        }

.nav.horizontal-padding-0 > a:first-child, .nav.horizontal-padding-0 > div:first-child a, .nav.horizontal-padding-0 > li:first-child a {
    padding-left: 0
}

.nav.horizontal-padding-0 > a:last-child, .nav.horizontal-padding-0 > div:last-child a, .nav.horizontal-padding-0 > li:last-child a {
    padding-right: 0
}

.page-title-container {
    margin-bottom: var(--title-spacing)
}

    .page-title-container h1 {
        line-height: 1
    }

.breadcrumb {
    background: initial;
    padding: 0;
    font-size: .85em;
    margin-bottom: .25rem
}

    .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        content: '|';
        color: var(--alternate)
    }

    .breadcrumb .breadcrumb-item, .breadcrumb .breadcrumb-item a {
        color: var(--alternate)
    }

        .breadcrumb .breadcrumb-item a:not(.active):hover, .breadcrumb .breadcrumb-item:not(.active):hover {
            color: var(--primary)
        }

.breadcrumb-back span {
    display: inline-block;
    padding-top: 2px
}

.mobile-buttons-container .dropdown-menu {
    min-width: 200px;
    padding: 15px 20px 15px 20px;
    width: unset
}

.responsive-tabs .responsive-tab-dropdown .nav-item .nav-link {
    line-height: 1.3;
    width: 100%;
    text-align: initial
}

#scrollSpyMenu {
    position: sticky;
    overflow-y: auto;
    width: 190px
}

@media (min-width:1400px) {
    #scrollSpyMenu {
        width: 260px
    }
}

#scrollSpyMenu .nav ul, html .nav-container .mobile-buttons-container .dropdown-menu .nav ul {
    padding-left: 35px;
    margin-top: -2px;
    margin-bottom: 2px
}

#scrollSpyMenu li, html .nav-container .mobile-buttons-container .dropdown-menu li {
    width: 100%;
    padding: initial
}

    #scrollSpyMenu li a, html .nav-container .mobile-buttons-container .dropdown-menu li a {
        width: 100%
    }

#scrollSpyMenu .nav-link, html .nav-container .mobile-buttons-container .dropdown-menu .nav-link {
    display: inline-block;
    opacity: .8;
    color: var(--alternate);
    padding-top: .1rem;
    padding-bottom: .1rem;
    padding-left: 0
}

    #scrollSpyMenu .nav-link i, html .nav-container .mobile-buttons-container .dropdown-menu .nav-link i {
        display: inline-block
    }

    #scrollSpyMenu .nav-link:hover, html .nav-container .mobile-buttons-container .dropdown-menu .nav-link:hover {
        color: var(--primary)
    }

    #scrollSpyMenu .nav-link.active, html .nav-container .mobile-buttons-container .dropdown-menu .nav-link.active {
        color: var(--alternate)
    }

#scrollSpyMenu svg, html .nav-container .mobile-buttons-container .dropdown-menu svg {
    display: block;
    float: left;
    width: 17px;
    height: 17px;
    margin-right: .25rem
}

#scrollSpyMenu span, html .nav-container .mobile-buttons-container .dropdown-menu span {
    float: left;
    display: block;
    line-height: 1.4;
    width: calc(100% - 25px)
}

html[data-placement=horizontal] #scrollSpyMenu {
    top: calc(var(--nav-size-slim) + calc(var(--main-spacing-horizontal)/ 2));
    height: calc(100vh - calc(calc(var(--nav-size-slim) * 2) + calc(var(--main-spacing-horizontal) + var(--card-spacing))))
}

html[data-placement=vertical] #scrollSpyMenu {
    top: var(--main-spacing-horizontal);
    height: calc(100vh - calc(calc(var(--nav-size-slim) * 2) + calc(var(--main-spacing-horizontal) + var(--card-spacing))))
}

.offcanvas {
    background-color: var(--foreground)
}

.progress {
    height: .25rem;
    border-radius: var(--border-radius-md);
    background-color: var(--separator-light)
}

    .progress .progress-bar {
        background-color: var(--primary)
    }

        .progress .progress-bar + .progress-bar:not(:last-child) {
            border-radius: initial
        }

        .progress .progress-bar:last-child {
            border-top-right-radius: var(--border-radius-md);
            border-bottom-right-radius: var(--border-radius-md)
        }

    .progress.progress-xs {
        height: .1rem
    }

    .progress.progress-sm {
        height: .15rem
    }

    .progress.progress-md {
        height: .2rem
    }

    .progress.progress-lg {
        height: .35rem
    }

    .progress.progress-xl {
        height: .5rem
    }

    .progress.progress-xxl {
        height: 1rem
    }

.text-body .progressbar-text {
    color: var(--body) !important
}

.text-alternate .progressbar-text {
    color: var(--alternate) !important
}

.text-muted .progressbar-text {
    color: var(--muted) !important
}

.text-separator .progressbar-text {
    color: var(--separator) !important
}

.text-separator-light .progressbar-text {
    color: var(--separator-light) !important
}

.popover {
    border-radius: var(--border-radius-md);
    border-color: var(--separator);
    background-color: var(--foreground);
    color: var(--body)
}

    .popover .popover-header {
        background: initial
    }

    .popover .popover-body, .popover .popover-header {
        padding: var(--card-spacing-xs) var(--card-spacing-sm);
        color: var(--body);
        border: initial;
        font-size: 1em
    }

.bs-popover-auto[x-placement^=bottom] .popover-header::before, .bs-popover-bottom .popover-header::before {
    border-bottom: none !important
}

.bs-popover-auto[x-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::before {
    border-right-color: var(--separator)
}

.bs-popover-auto[x-placement^=right] > .popover-arrow::after, .bs-popover-end > .popover-arrow::after {
    border-right-color: var(--foreground)
}

.bs-popover-auto[x-placement^=bottom] > .popover-arrow::after, .bs-popover-bottom > .popover-arrow::after {
    border-bottom-color: var(--foreground)
}

.bs-popover-auto[x-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::before {
    border-bottom-color: var(--separator)
}

.bs-popover-auto[x-placement^=top] > .popover-arrow::after, .bs-popover-top > .popover-arrow::after {
    border-top-color: var(--foreground)
}

.bs-popover-auto[x-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::before {
    border-top-color: var(--separator)
}

.bs-popover-auto[x-placement^=left] > .popover-arrow::after, .bs-popover-start > .popover-arrow::after {
    border-left-color: var(--foreground)
}

.bs-popover-auto[x-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::before {
    border-left-color: var(--separator)
}

.spinner-border {
    border-width: .15em;
    margin-right: 5px
}

.spinner-border-sm {
    border-width: .15em;
    margin-right: 5px
}

body.spinner:after {
    content: ' ';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: .25em solid rgba(0,0,0,.5);
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
    left: 50%;
    position: fixed;
    top: 50%;
    border-width: .15em;
    margin-top: -15px;
    margin-left: -15px
}

body.spinner #root {
    opacity: .3;
    pointer-events: none;
    user-select: none
}

.overlay-spinner {
    position: relative;
    pointer-events: none;
    user-select: none
}

    .overlay-spinner:before {
        content: ' ';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: var(--border-radius-lg);
        background: rgba(var(--foreground-rgb),.7)
    }

    .overlay-spinner:after {
        content: ' ';
        display: inline-block;
        width: 2rem;
        height: 2rem;
        vertical-align: text-bottom;
        border: .25em solid var(--primary);
        border-right-color: transparent;
        border-radius: 50%;
        -webkit-animation: spinner-border .75s linear infinite;
        animation: spinner-border .75s linear infinite;
        left: 50%;
        position: absolute;
        top: 50%;
        border-width: .15em;
        margin-top: -15px;
        margin-left: -15px
    }

.filled .input-group.spinner .input-group-text {
    background-color: var(--background-light)
}

.form-floating .form-control ~ label {
    z-index: 3
}

.text-primary {
    color: var(--primary) !important
}

.text-secondary {
    color: var(--secondary) !important
}

.text-tertiary {
    color: var(--tertiary) !important
}

.text-quaternary {
    color: var(--quaternary) !important
}

.text-success {
    color: var(--success) !important
}

.text-danger {
    color: var(--danger) !important
}

.text-warning {
    color: var(--warning) !important
}

.text-info {
    color: var(--info) !important
}

.text-light {
    color: var(--light) !important
}

.text-dark {
    color: var(--dark) !important
}

.text-body {
    color: var(--body) !important
}

.text-alternate {
    color: var(--alternate) !important
}

.text-muted {
    color: var(--muted) !important
}

.text-white {
    color: var(--light-text) !important
}

.text-black {
    color: var(--dark-text) !important
}

.text-separator {
    color: var(--separator) !important
}

.text-separator-light {
    color: var(--separator-light) !important
}

.text-uppercase {
    text-transform: uppercase
}

.text-lowercase {
    text-transform: lowercase
}

.table {
    --bs-table-bg: rgba(0, 0, 0, 0);
    --bs-table-striped-color: var(--body);
    --bs-table-striped-bg: rgba(var(--body-rgb), 0.05);
    --bs-table-active-color: var(--body);
    --bs-table-active-bg: rgba(var(--body-rgb), 0.1);
    --bs-table-hover-color: var(--body);
    --bs-table-hover-bg: rgba(var(--body-rgb), 0.075);
    color: var(--body);
    border-color: var(--separator-light)
}

    .table > :not(:last-child) > :last-child > * {
        border-bottom-color: var(--separator)
    }

    .table > :not(caption) > * > * {
        --bs-table-bg: rgba(0, 0, 0, 0);
        color: var(--body)
    }

.toast {
    border-radius: var(--border-radius-md);
    border-color: var(--separator);
    font-size: 1em;
    background: rgba(var(--foreground-rgb),.9)
}

    .toast .toast-body, .toast .toast-header {
        padding: var(--card-spacing-sm);
        color: var(--body);
        border: initial;
        background: initial
    }

        .toast .toast-header + .toast-body {
            padding-top: initial
        }

    .toast .btn-close {
        margin-right: -.25rem;
        margin-left: .25rem
    }

.tooltip .tooltip-inner {
    background: var(--primary);
    color: var(--light-text);
    font-size: .875em;
    border-radius: var(--border-radius-md)
}

.bs-tooltip-auto[x-placement^=top] .tooltip-arrow::before, .bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--primary)
}

.bs-tooltip-auto[x-placement^=left] .tooltip-arrow::before, .bs-tooltip-start .tooltip-arrow::before {
    border-left-color: var(--primary)
}

.bs-tooltip-auto[x-placement^=right] .tooltip-arrow::before, .bs-tooltip-end .tooltip-arrow::before {
    border-right-color: var(--primary)
}

.bs-tooltip-auto[x-placement^=bottom] .tooltip-arrow::before, .bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: var(--primary)
}

:root {
    scroll-behavior: initial
}

html {
    height: 100%;
    width: 100%;
    margin: 0;
    font-size: 16px;
    overflow-x: hidden
}

body {
    width: 100%;
    margin: 0;
    font-family: var(--font);
    font-weight: 400;
    color: var(--body);
    background-color: var(--background);
    font-size: 87.5%;
    padding-right: initial !important
}

#root {
    opacity: 0
}

html:not([data-show=true]) body.spinner #root {
    opacity: 0
}

html:not([data-show=true]) body.spinner:after {
    border-color: #7d7d7d;
    border-right-color: transparent
}

html[data-show=true] {
    scroll-behavior: smooth
}

    html[data-show=true] #root {
        opacity: 1
    }

p {
    font-family: var(--font)
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--body);
    font-weight: 400;
    line-height: 1.25
}

.font-standard {
    font-family: var(--font)
}

.font-heading {
    font-family: var(--font-heading)
}

.text-medium {
    font-size: .9em !important
}

.text-semi-large {
    font-size: 1.1em !important
}

.text-xlarge {
    font-size: 2.7em !important;
    font-weight: 300 !important
}

.text-small {
    font-size: .75em !important;
    font-weight: initial !important
}

.text-extra-small {
    font-size: .7em !important;
    line-height: 1em !important
}

.text-large {
    font-size: 1.75em !important;
    font-weight: 300 !important
}

.font-weight-bold {
    font-weight: 600
}

[class*=cs-] {
    font-size: 18px
}

.heading {
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: .7em
}

.small-title {
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 0;
    font-size: 1.1em;
    color: var(--primary);
    height: var(--small-title-height)
}

.blockquote {
    font-size: 1em
}

.display-1 {
    font-family: var(--font-heading);
    font-size: 2.7em;
    line-height: 1.2;
    font-weight: 700
}

@media (max-width:1399.98px) {
    .display-1 {
        font-size: 2.1em
    }
}

@media (max-width:767.98px) {
    .display-1 {
        font-size: 1.5em
    }
}

.display-2 {
    font-family: var(--font-heading);
    font-size: 3em;
    line-height: 1.2;
    font-weight: 700
}

@media (max-width:767.98px) {
    .display-2 {
        font-size: 2.75em
    }
}

.display-3 {
    font-family: var(--font-heading);
    font-size: 2.1em;
    line-height: 1.2;
    font-weight: 700
}

@media (max-width:767.98px) {
    .display-3 {
        font-size: 1.5em
    }
}

.display-4 {
    font-family: var(--font-heading);
    font-size: 1.85em;
    line-height: 1.2;
    font-weight: 700
}

@media (max-width:991.98px) {
    .display-4 {
        font-size: 1.7em
    }
}

@media (max-width:767.98px) {
    .display-4 {
        font-size: 1.6em
    }
}

.display-5 {
    font-family: var(--font-heading);
    font-size: 1.75em;
    line-height: 1.2;
    font-weight: 700
}

@media (max-width:991.98px) {
    .display-5 {
        font-size: 1.6em
    }
}

@media (max-width:767.98px) {
    .display-5 {
        font-size: 1.5em
    }
}

.cta-1 {
    font-family: var(--font-heading);
    font-size: 1.5em;
    line-height: 1.4;
    font-weight: 400
}

.cta-2 {
    font-family: var(--font-heading);
    font-size: 1.35em;
    line-height: 1.4;
    font-weight: 400
}

.cta-3 {
    font-family: var(--font-heading);
    font-size: 1.25em;
    line-height: 1.4;
    font-weight: 400
}

.cta-4 {
    font-family: var(--font-heading);
    font-size: 1.15em;
    line-height: 1.25;
    font-weight: 400
}

.lead {
    font-weight: 300
}

.h1, h1 {
    font-size: 1.8em
}

@media (max-width:767.98px) {
    .h1, h1 {
        font-size: 1.5em
    }
}

.h2, h2 {
    font-size: 1.65em
}

@media (max-width:767.98px) {
    .h2, h2 {
        font-size: 1.3em
    }
}

.h3, h3 {
    font-size: 1.5em
}

@media (max-width:767.98px) {
    .h3, h3 {
        font-size: 1.25em
    }
}

.h4, h4 {
    font-size: 1.35em
}

@media (max-width:767.98px) {
    .h4, h4 {
        font-size: 1.15em
    }
}

.h5, h5 {
    font-size: 1.1em
}

@media (max-width:767.98px) {
    .h5, h5 {
        font-size: 1em
    }
}

.h6, h6 {
    font-size: 1em
}

@media (max-width:767.98px) {
    .h6, h6 {
        font-size: 1em
    }
}

.icon-24 {
    font-size: 24px !important
}

.icon-22 {
    font-size: 22px !important
}

.icon-20 {
    font-size: 20px !important
}

.icon-18 {
    font-size: 18px !important
}

.icon-16 {
    font-size: 16px !important
}

.icon-14 {
    font-size: 14px !important
}

pre {
    color: var(--body)
}

code {
    color: var(--body)
}

.mark, mark {
    background-color: rgba(var(--secondary-rgb),.1)
}

.ll-nam {
    color: var(--tertiary)
}

.ll-num {
    color: var(--info)
}

.ll-str {
    color: var(--secondary)
}

.ll-rex {
    color: var(--warning)
}

.ll-pct {
    color: var(--body)
}

.ll-key {
    color: var(--body);
    font-weight: 700
}

.ll-com {
    color: var(--text-muted);
    font-style: italic
}

kbd {
    background: var(--primary);
    color: var(--light-text);
    border-radius: calc(var(--border-radius-md)/ 2)
}

.popover, .tooltip {
    font-family: var(--font)
}

.lh-1 {
    line-height: 1 !important
}

.lh-1-25 {
    line-height: 1.25 !important
}

.lh-1-5 {
    line-height: 1.5 !important
}

.disable-text-selection {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.font-weight-300 {
    font-weight: 300 !important
}

.line-through {
    text-decoration: line-through
}

.blockquote-footer {
    margin-top: initial
}

main {
    min-height: 100%;
    padding-left: calc(var(--nav-size) + var(--main-spacing-horizontal));
    padding-right: var(--main-spacing-horizontal);
    padding-bottom: var(--main-spacing-vertical);
    width: 100%
}

    main > .container-fluid, main > .container-lg, main > .container-md, main > .container-sm, main > .container-xl {
        padding-right: 0;
        padding-left: 0
    }

html[data-placement=horizontal] main {
    padding-left: var(--main-spacing-horizontal)
}

html[data-placement=vertical][data-dimension=mobile] main {
    padding-left: calc(var(--main-spacing-horizontal) + var(--nav-size-slim))
}

html[data-placement=vertical][data-behaviour=unpinned] main {
    padding-left: calc(var(--main-spacing-horizontal) + var(--nav-size-slim))
}

html[data-layout=fluid] main .container {
    width: 100%;
    max-width: initial;
    padding-right: 0;
    padding-left: 0
}

@media (max-width:1199.98px) {
    html[data-layout=boxed] main .container {
        width: 100%;
        max-width: initial;
        padding-right: 0;
        padding-left: 0
    }
}

html[data-placement=horizontal][data-dimension=mobile] main, html[data-placement=vertical][data-dimension=mobile] main {
    padding-left: var(--main-spacing-horizontal) !important;
    padding-top: calc(var(--nav-size-slim) + calc(var(--main-spacing-horizontal)/ 2))
}

html[data-fullpage=true] #root, html[data-fullpage=true] body, html[data-fullpage=true] main {
    height: 100%
}

    html[data-fullpage=true] main .container {
        height: calc(100%)
    }

html[data-footer=true][data-fullpage=true] #root, html[data-footer=true][data-fullpage=true] body, html[data-footer=true][data-fullpage=true] main {
    height: 100%
}

    html[data-footer=true][data-fullpage=true] main .container {
        height: 100%
    }

section.scroll-section {
    scroll-margin-top: 100px
}

#nav {
    padding-left: var(--main-spacing-horizontal);
    padding-right: var(--main-spacing-horizontal);
    z-index: 10;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 80px;
    transition-property: background-color,box-shadow;
    transition-duration: var(--transition-time-short);
    border-bottom-left-radius: var(--border-radius-lg);
    border-bottom-right-radius: var(--border-radius-lg);
    background-color: var(--foreground);
    background-position: center;
    box-shadow: 0 2px 18px rgba(0,0,0,.03) !important
}

    #nav .logo.logo-white {
        display: none
    }

    #nav .logo.logo-blue {
        display: block
    }

    #nav #menuButton {
        color: var(--primary) !important
    }

@media (max-width:767.98px) {
    #nav {
        height: 70px
    }
}

#nav .logo {
    height: 35px
}

    #nav .logo.logo-white {
        display: none
    }

@media (max-width:1199.98px) {
    #nav .logo.logo-white {
        display: block
    }
}

@media (max-width:1199.98px) {
    #nav .logo.logo-blue {
        display: none
    }
}

#nav #menuButton {
    color: var(--light-text) !important
}

@media (max-width:1199.98px) {
    #nav {
        background-color: var(--foreground);
        background-position: center;
        box-shadow: 0 2px 18px rgba(0,0,0,.03) !important
    }

        #nav li a {
            color: var(--alternate) !important
        }

        #nav .logo.logo-white {
            display: none
        }

        #nav .logo.logo-blue {
            display: block
        }

        #nav #menuButton {
            color: var(--primary) !important
        }
}

#nav .nav-list {
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    width: 900px
}

@media (max-width:1399.98px) {
    #nav .nav-list {
        width: 750px
    }
}

#nav .nav-list li {
    display: inline-flex;
    font-family: var(--font-heading);
    font-size: .9em;
    font-weight: 500;
    color: var(--light-text)
}

    #nav .nav-list li:last-of-type {
        padding-right: initial
    }

    #nav .nav-list li.dark a {
        color: var(--alternate)
    }

    #nav .nav-list li a {
        color: var(--alternate)
    }

        #nav .nav-list li a .cs-icon {
            display: inline-block;
            margin-right: 5px;
            vertical-align: middle
        }

        #nav .nav-list li a span {
            display: inline-block;
            vertical-align: middle;
            padding-top: 1px
        }

        #nav .nav-list li a:hover {
            color: var(--primary)
        }

        #nav .nav-list li a.active {
            color: var(--primary) !important
        }

@media (max-width:1199.98px) {
    html[data-layout=boxed] #nav .container {
        width: 100%;
        max-width: initial;
        padding-right: 0;
        padding-left: 0
    }
}

#menuModal .nav-list {
    list-style: none;
    display: flex;
    flex-direction: column
}

    #menuModal .nav-list li a {
        font-family: var(--font-heading);
        font-size: .9em;
        font-weight: 500;
        color: var(--alternate);
        padding-top: 10px;
        padding-bottom: 10px;
        display: inline-block
    }

        #menuModal .nav-list li a:hover {
            color: var(--primary)
        }

        #menuModal .nav-list li a .cs-icon {
            display: inline-block;
            margin-right: 5px;
            vertical-align: middle
        }

        #menuModal .nav-list li a span {
            display: inline-block;
            vertical-align: middle;
            padding-top: 2px
        }

    #menuModal .nav-list li.dark {
        order: 6
    }

html[data-footer=true] body {
    min-height: 100%;
    position: relative;
    padding-bottom: var(--footer-size)
}

html[data-footer=true] #root > footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: var(--footer-size);
    display: flex;
    background: url(../img/footer/footer-background.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding-left: calc(var(--nav-size) + var(--main-spacing-horizontal));
    padding-right: var(--main-spacing-horizontal)
}

    html[data-footer=true] #root > footer > .container-fluid, html[data-footer=true] #root > footer > .container-lg, html[data-footer=true] #root > footer > .container-md, html[data-footer=true] #root > footer > .container-sm, html[data-footer=true] #root > footer > .container-xl {
        padding-right: 0;
        padding-left: 0
    }

    html[data-footer=true] #root > footer .footer-content {
        display: flex;
        width: 100%;
        padding-top: 150px
    }

@media (max-width:1199.98px) {
    html[data-footer=true] #root > footer .footer-content {
        padding-top: 60px
    }
}

html[data-footer=true] #root > footer .footer-content .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

html[data-footer=true][data-placement=horizontal] #root > footer {
    padding-left: var(--main-spacing-horizontal)
}

@media (max-width:1199.98px) {
    html[data-footer=true][data-placement=vertical] #root > footer {
        padding-left: calc(var(--main-spacing-horizontal) + var(--footer-size))
    }
}

html[data-footer=true][data-placement=vertical][data-behaviour=unpinned] #root > footer {
    padding-left: calc(var(--main-spacing-horizontal) + var(--footer-size))
}

html[data-footer=true][data-layout=fluid] #root > footer .container {
    width: 100%;
    max-width: initial;
    padding-right: 0;
    padding-left: 0
}

@media (max-width:1199.98px) {
    html[data-footer=true][data-layout=boxed] #root > footer .container {
        width: 100%;
        max-width: initial;
        padding-right: 0;
        padding-left: 0
    }
}

html:not([data-footer=true]) #root > footer {
    display: none
}

.cs-logo {
    height: 150px
}

#root, body {
    overflow-x: hidden
}

.mockup-image {
    margin-left: 65px
}

.hero-text-container {
    position: relative
}

@media (max-width:1199.98px) {
    .hero-text-container {
        text-align: center
    }
}

.hero-image-container .hero-image {
    position: absolute
}

@media (max-width:1199.98px) {
    .hero-image-container .hero-image {
        width: 100%
    }
}

@media (max-width:767.98px) {
    .hero-image-container .hero-image {
        margin-top: 30px;
        width: 140%;
        margin-left: -20% !important
    }
}

.scroll-section {
    margin-bottom: 170px
}

@media (max-width:1199.98px) {
    .scroll-section {
        margin-bottom: 130px
    }
}

@media (max-width:767.98px) {
    .scroll-section {
        margin-bottom: 90px
    }
}

.section-text {
    margin-bottom: 60px
}

.hero-background {
    background: url(../img/hero/hero-image-circles.html);
    width: 1120px;
    height: 760px;
    position: absolute;
    top: 0;
    right: -200px;
    z-index: 0;
    background-repeat: no-repeat
}

@media (max-width:1399.98px) {
    .hero-background {
        right: -335px;
        background-size: 85%;
        height: 680px
    }
}

@media (max-width:1199.98px) {
    .hero-background {
        background-repeat: no-repeat;
        left: -5%;
        right: 0;
        width: 110%;
        background-size: 100%;
        height: 925px
    }
}

.hero-image {
    position: relative;
    z-index: 0
}

main {
    margin-top: 170px
}

    main:before {
        content: '';
        width: 100vw;
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        top: -100vh
    }

.video-header {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    background: #1f2230;
    min-height: 550px
}

    .video-header img {
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        min-height: 550px
    }

.home-container {
    height: 100vh;
    display: flex;
    align-items: center;
    min-height: 550px;
    padding-left: var(--main-spacing-horizontal);
    padding-right: var(--main-spacing-horizontal)
}

.content-image {
    position: relative;
    left: -1038px;
    margin-left: 50%;
    margin-top: -30px
}

@media (max-width:1199.98px) {
    .content-image {
        width: 1600px;
        left: -800px
    }
}

.color-row {
    margin-bottom: 90px
}

#chooseDemoDropdown {
    width: 410px
}

@media (max-width:767.98px) {
    #chooseDemoDropdown {
        width: 360px
    }
}

.hero-image-container .hero-back-4 {
    position: relative
}

.hero-image-container .hero-back-1 {
    -webkit-animation: mover-1 2.5s infinite alternate;
    animation: mover-1 2s infinite alternate
}

.hero-image-container .hero-back-2 {
    -webkit-animation: mover-2 2.7s infinite alternate;
    animation: mover-2 2.7s infinite alternate
}

.hero-image-container .hero-back-3 {
    -webkit-animation: mover-3 2.9s infinite alternate;
    animation: mover-3 2.9s infinite alternate
}

@keyframes mover-1 {
    0% {
        transform: translateY(-7px)
    }

    100% {
        transform: translateY(7px)
    }
}

@keyframes mover-2 {
    0% {
        transform: translateY(-5px)
    }

    100% {
        transform: translateY(5px)
    }
}

@keyframes mover-3 {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(8px)
    }
}

.feature-container {
    margin-bottom: 50px
}

    .feature-container .text-left {
        padding-left: 200px
    }

@media (max-width:1399.98px) {
    .feature-container .text-left {
        padding-left: 0
    }
}

.feature-container .text-right {
    padding-right: 200px
}

@media (max-width:1399.98px) {
    .feature-container .text-right {
        padding-right: 0
    }
}

.feature-container:last-of-type {
    margin-bottom: 0
}

@media (max-width:1199.98px) {
    .feature-container .feature-image {
        width: 100%
    }
} 

/* Skrytí nonvideo-header pro menší obrazovky */
@media (min-width: 1200px) {
    .nonvideo-header{
        display: none; 
    }
    .video-header img{
        display: block;
    }
}

/* Skrytí video-header pro větší obrazovky */
@media (max-width: 1199px) {
    .video-header img{
        display: none;
    }
    .nonvideo-header {
        display: block;
	height: 300px;
	margin-left: 11px;
    }
}
