/* src/styles.css */
html {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    Roboto,
    "Helvetica Neue",
    sans-serif;
}
html,
body,
app-root,
.app-frame {
  margin: 0;
  box-sizing: border-box;
}
.hoverPointer:hover {
  cursor: pointer;
  background-color: #777;
}

/* src/styles/layout.scss */
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.grid {
  display: grid;
}
.flex-wrap {
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .flex-col-xs {
    flex-direction: column;
  }
}
@media screen and (max-width: 599px) {
  .flex-row-xs {
    flex-direction: row;
  }
}
@media screen and (min-width: 600px) and (max-width: 959.98px) {
  .flex-col-s {
    flex-direction: column;
  }
}
@media screen and (min-width: 600px) and (max-width: 959.98px) {
  .flex-row-s {
    flex-direction: row;
  }
}
.gap-6 {
  gap: 6px;
}
.gap-16 {
  gap: 16px;
}
.gap-48 {
  gap: 48px;
}
.space-between {
  justify-content: space-between;
}
.space-evenly {
  justify-content: space-evenly;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: end;
}
.items-center {
  align-items: center;
}
.flex-1 {
  flex: 1;
}
.flex-grow {
  flex-grow: 1;
}
@media screen and (max-width: 599px) {
  .hide-xs {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .hide-gt-xs {
    display: none;
  }
}
@media screen and (max-width: 959px) {
  .hide-sm {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .hide-gt-sm {
    display: none;
  }
}

/* angular:styles/global:styles */
