/* 
============================================================
Bootstrip - A stripped-down minimalist version of Bootstrip.
URL : https://github.com/shukriadams/bootstrip
Version: 0.0.13
Hash: 046d68d
Date : 2022-08-07
============================================================
*/

.alert {
    position: relative;
    display: block;
}

x-alert {
    position: relative;
    display: block;
}x-badge {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
}

.badge {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
}*, ::after, ::before {
    box-sizing: border-box;
}

body {
    display: block;
    margin: 0;
}.button {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    overflow: hidden;
    /* images inside a card should never exceed width of card, as this breaks concept of the card as a container */
}
.card img {
    max-width: 100%;
}
.card.--right {
    text-align: right;
}
.card.--center {
    text-align: center;
}
.card.--top x-card-pad,
.card.--top .card-pad {
    flex: unset;
}

.card-stroke {
    position: absolute;
    display: block;
    height: 100%;
}

.card-pad {
    flex: 1 1 auto;
}

x-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    overflow: hidden;
    /* images inside a card should never exceed width of card, as this breaks concept of the card as a container */
}
x-card img {
    max-width: 100%;
}
x-card.--right {
    text-align: right;
}
x-card.--center {
    text-align: center;
}
x-card.--top x-card-pad,
x-card.--top .card-pad {
    flex: unset;
}

x-card-stroke {
    position: absolute;
    display: block;
    height: 100%;
}

x-card-pad {
    flex: 1 1 auto;
}.circleGraph {
    display: inline-block;
    position: relative;
}
.circleGraph canvas {
    max-width: 100%;
}

.circleGraph-value {
    color: #555;
    display: block;
    text-align: center;
    font-family: sans-serif;
    font-size: 40px;
    font-weight: 100;
    margin-left: 5px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

x-circleGraph {
    display: inline-block;
    position: relative;
}
x-circleGraph canvas {
    max-width: 100%;
}

x-circleGraph-value {
    color: #555;
    display: block;
    text-align: center;
    font-family: sans-serif;
    font-size: 40px;
    font-weight: 100;
    margin-left: 5px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}/* max-width area for page-level structure. Do not give this padding, it's for scaffolding only */
.clamp {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: var(--bootstrip-layout-clampWidth);
}

x-clamp {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: var(--bootstrip-layout-clampWidth);
}.code {
    display: block;
    white-space: pre-wrap;
    word-break: break-all;
}.columns {
    display: grid;
    -moz-column-gap: var(--bootstrip-layout-gutter);
         column-gap: var(--bootstrip-layout-gutter);
    row-gap: var(--bootstrip-layout-gutter);
    margin-bottom: var(--bootstrip-layout-gutter);
}
.columns > * {
    display: grid;
}
.columns.--two {
    grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 768px) {
    .columns.--two {
        grid-template-columns: 1fr;
    }
}
.columns.--three {
    grid-template-columns: 1fr 1fr 1fr;
}
@media only screen and (max-width: 1280px) {
    .columns.--three {
        grid-template-columns: 1fr;
    }
}
.columns.--four {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media only screen and (max-width: 1280px) {
    .columns.--four {
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width: 768px) {
    .columns.--four {
        grid-template-columns: 1fr;
    }
}

x-columns {
    display: grid;
    -moz-column-gap: var(--bootstrip-layout-gutter);
         column-gap: var(--bootstrip-layout-gutter);
    row-gap: var(--bootstrip-layout-gutter);
    margin-bottom: var(--bootstrip-layout-gutter);
}
x-columns > * {
    display: grid;
}
x-columns.--two {
    grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 768px) {
    x-columns.--two {
        grid-template-columns: 1fr;
    }
}
x-columns.--three {
    grid-template-columns: 1fr 1fr 1fr;
}
@media only screen and (max-width: 1280px) {
    x-columns.--three {
        grid-template-columns: 1fr;
    }
}
x-columns.--four {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media only screen and (max-width: 1280px) {
    x-columns.--four {
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width: 768px) {
    x-columns.--four {
        grid-template-columns: 1fr;
    }
}.compactSelect-triggerIcon {
    cursor: pointer;
}
x-compactSelect,
.compactSelect {
    position: relative;
}
x-compactSelect select,
.compactSelect select {
    display: none;
}
x-compactSelect .compactSelect-icon,
.compactSelect .compactSelect-icon {
    display: none;
}
x-compactSelect x-compactselect-placeholder,
.compactSelect x-compactselect-placeholder {
    display: block;
}
x-compactSelect.--break .compactSelect-icon,
.compactSelect.--break .compactSelect-icon {
    display: block;
}
x-compactSelect.--break x-compactselect-placeholder,
.compactSelect.--break x-compactselect-placeholder {
    display: none;
}

x-compactSelect-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
}
x-compactSelect.--visible x-compactSelect-menu {
    display: block;
}

x-compactSelect-menuItem,
.compactSelect-menuItem {
    display: block;
}
x-compactSelect-menuItem.--value,
.compactSelect-menuItem.--value {
    cursor: pointer;
}.content {
    display: block;
}

x-content {
    display: block;
}x-cover {
    display: block;
    padding: 0px;
    margin: 0px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.cover {
    display: block;
    padding: 0px;
    margin: 0px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}figure {
    margin: 0;
}x-footer,
.footer {
    flex-wrap: nowrap;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}label {
    display: inline-block;
}

input[type=password] {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    display: block;
    width: 100%;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
input[type=password]:disabled, input[type=password][disabled] {
    pointer-events: none;
}

input[type=email] {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    display: block;
    width: 100%;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
input[type=email]:disabled, input[type=email][disabled] {
    pointer-events: none;
}

input[type=file] {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    display: block;
    width: 100%;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
input[type=file]:disabled, input[type=file][disabled] {
    pointer-events: none;
}
input[type=file]:not(:disabled):not([readonly]) {
    cursor: pointer;
}

input[list] {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    display: block;
    width: 100%;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
input[list]:disabled, input[list][disabled] {
    pointer-events: none;
}

input[type=text] {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    display: block;
    width: 100%;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
input[type=text]:disabled, input[type=text][disabled] {
    pointer-events: none;
}

textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    display: block;
    width: 100%;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
textarea:disabled, textarea[disabled] {
    pointer-events: none;
}
textarea:disabled, textarea[disabled] {
    pointer-events: none;
}

input[type=checkbox] {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    vertical-align: top;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    -webkit-print-color-adjust: exact;
            color-adjust: exact;
}

select {
    display: block;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
select:disabled, select[disabled] {
    pointer-events: none;
}

.radiolist {
    display: block;
}

x-radiolist {
    display: block;
}x-header,
.header {
    flex-wrap: nowrap;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
x-header a,
.header a {
    text-decoration: none;
    color: inherit;
}
x-header.--sticky,
.header.--sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
x-header x-clamp, x-header .clamp,
.header x-clamp,
.header .clamp {
    display: flex;
}

x-header-logoContainer,
.header-logoContainer {
    position: static;
    z-index: 5;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

x-header-content,
.header-content {
    position: static;
    z-index: 5;
    flex-basis: 0;
    flex-grow: 1;
    flex-direction: row-reverse;
    max-width: 100%;
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 768px) {
    x-header-content,
.header-content {
        position: absolute;
        display: none;
        left: 0;
        right: 0;
    }
    x-header.--open x-header-content, .header.--open x-header-content,
x-header.--open .header-content,
.header.--open .header-content {
        display: block;
    }
}

x-header-contentItem,
.header-contentItem {
    position: relative;
}

x-header-toggle,
.header-toggle {
    display: none;
    cursor: pointer;
    position: absolute;
}
@media only screen and (max-width: 768px) {
    x-header-toggle,
.header-toggle {
        display: block;
    }
}.icon {
    line-height: unset;
}.iconStrip {
    display: grid;
}

.iconStrip-text {
    display: block;
}

.iconStrip-item {
    text-align: center;
}
.iconStrip-item a {
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
}
.iconStrip-item.--active {
    cursor: default;
    pointer-events: none;
}

x-iconStrip {
    display: grid;
}

x-iconStrip-text {
    display: block;
}

x-iconStrip-item {
    text-align: center;
}
x-iconStrip-item a {
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
}
x-iconStrip-item.--active {
    cursor: default;
    pointer-events: none;
}.image {
    max-width: 100%;
    height: auto;
}
.image.--full {
    width: 100%;
}
.image.--rounded {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    text-anchor: middle;
}.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    overflow: hidden;
    /* images inside a card should never exceed width of card, as this breaks concept of the card as a container */
}
.card img {
    max-width: 100%;
}
.card.--right {
    text-align: right;
}
.card.--center {
    text-align: center;
}
.card.--top x-card-pad,
.card.--top .card-pad {
    flex: unset;
}

.card-stroke {
    position: absolute;
    display: block;
    height: 100%;
}

.card-pad {
    flex: 1 1 auto;
}

x-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    overflow: hidden;
    /* images inside a card should never exceed width of card, as this breaks concept of the card as a container */
}
x-card img {
    max-width: 100%;
}
x-card.--right {
    text-align: right;
}
x-card.--center {
    text-align: center;
}
x-card.--top x-card-pad,
x-card.--top .card-pad {
    flex: unset;
}

x-card-stroke {
    position: absolute;
    display: block;
    height: 100%;
}

x-card-pad {
    flex: 1 1 auto;
}

.list {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    overflow: hidden;
    /* images inside a card should never exceed width of card, as this breaks concept of the card as a container */
    display: grid;
    overflow-x: auto;
    list-style: none;
    padding-left: 0;
}
.list img {
    max-width: 100%;
}
.list.--right {
    text-align: right;
}
.list.--center {
    text-align: center;
}
.list.--top x-card-pad,
.list.--top .card-pad {
    flex: unset;
}
.list.--freewidth x-list-cell,
.list.--freewidth .list-cell {
    flex-basis: unset;
    flex-grow: unset;
}

.list-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.list-cell {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    position: relative;
}

x-list {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    overflow: hidden;
    /* images inside a card should never exceed width of card, as this breaks concept of the card as a container */
    display: grid;
    overflow-x: auto;
    list-style: none;
    padding-left: 0;
}
x-list img {
    max-width: 100%;
}
x-list.--right {
    text-align: right;
}
x-list.--center {
    text-align: center;
}
x-list.--top x-card-pad,
x-list.--top .card-pad {
    flex: unset;
}
x-list.--freewidth x-list-cell,
x-list.--freewidth .list-cell {
    flex-basis: unset;
    flex-grow: unset;
}

x-list-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

x-list-cell {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    position: relative;
}.pager {
    display: flex;
    padding-left: 0;
    list-style: none;
    flex-wrap: wrap;
}

.pager-anchor {
    position: relative;
    display: block;
    text-decoration: none;
}section {
    padding: var(--bootstrip-layout-gutter);
    display: block;
}/*
Side menu is meant to be implemented as <ul> or <ol> element, so has only a class export
*/
.sideMenu {
    padding-left: 0;
    list-style: none;
}

.sideMenu-item {
    position: relative;
}

.sideMenu-anchor {
    display: flex;
    white-space: nowrap;
    text-decoration: none;
    overflow: hidden;
}

.sideMenu-iconWrapper {
    display: flex;
}.table {
    width: 100%;
    caption-side: bottom;
    border-collapse: collapse;
    vertical-align: top;
}
.table > thead {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    vertical-align: bottom;
}
.table th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}
.table > :not(caption) > * > * {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}.header1, h1 {
    font-family: var(--bootstrip-font-headerFace);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 3.5rem;
    font-size: 2.5rem;
}

.header2, h2 {
    font-family: var(--bootstrip-font-headerFace);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 3rem;
    font-size: 2rem;
}

.header3, h3 {
    font-family: var(--bootstrip-font-headerFace);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 2rem;
    font-size: 1.75rem;
}

.header4, h4 {
    font-family: var(--bootstrip-font-headerFace);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    font-size: 1.5rem;
}

.header5, h5 {
    font-family: var(--bootstrip-font-headerFace);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    font-size: 1.25rem;
}

.header6, h6 {
    font-family: var(--bootstrip-font-headerFace);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    font-size: 1rem;
}

.display1 {
    font-family: var(--bootstrip-font-headerFace);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    -webkit-margin-before: 0;
            margin-block-start: 0;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    margin-top: 3.5rem;
    font-size: 5rem;
}

.display2 {
    font-family: var(--bootstrip-font-headerFace);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    -webkit-margin-before: 0;
            margin-block-start: 0;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    margin-top: 3rem;
    font-size: 4.5rem;
}

.display3 {
    font-family: var(--bootstrip-font-headerFace);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    -webkit-margin-before: 0;
            margin-block-start: 0;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    margin-top: 2.5rem;
    font-size: 4rem;
}

.display4 {
    font-family: var(--bootstrip-font-headerFace);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    -webkit-margin-before: 0;
            margin-block-start: 0;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 3.5rem;
}

.display5 {
    font-family: var(--bootstrip-font-headerFace);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    -webkit-margin-before: 0;
            margin-block-start: 0;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 3rem;
}

.display6 {
    font-family: var(--bootstrip-font-headerFace);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    -webkit-margin-before: 0;
            margin-block-start: 0;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 2.5rem;
}/**
 Utility class do one thing only. Their name is always a clear indication of their function.
*/
.uppercase {
    text-transform: uppercase;
}

/*
Causes all children to align horizontally
*/
.flowHorizontal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
}
.flowHorizontal > * {
    flex-grow: 1;
}

/**
 * Aligns an element vertically centered
 */
.alignVerticallyCentered {
    top: 50%;
    transform: translateY(-50%);
}