﻿.flexFloatRight{
    margin-left: auto;
}

.block-row {
    display: flex;
}

.fl-row {
    display: flex;
    flex-direction: row;
}

.fl-col {
    display: flex;
    flex-direction: column;
}

.infl-col {
    display: inline-flex;
    flex-direction: column;
}

.infl-row {
    display: inline-flex;
    flex-direction: row;
}

.ai-c {
    align-items: center;
}

.jc-sb {
    justify-content: space-between;
}

.mr-10 {
    margin-right: 10px;
}
.mr-1r {
    margin-right: 1rem;
}

.h-100 {
    height: 100%;
}

.w-100 {
    width: 100%;
}

.w-90 {
    width: 90%;
}

.w-50 {
    width: 50%;
}

.w-40 {
    width: 40%;
}

.w-30 {
    width: 30%;
}
.w-20 {
    width: 20%;
}

.ai-fs {
    align-items: flex-start;
}

.mb-6 {
    margin-bottom: 6px;
}

.ai-fs {
    align-items: flex-start;
}

.ta-c {
    text-align: center;
}

.jc-c {
    justify-content: center;
}

.fl {
    display: flex;
}

.m-12 {
    margin: 12px;
}

.m-half {
    margin: 0.5rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mt-half {
    margin-top: 0.5rem;
}

.mb-half {
    margin-bottom: 0.5rem;
}

.fg-0 {
    flex-grow: 0;
}

.fg-1 {
    flex-grow: 1;
}

.f-1 {
    flex: 1;
}

.ai-bl {
    align-items: baseline;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.fl-row-r {
    flex-direction: row-reverse;
}

.float-r {
    float: right;
}

.float-l {
    float: left;
}

.pad-half {
    padding: 0.5rem;
}

.as-c {
    align-self: center;
}

.fl-warp {
    flex-wrap: wrap;
}

.invisible {
    visibility: hidden;
}

.w-fit {
    width: fit-content;
}

.h-fit {
    height: fit-content;
}

.ml-half {
    margin-left: 0.5rem;
}

.as-bl {
    align-self: baseline;
}

.ac-bl {
    align-content: baseline;
}

.ac-fs {
    align-content: flex-start;
}

.g-half {
    gap: 0.5rem;
}

.g-1 {
    gap: 1rem;
}

.g-2 {
    gap: 2rem;
}

.g-3 {
    gap: 3rem;
}

.jc-sa {
    justify-content: space-around;
}

.pos-rel {
    position: relative;
}

.pos-fix {
    position: fixed;
}

.bot-0 {
    bottom: 0;
}

.bot-60px {
    bottom: 60px;
}

.left-half {
    left: 50%;
}

.z-ind-1 {
    z-index: 1;
}

.padbot-60px {
    padding-bottom: 60px;
}

.padbot-30px {
    padding-bottom: 30px;
}

.padright-10px {
    padding-right: 10px;
}

.mw-100 {
    max-width: 100%;
}

.mw-50 {
    max-width: 50%;
}

.minw-100 {
    min-width: 100%;
}

.mh-100 {
    max-height: 100%;
}

.h-scroll {
    overflow-x: auto;
    white-space: nowrap;
}

.v-scroll {
    overflow-y: auto;
    white-space: nowrap;
}