/* Este archivo genera clases utilitarias fijas que son usadas por Bricks en plantillas dinámicas */

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

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

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

.align-self-start {
  align-self: start;
}

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

.align-self-end {
  align-self: end;
}

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

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

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

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

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

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

.width-100 {
  width: 100%;
}

.width-60 {
  width: 60%;
}

.width-50 {
  width: 50%;
}

.width-40 {
  width: 40%;
}

@media screen and (max-width: 768px) {
  .width-100 {
    width: 100%;
  }
  .width-60 {
    width: 100%;
  }
  .width-50 {
    width: 100%;
  }
  .width-40 {
    width: 100%;
  }
}


