.contactContainer{
	width: 95%;
	max-width: 600px;
	height: auto;
	margin: 2% auto;
	overflow: hidden;
	background-color: #eee;
}

.textColumn{
	float: left;
	width: 100%;
	height: auto;
	color: #000;
	font-size: 14px;
	text-align: left;
	margin: 6px 0;
}

input[type=text], input[type=password] {
  width: 100%;
  padding: 8px 12px;
  margin: 8px 0;
  box-sizing: border-box;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
/*  background-color:#f4f6f7;*/
  background-color:#fff;
  border:1px solid #c5c5c5; 
}

input:focus, textarea:focus {
  background-color:#fff;
}


.rightSide{
	float: left;
}

.textAreaColumn{
	width: 100%;
	height: auto;
	float: left;
	height: auto;
	color: #000;
	font-size: 14px;
	text-align: left; 
	margin: 8px 0 0 0;
}

textarea{
	width:100%;
	font-family: 'Lato', sans-serif;
	padding: 8px 1%;
/*  background-color:#f4f6f7;*/
  background-color:#fff;
    border:1px solid #c5c5c5;
	margin: 8px 0 0 0;
	font-size: 14px;
}

@media only screen and (min-width: 720px) {
	.textColumn{
		width: 48%;
	}
	.rightSide{
		float: right;
	}
}

.address{
	width: 100%;
	height: auto;
	color:#999; 
	margin: 10px 0;
	float: left;
	font-size: 14px;
}

.submitButton{
	font-size: 16px;
	padding: 8px 14px;
	margin:  0;
	color: #fff;
	float: left;
	background-color: #ffa700;
    background-image: linear-gradient(#ffa700, #f56700);
    cursor: pointer;
    border:0;
}


.submitButton:hover{
	background-color: #ffa700;
	background-image: linear-gradient(#f56700, #ffa700);
	cursor: pointer;	
}




.responseText{
	width: 100%;
	height: 40px;
	margin:0 auto 0 auto;
	float: left;
	overflow: visible;
	position: relative;
}

.responseText p{
	width: 100%;
	margin: 0 auto;
	float: left;
	padding: 8px 0;
	text-align: center;
	color: #fff;
	position: absolute;
	top:0;
	left: 0;
	z-index: 100; 
}

.loading{
	background-image: url("../images2024/loading.gif");
	background-repeat: no-repeat;
	background-position: center;
}

.success{
	background-color: #0a8f00;
}
.error{
	background-color: #c5005c;
}


.contactTitle{
	border-bottom: 1px solid #444444;
	padding-bottom: 6px;
}





 /* ////////////////////////////////////////DROPDOWN SELECT OPTIONS /////////////////////////////////////////*/
 /* ////////////////////////////////////////DROPDOWN SELECT OPTIONS /////////////////////////////////////////*/
 /* ////////////////////////////////////////DROPDOWN SELECT OPTIONS /////////////////////////////////////////*/
 /* ////////////////////////////////////////DROPDOWN SELECT OPTIONS /////////////////////////////////////////*/
 /* ////////////////////////////////////////DROPDOWN SELECT OPTIONS /////////////////////////////////////////*/
 /* ////////////////////////////////////////DROPDOWN SELECT OPTIONS /////////////////////////////////////////*/
 /* The container must be positioned relative: */
.custom-select {
  position: relative;
  font-family: Arial;
}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
/*  background-color: DodgerBlue;*/
background-color: #666;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  /*background-color: DodgerBlue;*/
  background-color: #666;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
} 











