/* spacer */
.vspacer-025 {
    height: 0.25rem;
}
.vspacer-03 {
    height: 0.3rem;
}
.vspacer-05 {
    height: 0.5rem;
}
.vspacer-075 {
    height: 0.75rem;
}
.vspacer-1 {
    height: 1rem;
}
.vspacer-2 {
    height: 2rem;
}
.vspacer-5 {
    height: 5rem;
}
.vspacer-10 {
    height: 10rem;
}
.hspacer-03 {
    width: 0.3rem;
}
.hspacer-05 {
    width: 0.5rem;
}
.hspacer-075 {
    width: 0.75rem;
}
.hspacer-1 {
    width: 1rem;
}
.hspacer-2 {
    width: 2rem;
}
.hspacer-3 {
    width: 3rem;
}


/* margin */
.ml-0_3 {
    margin-left: 0.3rem;
}


/* padding */
.pl-0_3 {
    padding-left: 0.3rem;
}
.pl-0_5 {
    padding-left: 0.5rem;
}


/* align */
.va-top {
    vertical-align: top;
}

/* font */
.fs-1 {
    font-size: 1rem;
}
.fs-1_1 {
    font-size: 1.1rem;
}
.fs-1_2 {
    font-size: 1.2rem;
}
.fw-bold {
    font-weight: bold;
}
.f-inh {
    font: inherit;
}


/* text */
.lh-1 {
    line-height: 1;
}
.lh-1_1 {
    line-height: 1.1;
}
.lh-1_15 {
    line-height: 1.15;
}
.lh-1_2 {
    line-height: 1.2;
}
.ta-center {
    text-align: center;
}


/* colors */
/* green */
.col-green {
    color: green !important;
}
/* red */
.col-red {
    color: #ff4d4d !important;
}
.bgcol-red {
    background-color: #ff4d4d !important;
}
.bdcol-red {
    border-color: #ff4d4d !important;
}
/* dodgerblue70 */
.col-dodgerblue70 {
    color: #66b3ff !important;
}
.bgcol-dodgerblue70 {
    background-color: #66b3ff !important;
}
.bdcol-dodgerblue70 {
    border-color: #66b3ff !important;
}


/* display */
.flex-row-space-between {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.flex-row-flex-end {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
