:root {
    --status-color-1: #eaff00a3;
    --status-color-2: #48ff00a1;
    --status-color-3: #ff26267e;
}

/* COLORS */
.c1 {
    color: var(--c1);
}

.b1 {
    background: var(--c1);
}

.b6 {
    background: var(--c6);
}

/* STATUSES */
.status-color-1 {
    background: var(--status-color-1)
}

.status-color-2 {
    background: var(--status-color-2)
}

.status-color-3 {
    background: var(--status-color-3)
}

/* HEIGHTS AND WIDTHS */
.min-vh-100 {
    min-height: 100vh;
}

.w-50 {
   width: 50%; 
}

.w-100 {
    width: 100%; 
}

@media (max-width: 768px) {
    .w-50 {
        width: auto; 
    }
}


/* ROWS AND COLS */
.col {
    display: flex;
    flex-direction: column;
}

.row {
    display: flex;
    flex-direction: row;
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
}


/* POSITIONS */
.left {
    justify-content: left;
}

.right {
    justify-content: right;
}

.middle {
    justify-content: center;
}

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

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

.text-left {
    text-align: left;
}

.text-middle {
    text-align: center;
}

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

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

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

.d-flex {
    display: flex;
}

.v-top {
    vertical-align: top;
}

.v-middle {
    vertical-align: middle;
}

.v-bottom {
    vertical-align: bottom;
}

.vm-auto {
    margin: auto 0;
}

/* .left,
.right,
.middle,
.space-between,
.align-left,
.align-right,
.align-center {
    display: flex;
} */

/* GAPS */
.gap-3 {
    gap: 3rem;
}

.gap-2 {
    gap: 2rem;
}

.gap-1 {
    gap: 1rem;
}

.gap-05 {
    gap: 0.5rem;
}

.pad-1 {
    padding: 1rem;
}

.pad-2 {
    padding: 2rem;
}

.pad-3 {
    padding: 3rem;
}

.pad-4 {
    padding: 4rem;
}

.pl-1 {
    padding-left: 1rem;
}

.pl-2 {
    padding-left: 2rem;
}

.pl-3 {
    padding-left: 3rem;
}

.pl-4 {
    padding-left: 4rem;
}

.pr-1 {
    padding-right: 1rem;
}

.pr-2 {
    padding-right: 2rem;
}

.pr-3 {
    padding-right: 3rem;
}

.pr-4 {
    padding-right: 4rem;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.pb-3 {
    padding-bottom: 3rem;
}

.pb-4 {
    padding-bottom: 4rem;
}

.pt-1 {
    padding-top: 1rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pt-3 {
    padding-top: 3rem;
}

.pt-4 {
    padding-top: 4rem;
}

/* MARGIN */
.m-0 {
    margin: 0px !important; 
}

.m-1 {
    margin: 1rem !important; 
}

.m-2 {
    margin: 2rem !important; 
}

.mrl-1 {
    margin: 1rem !important; 
}

.mrl-2 {
    margin: 2rem !important; 
}

.mrl-3 {
    margin: 3rem !important; 
}

.mtb-1 {
    margin: 1rem 0rem;
}

.mtb-2 {
    margin: 2rem 0rem;
}

.mtb-3 {
    margin: 3rem 0rem;
}

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

.mb-1 {
    margin-bottom: 1rem !important; 
}

.mb-2 {
    margin-bottom: 2rem !important; 
}

.mb-3 {
    margin-bottom: 3rem !important; 
}

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

.mt-1 {
    margin-top: 1rem !important; 
}

.mt-2 {
    margin-top: 2rem !important; 
}

.mt-3 {
    margin-top: 3rem !important; 
}

/* PADDING */
.p-0 {
    padding: 0px;
}

.p-10 {
    padding: 10px;
}

/* COLORS */
.white {
    color: white;
}

.no-bg {
    background: none;
    background-color: none;
    box-shadow: none;
}

/* TEXT */
.caps {
    text-transform: uppercase;
}

.text-cutoff {
    white-space: nowrap;
    overflow: auto;
    text-overflow: ellipsis;
    max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* SHADOW */
.no-shadow {
    box-shadow: none;
}

/* TRANSITION */
.pop-out {
    transition: 0.2s ease-in-out;
}

.pop-out:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

/* BREAKS */

/* Remove spinners from number input fields */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
