@tailwind base;
@tailwind components;
@tailwind utilities;
@media screen and (max-width: 600px) {
  .hide-sm {
    display: none !important;
  }
}

@media screen and (min-width: 601px) and (max-width: 900px) {
  .hide-md {
    display: none !important;
  }
}

@media screen and (min-width: 901px) and (max-width: 1600px) {
  .hide-lg {
    display: none !important;
  }
}

@media screen and (min-width: 1601px) {
  .hide-xl {
    display: none !important;
  }
}

.fill {
  width: 100%;
  height: 100%;
}
.fill--width {
  width: 100%;
}
.fill--height {
  height: 100%;
}

.position--relative {
  position: relative;
}

.flex {
  display: flex;
}
.flex--align-center {
  align-items: center;
}
.flex--column {
  flex-direction: column;
}
.flex--wrap {
  flex-wrap: wrap;
}
.flex--gap {
  gap: 1rem;
}
.flex--no-shrink {
  flex-shrink: 0;
}

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

.overflow-x-auto {
  max-width: 50%;
  overflow-x: auto;
}

.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  width: 100%;
  gap: 1rem;
}

.col-1 {
  grid-column: span 1;
}
@media screen and (min-width: 1601px) {
  .col-xl-1 {
    grid-column: span 1 !important;
  }
}
@media screen and (min-width: 901px) and (max-width: 1600px) {
  .col-lg-1 {
    grid-column: span 1 !important;
  }
}
@media screen and (min-width: 601px) and (max-width: 900px) {
  .col-md-1 {
    grid-column: span 1 !important;
  }
}
@media screen and (max-width: 600px) {
  .col-sm-1 {
    grid-column: span 1 !important;
  }
}
.col-2 {
  grid-column: span 2;
}
@media screen and (min-width: 1601px) {
  .col-xl-2 {
    grid-column: span 2 !important;
  }
}
@media screen and (min-width: 901px) and (max-width: 1600px) {
  .col-lg-2 {
    grid-column: span 2 !important;
  }
}
@media screen and (min-width: 601px) and (max-width: 900px) {
  .col-md-2 {
    grid-column: span 2 !important;
  }
}
@media screen and (max-width: 600px) {
  .col-sm-2 {
    grid-column: span 2 !important;
  }
}
.col-3 {
  grid-column: span 3;
}
@media screen and (min-width: 1601px) {
  .col-xl-3 {
    grid-column: span 3 !important;
  }
}
@media screen and (min-width: 901px) and (max-width: 1600px) {
  .col-lg-3 {
    grid-column: span 3 !important;
  }
}
@media screen and (min-width: 601px) and (max-width: 900px) {
  .col-md-3 {
    grid-column: span 3 !important;
  }
}
@media screen and (max-width: 600px) {
  .col-sm-3 {
    grid-column: span 3 !important;
  }
}
.col-4 {
  grid-column: span 4;
}
@media screen and (min-width: 1601px) {
  .col-xl-4 {
    grid-column: span 4 !important;
  }
}
@media screen and (min-width: 901px) and (max-width: 1600px) {
  .col-lg-4 {
    grid-column: span 4 !important;
  }
}
@media screen and (min-width: 601px) and (max-width: 900px) {
  .col-md-4 {
    grid-column: span 4 !important;
  }
}
@media screen and (max-width: 600px) {
  .col-sm-4 {
    grid-column: span 4 !important;
  }
}
.col-5 {
  grid-column: span 5;
}
@media screen and (min-width: 1601px) {
  .col-xl-5 {
    grid-column: span 5 !important;
  }
}
@media screen and (min-width: 901px) and (max-width: 1600px) {
  .col-lg-5 {
    grid-column: span 5 !important;
  }
}
@media screen and (min-width: 601px) and (max-width: 900px) {
  .col-md-5 {
    grid-column: span 5 !important;
  }
}
@media screen and (max-width: 600px) {
  .col-sm-5 {
    grid-column: span 5 !important;
  }
}
.col-6 {
  grid-column: span 6;
}
@media screen and (min-width: 1601px) {
  .col-xl-6 {
    grid-column: span 6 !important;
  }
}
@media screen and (min-width: 901px) and (max-width: 1600px) {
  .col-lg-6 {
    grid-column: span 6 !important;
  }
}
@media screen and (min-width: 601px) and (max-width: 900px) {
  .col-md-6 {
    grid-column: span 6 !important;
  }
}
@media screen and (max-width: 600px) {
  .col-sm-6 {
    grid-column: span 6 !important;
  }
}
.col-7 {
  grid-column: span 7;
}
@media screen and (min-width: 1601px) {
  .col-xl-7 {
    grid-column: span 7 !important;
  }
}
@media screen and (min-width: 901px) and (max-width: 1600px) {
  .col-lg-7 {
    grid-column: span 7 !important;
  }
}
@media screen and (min-width: 601px) and (max-width: 900px) {
  .col-md-7 {
    grid-column: span 7 !important;
  }
}
@media screen and (max-width: 600px) {
  .col-sm-7 {
    grid-column: span 7 !important;
  }
}
.col-8 {
  grid-column: span 8;
}
@media screen and (min-width: 1601px) {
  .col-xl-8 {
    grid-column: span 8 !important;
  }
}
@media screen and (min-width: 901px) and (max-width: 1600px) {
  .col-lg-8 {
    grid-column: span 8 !important;
  }
}
@media screen and (min-width: 601px) and (max-width: 900px) {
  .col-md-8 {
    grid-column: span 8 !important;
  }
}
@media screen and (max-width: 600px) {
  .col-sm-8 {
    grid-column: span 8 !important;
  }
}
.col-9 {
  grid-column: span 9;
}
@media screen and (min-width: 1601px) {
  .col-xl-9 {
    grid-column: span 9 !important;
  }
}
@media screen and (min-width: 901px) and (max-width: 1600px) {
  .col-lg-9 {
    grid-column: span 9 !important;
  }
}
@media screen and (min-width: 601px) and (max-width: 900px) {
  .col-md-9 {
    grid-column: span 9 !important;
  }
}
@media screen and (max-width: 600px) {
  .col-sm-9 {
    grid-column: span 9 !important;
  }
}
.col-10 {
  grid-column: span 10;
}
@media screen and (min-width: 1601px) {
  .col-xl-10 {
    grid-column: span 10 !important;
  }
}
@media screen and (min-width: 901px) and (max-width: 1600px) {
  .col-lg-10 {
    grid-column: span 10 !important;
  }
}
@media screen and (min-width: 601px) and (max-width: 900px) {
  .col-md-10 {
    grid-column: span 10 !important;
  }
}
@media screen and (max-width: 600px) {
  .col-sm-10 {
    grid-column: span 10 !important;
  }
}
.col-11 {
  grid-column: span 11;
}
@media screen and (min-width: 1601px) {
  .col-xl-11 {
    grid-column: span 11 !important;
  }
}
@media screen and (min-width: 901px) and (max-width: 1600px) {
  .col-lg-11 {
    grid-column: span 11 !important;
  }
}
@media screen and (min-width: 601px) and (max-width: 900px) {
  .col-md-11 {
    grid-column: span 11 !important;
  }
}
@media screen and (max-width: 600px) {
  .col-sm-11 {
    grid-column: span 11 !important;
  }
}
.col-12 {
  grid-column: span 12;
}
@media screen and (min-width: 1601px) {
  .col-xl-12 {
    grid-column: span 12 !important;
  }
}
@media screen and (min-width: 901px) and (max-width: 1600px) {
  .col-lg-12 {
    grid-column: span 12 !important;
  }
}
@media screen and (min-width: 601px) and (max-width: 900px) {
  .col-md-12 {
    grid-column: span 12 !important;
  }
}
@media screen and (max-width: 600px) {
  .col-sm-12 {
    grid-column: span 12 !important;
  }
}

.monospace {
  font-family: monospace;
}

.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
}

.bold {
  font-weight: bold;
}

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

.flex-end {
  justify-content: end;
}

.accordion {
  border: solid 1px #aaa;
  padding: 1rem;
  font-size: 0.7rem;
  border-radius: 0.2rem;
  position: relative;
}
.accordion::before {
  font-size: 0.7rem;
  content: var(--accordion-title, "Accordion");
  position: absolute;
  top: -1.1em;
  padding: 0.5em;
  background-color: #f7fbfc;
  left: 0.5em;
  color: #777777;
}
.accordion__container {
  display: none;
}
.accordion__container--visible {
  display: block;
}

.breadcrumb:last-child {
  font-weight: bold;
}
.breadcrumbs {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.breadcrumbs > .mdi {
  opacity: 0.5;
  margin: 0 0.3rem;
}

.button {
  border: none;
  background-color: var(--applet-color);
  color: white;
  padding: 0.7em 0.9em;
  font-size: 1.2rem;
  border-radius: 0.2em;
  cursor: pointer;
  transition: filter 0.1s ease;
  display: inline-block;
}
.button:hover {
  filter: brightness(110%);
}
.button:active {
  filter: brightness(90%);
}
.flex > .button {
  width: 100%;
}
.button__container {
  display: inline-flex;
  gap: 1px;
  background-color: var(--applet-color-dark);
  border-radius: 0.2rem;
  overflow: hidden;
  width: fit-content;
}
.button__container > .button {
  border-radius: 0;
}
.button--small {
  font-size: 0.7rem;
}

.checkbox {
  width: fit-content;
  opacity: 0.7;
  transition: opacity 0.1s ease;
}
.checkbox:hover {
  opacity: 1;
}
.checkbox__input {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.checkbox__input:checked ~ .checkbox__icon--unchecked {
  display: none;
}
.checkbox__input:checked ~ .checkbox__icon--checked {
  display: inline;
}
.checkbox__icon--checked {
  display: none;
}
.checkbox__icon--unchecked {
  display: inline;
}

.dashboard__title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  --icon-circle-size: 3rem;
}
.dashboard__subtitle {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 0.8rem;
}
.dashboard__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.dashboard__container {
  position: fixed;
  background-color: #f7fbfc;
  top: 4rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1.5rem 2rem;
  left: 14rem;
  z-index: 10;
  border-radius: 0.5rem;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}
@media screen and (min-width: 1601px) {
  .dashboard__container {
    left: 20rem;
  }
}
.dashboard__actions {
  position: absolute;
  top: 0;
  right: 0;
  padding: inherit;
  padding-bottom: 0;
  padding-left: 0;
}

.form {
  max-width: 300px;
}
.form--flex {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form--flex .input {
  width: 100%;
}

:root {
  --icon-circle-size: 2.5rem;
  --icon-circle-radius: 100%;
  --icon-circle-margin-right: 0.6em;
}

.icon__circle, .login__user__add {
  width: var(--icon-circle-size);
  min-width: var(--icon-circle-size);
  height: var(--icon-circle-size);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--icon-circle-radius);
  margin-right: var(--icon-circle-margin-right);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.icon__circle span, .login__user__add span {
  font-size: calc(var(--icon-circle-size) * 0.6);
}

.input {
  border: solid 1px rgba(0, 0, 0, 0.3);
  background-color: white;
  padding: 0.3rem 0.5rem;
  border-radius: 0.2rem;
  max-width: 100%;
}
.login .input {
  border: solid 1px white;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
}
.flex > .input, .flex > label > .input {
  width: 100%;
}
.input__group {
  display: flex;
  gap: 2rem;
}
.input__group--vertical {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.input__button {
  width: 2rem;
  border-radius: 0.2rem 0 0 0.2rem;
  border-left: solid 1px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: -2rem;
  font-size: 1.2rem;
}
.input__text {
  opacity: 0.8;
  font-size: 0.7rem;
  font-weight: 600;
}
.input--image {
  opacity: 0;
  position: absolute;
  width: 2px;
  height: 2px;
  margin: -1px;
}
.input--image__label {
  --icon-circle-size: 8rem;
  --icon-circle-radius: 0;
  --icon-circle-margin-right: 0;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 8rem;
}
.input--image__cta {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 0.8rem;
  padding: 0.1rem 0;
}

label.disabled, label[data-disabled], label.disabled-explicit, label[data-disabled=explicit], label[disabled=explicit], label[disabled] {
  pointer-events: none;
}

.login {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 600px;
  max-height: 100%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  --icon-circle-size: 2.5rem;
}
.login__title {
  height: 5rem;
  padding: 1rem 1rem;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
}
.login__title__text {
  font-size: 1.4rem;
  font-weight: bold;
  margin-left: 0.5rem;
  margin-right: auto;
}
.login .logo {
  height: 100%;
  width: auto;
  aspect-ratio: 1;
}
.login__form {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.login__form__toggle {
  display: none;
}
.login__form > hr {
  opacity: 0;
}
.login__footer {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 1rem 1.2rem;
}
.login__footer .logo {
  height: 1.2rem;
  margin-right: 0.2rem;
}
.login__footer__title {
  margin-bottom: 1.5rem;
}
.login__footer__applet {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  display: flex;
}
.login__footer__powered {
  margin-bottom: 0.5rem;
}
.login__user {
  cursor: pointer;
  height: 4rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  border-bottom: solid 1px rgba(0, 0, 0, 0.3);
}
.login__user:last-child {
  border-bottom: none;
}
.login__users {
  overflow-y: auto;
  flex-shrink: 1;
}
.login__user__add {
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
  margin-right: 1rem;
}
.login__user__name {
  font-size: 1.2rem;
  margin-right: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.login__user__delete {
  padding: 0.6rem;
  position: relative;
  right: -1rem;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.1s ease;
  will-change: opacity, color;
  z-index: 2;
}
.login__user__delete:hover {
  opacity: 1;
  color: red;
}

.pagination {
  padding: 1rem 0 0;
  font-size: 0.8rem;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}
.pagination__icon {
  width: 1em;
}
.pagination__icon--spacer {
  width: 1em;
}
.pagination__number {
  opacity: 0.6;
}
.pagination__number--current {
  opacity: 0.8;
  font-weight: bold;
}

.pill, .pill--button {
  background-color: #ddd;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.7rem;
  padding: 0.2em 0.6em;
  border-radius: 1rem;
  display: inline-block;
  opacity: 0.9;
}
.pill--button {
  background-color: black;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}
.pills {
  display: flex;
  overflow-x: auto;
  gap: 0.3rem;
  padding: 0.5rem 0;
}

.section {
  border-radius: 0.5rem;
  border: solid 1px rgba(0, 0, 0, 0.2);
  width: fit-content;
}
.section__title {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}
.section__title:last-child {
  border-bottom: none;
}
.section__content {
  padding: 0.5rem 1rem;
}
.section__content--no-padding {
  padding: 0;
}
.section__container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.sidebar {
  position: fixed;
  top: 4rem;
  left: 0;
  width: 14rem;
  height: 100%;
  overflow-y: auto;
  z-index: 90;
}
@media screen and (min-width: 1601px) {
  .sidebar {
    width: 20rem;
  }
}
.sidebar__title {
  padding: 0.7rem 1rem;
  font-weight: bold;
  font-size: 0.8rem;
}
.sidebar__item {
  padding: 0.7rem 1rem 0.7rem 1.8rem;
  display: block;
  position: relative;
  transition: padding-left 0.1s ease;
}
.sidebar__item--current {
  background-color: #f7fbfc;
}
.sidebar__item:hover, .sidebar__item:active {
  padding-left: 2rem;
}
.sidebar__item .mdi {
  margin-right: 0.5em;
}

.table {
  text-align: left;
  --icon-circle-size: 1em;
  white-space: nowrap;
  border-collapse: collapse;
}
.table tr th {
  font-size: 0.6rem;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.7);
}
.table tr td {
  border-bottom: solid 1px #eee;
}
.table tr td .text-overflow {
  width: 100%;
}
.table tr td.truncate {
  min-width: 200px;
  max-width: 20vw;
  overflow: hidden;
  text-overflow: ellipsis;
}
th > .table__cell {
  padding: 0.5rem 1rem;
}
td > .table__cell {
  padding: 0.5rem 1rem;
}
.table__cell {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}
.table__container {
  width: 100%;
  overflow-x: auto;
}
.table__container > .table {
  width: 100%;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4rem;
  display: flex;
  align-items: center;
  z-index: 100;
  --icon-circle-size: 2.4rem;
}
.topbar__title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 14rem;
}
@media screen and (min-width: 1601px) {
  .topbar__title {
    width: 20rem;
  }
}
.topbar__title__icon {
  width: 2rem;
}
.topbar__title__text {
  margin-left: 0.8rem;
  font-size: 1.4rem;
  font-weight: bold;
}
.topbar__spacer {
  margin-right: auto;
}
.topbar__actions {
  padding-right: 1.4rem;
  display: flex;
  gap: 1rem;
}
.topbar__app-switcher {
  height: 4rem;
  display: flex;
  align-items: center;
  position: relative;
}
.topbar__app-switcher__menu-toggle {
  height: 1.6rem;
  width: 1.6rem;
  min-width: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-top: 0.1rem;
  border-radius: 100%;
}
.topbar__app-switcher__menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.topbar__app-switcher__popup {
  font-size: 1.2rem;
  position: absolute;
  right: 0;
  top: 100%;
  width: fit-content;
  max-width: 50vw;
  display: flex;
  gap: 1rem;
  justify-content: space-evenly;
  border: solid 1px #ddd;
  border-radius: 0.4rem;
  transform: translate(1rem, 0.5rem);
  background-color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s ease;
  padding: 0.5rem;
  --icon-circle-size: 2rem;
}
.topbar__app-switcher__popup:before {
  content: "";
  position: absolute;
  top: -0.35rem;
  right: 1.4rem;
  width: 0.7rem;
  height: 0.7rem;
  transform: rotate(45deg);
  border: solid 1px #ddd;
  background-color: white;
}
.topbar__app-switcher__popup:after {
  content: "";
  position: absolute;
  top: 0;
  right: 1rem;
  width: 2rem;
  height: 0.5rem;
  background-color: white;
}
.topbar__app-switcher__popup--visible {
  opacity: 1;
  pointer-events: all;
}
.topbar__app-switcher__popup__item {
  width: var(--icon-circle-size);
  height: var(--icon-circle-size);
  border-radius: 0.5rem;
  background-color: white;
  overflow: hidden;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}
.topbar__app-switcher__popup__item .icon__circle, .topbar__app-switcher__popup__item .login__user__add {
  margin-right: 0;
  border-radius: 0;
}
.topbar__account {
  height: 4rem;
  display: flex;
  align-items: center;
  position: relative;
}
.topbar__account__menu-toggle {
  cursor: pointer;
}
.topbar__account__popup {
  font-size: 1.2rem;
  position: absolute;
  right: 0;
  top: 100%;
  width: max-content;
  max-width: 50vw;
  display: flex;
  flex-direction: column;
  border: solid 1px #ddd;
  border-radius: 0.4rem;
  transform: translate(0rem, 0.5rem);
  background-color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s ease;
}
.topbar__account__popup:before {
  content: "";
  position: absolute;
  top: -0.35rem;
  right: 1.4rem;
  width: 0.7rem;
  height: 0.7rem;
  transform: rotate(45deg);
  border: solid 1px #ddd;
  background-color: white;
}
.topbar__account__popup:after {
  content: "";
  position: absolute;
  top: 0;
  right: 1rem;
  width: 2rem;
  height: 0.5rem;
  background-color: white;
}
.topbar__account__popup--visible {
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 900px) {
  .topbar__account__popup {
    max-width: 80vw;
  }
}
.topbar__account__popup__item {
  padding: 0.8rem 2.5rem 0.8rem 1.2rem;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}
.topbar__account__popup__item:last-child {
  border-bottom: none;
}
.topbar__account__popup__item .mdi {
  margin-right: 0.7em;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html, body {
  padding: 0;
  margin: 0;
  font-family: sans-serif;
  width: 100%;
  height: 100%;
}

body {
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  background-color: var(--applet-color);
  padding: 1rem;
  --applet-color: #2f80a7;
}
@media screen and (max-width: 600px) {
  body {
    padding: 0;
  }
}

* {
  --applet-color-light: hsl(from var(--applet-color) h s calc(l + 5));
  --applet-color-dark: hsl(from var(--applet-color) h s calc(l - 5));
}

svg {
  max-height: 100%;
  fill: currentcolor;
}

a {
  color: inherit;
  text-decoration: none;
}

.glass, .dashboard__background {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
}

[data-href] {
  cursor: pointer;
}

.disabled, [data-disabled], [disabled], .disabled-explicit, [data-disabled=explicit], [disabled=explicit] {
  opacity: 0.4;
}
.disabled-explicit, [data-disabled=explicit], [disabled=explicit] {
  cursor: not-allowed;
}
.disabled-explicit *, [data-disabled=explicit] *, [disabled=explicit] * {
  pointer-events: none;
}

.text--red {
  color: #ce3c3c;
}
.text--green {
  color: #ce3c3c;
}

.bg--red {
  background-color: #ce3c3c;
}
.bg--green {
  background-color: #78c635;
}
.bg--grey {
  background-color: #aaa;
}