.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.flex-column {
  flex-direction: column;
}

.flex-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-white-80 {
   color:rgba(255,255,255,0.8)
}
  
.text-theme {
  color: #43464D;
}

.mb-10 {
  margin-bottom: 10px;
}

.base-btn {
  background: #6471FF;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.font-500 {
  font-weight: 500;
}

.font-600 {
  font-weight: 600;
}