﻿/* Bootstrap Utilities... */

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.d-inline-flex {
    display: inline-flex;
}

.flex-column {
    flex-direction: column;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-end {
    justify-content: flex-end;
}

.align-items-center {
    align-items: center;
}

.flex-grow-0 {
    flex-grow: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    flex-shrink: 1 !important;
}

._container {
}

._row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;

    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

._row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

._col {
    flex: 1 0 0%;
}

._col-auto {
    flex: 0 0 auto;
    width: auto;
}

._col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

._col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

._col-3 {
    flex: 0 0 auto;
    width: 25%;
}

._col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

._col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

._col-6 {
    flex: 0 0 auto;
    width: 50%;
}

._col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

._col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

._col-9 {
    flex: 0 0 auto;
    width: 75%;
}

._col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

._col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

._col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.lh-1 {
    line-height: 1 !important;
}

.h-24px {
    height: 24px !important;
}

.w-24px {
    width: 24px !important;
}

.mw-100p {
    max-width: 100%;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.p-0 {
    padding: 0 !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.ms-0 {
    margin-left: 0 !important;
}

.me-0 {
    margin-right: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-bold {
    font-weight: bold;
}

.fs-12px {
    font-size: 12px;
}

.fs-14px {
    font-size: 14px;
}

.fs-16px {
    font-size: 16px;
}

.fs-18px {
    font-size: 18px;
}

.fs-20px {
    font-size: 20px;
}

.fs-22px {
    font-size: 22px;
}

.fs-24px {
    font-size: 24px;
}

.fs-36px {
    font-size: 36px;
}

.fs-48px {
    font-size: 48px;
}

.text-end {
    text-align: right;
}

.vr {
    display: inline-block;
    align-self: stretch;
    width: 1px;
    min-height: 1em;
    background-color: currentcolor;
    opacity: .25;
}

.border {
    border: 1px solid #ccc !important;
}

.border-0 {
    border: none;
}

.border-radius-0 {
    border-radius: 0;
}

.text-nowrap {
    white-space: nowrap;
}

.align-middle {
    vertical-align: middle !important;
}

.ls-loose {
    letter-spacing: 0.1em;
}

tr.align-middle th,
tr.align-middle td {
    vertical-align: middle !important;
}

.gap-2 {
    gap: .5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.gap-5 {
    gap: 3rem !important;
}

.tracking-wide {
    letter-spacing: 0.1em;
}

.text-secondary {
    --bs-secondary-rgb: 108, 117, 125;
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.bg-white {
    --bs-white-rgb: 255, 255, 255;
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
    --bs-light-rgb: 248, 249, 250;
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.shadow-none {
    box-shadow: none !important;
}

/* forms */

.form-check--checkbox-only[type=checkbox] {
    margin: 0;
    line-height: 1;
    border-radius: 4px;
    height: 18px;
    width: 18px;
    border-width: 1px;
    border-style: solid;
    background-color: #fff;
    border-color: #ccc;
    background-image: var(--checkbox-image);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-check--checkbox-only[type=checkbox]:checked {
    --checkbox-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");

    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-check--checkbox-only[type=checkbox]:hover {
    border-color: #999;
}

.form-check--checkbox-only[type=checkbox]:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

/* remove appearance class for number inputs */
.form-control.form-control--remove-appearance::-webkit-outer-spin-button,
.form-control.form-control--remove-appearance::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-control.form-control--remove-appearance[type=number] {
    -moz-appearance: textfield;
}

/* constrain width */
.constrain-width-576 {
    width: 576px;
    max-width: 100%;
}

.constrain-width-768 {
    width: 768px;
    max-width: 100%;
}

.constrain-width-992 {
    width: 992px;
    max-width: 100%;
}

.constrain-width-1140 {
    max-width: 1140px !important;
}

.constrain-width-1320 {
    max-width: 1320px !important;
}

.constrain-width-1560 {
    max-width: 1560px !important;
}

.constrain-width-1760 {
    max-width: 1760px !important;
}

.constrain-width-1960 {
    max-width: 1960px !important;
}