
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

table {
    border-collapse: collapse;
}

html, body {
    height: 100%;
}

/* bootstrap */

.p-1 {
    padding: .25rem;
}

.p-2 {
    padding: .5rem;
}

.p-3 {
    padding: 1rem;
}

.m-1 {
    margin: .25rem;
}

.m-2 {
    margin: .5rem;
}

.m-3 {
    margin: 1rem;
}

.mb-1 {
    margin-bottom: .25rem;
}

.mb-2 {
    margin-bottom: .5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.h-100 {
    height: 100%;
}

.w-100 {
    width: 100%;
}

.w-5 {
    width: 5%;
}

.w-7 {
    width: 7%;
}

.w-10 {
    width: 10%;
}

.w-20 {
    width: 20%;
}

.table-fixed {
    table-layout: fixed;
}

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

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

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

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

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

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

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.d-none {
    display: none;
}

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

.col {
    flex: 1 1 0;
}

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

.col-6 {
    width: calc(100% * 6 / 12);
}

.col-12 {
    width: calc(100% * 12 / 12);
}

.col-md-8 {
    width: 100%;
}

.col-md-2 {
    width: 100%;
}

.img-fluid {
    max-width: 100%;
    max-height: 100px;
}

@media (min-width: 1200px) {
    .col-md-8 {
        flex: 0 0 auto;
        width: calc(100% * 8 / 12);
    }
    .col-md-2 {
        flex: 0 0 auto;
        width: calc(100% * 2 / 12);
    }
    .container {
        width: 100%;
    }
}

.overflow-auto {
    overflow: auto;
}

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

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

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

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

.fs-1 {
    font-size: 2.5rem;
}

.fs-2 {
    font-size: 2rem;
}

.fs-3 {
    font-size: 1.75rem;
}

.fs-4 {
    font-size: 1.5rem;
}

.fs-5 {
    font-size: 1.25rem;
}

.fs-6 {
    font-size: 1rem;
}

.roboto {
    font-family: Roboto, sans-serif;
}

.green {
    background-color: rgba(0, 230, 64, 0.2);
    color: #32CD32;
}

.red {
    background-color: rgba(217, 30, 24, 0.2);
    color: #FF0000;
}

.yellow {
    background-color: #000000;
    color: #FFFF00;
}

.blue {
    background-color: #1172BA;
    color: white;
}

.all-blue {
    background-color: #1172BA;
    color: #1172BA;
}

.border, .table-bordered td, .table-bordered th {
    border: 1px solid #1172BA80;
}

.position-fixed {
    position: fixed;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}

.pointer-events-none {
    pointer-events: none;
}