.flex {
  display: flex;
}

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

.flex-lg {
  display: flex;
}
@media screen and (max-width: 990px) {
  .flex-lg {
    display: block;
  }
}

.flex-md {
  display: flex;
}
@media screen and (max-width: 799px) {
  .flex-md {
    display: block;
  }
}

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

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

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

.justify-end {
  justify-content: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.justify-around{
  justify-content: space-around;
}

/* flex size */
.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

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

/* typography */
.light-text {
  color: #989898;
}


.currency-ar{
  padding: 0 5px;
}