/*Nuevos radiobuttons*/

/* small radiobuttom*/
.switch {
  position: relative;
  height: 26px;
  width: 120px;
  /*margin: 20px ;*/
  background: rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
}
/* fin small radiobuttom*/

.switch-center{
	margin-left: auto;
    margin-right: auto;
}

.switch-label {
  position: relative;
  z-index: 2;
  float: left;  
  width: calc(100% - 52%) !important;
  line-height: 26px;
  font-size: 11px!important;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  cursor: pointer;
  margin:0px!important;
  color: rgba(0, 0, 0, 0.40);
}

.switch-label:active {
  font-weight: bold;
}

.switch-label-off {
  padding-left: 2px;
}

.switch-label-on {
  padding-right: 2px;
}

.switch-input {
  display: none;
}
.switch-input:checked + .switch-label {
  font-weight: bold;
  color: rgba(0, 0, 0, 0.65);
  text-shadow: 0 1px rgba(255, 255, 255, 0.25);
  -webkit-transition: 0.15s ease-out;
  -moz-transition: 0.15s ease-out;
  -ms-transition: 0.15s ease-out;
  -o-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  -webkit-transition-property: color, text-shadow;
  -moz-transition-property: color, text-shadow;
  -ms-transition-property: color, text-shadow;
  -o-transition-property: color, text-shadow;
  transition-property: color, text-shadow;
}
.switch-input:checked + .switch-label-on ~ .switch-selection {
  left: 60px;
  /* Note: left: 50%; doesn't transition in WebKit */
}

.switch-selection {
  position: absolute;
  z-index: 1;
  top: 2px;
  left: 2px;
  display: block;
  width: calc(100% - 50%) !important;
  height: 22px;
  border-radius: 3px;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.0);
  background-color: rgba(0, 122, 165, 0.00);
  -webkit-transition: left 0.15s ease-out;
  -moz-transition: left 0.15s ease-out;
  -ms-transition: left 0.15s ease-out;
  -o-transition: left 0.15s ease-out;
  transition: left 0.15s ease-out;
}

.switch-input:checked ~ .switch-selection {
  background-color: rgba(0, 122, 165, 0.67);
   box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
}

/*This ones are used in the tag radio*/
.switch-green  .switch-selection {
  background-color: rgba(0, 122, 61, 0.67)!important;
}
.switch-yellow  .switch-selection {
  background-color: rgba(253, 188, 30, 0.67)!important;
}


/* medium radiobuttom*/
.switch-medium {
  width: 170px;
 
}
.switch-medium .switch-input:checked + .switch-label-on ~ .switch-selection {
  left: 83px!important;
  /* Note: left: 50%; doesn't transition in WebKit */
}

/* fin medium radiobuttom*/


/* big radiobuttom*/
.switch-big {
  width: 220px;
}

.switch-big .switch-input:checked + .switch-label-on ~ .switch-selection {
  left: 108px!important;
  /* Note: left: 50%; doesn't transition in WebKit */
}

/* fin big radiobuttom*/


/* biger radiobuttom*/
.switch-biger {
  width: 300px;
}

.switch-biger .switch-input:checked + .switch-label-on ~ .switch-selection {
  left: 148px!important;
  /* Note: left: 50%; doesn't transition in WebKit */
}

/* fin biger radiobuttom*/

/*Fin Nuevos radiobuttons*/
