
* {
  box-sizing: border-box;
}

body {
  font-family: 'verdana';
  font-size: 16px;
  margin: 0;
}

.CScolors {
	color:  #ffffff;
	background-color: #006980;
}

.header {
	color:  #006980;
	background-color: #ffffff;
	text-align: center;
	padding: 10px;
}

.logo {
	min-width: 150px;
}

/* The navbar container */
.topnav {
  overflow: hidden;
  background-color: #006980;
}

/* Navbar links */
.topnav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 12px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
}

/* Links - change color on hover */
.topnav a:hover {
	color: black;
  background-color: #f5b51b;
}

.hidden {
	visibility: hidden;
}


/* Create two equal columns that float next to each other */
.column {
  float: left;
  
}

.col_image {
	float:left;
	padding: 10px;
	width: 30%;
}

.col_map {
	float:left;
	padding: 10px;
	width: 39%;
}
.col_info {
	float:right;
	padding: 10px;
	width: 30%;
}

.col_left {
	float:left;
	padding: 10px;
	width: 50%;
}
.col_right {
	float:left;
	padding: 10px;
	width: 50%;
}
.row_1 {
	height: 50%;
}
.row_2 {
	height: 50%;
}


iframe {
	aspect-ratio: 4 / 3;
	/*height: 50%;*/
	width: 100%;
	/*max-height: 400px;*/
}




.content {
	padding:0 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.footer {
	color: #ffffff;
	background-color: #006980;
	padding:0 20px;
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 2.5rem;            /* Footer height */
}




/* Community */

p {
text-align:center;
font-weight:700;
color:#5678C0;
text-shadow:2px 2px 2px #cfcfcf
}

.form h2 {
text-align:center;
text-shadow:2px 10px 2px #cfcfcf
}

a {
text-decoration:none;
margin:2px 0 0 30px;
padding:3px;
color:#1F8DD6
}
a:hover {
text-shadow:2px 2px 2px #cfcfcf;
}

input[type="file"] {
    display: none;
}
.custom-file-upload {
	font-size: 12px;
	background-color: #cfcfcf;
    	display: inline-block;
    	border-radius: 8px;
  	padding: 16px 32px;
    	cursor: pointer;
	font-weight: bold;
}

button {
	background-color: #cfcfcf;
	color: black;
	border: none;
	border-radius: 8px;
  	padding: 16px 32px;
	cursor: pointer;
	font-weight: bold;
}
button.hover {
	background-color: #bfbfbf;
}
.disabled {
  	opacity: 0.6;
  	cursor: not-allowed;
	pointer-events: none;
}



/* Responsive layout - makes the three columns stack on top of each other instead of next to each other on smaller screens (600px wide or less) */
@media screen and (max-width: 600px) {
	  .column {
		/* width: 100%; */
		/*font-size: 30px;*/
	  }

	.col_image {
		width: 100%;
	}	
	.col_map {
		width: 100%;
	}
	.col_info {
		width: 100%;
	}

	.col_left {
		height: 100%;
		width: 100%;
	}
	.col_right {
		height: 100%;
		width : 100%;
	}
	
	
	  .header {
		font-size: 20px;
	}
	
	.topnav a {
		/*font-size: 40px;*/
	}	
}



