* {
  box-sizing: border-box;
}

.jqForm-modal {
	/* display: none; */
	position: fixed;
	z-index: 10001;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background: url(https://lh3.googleusercontent.com/d/1GRP3JIR9mxxSBocevcz-0igH1I6WbIJ0?authuser=1) repeat-x;
	background-size: cover;
	background-color: #FFF;
}

.jqForm-content {
	margin: 0 auto;
	width: 600px;
	border-radius: 5px;
	background-color: #F7FAFE;
	padding: 20px;
	border: 4px outset #cccccc;
}

.jqForm-body {
    padding: 10px;
	margin : 0;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 3px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 0;
  display: inline-block;
}

#jqFormSumbit, #jqFormCancel {
  background-color: #000;
  color: white;
  font-size : 1.3rem;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
  width : 80%;
}

#jqFormSumbit:hover, #jqFormCancel:hover {
  background-color: #00F;
}

#jqFormSumbit {
	background-color: #A95803;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-50 {
  float: left;
  width: 50%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	height : 80px;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
  .jqForm-content {
	width: 94%;  
  }

}