/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

/* prefixed by https://autoprefixer.github.io (PostCSS: v7.0.26, autoprefixer: v9.7.3) */

.grid-row {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.grid-cols {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
}

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

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

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

.space-around {
  justify-content: space-around;
  text-align: center;
}

.space-between {
  justify-content: space-between;
  text-align: center;
}

.space-evenly {
  justify-content: space-evenly;
  text-align: center;
}

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

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

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

.col-1 {
  width: 100%;
}

.col-2 {
  width: 50%;
}

.col-3 {
  width: 33.33%;
}

.col-4 {
  width: 25%;
}

.col-5 {
  width: 20%;
}

.col-6 {
  width: 16.67%;
}

.col-7 {
  width: 14.85%;
}

.col-8 {
  width: 12.5%;
}

.col-9 {
  width: 11.11%;
}

.col-10 {
  width: 10%;
}
