/* Utilities */

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.shadow-lg {
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.175);
}

.flex {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.flex > * {
  padding: var(--gap);
}


.clickable {
  cursor: pointer;
}

.hide {
  display: none;
}
