.relative {
  position: relative;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.flex {
  display: flex;
}

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

.flex-wrap {
  flex-wrap: wrap;
}

.flex-fill {
  flex: 1 1 auto;
}

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

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

.align-items-center {
  align-items: center;
}

.align-items-between {
  align-items: space-between;
}

.align-items-stretch {
  align-items: stretch;
}

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

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

.justify-content-center {
  justify-content: center;
}

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

.gap-half {
  gap: 4px;
}

.gap-1 {
  gap: 8px;
}

.gap-2 {
  gap: 16px;
}

.gap-3 {
  gap: 24px;
}

.block {
  display: block;
}

.hide {
  display: none;
}

.strong {
  font-weight: 600;
  font-family: var(--font-bold);
}

.text-wrap {
  word-break: break-word;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

.text-h28 {
  font-size: var(--h28-size);
  line-height: var(--h28-line-height);
  font-weight: var(--h28-weight);
}

.text-h20 {
  font-size: var(--h20-size);
  line-height: var(--h20-line-height);
  font-weight: var(--h20-weight);
  font-family: var(--font-bold);
}

.text-h16 {
  font-size: var(--h16-size);
  line-height: var(--h16-line-height);
  font-weight: var(--h16-weight);
}

.text-b14 {
  font-size: var(--b14-size);
  line-height: var(--b14-line-height);
  font-weight: var(--b14-weight);
}

.text-p14 {
  font-size: var(--p14-size);
  line-height: var(--p14-line-height);
  font-weight: var(--p14-weight);
}

.text-b12 {
  font-size: var(--b12-size);
  line-height: var(--b12-line-height);
  font-weight: var(--b12-weight);
  font-family: var(--font-bold);
}

.bg-light {
  background-color: var(--color-bg-light);
}

.color-body {
  color: var(--color-body);
}

.color-body-light {
  color: var(--color-body-light);
}

.color-white {
  color: var(--color-white);
}

.color-success {
  color: var(--color-success);
}

.color-danger {
  color: var(--color-danger);
}

.color-info {
  color: var(--color-info);
}

.color-warning {
  color: var(--color-warning);
}

.pointer {
  cursor: pointer;
}

.paper {
  background: var(--color-white);
}

.depth {
  box-shadow: 0px 3px 10px rgba(43, 45, 66, 0.14);
}

.disabled {
  color: var(--color-placeholder);
  pointer-events: none;
  cursor: not-allowed;
}

.btn {
  cursor: pointer;
  display: inline-block;
  outline: 0;
  border: none;
  padding: 12px 16px;
  border-radius: 6px;
  min-width: 88px;
  vertical-align: baseline;
  text-transform: none;
  text-shadow: none;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-bold);

  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  overflow: hidden;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn-link {
  background: none;
  color: var(--color-primary);
  padding: 0;
  min-width: 0;
}

.btn-disabled {
  background-color: var(--color-disabled);
  color: var(--color-body-light);
  pointer-events: none;
  cursor: not-allowed;
}

.btn-primary:not(.btn-disabled):hover {
  background-color: var(--color-primary-dark);
}

.btn-secondary:not(.btn-disabled):hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
