:root {
    font-family: "Roboto", sans-serif;
  }
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: "Roboto", sans-serif !important;
}

.d-flex {
    display: flex;
}
.d-none {
display: none;
}
.flex-column {
    flex-direction: column;
}
.align-items-start {
align-items: flex-start;
}

.align-items-end {
align-items: flex-end;
}

.align-items-center {
align-items: center;
}

.align-items-baseline {
align-items: baseline;
}

.align-items-stretch {
align-items: stretch;
}

.align-content-start {
align-content: flex-start;
}

.align-content-end {
align-content: flex-end;
}

.align-content-center {
align-content: center;
}

.align-content-between {
align-content: space-between;
}

.align-content-around {
align-content: space-around;
}

.align-content-stretch {
align-content: stretch;
}
.justify-content-start {
justify-content: flex-start;
}

.justify-content-end {
justify-content: flex-end;
}

.justify-content-center {
justify-content: center;
}

.justify-content-between {
justify-content: space-between;
}

.justify-content-around {
justify-content: space-around;
}

.justify-content-evenly {
justify-content: space-evenly;
}
.ms-0 {
margin-left: 0;
}

.ms-1 {
margin-left: 0.25rem;
}

.ms-2 {
margin-left: 0.5rem;
}

.ms-3 {
margin-left: 1rem;
}

.ms-4 {
margin-left: 1.5rem;
}

.ms-5 {
margin-left: 3rem;
}
.mb-0 {
margin-bottom: 0;
}

.mb-1 {
margin-bottom: 0.25rem;
}

.mb-2 {
margin-bottom: 0.5rem;
}

.mb-3 {
margin-bottom: 1rem;
}

.mb-4 {
margin-bottom: 1.5rem;
}

.mb-5 {
margin-bottom: 3rem;
}
.me-0 {
margin-right: 0;
}

.me-1 {
margin-right: 0.25rem;
}

.me-2 {
margin-right: 0.5rem;
}

.me-3 {
margin-right: 1rem;
}

.me-4 {
margin-right: 1.5rem;
}

.me-5 {
margin-right: 3rem;
}
.mt-0 {
margin-top: 0;
}

.mt-1 {
margin-top: 0.25rem;
}

.mt-2 {
margin-top: 0.5rem;
}

.mt-3 {
margin-top: 1rem;
}

.mt-4 {
margin-top: 1.5rem;
}

.mt-5 {
margin-top: 3rem;
}
.text-start {
    text-align: left;
}

.text-end {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-decoration-none {
    text-decoration: none;
}

.text-decoration-underline {
    text-decoration: underline;
}
.w-100 {
    width: 100% !important;
}