.flex {
  display: flex;
}
.block {
  display: block;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.mb-8 {
  margin-bottom: 8px;
}
.mt-5 {
  margin-top: 5px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-50 {
  margin-top: 50px;
}
.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.-mx-15 {
  margin-left: -15px;
  margin-right: -15px;
}
.ml-12 {
  margin-left: 12px;
}
.mr-12 {
  margin-right: 12px;
}
.pl-15 {
  padding-left: 15px;
}
.py-2 {
  padding-top: 2px;
  padding-bottom: 2px;
}
.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}
.items-baseline {
  align-items: baseline;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.resize-none {
  resize: none;
}
.h-200 {
  height: 200px;
}
.w-70 {
  width: 70px;
}
.min-w-150 {
  min-width: 150px;
}
.max-w-15 {
  width: 15%;
}
.w-full {
  width: 100%;
}
.bg-eee {
  background-color: #eee;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-red {
  color: red;
}
.text-white {
  color: white;
}
.text-primary {
  color: #470042;
}
.font-sm {
  font-size: 14px;
}
.visible {
  visibility: visible;
}
.hidden {
  visibility: hidden;
}
.underline {
  text-decoration: underline;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.right-0 {
  right: 0;
}
.flex-wrap {
  flex-wrap: wrap;
}
.text-16px {
  font-size: 16px !important;
}
.text-24px {
  font-size: 24px !important;
}
.z-1000 {
  z-index: 1000;
}
.opacity-9 {
  opacity: 0.9;
}
.p-5 {
  padding: 5px;
}
.bg-white {
  background: #fff;
}