.clearfix {
  *zoom: 1
}

.clearfix:before,.clearfix:after {
  display: table;
  line-height: 0;
  content: ""
}

.clearfix:after {
  clear: both
}
.flex {
  display: flex;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-col-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.flex-col-center-x {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flex-col-center-y {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.justify-start {
  display: flex;
  justify-content: flex-start;
}
.justify-center {
  display: flex;
  justify-content: center;
}

.justify-end {
  display: flex;
  justify-content: flex-end;
}
.justify-evenly {
  display: flex;
  justify-content: space-evenly;
}
.justify-around {
  display: flex;
  justify-content: space-around;
}
.justify-between {
  display: flex;
  justify-content: space-between;
}
.align-start {
  display: flex;
  align-items: flex-start;
}
.align-center {
  display: flex;
  align-items: center;
}
.align-end {
  display: flex;
  align-items: flex-end;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.w-full {
  width: 1020px;
}
.debug {
  /* border: 1px solid red; */
}

.gap-30 {
  /* gap: 30px; */
}
.absolute-center-x {
  position: absolute;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}
.absolute-center-y {
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.absolute-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}