.control {
    display: block;
    position: relative;
    padding-left: 26px;
    margin: 15px 0;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.4em;
}

td .control {
    margin: 0 15px;
}

.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #e6e6e6;
}

.red_control {
    border: 2px solid red;
    border-radius: 4px;
}

.differentHead .control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: lightgray;
}

.control--radio .control__indicator {
    border-radius: 50%;
}

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
    background: #ccc;
}

.control input:checked ~ .control__indicator {
    background: #48c845;
}

    .control input:checked ~ .control__indicator.red_control {
        border: none;
    }

.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
    background: #40b43e;
}

.control input:disabled ~ .control__indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.control__indicator:after {
    content: '';
    position: absolute;
    display: none;
}

.control input:checked ~ .control__indicator:after {
    display: block;
}

.control--checkbox .control__indicator:after {
    left: 7px;
    top: 4px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.control--checkbox input:disabled ~ .control__indicator:after {
    border-color: #7b7b7b;
}

.control--radio .control__indicator:after {
    left: 7px;
    top: 7px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #fff;
}

.control--radio input:disabled ~ .control__indicator:after {
    background: #7b7b7b;
}

.checkbox-min-height5 {
    min-height: 5px;
}

/* TOGGLE-STYLE CHECKBOX */
/* ON/OFF Switch */

.onoffswitch {
    position: relative;
    width: 61px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    float: left;
    height: 28px;
    margin: 3px 10px 0 0;
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #757575;
    border-radius: 50px;
    height: 25px;
    margin: 0px !important;
}

.onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

    .onoffswitch-inner::before, .onoffswitch-inner::after {
        display: block;
        float: left;
        width: 50%;
        height: 25px;
        padding: 0px;
        padding-right: 0px;
        line-height: 25px;
        font-size: 14px;
        color: white;
        font-family: Trebuchet, Arial, sans-serif;
        font-weight: bold;
        box-sizing: border-box;
    }

    .onoffswitch-inner:before {
        content: "Yes";
        padding-left: 7px;
        background-color: #40b43e;
        color: #FFFFFF;
    }

    .onoffswitch-inner:after {
        content: "No";
        padding-right: 10px;
        background-color: #EEEEEE;
        color: #999999;
        text-align: right;
    }

.spanish .onoffswitch-inner:before {
    content: 'Si';
}

.spanish .onoffswitch-inner:after {
    content: 'No';
}

.onoffswitch-switch {
    display: block;
    width: 23px;
    background: #FFFFFF;
    position: absolute;
    top: 1px;
    bottom: 0;
    right: 36px;
    border: 1px solid #757575;
    transition: all 0.3s ease-in 0s;
    border-radius: 50px;
    height: 23px;
    margin-right: 1%;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px;
}

.name-review {
    margin: 7px 0;
    padding-top: 3px;
}

    .name-review a {
        margin-left: 10px;
    }

.onoffswitch input {
    display: none;
}

.radioDisabeled, .lblRadioDisabeled {
    pointer-events: none;
}
    .radioDisabeled::before, .radioDisabeled::after {
        background-color: #e6e6e6;
        opacity: 0.6;
        color: #7b7b7b;
        pointer-events: none;
    }
