/* chb simple */

/* .chb_simple {
  zoom: 2;
  transform: scale(2);
  transform-origin: 0 0;
} */

.chb_simple {
  appearance:none;
  width:20px;
  height:20px;
  background:white;
  border-radius:5px;
  border:2px solid #555;
  cursor: pointer;
}
.chb_simple:checked {
  background: #f58144;
}
/* chb simple */





/* The container_chb_rbtn */
.container_chb_rbtn {
    display: block;
    position: relative;
    padding-left: 35px;
    padding-top: 5px;
    /* margin: 5px; */
    cursor: pointer;
    /* font-size: 22px; */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    width: auto;
    min-width: 100px;
    text-align: left;
  }
  
  /* Hide the browser's default checkbox */
  .container_chb_rbtn input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  .container_chb_rbtn input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom checkbox */
  .checkmark_chb, .checkmark_rbtn {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #ccc;
  }
  
  .checkmark_rbtn {
    border-radius: 50%;
  }  



  /* On mouse-over, add a grey background color */
  .container_chb_rbtn:hover input ~ .checkmark_chb,
  .container_chb_rbtn:hover input ~ .checkmark_rbtn  
  { background-color: #eee; }
  
  /* When the checkbox is checked, add a blue background */
  .container_chb_rbtn input:checked ~ .checkmark_chb,
  .container_chb_rbtn input:checked ~ .checkmark_rbtn 
  { background-color: #f58144; }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark_chb:after, 
  .checkmark_rbtn:after
  {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container_chb_rbtn input:checked ~ .checkmark_chb:after,
  .container_chb_rbtn input:checked ~ .checkmark_rbtn:after 
  { display: block; }
  
  /* Style the checkmark/indicator */
  .container_chb_rbtn .checkmark_chb:after,
  .container_chb_rbtn .checkmark_rbtn: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);
  }