.mb-\[0px\] {
  margin-bottom: 0px;
}

.mb-\[100px\] {
  margin-bottom: 100px;
}

.mb-\[150px\] {
  margin-bottom: 150px;
}

.mt-\[100px\] {
  margin-top: 100px;
}

.mt-\[10px\] {
  margin-top: 10px;
}

.mt-\[120px\] {
  margin-top: 120px;
}

.mt-\[130px\] {
  margin-top: 130px;
}

.mt-\[25px\] {
  margin-top: 25px;
}

.mt-\[30px\] {
  margin-top: 30px;
}

.mt-\[35px\] {
  margin-top: 35px;
}

.mt-\[40px\] {
  margin-top: 40px;
}

.mt-\[45px\] {
  margin-top: 45px;
}

.mt-\[50px\] {
  margin-top: 50px;
}

.mt-\[55px\] {
  margin-top: 55px;
}

.mt-\[60px\] {
  margin-top: 60px;
}

.mt-\[70px\] {
  margin-top: 70px;
}

.mt-\[80px\] {
  margin-top: 80px;
}

.mt-\[85px\] {
  margin-top: 85px;
}

.mt-\[90px\] {
  margin-top: 90px;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.table {
  display: table;
}

.hidden {
  display: none;
}

.max-w-\[400px\] {
  max-width: 400px;
}

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

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

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

.gap-x-\[30px\] {
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.gap-y-\[15px\] {
  row-gap: 15px;
}

.pt-\[10px\] {
  padding-top: 10px;
}

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

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.fz18 {
  font-size: calc(18rem / 16);
}

.fz22 {
  font-size: calc(22rem / 16);
}

.fz26 {
  font-size: calc(26rem / 16);
}

.grid-cols-auto {
  --max-cols: 1fr;
  grid-template-columns: repeat(
    auto-fit,
    minmax(min(100%, var(--min-cols)), var(--max-cols))
  );
}

.tab-br {
  display: none;
}

@media screen and (max-width: calc(768em/16)) {
  .tab-br {
    display: block;
  }
}

.mid-br {
  display: none;
}

@media screen and (max-width:calc(600em/16)) {
  .mid-br {
    display: block;
  }
}

.sp-br {
  display: none;
}

@media screen and (max-width: calc(450em/16)) {
  .sp-br {
    display: block;
  }
}

@media not all and (min-width: 26.5625em) {
  .max-xs\:hidden {
    display: none;
  }
}

@media (min-width: 26.5625em) {
  .xs\:hidden {
    display: none;
  }
}