div.box > div.box-header > h5.combo-text-custom {
    font-size: 15px;
}

div.text-custom-radio {
    font-size: 13px;
}

div.form-group > div > label.text-radio-custom{
    display: inline-block;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1;
    font-weight: 500;
}

.margin-check-custom{
    margin-top: 19px;
    font-size: 13px;
}

.col-multi-radio-custom {
    margin: 0px;
    padding: 6px;
    margin-bottom: -15px;
}

.small-box p {
    font-size: 14px;
}

span.span-menu-br {
    display: block;
    margin-left: 23px;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
}

.small-box > .inner-custom {
    padding: 10px;
    padding-top: 20px;
    padding-bottom: 30px;
}

div > label.text-radio-custom2{
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    margin-bottom: 30px;
    font-weight: 500;
    width: 100%;
}

span.text-radio-custom{
    margin-left: 20px;
}

div.box-footer > h3.text-footer-box-custom{
    display: inline-block;
    font-size: 16px;
    margin: 0;
    line-height: 1;
    margin-bottom: 30px;
    margin-top: 30px;
}

a.btn-next-custom{
    font-size: 35px;
    color: black;
}

span.text-header-custom-menu{
    display: inline-block;
    font-size: 11px;
    margin: 0;
    line-height: 1;
    font-weight: 500;
}

span.rpt-success{
    color: #00a65a;
    margin-right: 15px;
}

span.rpt-error{
    color: #e16c66;
    margin-right: 15px;
}

label.text-label-bold-custom{
    display: inline-block;
    font-size: 22px;
    margin: 0;
    line-height: 1;
    font-weight: 600;
}

label.text-module-colors-info-custom{
    margin: 0;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    font-weight: 500;
    font-size: 25px;
    height: 103px;
    padding-top: 20px;
}

h3.box-title-2{
    display: inline-block;
    font-size: 22px;
    margin: 0;
    line-height: 1;
}

div.overlay-loadign {
    position: absolute;
    right: 8%;
    top: 22%;
    display: none;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.title {
    display: block;
    margin: 0 0 20px;
    font-size: 24px;
    text-transform: uppercase;
}

// Variables
$border-color: rgba(0, 0, 0 , .54);
$checked-color: #3f51b5;

// Checkbox
.checkbox {
    display: inline-block;
    position: relative;
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 24px;
    
    &__input {
        position: absolute;
        top: 4px;
        left: 0;
        width: 16px;
        height: 16px;
        opacity: 0;    
        z-index: 0;
    }
    
    // Unchecked
    &__label {
        display: block;
        padding: 0 0 0 24px;
        cursor: pointer;
        
        &:before {
            content: '';
            position: absolute;
            top: 4px;
            left: 0;
            width: 16px;
            height: 16px;
            background-color: transparent;
            border: 2px solid $border-color;
            border-radius: 2px;
            z-index: 1;
            transition: all .28s cubic-bezier(.4, 0, .2, 1);
            transition-property: background-color, border-color;
        }
        
        &:after {
            content: '';
            position: absolute;
            top: 5px;
            left: 5px;
            width: 6px;
            height: 12px;
            border-bottom: 2px solid transparent;
            border-right: 2px solid transparent;
            transform: rotate(45deg);
            z-index: 2;
            transition: border-color .28s cubic-bezier(.4, 0, .2, 1);
        }
    }
    
    // Checked
    &__input:checked + &__label {
        &:before {
            background-color: $checked-color;
            border-color: $checked-color;
        }
        
        &:after {
            border-color: #fff;
        }
    }
    
    // Focused
    // Uncomment for accessible outline
    // &__input:focus + &__label {
    //     &:before {
    //         outline: 1px dotted currentColor;
    //     }
    // }
}


