/* The container_chb_rbtn */

.container_chb_rbtn,
.container_chb_rbtn *
{
  box-sizing: border-box;
}

.container_chb_rbtn {
    display: block;
    position: relative;
    padding-left: 35px;
    /* padding-top: 3px; */
    /* 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;


    /* border: 1px solid; */
    /* height: 25px; */

    height: auto;
    min-height: 25px;
    
    margin-top: 1px;

    overflow: hidden;
    text-overflow: ellipsis;

  }

  .container_chb_rbtn.center_without_label
  {
    /* width: 0px;
    min-width: 0px; */
    padding-left: 0px;
    padding-top: 0px;
    /* margin: 0 30%; */
    /* margin-bottom: 30%; */
  }






  
  /* Hide the browser's default checkbox */
  .container_chb_rbtn input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    /* height: 0;
    width: 0; */
    display: none;
    top: 0px;
    left: 0px;
  }

  .container_chb_rbtn input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0px !important;
  }
  
  /* Create a custom checkbox */
  .checkmark_chb, .checkmark_rbtn {
    position: absolute;
    top: 1px;
    left: 1px;
    height: 23px;
    width: 23px;
    background-color: #ccc;

    box-shadow: inset 0px 0px 0px 1px #ffffff, 0px 0px 0px 1px #5e5e5e;
    /* box-shadow: 0px 0px 0px 1px #000; */
    /* border: inset 1px solid #e4e4e4 ; */
  }
  
  .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: gray; }
  
  /* 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: var(--red_main); }

    /* When the checkbox is checked, add a blue background */
    .container_chb_rbtn:hover input:checked ~ .checkmark_chb,
    .container_chb_rbtn:hover input:checked ~ .checkmark_rbtn 
    { background-color: red; }
  
  /* 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: 8px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }



