.flex {
  display: flex;
  align-items: center;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-sb {
  justify-content: space-between;
}
.flex-start {
  align-items: flex-start;
  justify-content: flex-start;
}
.flex-end {
  justify-content: flex-end;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.gap-1 {
  gap: 1rem !important;
}
.gap-15 {
  gap: 1.5rem !important;
}
.gap-20 {
  gap: 2rem !important;
}
.gap-3 {
  gap: 3rem !important;
}

.p-0 {
  padding: 0;
}
.m-0 {
  margin: 0;
}
.p-relative {
  position: relative;
}

.mt-1 {
  margin-top: 1rem !important;
}
.mt-15 {
  margin-top: 1.5rem !important;
}
.mt-2 {
  margin-top: 2rem !important;
}
.mt-3 {
  margin-top: 3rem !important;
}
.mt-45 {
  margin-top: 4.5rem !important;
}
.mb-1 {
  margin-top: 1rem !important;
}
.mb-15 {
  margin-top: 1.5rem !important;
}
.mb-2 {
  margin-top: 2rem !important;
}
.mb-3 {
  margin-top: 3rem !important;
}
.text-center {
  text-align: center;
}
.w-16 {
  width: 16.666666%;
}
.w-33 {
  width: 33.33333%;
}
.w-50 {
  width: 50%;
}
.d-block {
  display: block;
}
