.pointer{
  cursor: pointer;
}

.flex-space-between{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-center{
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flex-start {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.flex-end{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

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

.modal-large {
  width: 670px;
}