.cell {
  flex: 1;
}
.cell-w2 {
  flex: 2;
}
.cell-w3 {
  flex: 3;
}
.cell-w4 {
  flex: 4;
}
.cell-w5 {
  flex: 5;
}

.inline {
  display: inline;
}

.flexible {
  display: flex;
}

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

.flex-fix {
  flex-shrink: 0;
  flex-grow: 0;
}

.flex-grow {
  flex-grow: 1;
}

.flex-noshrink {
  flex-shrink: 0;
}

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

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

.flexible-center-equidistant-cells {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
}

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

.flexible-centered {
  display: flex;
  justify-content: center;
}

.flexible-spacebetween {
  display: flex;
  justify-content: space-evenly;
}

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

.flex-self-align-start {
  align-self: flex-start;
}

.flex-self-align-end {
  align-self: flex-end;
}

.bottom-sidebar-menu-item {
  bottom: 0;
  position: absolute !important;
  width: 100%;
}

.five {
  min-width: 25%;
}

.no-bottom-padding {
  padding-bottom: 0 !important;
}

.scaled-down {
  transform: scale(0.25);
}

.relative {
  position: relative;
}

.main-content {
  max-height: calc(100vh - 90px);
}

.flex-fit {
  flex-grow: 0 !important;
}

.full-width {
  width: 100%;
}

.full-height {
  max-height: 100% !important;
  height: 100% !important;
}

.wrap {
  flex-wrap: wrap;
}

.vertically-scrollable {
  overflow-y: auto;
}

.borderboxed {
  border: 1px solid #ccc;
}

.link {
  cursor: pointer;
  color: #1e70bf;
}
.link:hover {
  text-decoration: underline;
}

.border-box {
  border: 1px solid #ccc;
  padding: 24px;
  border-radius: 0.28571429rem;
}

.no-margin {
  margin: 0 !important;
}

.pointer {
  cursor: pointer;
}

.smallest {
  font-size: 0.35rem !important;
}

.dark-background {
  background-color: #808080 !important;
}

.image-holder {
  background-color: #ccc;
  padding: 5px;
}

.p-6-3 {
  padding: 6px 3px;
}

.p-10-5 {
  padding: 10px 5px;
}

.p-top-2 {
  padding-top: 2px;
}

.p-top-4 {
  padding-top: 4px;
}

.p-top-5 {
  padding-top: 5px;
}

.p-top-10 {
  padding-top: 10px;
}

.p-btm-2 {
  padding-top: 2px;
}

.p-btm-4 {
  padding-top: 4px;
}

.p-btm-5 {
  padding-top: 5px;
}

.p-btm-10 {
  padding-top: 10px;
}

td.p-v-0 {
  padding-top: 0;
  padding-bottom: 0;
}
td.p-v-2 {
  padding-top: 2;
  padding-bottom: 2;
}
td.p-v-4 {
  padding-top: 4;
  padding-bottom: 4;
}

.m-5 {
  margin: 5px;
}
.m-l-5 {
  margin-left: 5px !important;
}

.m-top-5 {
  margin-top: 5px;
}

.m-top-10 {
  margin-top: 10px;
}

.m-top-20 {
  margin-top: 20px;
}

.m-top-30 {
  margin-top: 30px;
}

.m-top--20-left--30 {
  margin-top: -10px;
  margin-left: -30px;
}

.col-gap-10 {
  column-gap: 10px;
}
.col-gap-20 {
  column-gap: 20px;
}
.col-gap-30 {
  column-gap: 30px;
}
.col-gap-40 {
  column-gap: 40px;
}

.gap-10 {
  gap: 10px;
}
.gap-20 {
  gap: 20px;
}
.gap-30 {
  gap: 30px;
}
.gap-40 {
  gap: 40px;
}

.font-size-10 {
  font-size: 10px;
}
.font-size-20 {
  font-size: 20px;
}
.font-size-35 {
  font-size: 35px;
}
.font-bold {
  font-weight: bold;
}

.ui.vertical.divider.fullheight:after,
.ui.vertical.divider.fullheight:before {
  height: 100% !important;
}

.display-none {
  display: none;
}

.wp-5 {
  min-width: 5% !important;
  width: 5% !important;
}
.wp-10 {
  min-width: 10% !important;
  width: 10% !important;
}
.wp-15 {
  min-width: 15% !important;
  width: 15% !important;
}
.wp-20 {
  min-width: 20% !important;
  width: 20% !important;
}
.wp-25 {
  min-width: 25% !important;
  width: 25% !important;
}
.wp-30 {
  min-width: 30% !important;
  width: 30% !important;
}
.wp-35 {
  min-width: 35% !important;
  width: 35% !important;
}
.wp-40 {
  min-width: 40% !important;
  width: 40% !important;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader-image {
  width: 150px;
  height: 150px;
}

body {
  margin: 0;
}

#root {
  height: 100dvh;
  overflow: hidden;
  display: flex;
}