/**
 * Statik module for Craft CMS
 *
 * Statik CSS
 *
 * @author    Statik
 * @copyright Copyright (c) 2018 Statik
 * @link      https://www.statik.be
 * @package   Statik
 * @since     1.0.0
 */

/* Green buttons */
.btn.submit {
  background-image: linear-gradient(#6bb745, #6bb745);
}

.btn.submit:not(.disabled):not(.inactive):hover,
.btn.submit:not(.disabled):not(.inactive).hover,
.btn.submit:not(.disabled):not(.inactive):active,
.btn.submit:not(.disabled):not(.inactive).active {
  background-image: linear-gradient(#6bb745, #6bb745);
}

/* Redactor ordered list */
.redactor-styles ol {
  counter-reset: item;
}

.redactor-styles ol li {
  list-style-type: none !important;
}

.redactor-styles ol li:before {
  content: counters(item, '.') ' ';
  counter-increment: item;
  font-weight: 500;
  text-align: center;
}
