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

/*
  - column
  ***
*/

.--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%;
}

/*
  - scrollbar
  ***
*/

.--scrollbar {
  scrollbar-color: #E0E0E0 transparent;
  scrollbar-width: thin;
}

/*
  - hide
  ***
*/

.--hide {
  display: none !important
}

/*
  - js
  ***
*/

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

/*
  Reset
  ***
*/

ul.--reset, 
ol.--reset {
  margin: 0;
}
ol.--reset {
  list-style: none;
}
ul.--reset > li, 
ol.--reset > li {
  margin: 0;
  padding: 0;
  line-height: 1;
}
ul.--reset > li:before {
  display: none;
}
