#w5{
    min-height:450px;  
}

.main-label{
    display:inline-block;
    margin-right: 40px;
    line-height:30px;
    font-size: 14px;
    color: #2f2e2e;
}
.option-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 9px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 30px;
    width: 30px;
    transition: all 0.15s ease-out 0s;
    background: #fff;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
    z-index: 97;
    border: solid 0.5px #ccc;
}
.option-input:hover {
    background: #1b9d49;
    border: solid 0.5px #ccc;
}
.option-input:checked {
    background: #1b9d49;
}
.option-input:checked::before {
    width: 30px;
    height: 30px;
    display:flex;
    content: '\f00c';
    font-size: 16px;
    font-weight:bold;
    position: absolute;
    align-items:center;
    justify-content:center;
    font-family:'Font Awesome 5 Free';
}
.option-input:checked::after {
    -webkit-animation: click-wave 0.65s;
    -moz-animation: click-wave 0.65s;
    animation: click-wave 0.65s;
    background: #1b9d49;
    content: '';
    display: block;
    position: relative;
    z-index: 100;
}
.option-input.radio {
    border-radius: 50%;
}
.option-input.radio::after {
    border-radius: 50%;
}
  
@keyframes click-wave {
    0% {
      height: 40px;
      width: 40px;
      opacity: 0.35;
      position: relative;
    }
    100% {
      height: 200px;
      width: 200px;
      margin-left: -80px;
      margin-top: -80px;
      opacity: 0;
    }
}

.qc-form-block{
    background-color: #ecf6f0;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.qc-form-block h3{
    margin-top: 0;
    font-size:20px;
    line-height: 20px;
    color:#1b9d49;
}

.device-locked-options-wrapper{
    padding:20px;
    border-radius:10px;
    background-color: #fff;
    border: solid 1px #fff;
    margin-top: 30px;
}

.parameter-option{
    margin-bottom: 20px;
}
.parameter-option:last-child{
    margin-bottom: 0;
}

.qc-form-block2{
    padding: 15px 15px 5px 15px;
    border-radius: 10px;
    margin-bottom: 6px;
    border: 1px solid #dee2e6;
}

.qc-form-block2:nth-child(odd){
    background-color: #f8f4e6;
}
.qc-form-block2:nth-child(even){
    background-color: #ecf6f0;
}

.qc-form-block2 .font-weight-semibold{
    color:#000;
}

.qc-form-block2 .col-lg-3, .qc-form-block2 .col-md-4{
    border-right: solid 1px #ccc;
    margin-bottom: 10px;
}

.qc-form-block2 .radio-custom{
    margin-bottom: 10px;
}

.qc-form-block3{
    padding: 5px 15px 5px 15px;
    border-radius: 10px;
    margin-bottom: 6px;
    border: 1px solid #dee2e6;
}
.qc-form-block3:nth-child(odd){
    background-color: #f8f4e6;
}
.qc-form-block3:nth-child(even){
    background-color: #ecf6f0;
}
.qc-form-block3 label{
    padding-bottom: 10px;
}
.switched_on_error, .device_locked_error, .device_locked_option_error{
    color: #dc3545;
}

.parameter-option .col-md-4{
    border-right: none;
}