﻿html {
    width: 100%;
}
body {
    padding: 0;
    margin: 0;
    color: #444;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    background: #dadada;
    -webkit-font-smoothing: antialiased;
    overflow-y: scroll;
    width: 100%;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.form-control {
    border-radius: 0;
}
/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

h3 {
    margin-top: 0;
    margin-bottom: 30px;
    color: #05205E;
}

.input-group-addon:last-child {
    border-radius: 0;
}


.absolute-box-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.absolute-box {
    position: relative;
    margin: auto;
}

.standard-panel {
    background: white;
    border: 1px solid #444;
    /*border: 1px solid #d9d9d9;*/
    padding: 10px 10px;
    width: 50%;
    margin: 50px auto;
    border-top: 5px solid #05205E;
}

.standard-panel.narrow-panel {
    width: 40%;
} 

.standard-panel.wide-panel {
    width: 60%;
} 

.btn {
    width: 100%;
    border-radius: 1px;
}

.btn-primary {
    background: #05205E;
}
    .btn-primary:hover {
        background: #00688D;
    }

.btn-secondary {
    background: #fff;
    border: 1px solid #b0b0b0;
    color: #333;
}
    .btn-secondary:hover {
        background: #f2f2f2;
    }

.box-row {
    padding: 20px;
    background: #fafafa;
    margin-top: 10px;
    border: 1px solid gray;
}

    .box-row.header-row {
        margin-top: 0;
    }

h1 small {
    display: block;
}

.form-table .header-row {
    font-weight: bold;
    
}

.body-row {
    border-left: 1px solid #b0b0b0;
    border-right: 1px solid #b0b0b0;
}

.form-table .table-row {
    padding: 10px 0;
    border-bottom: 1px solid #b0b0b0;
}

.form-table .body-row .table-row:nth-child(even) {
    background: #cce6f0;
}

.form-table .body-row .table-row:nth-child(odd) {
    background: #ffffff;
}


.item-error {
    padding: 2px 5px 2px 5px;
    background: rgb(250, 203, 203);
    margin-bottom: 2px;
    margin-bottom: 5px;
    border: 1px solid;
}

.errors {
    margin-top: 10px;
}

.error {
    color: crimson;
}

.error-border {
    border: 1px solid crimson;
}

.large-checkbox {
    width: 20px;
    height: 20px;
}
.medium-checkbox {
    width: 15px;
    height: 15px;
}

.required::after {
    content: " *";
    color: crimson;
    font-size: 20px;
    font-weight: bold;
}

.not-required::after {
    content: " ";
    color: crimson;
    font-size: 20px;
    font-weight: bold;
}

.dropzone-btn{
    display: inline-block;
    width: 100%;
    height: 100px;
    line-height: 96px;
    background: rgba(0, 123, 167, .1);
    border: 2px solid #05205E;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
}


.dropzone-btn.highlight{
    border-style: dashed;
}

.disabled-label {
    color: lightgray;
}

textarea {
    resize: vertical;
}