html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

#root {
  display: flex;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

.show-focus-outlines *:focus {
  outline: auto;
}

.flex {
  display: flex;
}

.wrap {
  flex-wrap: wrap;
}

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

.hc {
  justify-content: center;
}

.vc {
  align-items: center;
}

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

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hidden {
  display: none;
}

.light-shadow {
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.2);
}

.medium-shadow {
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.3);
}

.mediumShadowOnHover {
  transition: all 0.2s;
}

.mediumShadowOnHover:hover {
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.3);
}

.bold {
  font-weight: bold;
}

.maxWidth {
  width: 100%;
}

.maxHeight {
  height: 100%;
}

.maxAll {
  width: 100%;
  height: 100%;
}

.black {
  color: black;
}

.scroll {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.scroll-y {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.scroll-x {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.disable-scrollbars::-webkit-scrollbar {
  width: 0px;
  background: transparent;
  height: 0px;
}

.disable-scrollbars {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.allCaps {
  text-transform: uppercase;
}

div {
  overflow-wrap: break-word;
}
