
.pointer {
  cursor: pointer;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.d-flex {
  display: flex;

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

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

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

.text-underline {
  text-decoration: underline;
}

.pl-20 {
  padding-left: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-40 {
  margin-top: 40px;
}

.margin-top-0 {
  margin-top: 0 !important;
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-bottom-0 {
  margin-bottom: 0 !important;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.w-100 {
  width: 100% !important;
}

.border-danger {
  border-color: red !important;
}

.text-danger {
  color: red !important;
}

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

.text-main {
  color: $main_color
}

.text-main-light {
  color: $main_color_light
}

.fs-18 {
  font-size: 18px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-36 {
  font-size: 36px !important;
}

.lh-28 {
  line-height: 28.8px;
}

.lh-21 {
  line-height: 21.6px;
}