@media (prefers-color-scheme: dark) {
  /* Dark theme styles go here */
  body {
    color: #eee;
    background: #313131;
  }
  body.light-theme {
	  color: #222;
	  background: #fff;
  }
  
  a {
    color: #809fff;
  }
  
  .well {
	  background: #525252;
  }
  
  .light-theme .well {
	  background: #E8E8E8;
  }
  
  .help-block {
	  color: #eee;
  }
  
  .light-theme .help-block {
	  color: #222;
  }
}

@media (prefers-color-scheme: light) {
  /* Light theme styles go here */
  body {
	  color: #222;
	  background: #fff;
  }
  body.dark-theme {
	  color: #eee;
	  background: #313131;
  }
  
  .well {
	  background: #E8E8E8;
  }
  
  .dark-theme .well {
	  background: #525252;
  }
  
  .help-block {
	  color: #222;
  }
  
  .dark-theme .help-block {
	  color: #eee;
  }
}

body {
    min-width: 350px;
	-webkit-appearance: none;
	-webkit-border-radius:0px;
}

.col-md-4 {
	width: 25%;
	display: inline-block;
}

.header-logo {
    display: inline-block;
	background-repeat: no-repeat;
    width: 75%;
    height: 100px;
	/*background-image: url("assets/DEEPublicAccessLogoResized.png");*/
	background-image: url("assets/NDEQ.Logo.svg");
}

.btn-toggle {
	float: right;
	height: 30px;
	display: flex;
	color: black;
	text-align: center;
	vertical-align: middle;
}

.language {
    float: right;
    width: 200px;
	padding-right: 5px;
	height: 30px;
}

.content-separator {
    margin-top: 0px;
    margin-bottom: 10px;
}

.content-body {
    max-height: calc(100vh - 150px);
    overflow-y: auto;
}

.content-body-search {
    overflow-x: hidden;
}

.content-body-results {
    overflow-x: auto;
}

.content-gap {
    height: 30px;
}

@media screen and (min-width: 1301px)
{
	.col-md-12 {
		display: flex;
	}
}

@media screen and (max-width: 1300px)
{
	.header-logo {
		width: 70%;
	}
	
	.col-md-12 {
		display: flex;
	}
	
	.language {
		float: right;
		width: 200px;
		padding-right: 5px;
		height: 30px;
		margin-top: 10px;
		padding-bottom: 10px;
		display: block;
	}

	.btn-toggle {
		float: right;
		height: 30px;
		margin-top: 10px;
		width: 30px;
		display: block;
	}
	
	.col-md-4 {
		width: 30%;
	}
	
	.col-md-8 {
		width: 70%;
	}
}

@media screen and (max-width: 992px)
{
	.header-logo {
		width: 100%;
		display: block;
		margin-bottom: 10px;
	}
	
	.language {
		float: left;
		width: 200px;
		padding-right: 5px;
		height: 30px;
		margin-top: 10px;
		padding-bottom: 10px;
		display: inline-block;
	}

	.btn-toggle {
		float: left;
		height: 30px;
		margin-top: 10px;
		margin-right: 10px;
		width: 30px;
		display: inline-block;
	}
	
	.col-md-4 {
		width: 70%;
	}
	
	.col-md-8 {
		width: 100%;
	}
	
	.col-md-12 {
		display: block;
	}
}

@media screen and (max-width: 600px)
{
	/* Decrease the height of the header on a mobile device. */
	.header-logo {
		width: 100%;
		height: 80px;
		margin-right: auto;
		margin-left: auto;
		padding-bottom: 10px;
		/*background-image: url("assets/DEEPublicAccessLogoMobile.png");*/
		background-image: url("assets/NDEQ.Logo.svg");
	}
	
	.language {
		float: left;
		width: 200px;
		padding-right: 5px;
		height: 30px;
		margin-top: 10px;
		padding-bottom: 10px;
		display: inline-block;
	}

	.btn-toggle {
		float: left;
		height: 30px;
		margin-top: 10px;
		width: 30px;
		display: inline-block;
	}
	
	.col-md-4 {
		width: 100%;
	}
	
	.col-md-8 {
		width: 100%;
	}
	
	.col-md-12 {
		display: block;
	}
}



