
.calculator-section form .row{
    margin-top: 2%;
}
.calculator-section{
    margin-bottom: 4%;
    text-align: center;
}
.question-wrapper.set1 {
    display: block;
}
.question-wrapper {
    padding: 30px 0;
    border: 1px solid #F5F5F5;
    margin-top: -1px;
}
.question-wrapper .statement {
    text-align: center;
    font-weight: 600;
    padding: 0 15px;
}
.question-wrapper .decision {
    margin-top: 20px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}
.question-wrapper .decision .caption.left {
    text-align: right;
    padding-right: 0;
    color: #4C9070;
}
.question-wrapper .decision .caption {
    text-transform: uppercase;
    font-size: .85em;
    font-weight: 700;
}
@media (min-width: 768px) {
    .col-sm-3 {
        width: 25%;
    }
}
.question-wrapper .decision .options {
    display: -webkit-box;
    display: flex;
    justify-content: space-around;
    -webkit-box-align: center;
    align-items: center;
}
.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
@media (min-width: 768px){
    .col-sm-6 {
        width: 50%;
    }
}

.setnext, .setres {
    padding-top: 20px;
    text-align: center;
    padding-bottom: 20px;
}

.btn-action {
    background-color: #DC6950;
    color: #FFF;
}
@media (min-width: 600px){
   .setnext .btn span, .personality-test #test-form .setres .btn span {
        font-size: 1.4em;
    }
}
/* Customize the label (the container) */
.option {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.option input {
    opacity: 0;
}

/* Create a custom radio button */
.radio {
    position: absolute;
    border-radius: 50%;
}
.option.agree .radio {
    background-color: #4C9070;
}
.option.disagree .radio {
    background-color: #94657E;
}
.option.max .radio{
    height: 40px;
    left: 0;
    top: 0;
    width: 40px;
}
.option.med .radio{
    height: 34px;
    left: 3px;
    top: 3px;
    width: 34px;
}

/* On mouse-over, add a grey background color */
.option:hover input ~ .radio:before {
    display: none;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio:before {
    content: "";
    position: absolute;
    display: block;
}

/* Show the indicator (dot/circle) when checked */
.option input:checked ~ .radio:before {
    display: none;
}

/* Style the indicator (dot/circle) */
.option .radio:before {
    border-radius: 50%;
    background: white;
}
.option.max .radio:before {
    top: 5px;
    left: 5px;
    width: 30px;
    height: 30px;
}
.option.med .radio:before {
    top: 5px;
    left: 5px;
    width: 24px;
    height: 24px;
}
.btn.focus, .btn:focus{
    box-shadow: none !important;
}