//
// Football Pool WordPress plugin
//
// @copyright Copyright (c) 2026 Antoine Hurkmans
// @link https://wordpress.org/plugins/football-pool/
// @license https://plugins.svn.wordpress.org/football-pool/trunk/LICENSE
//

@mixin flexbox() {
  display: -webkit-box;
  display: -moz-box;
  //display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@mixin flex($values) {
  -webkit-box-flex: $values;
  -moz-box-flex:  $values;
  -webkit-flex:  $values;
  //-ms-flex:  $values;
  flex:  $values;
}

@mixin order($val) {
  -webkit-box-ordinal-group: $val;
  -moz-box-ordinal-group: $val;
  //-ms-flex-order: $val;
  -webkit-order: $val;
  order: $val;
}

// some vars
$pie-chart-icon-size: 40px;
$mobile-width: 767px;
$desktop-width: 980px;

$error-color: #f44336;
$error-color-bg: #ffbfbf;
$error-color-border: #f44336;
$warning-color: #ffa533;
$warning-color-bg: #fff8e5;
$warning-color-border: #ffa533;
$info-color: #e5f5fa;
$info-color-border: #00a0d2;
$success-color: #26d68a;
