
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&display=swap');

html, body {
	height: 100%;
}
body {
	font-family: 'Roboto', sans-serif;
	margin:0;
}

body::after {
  content: "";
  background: url("../../images/exteriorpaint.jpg");
  opacity: 0.7;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;   
    background-repeat: no-repeat;
  background-size: cover;
}

.dataval {
	color:red;
	display:none;
}

#resultcontainer {
	display:none;
}
#result {
		color:green;
}

#error {
	color:red;
	display:none;
}

#container {
	display:flex;
	justify-content: center;
	flex-direction: row;
	align-items:center;
	height:100%;
}

#subcontain {
	display:flex;
}
#mainlogo {
	text-align:center;
	width:50%;
	background-color:#fff;
	padding-top:20px;
	border-top:2px solid #000;
	border-bottom:2px solid #000;
	flex:1;
	
}
#maininfo {
	width:50%;
	background-color:#fff;
	padding: 10px;	
	border-top:2px solid #000;
	border-bottom:2px solid #000;
	flex:1;
}
.break {
	width:100%;
}
#parade {
	width:100%;
	text-align:center;
	background-color:darkseagreen;
	position:absolute;
	bottom:0px;
	padding-bottom:10px;
	padding-top:10px;
	font-face:'Open Sans', sans-serif;
	color:#fff;
	font-weight:600;
	text-transform:uppercase;
	font-size:16px;
}
#estimate {
	text-align:center;
	margin-top:10px;
}
.btn {
	background-color: #008CBA;
	color:#fff;
	border:none;
	font-size:16px;
	margin: 4px 2px;
	cursor: pointer;
	padding: 15px 32px;
	transition-duration: 0.4s;
}
.btn:hover {
	background-color: #4CAF50; /* Green */
	color: white;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.modal-dialog {
  margin: 0;
}

.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.modal-header {
  border-radius: 0;
  background-color: #f7f7f7;
  border-color: #d4d2d2;
  align-items: center;
  padding: 1.2rem;
}

.modal-content {
  border-radius: 0;
  border: 0;
  -webkit-box-shadow: -12px 0 38px -14px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: -12px 0 38px -14px rgba(0, 0, 0, 0.25);
  box-shadow: -12px 0 38px -14px rgba(0, 0, 0, 0.25);
  background-clip: padding-box;
  width:75%;
}

.modal-backdrop {
  background-color: transparent;
}

.modal-button-container {
  margin: 0 auto;
  width: 90%;
  max-width: 500px;
}

.ffl-wrapper {
  position: relative;
  display: block;
  padding-top: 1rem;
}
.ffl-wrapper .ffl-label {
  transition-property: all;
  transition-duration: 200ms;
  transition-timing-function: ease;
  transition-delay: 0s;
  position: absolute;
  white-space: nowrap;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  pointer-events: none;
  top: 1.25rem;
}
.ffl-wrapper.ffl-floated .ffl-label {
  top: 0;
}

.ffl-label {
  color: #909090;
  line-height: 1.2;
}
.ffl-floated .ffl-label {
  color: #0289f3;
  font-size: 0.75rem;
}

form {
  max-width: 30rem;
  margin: 2rem auto 0;
  background-color: #ffffff;
  padding: 1rem;
}
form:after {
  content: "";
  display: block;
  clear: both;
}

input,
textarea,
select {
  transition: border-bottom 100ms ease;
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 1rem;
  box-shadow: none;
  appearance: none;
  outline: none;
  background-color: transparent;
  border-style: none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  height: 1.875rem;
}
input:hover,
textarea:hover,
select:hover {
  border-bottom-width: 1px;
  border-bottom-color: #909090;
}
input:focus,
textarea:focus,
select:focus {
  border-bottom-width: 1px;
  border-bottom-color: #0289f3;
}

textarea {
  resize: none;
  min-height: 1.875rem;
}

label > span {
  color: #cccccc;
}

[type=submit] {
  transition: background-color 0.3s ease;
  border: none;
  background-color: #0289f3;
  color: #ffffff;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 1rem;
  float: right;
}
[type=submit]:hover, [type=submit]:focus {
  background-color: #027bda;
}

#history {
	width:75%;
	border:2px solid #000;
	background-color:#fff;
	padding:10px;
	
}
.shadow {
    -moz-box-shadow:    3px 3px 5px 6px #ccc;
    -webkit-box-shadow: 3px 3px 5px 6px #ccc;
    box-shadow:         3px 3px 5px 6px #ccc;
}
