@charset "utf-8";
/*for Impartial Analysis Page (Appraisal)*/

/****************
	FORM
****************/
* {
  box-sizing: border-box; 
}
#AppraisalForm {
	width: 100%;
}
.wrapper {
	max-width: 100%;
	background-color: #E6E6E6;
	border-radius: 1rem;
	padding: 5px;
	border-bottom: thin dotted;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.form-area, .form-area-owner, .photo-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	   -ms-flex-direction: column;
		   flex-direction: column;
	flex-basis: 100%;
}
.details-area, .photo-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.notes-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
fieldset {
	border: thin solid midnightblue;
	border-radius: 10px;
}
legend {
	font-weight: bold;
	color: midnightblue;
}
textarea, input, label, select, button {
	padding: 0.2rem 1rem;
    font-size: 1.5rem;
}
textarea {
	resize: none;
  	overflow: auto;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	height: 7rem;
	width: 100%;
}
input {
	height: 2em; /* for IE */
    vertical-align: middle; /* This is optional but it makes legacy IEs look better */
}
input, select {
	margin-bottom: 10px;
	text-overflow: ellipsis;
	overflow: hidden;
}
.name input {
	text-transform: capitalize;
}
.form-area input,
.form-area-owner input,
.form-area-owner select,
.form-area textarea {
	color: #714821;
	border-radius: 7px;
	flex-basis: 100%;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
 	-webkit-transition: all 0.3s ease-in-out;
 			transition: all 0.3s ease-in-out;
}
.form-area input:focus,
.form-area-owner input:focus,
.form-area-owner select:focus,
.form-area textarea:focus {
	color: #9F6D32;
	outline: none;
	border-radius: 5px;
	flex-basis: 100%;
	-moz-box-shadow: 0 0 5px #9F6D32;
	-webkit-box-shadow: 0 0 5px #9F6D32;
	box-shadow: 3px 2px 20px #9F6D32;
}
.form-area button {
	margin-top: 1rem;
	border-radius: 20px;
	background-color: gold;
	box-shadow: 3px 2px 20px yellow;
	color: midnightblue;
	font-size: 1.5rem;
	padding: 5px 0px;
}
.form-area button:hover {
	color: white;
}
hr {
	width: 90%;
}
.fieldset-lookup {
	background: #F0F0F0;
	border: medium solid slategrey;
	border-radius: 10px;
	width: 70%;
	margin: 1.5rem auto 0 auto;		
}
.legend-lookup {
	position: center;
	text-align: center;
}
.lookup-container {
	width: 100%;
	margin: 0 auto;
}
.details-area-owner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.details-area-owner input,
.details-area-owner select {
	-ms-flex-preferred-size: 100%;
	    flex-basis: 100%;
}
/*******************************
The Appraisal Lookp Popup Window
*******************************/
.customButton {
	background-color: inherit;
	border-radius: 10px;
	color: inherit;
	border: none;
	font: inherit;
	text-decoration: underline;
}
.customButton:hover {
	background-color: #9F6D32;
	color: white;
	cursor: pointer;
	text-decoration: none;
}
/* The Modal (background) */
.modalBox {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1;
	padding-top: 100px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content */
.modal-frame {
	position: relative;
	background-color: #fefefe;
	margin: auto;
	padding: 0;
	border: 1px #9F6D32;
	width: 55%;
	box-shadow: 1px 4px 10px 1px rgba(159,109,50,1.00);
	-webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: animatetop;
	animation-duration: 0.4s;
}
/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}
@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}
/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: #9F6D32;
  text-decoration: none;
  cursor: pointer;
}
.modal-header {
	padding: 1px 8px;
	background-color: #9F6D32; /* For browsers that do not support gradients */
	background-image: -webkit-linear-gradient(#9F6D32, white);
	background-image: linear-gradient(#9F6D32, white);
  	color: white;
	text-align: center;
}
.modal-body {
	padding: 1rem;
	text-align: center;
}
.row {
	border-bottom: thin inset #9F6D32;
    padding: 1px 4px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.column1 {
	background-color: beige;
	font-weight: bold;
	min-width: 150px;
    padding: 1rem 1rem 0 0;
}
.column2 {
	max-width: 300px;
	padding: 1rem 0 0 .5rem;
}
.noAppraisal {
	color: red;
	text-align: center;
	vertical-align: middle;
}
#iLookup {
	border: none;
	height: 400px;
	margin: 0px;
	overflow: hidden;
	padding: 0px;
	width: 100%;
}
/*********************
The Photo Container
*********************/
.photo-wrapper {
	border-bottom: thin dotted;	
	max-width: 100%;
}
.photo-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.photo-area {
   
}
.photo-area-1 {
	min-width: 12rem;
	font-weight: bold;
	text-decoration: underline;
	-webkit-box-flex: 0;
	    -ms-flex: 0;
	        flex: 0;
}
.photo-area-2 {
	padding-top: 5px;
}
#output_image0, #output_image1, #output_image2, #output_image3, #output_image4, #output_image5, #output_image6, #output_image7, #output_image8, #output_image9 {
	width: 10rem;
}
#photo0, #photo1, #photo2, #photo3, #photo4, #photo5, #photo6, #photo7, #photo8, #photo9 {
	display: none;
}
.ifp {
	border: none;
	height: 30px;
	margin: 0px;
	overflow: hidden;
	padding: 0px;
	vertical-align: top;
	width: 300px;
}

/******Style the Browse Button******/
.file-upload {
	/*display: inline-flex;*/
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 15px;
}
.file-upload__input {
  	display: none;
}
.file-upload__button {
	-webkit-appearance: none;
	background: #fff;
	border: 2px solid #9F6D32;
	border-radius: 25px;
	outline: none;
	padding: 0.2em 1em;
	margin-right: 10px;
	margin-bottom: 5px;
	color: #9F6D32;
	font-size: .8em;
	font-family: "Quicksand", sans-serif;
	cursor: pointer;
}
.file-upload__button:active,
.file-upload__button:hover {
  	background: #9F6D32;
	color: white;
}
.file-upload__label {
	width: 200px;
	height: 20px;
	display: inline-block;
	font-size: 1em;
	vertical-align: top;
	font-family: "Quicksand", sans-serif;
}
/*******End Style Browse Button*********/

/******Style the Upload Button**********/
.upload-button {
	-webkit-appearance: none;
	background: #fff;
	border: 2px solid #9F6D32;
	border-radius: 25px;
	outline: none;
	color: #9F6D32;
	font-size: .8em;
	font-family: "Quicksand", sans-serif;
	cursor: pointer;
}
.upload-button:active,
.upload-button:hover {
  	background: #9F6D32;
	color: white;
}
/*******End Style Upload Button*********/

/*********************
The checkbox container 
*********************/
.checkcontainer {
	display: block;
	position: relative;
	padding-left: 34px;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.checkcontainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 4px;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: #eee;
	border: thin solid #6E6D96;
}

/* On mouse-over, add a background color */
.checkcontainer:hover input ~ .checkmark {
	background-color: #6E6D96;
	-webkit-transition: .9s;
			transition: .9s;
}

/* When the checkbox is checked, add a background */
.checkcontainer input:checked ~ .checkmark {
	background-color: #9F6D32;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
	-webkit-animation: check 1s linear;
	        animation: check 1s linear;
}
@-webkit-keyframes check {
	from {
		-webkit-transform: scale(0);
		        transform: scale(0);
	}
	to {
		-webkit-transform: scale(3);
		        transform: scale(3);
	}
}
@keyframes check {
	from {
		-webkit-transform: scale(0);
		        transform: scale(0);
	}
	to {
		-webkit-transform: scale(3);
		        transform: scale(3);
	}
}
/* Show the checkmark when checked */
.checkcontainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkcontainer .checkmark:after {
 	top: 5px;
	left: 5px;
	width: 9px;
	height: 9px;
	background: white;
}
/************************
The radiobutton container 
************************/
.radiocontainer {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default radio button */
.radiocontainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom radio button */
.radiomark {
	position: absolute;
	top: 4px;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: #eee;
	border: thin solid #6E6D96;
	border-radius: 50%;
}

/* On mouse-over, add a background color */
.radiocontainer:hover input ~ .radiomark {
	background-color: #6E6D96;
	-webkit-transition: .9s;
			transition: .9s;
}

/* When the radio button is checked, add a background */
.radiocontainer input:checked ~ .radiomark {
  	background-color: #9F6D32;
	border: #9F6D32;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiomark:after {
	content: "";
	position: absolute;
	display: none;
	-webkit-animation: dot 1s linear;
	        animation: dot 1s linear;
}
@-webkit-keyframes dot {
	from {
		-webkit-transform: scale(0);
		        transform: scale(0);
	}
	to {
		-webkit-transform: scale(3);
		        transform: scale(3);
	}
}
@keyframes dot {
	from {
		-webkit-transform: scale(0);
		        transform: scale(0);
	}
	to {
		-webkit-transform: scale(3);
		        transform: scale(3);
	}
}
/* Show the indicator (dot/circle) when checked */
.radiocontainer input:checked ~ .radiomark:after {
	display: block;
}

/* Style the indicator (dot/circle) */
.radiocontainer .radiomark:after {
 	top: 6px;
	left: 6px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}
@media only screen and (max-width : 555px) {
	.pagetitle {
		font-size: 2.5rem; 
	}
	.photo-container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
			-ms-flex-direction: column;
				flex-direction: column;
	}
	.file-upload__label {
		width: 280px;
		overflow: hidden;
	}
}
@media only screen and (min-width : 555.1px) and (max-width : 1100px) {
	fieldset {
		width: 100%;
	}
}
@media only screen and (min-width : 556px) and (max-width : 700px) {
	.file-upload__label {
		width: 250px;
		overflow: hidden;
	}
}
@media all and (min-width: 700px) {
	.form-area-owner {	
	}
	.details-area-owner{
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
			-ms-flex-direction: row;
				flex-direction: row;
	}
	.details-area-owner label{
		-ms-flex-preferred-size: 12rem;
			flex-basis: 12rem;
		-webkit-box-flex: 0;
			-ms-flex-positive: 0;
				flex-grow: 0;
		-ms-flex-negative: 0;
			flex-shrink: 0;
	}
	.details-area-owner input,
	.details-area-owner select {
		max-width: 50%;                
	}
}
@media all and (max-width: 700px) {
/**Popup Window for AppLookup**/
	.modal-frame {
		margin: auto;
		padding: 0;
		width: 80%;
	}
	.file-upload__label {
		width: 162px;
	}
}
@media only screen and (min-width : 1000px) {
	.form-area {
		-ms-flex-flow: row wrap;
		    flex-flow: row wrap;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
	.details-area-1 {
		width: 24rem;
		-ms-flex-negative: 0;
		    flex-shrink: 0;
	}
	.details-area-2 {
		width: 17rem;
	}
	.details-area-2-speed {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	.notes-area {
		/*max-width: 50rem;*/
		-webkit-box-flex: 3;
		    -ms-flex: 3;
		        flex: 3;
	}
	textarea {
		height: 100%;
	}
	button {
		-ms-flex-preferred-size: 100%;
		    flex-basis: 100%;
	}
	fieldset {
		width: 100%;
	}
	.file-upload__label {
		width: 500px;
	}
}