/* Parts Form CSS */

body {
    color: #727272;
} 

.script_name {
      float: left;
      width: 70%;
      margin: 0;
      font-size: 22px;
      font-weight: normal;
}

.datetime {
    float: right;
    width: 28%;
    margin: 0;
    font-size: 22px;
    font-weight: normal;
    text-align: right;
}

.flexContainer {
    display: flex;  
    flex-direction: row;  	 
}
  
.flexGroup, .contactGroup {
    padding-bottom: 30px;
}

.sectionLeft, .sectionRight {
    width: 45%;
    margin-right: 5%;
}

.heading{
    font-size: 22px;
    font-weight: bold;
}

.lblText {
    float: left;
    width: 35%;
}

.lblText2 {
    float: left;
    width: 25%;
}

.errText {
    width: 20%; 
    color:red; 
    float: right;
    margin-left: 2px;
    margin-bottom: 0;
}

.errText2 {
    color:red; 
    display: inline-block;
    margin-left: 2px;
    margin-bottom: 0;
}

.errRequestType {
    color: red;
}

.inpText {
    float: left;
    width: 43%;
    margin-left: 2px;
}

.inpDate {
    float: left;
    width: 38%;
    margin-left: 2px;
    margin-right: 5px;
}

.inpText:read-only, .inpText2:read-only, .inpNum:read-only {
    background-color: #e2e2e2;
}

.inpNum {
    text-align: right;
}

.errTextItem {
    color:red; 
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: x-large;
}

.instructions {
    margin-bottom: 15px;
    font-style: italic;
}

.instructionSel {
    display: inline-block;
    vertical-align: top;
    font-style: italic;
    margin-left: 20px;
    color: #2c3aa9;
}

.modelHover {
    display: inline-block;
    width: 25%;
    border: #115087 2px solid;
    color: #2d6089;
    background-color: #dce7f0;
    border-radius: 10px;
    vertical-align: top;
    padding: 2px;
}

.itemSel, .selItemList, .specNotes, .submitForm, .descIssues, .contacts, .images, .costs, .explain, .thumbNails {
    margin-top: 20px;
}

.thumbNailPics {
    margin-right: 10px;
    width: 100px;
}

.imgDisplay {
    display: inline-block;
}

.selectLbl {
    vertical-align: top;
}

.selectBox {
    margin-left: 10px;
}

.concerns, .warrantyGroup {
    margin-bottom: 10px;
}

.imageDisplay, .partSelect, .otherParts {
    margin-top: 10px;
}

.errImages {
    display: inline-block; 
    color:red; 
    margin-left: 20px;
}

.imgGroup {
    margin-bottom: 10px;
}

.imageDiv {
    display: inline-block;
}

.itemArea:hover {
    cursor: pointer;
}

td, th {
    padding: 5px;
}

#addPart {
    margin-top: 10px;
    display: block;
    padding: 5px;
    width: 100px;
}

.contacts {
    width: 85%;
}

.buttonClass {
    width: 60px;
    padding: 1px;
    border: 1px solid #707372;
    border-radius: 30px;
    cursor: pointer;
    background-color: #707372;
    color: #ffffff;
    font-weight: bold;
}

.buttonClass:hover {
      background-color: #da291c;
      border-color: #da291c;
}

#submitButt, #reloadButt {
    padding: 5px;
    width: 100px;
    border: 2px solid #707372;
    margin-right: 20px;
}

.rmvImage {
    position: absolute;
    left: 87px;
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

.rmvImage:hover {
    opacity: 1;
}

input[type='file'] {
    display: inline-block;
    margin-left: 25px;
}

.rmvImage:before, .rmvImage:after {
    position: absolute;
    top: 5px;
    left: 10px;
    content: ' ';
    height: 15px;
    width: 4px;
    background-color: red;
}

.rmvImage:before {
    transform: rotate(45deg);
}

.rmvImage:after {
    transform: rotate(-45deg);
}