﻿body {

}

.noLineSpaceLabels-1 {
    line-height: 10px;
    margin: 0;
    padding: 0;
}
.noLineSpaceLabels-2 {
    line-height: 20px;
    margin: 0;
    padding: 0;
}

.label-sm-1 {
    font-size: 0.75rem;
}

.label-weight-1{
    font-weight: 600;
}

.label-redmessage-1 {
    padding-left: 5px;
    background-color: #f1bfbf;
    width: 700px;
}

.btn-submit {
    color: #fff;
    background-color: #3d9739;
    border-color: #3d9739;
}

    .btn-submit:hover {
        color: black;
        background-color: #337a30;
        border-color: #2a6528;
    }

    .btn-submit:focus, .btn-submit.focus {
        box-shadow: 0 0 0 0.2rem #45b041;
    }

    .btn-submit.disabled, .btn-submit:disabled {
        color: #fff;
        background-color: #3d9739;
        border-color: #3d9739;
    }

    .btn-submit:not(:disabled):not(.disabled):active, .btn-submit:not(:disabled):not(.disabled).active,
    .show > .btn-submit.dropdown-toggle {
        color: #fff;
        background-color: #3d9739;
        border-color: #2e792b;
    }

        .btn-submit:not(:disabled):not(.disabled):active:focus, .btn-submit:not(:disabled):not(.disabled).active:focus,
        .show > .btn-submit.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem #45b041;
        }

/* CUSTOM RADIO & CHECKBOXES
   http://stackoverflow.com/a/17541916/383904 */
.rad,
.ckb {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    font-size: 1.1em;
    font-weight: bold;
}

    .rad > input,
    .ckb > input { /* HIDE ORG RADIO & CHECKBOX */
        visibility: hidden;
        position: absolute;
    }
    /* RADIO & CHECKBOX STYLES */
    .rad > i,
    .ckb > i { /* DEFAULT <i> STYLE */
        display: inline-block;
        vertical-align: middle;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        transition: 0.2s;
        box-shadow: inset 0 0 0 8px #fff;
        border: 1px solid black;
        
    }
    /* CHECKBOX OVERWRITE STYLES */
    .ckb > i {
        width: 25px;
        border-radius: 3px;
    }

    .rad:hover > i { /* HOVER <i> STYLE */
        box-shadow: inset 0 0 0 3px #fff;
        background: gray;
    }

    .rad > input:checked + i { /* (RADIO CHECKED) <i> STYLE */
        box-shadow: inset 0 0 0 3px #fff;
        background: gray;
    }
    /* CHECKBOX */
    .ckb > input + i:after {
        content: "";
        display: block;
        height: 12px;
        width: 12px;
        margin: 2px;
        border-radius: inherit;
        transition: inherit;
        background: gray;
    }

    .ckb > input:checked + i:after { /* (RADIO CHECKED) <i> STYLE */
        margin-left: 11px;
        background: orange;
    }