/*==== FLEX BLOX === */
.d-flex {
    display: flex;
}
.d-inline-flex {
    display: inline-flex;
}
.align-items-center {
    align-items: center;
}

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

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

/*=== END FLEX BOX ======*/

/*==== ALIGN TEXT === */

.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}

/*==== END ALIGN TEXT === */

/*==== FONT WEIGHT === */

.ft-weight-300 {
  font-weight: 300;
}
.ft-weight-400 {
  font-weight: 400;
}
.ft-weight-500 {
  font-weight: 500;
}
.ft-weight-600 {
  font-weight: 600;
}
.ft-weight-700 {
  font-weight: 700;
}
.ft-weight-800 {
  font-weight: 800;
}
.ft-weight-900 {
  font-weight: 900;
}

/*==== END FONT WEIGHT === */

/*==== MARGIN AND PADDING === */

.p-0 {
    padding: 0 !important;
}

.margin-top-10 {
    margin-top: 10px;
}
.margin-top-15 {
    margin-top: 15px;
}
.margin-top-20 {
    margin-top: 20px;
}
.margin-bottom-10 {
    margin-bottom: 10px;
}

.mr-1 {
    margin-right: 1rem;
}
.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 2rem !important;
}


.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 2rem !important;
}


@media (min-width: 768px) {
  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
      margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
      margin-top: 2rem !important;
  }

  .mb-sm-3 {
      margin-bottom: 1rem !important;
  }

  .mb-sm-4{
      margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 2rem !important;
  }
}

/*==== END MARGIN AND PADDING === */

/*==== COLORS === */
.color-white {
    color: white;
}
.color-purple-light {
  color: rgb(91, 90, 219) !important;
}

/*==== END COLORS === */

/*==== BACKGROUNDS === */

.bg-white-gray {
  background-color: #f7f7fa !important;
}
.bg-purple-light {
    background: #7f7bb0;
}

.bg-purple-dark {
    background: #918be6;
}

.bg-green-light {
  background: #85bf51;
}

.bg-green-dark {
  background:#80b154;
}

.bg-yellowgreen-light {
    background: #bfaa51;
}

.bg-yellowgreen-dark {
    background: #b3a056;
}

.bg-gray-light {
    background: #9d9372;
}

.bg-gray-dark {
    background: #b7ad8c;
}

.bg-blue-light {
    background: #6ea2d9;
}

.bg-blue-dark {
    background: #6c8eb3;
}

/*=== END BACKGROUNDS ======*/

.rotate-180 {
  transform: rotate(180deg);
}
