﻿
/* Debut  checkbox_S 11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111*/

.checkbox_S {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    font-family: Arial, sans-serif;
    
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox_S input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;    
    border-style:solid;
    border-width:1px;
    border-radius:5px;
     border-color:#999999;
}

/* On mouse-over, add a grey background color */
.checkbox_S:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox_S input:checked ~ .checkmark {
    background-color: #169cc7;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox_S input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox_S .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}



/* Fin  checkbox_S 11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111*/


/* Debut  Check_switch 11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111*/


.Check_switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}

.Check_switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.Check_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .2s;
  transition: .2s;
}

.Check_slider:before {
  position: absolute;
  content: "";
  height: 25px;
  width: 25px;
  left: 0px;
  bottom: 0px;
  background-color: white;
  -webkit-transition: .2s;
  transition: .2s;
}

input:checked + .Check_slider {
  background-color: #00AAAA;
  
  
}

input:focus + .Check_slider {
  box-shadow: 0 0 0px #2196F3;
}

input:checked + .Check_slider:before {
  -webkit-transform: translateX(25px);
  -ms-transform: translateX(25px);
  transform: translateX(25px);
}

/* Rounded Check_sliders */
.Check_slider.round {
  border-radius: 34px;
}

.Check_slider.round:before {
  border-radius: 50%;
}



/* Fin  Check_switch 11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111*/
