/**
 * Modifiers
 *
 * @author Lex Lexter <hi@leximo.cz>
 * @version 1.0.0
 * @website https://leximo.cz/
 */

/*
  - col
  ***
*/

.--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.66%;
}
.--col-7 {
  width: 14.28%;
}
.--col-8 {
  width: 12.5%;
}
.--col-9 {
  width: 11.11%;
}
.--col-10 {
  width: 10%;
}

/*
  - case
  ***
*/

.--lowercase {
  text-transform: lowercase;
}
.--uppercase {
  text-transform: uppercase;
}

/*
  - hide
  ***
*/

.--hide {
  display: none
}

/*
  - js
  ***
*/

.--js-true .--js-hide {
  display: none !important;
}
.--js-true .--js-show {
  display: block !important;
}

