@charset "UTF-8";
body {
  padding-top: 10px;
  padding-bottom: 40px;
  background-color: #fcfcfc;
}
.form-group {
	width:100%;
   margin-bottom: 5px;
	
}

.control-label {
	text-align:right;
	padding-right:10px;
	line-height:auto;
}
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    padding-left: 0;
}
.clear { clear: both; }

.form-box {
	overflow:hidden;
	height:1%;	
}

.form-box p {
	margin: 5px 0;
}

.section {
  display: flex;
  flex-flow: row wrap;
}

.section > div {
  flex: 1;
  padding: 0.5rem;
  height:75px;
}

.section input[type=radio] {
  display: none;
}
.section input[type=radio]:not(:disabled) ~ label {
  cursor: pointer;
}
.section input[type=radio]:disabled ~ label {
  color: #bcc2bf;
  border-color: #bcc2bf;
  box-shadow: none;
  cursor: not-allowed;
}

.section label {
  height: 100%;
  display: block;
  background: white;
  border: 2px solid #20df80;
  border-radius: 20px;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  box-shadow: 0px 3px 10px -2px rgba(161, 170, 166, 0.5);
  position: relative;
}

.section input[type=radio]:checked + label {
  background: #20df80;
  color: white;
  box-shadow: 0px 0px 20px rgba(0, 255, 128, 0.75);
}
.section input[type=radio]:checked + label::after {
  color: #3d3f43;
  font-family: FontAwesome;
  border: 2px solid #1dc973;
  content: "";
  font-size: 20px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.25);
}

.section input[type=radio]#control_05:checked + label {
  background: red;
  border-color: red;
}

.section p {
  font-weight: 900;
}

@media only screen and (max-width: 700px) {
  .section {
    flex-direction: column;
  }
}

@media only screen and (min-width: 768px) {
	.jsb-form .control-label {
		padding-top: 12px;
		margin-bottom: 0;
		text-align: right;
	}
}