
.radio_v2 .radio {
        float: left;
        margin: 0 5px 0 0;
        margin-right: 5px;
        margin-right: 5px;
        width: 16%;
        height: 50px;
        position: relative;
        margin-right: 5px;
        font-size: 12px;
}

@media only screen and (max-width: 600px) {
      
    .radio_v2 .radio {
      float: left;
      margin: 0 5px 0 0;
        margin-right: 5px;
      margin-right: 5px;
      margin-right: 5px;
      width: 48%!important;
      height: 50px;
      position: relative;
      margin-right: 5px;
      font-size: 13px;
    }  
}

.radio_v2 .radio label {
    cursor: pointer;
    z-index: 90;
    line-height: 2.8em;
    border: 1px solid #918c8c;
    text-align: center;
}

.radio_v2 .radio label,.radio_v2 .radio input {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
}

.radio_v2 .radio input[type="radio"] {
    opacity: 0.011;
    z-index: 100;
}

.radio_v2 .radio input[type="radio"]:checked + label{
    background: #78c189;
    border-radius: 4px;
    color: #fff;
}

.radio_v2 .control-label{
    font-size: 22px;

}

.radio_v2 .radio + .radio_v2 .radio, .checkbox + .checkbox {
    margin-top: 0px!important;
}

    
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  border-radius: 17px; /* Half of the height for rounded corners */
  overflow: hidden; /* Ensure the slider doesn't overflow */
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 17px; /* Match parent's border-radius */
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%; /* Round the slider */
}

input:checked + .slider {
  background-color: #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.xcrud .container {
  display: flex; /* Use flexbox to align items */
  align-items: center; /* Center items vertically */
}
.min,
.max {
  margin-right: 10px; /* Add some spacing between elements */
}
