/**
 * '/css/form.css'
 *
 * Stylesheet: with styles for form elements
 *
 * AZ: orange: FE6C1F
 * AZ: blue:   0E047E
 * Grey:       DBDBDB
 *
 * Modified: 15-03-2018 | matthijs
*/

.btn:focus, .btn:active:focus, .btn.active:focus {
    outline-color: transparent;
    outline-style: none;
}

.col-md-7 label {
    font-weight: normal;
    cursor: pointer;
}

/* DIV fixed with submit button in forms */
div.submit-div {
    
}

.submit-div button, input[type=submit] {
    font-size: 15px;
    background-color: #ff6022 !important;
    color: white;
    border: 0;
    margin-bottom: 10px;
    border-radius: 2px;
}


.submit-div button:hover, .submit-div input[type=submit]:hover {
    background-color: #20288a;
    color: white;
}

/* Shuts off the huge display and enormous corners which need much space */
.form-control {
    border: 1px solid #CCCCCC;
    padding: 3px 5px 3px 5px;
    margin: 0;
    border-radius: 2px;
    height: auto;
}

/* Prefend resizable textareas */
textarea {
    resize: none;
}

/* Makes sure you see where your focus is */
.form-control:focus {
    background-color: #fffadb;
}

/* Shuts of the bold font of every form label */
.control-label {
    font-weight: normal;
}

DIV.form-group, .form-group > .required, .panel-body DIV.form-group {
    margin: 0 0 10px 0;
}

/* buttons */
DIV > input[type='submit'].small {
    background-color: #FE6C1F;
    color: #FFFFFF;
}

DIV > input[type='submit'].small:hover {
    background-color: #0E047E;
    color: #FFFFFF;
}

input.btn.btn-primary, input.btn {
    background-color: #0E047E;
    border: 0px solid #0E047E;
}

input.btn.btn-primary:hover, input.btn:hover {
    background-color: #FE6C1F;
    border: 0px solid #FE6C1F;
}
/* /button */

/* The submit button */
.submit-div input[type='submit'] {
    font-size: 18px;
    padding: 4px 20px 4px 20px;
}

/* drown-down > sub-menu */
.customDropdown {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.dropdown-toggle:active, .open .dropdown-toggle {
    background:#FE6C1F !important;
    color:#FFF !important;
    border: 0;
}

.sub-menu .btn {
    background-color: #0E047E !important;
    border-radius: 4px;
}

.sub-menu .btn:hover {
    background-color: #ff6022 !important;
}

.btn {
    border: 0;
}

.btn:hover {
    color: white !important;
    background-color: #0E047E !important;
    border: 0;
}

.btn:focus {
    background-color: #ff6022 !important;
}

button:disabled.btn, button:disabled.btn:hover {
    background-color: #929292 !important;
}

.form-group label, .form-group div, .form-group input, .form-group textarea, .form-group select {
    font-size: 13px;
}

DIV.form-group {
    margin: 0 0 0 0;
}

.form-group label {
    color: black;
    font-weight: normal;
}

.form-group.required label {
    color: #0E047E;
    font-weight: bold;
}

DIV.form-group LABEL .checkbox {
    padding: 0;
}

input[type='text'].small {
    color: #FE6C1F;
    font-size: 12px;
    padding: 0 0 0 10px;
    line-height: 10px;
    height: 25px;
    width: 100px;
}

.search > select {
    font-size: 12px;
    color: #FE6C1F;
    width: 100px;
    padding: 3px 0 3px 0;
}

input[type='submit'].small {
    height: 25px;
    width: 100px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 11px;
}

input[type='submit'].small:hover {
    background-color: #ff8e33;
    color: white;
}

.form-control.error {
    border: 1px solid red;
}

.alert .alert-info {
    padding: 20px;
    margin-bottom: 20px;
}

.check LABEL {
    display: inline-block;
    width: 200px;
}

.check IMG {
    width: 16px;
    vertical-align: baseline;
}

.col-1 {
    width: 190px;
    float: left;
}

.col-2 {
    width: 80px;
    float: left;
}

.clear {
    clear: both;
}