
form .group {
	display: table;
  table-layout: fixed; /* extremely important for table-cell animations */
	width: 100%;

	padding: 0;
	margin-bottom: 5px;

	/*border: solid 1px;*/
}

form .group input {
	display: table-cell;
  margin-bottom: 0 !important;
  
}

form .group .icon {
  display: table-cell;

  background-color:#fff;
  border:1px solid #ddd;
  color:#000;
  font-size:14px;
  line-height: 18px;
  width: 36px;

  font-weight:normal;
  line-height:1;
  text-align:center;

  border-right-width: 0px;

}

form .group .icon i {
  font-size: 18px;
  margin: 0px 5px 0 5px;
}

form .group .icon  + input {
  border-left-width: 0;
}

form .group .button {
  display: table-cell;

  background-color:#efefef;
  border:1px solid #ddd;
  color:#000;
  font-size:14px;
  line-height: 18px;

  font-weight:normal;
  line-height:1;
  text-align:center;



}

form .group input + .button {
    border-left-width: 0;  
}




form input, select {
  width: 100%;
  margin-bottom: 5px !important;
  /*-webkit-appearance: none;*/
  border-radius: 0;
}

form input[type="radio"] {
  width: auto;
  border: 1px orange;
}

/* spinner for normal buttons */
form .btn > .spinner {
  /*border: solid 1px orange;*/

  position: absolute;

  float: left;

  top: 7px;
  left: 7px;

  background-color: inherit;

  width: 20px;
  height: 20px;

  z-index: 1000;

}

/* spinner for large buttons */
form .btn.btn_large > .spinner {

  position: absolute;

  float: left;

  top: 11px;
  left: 11px;

  background-color: inherit;

  width: 30px;
  height: 30px;

  z-index: 1000;

}

.checkbox_toggle {
  cursor: pointer;
}

.radio_toggle {
  cursor: pointer;
}


/* Customizing the look of the checkboxes */
/* if the label is before the checkbox */
input[type=checkbox] { display:none; } /* to hide the checkbox itself */

input[type=checkbox] + label {
	display: inline-block;
	margin: 0px 30px 0px 0px;
	text-align: left;
	width: auto !important;	
	cursor: pointer;
	vertical-align: middle;
	padding: 0;
	font-size: 18px;
	color: #444;

}

input[type=checkbox] + label.small {
	font-size: 14px;
}

input[type=checkbox] + label:before {
	font-size: 24px;
    font-family: FontAwesome;
    display: inline-block;
    cursor: pointer;
    color: #444;
    margin: 0 5px 0 0;
    content: "\f096";
    width: 24px;
    vertical-align: middle;

}

input[type=checkbox] + label.small:before {
	font-size: 18px;
	width: 18px;

}

input[type=checkbox]:checked + label:before { content: "\f046"; } /* checked icon */


/* Customizing the look of the radio boxes */

input[type=radio] { display:none; } /* to hide the checkbox itself */

/*
input[type=radio] + label {
	display: inline-block;
	margin: 0px 5px 0px 0px;
	text-align: left;
	width: auto !important;	
	cursor: pointer;
	vertical-align: middle;
	padding: 0;
	font-size: 14px;
	color: #444;

}

input[type=radio] + label:before {
	font-size: 18px;
    font-family: FontAwesome;
    display: inline-block;
    cursor: pointer;
    color: #444;
    margin: 0 5px 0 0;
    content: "\f1db";
    width: 18px;

}
*/

/*input[type=radio]:checked + label:before { content: "\f05d"; } // checked icon */



.switch {
  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);
  padding: 3px !important;
  width: auto !important;

  /*border: solid 1px orange;*/
}

.switch input[type=radio] {
    display:none; 
    margin:0px;
}

/*
  Change the look'n'feel of labels (which are adjacent to radiobuttons).
  Add some margin, padding to label
*/
.switch input[type=radio] + label {
    display:inline-block;
    vertical-align: middle;
    
    border-radius: 3px;

    padding: 4px 12px;
    margin: 0px;

    color: #fff;

    width: auto;
    height: auto;

    cursor: pointer;


}
/*
 Change background color for label next to checked radio button
 to make it look like highlighted button
*/
.switch input[type=radio]:checked + label { 
	  border-radius: 3px;
  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;	
  background-color: #ccf0db;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #9dd993), color-stop(100%, #ccf0db));
  background-image: -webkit-linear-gradient(top, #9dd993, #ccf0db);
  background-image: -moz-linear-gradient(top, #9dd993, #ccf0db);
  background-image: -ms-linear-gradient(top, #9dd993, #ccf0db);
  background-image: -o-linear-gradient(top, #9dd993, #ccf0db);
  background-image: linear-gradient(top, #9dd993, #ccf0db);
  -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 0 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 0 2px rgba(0, 0, 0, 0.2);
  -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;
}