/*---------------*/
/* Import colors */
/*---------------*/
.onoffswitch {
  position: relative;
  width: 90px;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none; }

.onoffswitch-checkbox {
  display: none; }
  .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0; }
  .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px; }

.onoffswitch-label {
  border: 2px solid #cccccc;
  cursor: pointer;
  display: block;
  overflow: hidden; }

.onoffswitch-inner {
  display: block;
  margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
  width: 200%;
  -moz-transition: margin 0.3s ease-in 0s;
  -o-transition: margin 0.3s ease-in 0s;
  -webkit-transition: margin 0.3s ease-in 0s; }
  .onoffswitch-inner:before, .onoffswitch-inner:after {
    box-sizing: border-box;
    color: white;
    display: block;
    float: left;
    font-family: Trebuchet, Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    height: 30px;
    line-height: 30px;
    padding: 0;
    width: 50%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box; }
  .onoffswitch-inner:before {
    background-color: #00929f;
    color: white;
    content: "Actual";
    padding-left: 5px; }
  .onoffswitch-inner:after {
    background-color: #00929f;
    color: white;
    content: "History";
    padding-right: 5px;
    text-align: right; }

.onoffswitch-switch {
  background: white;
  border: 2px solid #cccccc;
  bottom: 0;
  display: block;
  height: 15px;
  margin: 7.5px;
  position: absolute;
  right: 56px;
  top: 0;
  transition: all 0.3s ease-in 0s;
  width: 15px;
  -moz-transition: all 0.3s ease-in 0s;
  -o-transition: all 0.3s ease-in 0s;
  -webkit-transition: all 0.3s ease-in 0s; }

