﻿
/**
BASE STYLES
**/

body { background: #1a1b21; color:#fff; }

/**
Plugin Styles
**/

.check-radio-tweak-wrapper {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.check-radio-tweak-wrapper input[type="checkbox"], .check-radio-tweak-wrapper input[type="radio"] { display: none; }

.check-radio-tweak-wrapper[type="checkbox"] {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: transparent;
  cursor: pointer;
  border-radius: 2px;
  box-sizing: border-box;
  border: 2px solid #E6E6E6;
  position: relative;
  margin-right: 11px;
  vertical-align: middle;
  background-color: #E6E6E6;
  margin-top: 0
}

.check-radio-tweak-wrapper[type="checkbox"]:hover { border: 2px solid #CDC4BA; }

.check-radio-tweak-wrapper[type="checkbox"][checked] {
  background: #CDC4BA;
  border: 2px solid #CDC4BA;
}

.check-radio-tweak-wrapper[type="checkbox"][checked]::before {
  content: "";
  width: 11px;
  height: 7px;
  background: transparent;
  display: block;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 2px;
  left: 2px;
  box-shadow: 0 1px 1px rgba(0,0,0,.2)
}

.check-radio-tweak-wrapper[type="radio"] {
  display: inline-block;
  width: 19px;
  height: 19px;
  background: transparent;
  cursor: pointer;
  border-radius: 18px;
  box-sizing: border-box;
  border: 2px solid #919195;
  position: relative;
}

.check-radio-tweak-wrapper[type="radio"]:hover { border: 2px solid #000000; }

.check-radio-tweak-wrapper[type="radio"][checked] {
  background: transparent;
  border: 2px solid #000000;
}

.check-radio-tweak-wrapper[type="radio"][checked]::before {
  content: "";
  width: 11px;
  height: 11px;
  background: #000000;
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 18px;
}

