html {
	scroll-behavior: smooth; 
}
html, body {
  height: 100%;
  color: #5a5a5a;
  background: #ffffff;
}

.anchor {
    display: block;
    position: relative;
    top: -30px;
    visibility: hidden;
}

nav[data-toggle="toc"] {
	top: 50px;
  }

#toolHeading {
	font-size: 0.8rem;
}

input:valid {
	border: 1px solid green;
}

input:invalid {
	border: 1px solid red;
}

#or {
	text-transform: uppercase;
	font-weight: bold;
	margin: 2em 0;
	line-height: 1rem;
	flex: 1;
	display: flex;
	width: 100%;
	text-align: center;
  }
  #or:before, #or:after {
	content: "";
	flex-grow: 1;
	margin: .5rem 1rem .5rem 0;
	border-top: 1px solid #ccc;
	box-sizing: border-box;
	height: 1px;
  }

#progress { 
	margin-bottom:20px;
	vertical-align: top;
}

#messageDiv {
    margin-top: 10px;
    margin-bottom: 15px;
}

main {
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  /* background-image: url("https://source.unsplash.com/category/nature/1600x900/?weather"); */
}

ul.dropdown-menu {
	background-color: #fff;
}


#clear {
	cursor: pointer;
    font-size: x-large;
	/* position:absolute;
    margin-top: -40px;
    right: 55px; */
}


#openurl-icon {
	cursor: pointer;
	font-size: x-large;
}

.openurl-icon {
	cursor: pointer;
}

#history {
	cursor: pointer;
	margin-top: -5px;
	font-size: x-large;
}

#url:focus{
	outline: none;
}

.upload-container {
    margin-left: auto;
    margin-right: auto;
}

.jumbotron {
  font-size: 32px;
  color: #000;
  /* background-image: url("https://source.unsplash.com/category/photography/1600x900/?exif"); */
}

.meta {
  font-weight: bold;
}
.date  {
  font-weight: bold;
  margin-top:10px;
}

/* .makernote {
  color: #3c1616;
} */

.white-on-black {
  color: white;
  border-radius: 5px;
  position: relative;
  h1 {
    margin: 0;
  };
  a {
    color: #c3fffa;
  };
  p {
    /* margin: 0.5rem 0 0 0; */
  };
}

.flex-container {
	display: flex;
	flex-flow: row;
	flex-wrap: wrap;
	padding-left: 80px;
	padding-right: 50px;
	margin-top:30px;
}

.row {
	margin-top:20px;
}

.column-left {
	height:auto;
	width: 100%;
	padding-left: 50px;
	padding-right: 50px;
}


#location {
	color: #003A7B;
	display: inline-block;
	font-weight: bold;
	font-size: 18px;
	font-family: "Roboto-Regular", Roboto-Regular, Arial, helvetica, sans-serif;
}
#locationBtn {
	margin-top: 20px;
	margin-bottom: 20px;
}

#map {
	height: 400px;
	width: 100%;
}

.latlngLabel {
	color:blue;
}

.locationLabel {
	font-weight: bold;
}

.page-header {
  margin-top:60px;
}

.key {
	font-weight: bold;
	/* font-family: "Roboto-Regular", Roboto-Regular, Arial, helvetica, sans-serif; */
}
.value {
	/* font-family: "Roboto-Regular", Roboto-Regular, Arial, helvetica, sans-serif; */
}

span.button {
	font-weight: bold;
	font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
}
code {
	color: #2493ca;
}


pre {
  display: block;
  padding: 5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.0;
}

label {
  margin-right: 8px;
}

.hidden {
	display: none;
}

.dropdown-menu>li>a.hidden  {
	display: none;
}

.jumbotron h1 {
	/*  margin-left: 100px; */
	padding-top:40px;
	padding-bottom:40px;
	padding-left:50px;
	padding-right:50px;
}

.btnPad {
  margin: 4px;
}

.btn-file {
    position: relative;
    overflow: hidden;
}
.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}


.twitter-footer {
  padding-right: 50px;
}

/* Style the Image Used to Trigger the Modal */
#thumbnail {
	margin-top: 10px;
	margin-bottom: 20px;
	max-width: 600px;

	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
  }
  
  #thumbnail:hover {opacity: 0.7;}
  
  /* The Modal (background) */
  .modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	left: 0;
	top: 50px;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
  }
  
  /* Modal Content (Image) */
  .modal-content {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
  }
  
  /* Caption of Modal Image (Image Text) - Same Width as the Image */
  #caption {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	text-align: center;
	color: #ccc;
	padding: 10px 0;
	height: 150px;
  }
  
  /* Add Animation - Zoom in the Modal */
  .modal-content, #caption {
	animation-name: zoom;
	animation-duration: 0.6s;
  }
  
  @keyframes zoom {
	from {transform:scale(0)}
	to {transform:scale(1)}
  }
  
  /* The Close Button */
  .close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
  }
  
  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px){
	.modal-content {
	  width: 100%;
	}
  }


/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) {
	.column-left {
		width: 100%;
		padding-left: 5px;
		padding-right: 5px;
	}
	.flex-container {
		padding-left: 10px;
		padding-right: 10px;
		margin-top:30px;
	}
	.jumbotron h1 {
		padding-top:50px;
	}
}

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px) {
	.column-left {
		width: 100%;
	}
 	.flex-container {
		padding-left: 80px;
		padding-right: 50px;
	} 
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
	.column-left {
		width: 100%;
	}
}

/* Surface pro */
@media only screen and (min-width : 912px) {
	.column-left {
		width: 100%;
	}
	main {
	  margin-left:40px;
	}
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
	.column-left {
		width: 100%;
	}
	main {
	  margin-left:40px;
	}
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
	.column-left {
		width: 70%;
	}
}
