.flx {
  display: flex;
  align-items: center;
}

.flx-a-start {
  display: flex;
  align-items: flex-start;
}

.flx-a-center {
  display: flex;
  align-items: center;
}

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

.flx-sb {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flx-col-sb {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flx-top-sb {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.c-flx-sb {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.center {
  text-align: center;
}

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

.rel {
  position: relative;
}

.block {
  display: block !important;
}

.full {
  position: absolute;
  height: 100%;
  width: 100%;
}

.margin-center {
  margin: 0 auto;
}

.full-opacity {
  opacity: 1 !important;
}

.abs-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.abs-tl {
  position: absolute;
  top: 0;
  left: 0;
}

.abs-tr {
  position: absolute;
  top: 0;
  right: 0;
}

.abs-bl {
  position: absolute;
  bottom: 0;
  left: 0;
}

.abs-br {
  position: absolute;
  bottom: 0;
  right: 0;
}

.rel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.no-events {
  pointer-events: none;
}

.smooth-bounce {
  transition: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}/*# sourceMappingURL=utils.css.map */