/* UTX Layout - Header
============================================================================= */

.utx-header {
	position: relative;
	width: 100%;
	border-bottom: 1px solid #ebe8e2;
	margin-bottom: 10px;
}

.utx-header-topbar {
	height: 34px;
	background: #bf5700;
}

.utx-header-topbar .divider {
	float: right;
	display: block;
	width: 1px;
	height: 20px;
	background: rgba(255,255,255, .4);
	margin: 7px 16px;
}

.utx-header-topnav {
	float: right;
	display: block;
	margin-top: 4px;
	height: 26px;
}

.utx-header-topnav img {
	display: inline-block;
	width: auto;
	height: 100%;
}

.utx-header-topnav-signout {
	float: right;
	display: block;
	font-size: 14px;
	font-weight: normal;
	color: #fff;
	line-height: 34px;
}

.utx-header-topnav-signout:hover {
	color: #fff;
	text-decoration: none;
}

.utx-header-main {
	position: relative;
	height: 134px;
}

@media (max-width: 767px) {
	.utx-header-main {
		height: 52px;
		box-shadow: 0 2px 6px rgba(0,0,0,.2);
	}
}

.utx-header-logo {
	display: block;
	position: absolute;
	top: 17px;
	left: 15px;
	height: 57.5px;
}

@media (max-width: 767px) {
	.utx-header-logo {
		top: 10px;
		height: 32px;
	}
}

.utx-header-logo img {
	display: block;
	width: auto;
	height: 100%;
}

.utx-header-navlink {
	display: none;
    position: absolute;
    top: 4px;
    right: 15px;
    background: #f5f5f5;
    font-size: 11px;
    z-index: 10;
    width: 4em;
    height: 4em;
    padding: 1em;
    cursor: pointer;
	-webkit-transition: all 0.2s ease-out;
	   -moz-transition: all 0.2s ease-out;
	    -ms-transition: all 0.2s ease-out;
	     -o-transition: all 0.2s ease-out;
	        transition: all 0.2s ease-out;
}

@media (max-width: 767px) {
	.utx-header-navlink {
		display: block;
	}
}

.utx-header-navlink span {
    position: relative;
    display: block;
    margin-top: 0.9em;
}

.utx-header-navlink span,
.utx-header-navlink span:before,
.utx-header-navlink span:after {
    background-color: #000;
    width: 100%;
    height: .2em;
    -webkit-transition: all 0.4s;
       -moz-transition: all 0.4s;
        -ms-transition: all 0.4s;
         -o-transition: all 0.4s;
            transition: all 0.4s;
}

.utx-header-navlink span:before,
.utx-header-navlink span:after {
    position: absolute;
    top: -.55em;
    content: " ";
}

.utx-header-navlink span:after {
    top: .55em;
}

.utx-header-navlink.active span {
    background: transparent;
}

.utx-header-navlink.active span:before {
    -webkit-transform: rotate(45deg) translate(.5em, .4em);
       -moz-transform: rotate(45deg) translate(.5em, .4em);
        -ms-transform: rotate(45deg) translate(.5em, .4em);
         -o-transform: rotate(45deg) translate(.5em, .4em);
            transform: rotate(45deg) translate(.5em, .4em);
}

.utx-header-navlink.active span:after {
    -webkit-transform: rotate(-45deg) translate(.4em, -.3em);
       -moz-transform: rotate(-45deg) translate(.4em, -.3em);
        -ms-transform: rotate(-45deg) translate(.4em, -.3em);
         -o-transform: rotate(-45deg) translate(.4em, -.3em);
            transform: rotate(-45deg) translate(.4em, -.3em);
}

.utx-header-nav {
	position: absolute;
	bottom: 1px;
	right: 10px;
	margin: 0px;
	padding: 0px;
	list-style: none;
}

.utx-header-nav li {
	float: left;
	margin-left: 4px;
}

.utx-header-nav li a,
.utx-header-nav li a:visited {
	display: block;
	padding: 1px 12px 0px;
	font-size: 16px;
	font-weight: 600;
	line-height: 48px;
	color: #2d2a28;
	border: 1px solid #fff;
	border-bottom: 0px;
	transition: all 200ms;
}

.utx-header-nav li a:hover {
	color: #bf5700;
	text-decoration: underline;
	border-color: #aaabac;
}

@media (max-width: 767px) {
	.utx-header-nav {
		display: none;
		position: absolute;
		top: 53px;
		left: 0px;
		right: 0px;
		bottom: auto;
		background: #fcfcfc;
		box-shadow: 0 3px 7px rgba(0,0,0,.3);
		z-index: 1000;
	}
	.utx-header-nav li {
		float: none;
		margin-left: 0px;
		border-top: 1px solid #eee;
		text-align: center;
	}
	.utx-header-nav li:first-child {
		border: 0px;
	}
	.utx-header-nav li a,
	.utx-header-nav li a:visited {
		display: block;
		padding: 0px 15px 0px;
		font-size: 16px;
		font-weight: 600;
		line-height: 52px;
		color: #2d2a28;
		border: 0px;
		transition: all 200ms;
	}

	.utx-header-nav li a:hover {
		color: #bf5700;
		text-decoration: underline;
		border-color: #aaabac;
	}
}

/* UTX Layout - Page
============================================================================= */

.utx-page {
	padding-bottom: 100px;
}

.utx-page-main {}

.utx-page-sidebar {
	padding-top: 50px;
}

@media (max-width: 991px) {
	.utx-page-sidebar {
		display: none;
	}
}

.utx-page,
.utx-footer {
	-webkit-transition: all 0.2s ease-out;
	   -moz-transition: all 0.2s ease-out;
	    -ms-transition: all 0.2s ease-out;
	     -o-transition: all 0.2s ease-out;
	        transition: all 0.2s ease-out;
}

.utx-page.inactive,
.utx-footer.inactive {
	opacity: .3;
	pointer-events: none;
}

/* UTX Layout - Footer
============================================================================= */

.utx-footer {
    background: #f8f8f8;
	border-top: 1px solid #ebe8e2;
	padding-top: 45px;
}

.utx-footer-left {
	border-right: 1px solid rgb(203, 203, 203);
}

@media (max-width: 1199px) {
	.utx-footer-left {
		border: none;
	}
}

.utx-footer-logo {
	display: block;
	height: 42px;
	width: auto;
	margin-top: 5px;
}

@media (max-width: 767px) {
	.utx-footer-logo {
		height: 32px;
	}
}

.utx-footer-logo img {
	display: block;
	height: 100%;
	width: auto;
}

.utx-footer-address {
	font-size: 14px;
	font-weight: 300;
	line-height: 19px;
	color: #444;
	padding: 25px 0px;
}

.utx-footer-contact {
	font-size: 14px;
	font-weight: 300;
	line-height: 19px;
	color: #444;
	margin-bottom: 5px;
	padding-top: 25px;
}

.utx-footer-copyright {
	font-size: 14px;
	line-height: 70px;
	color: #2d2a28;
	padding-top: 20px;
}

.utx-footer-nav {
	width: 100%;
	margin-left: 45px;
}

.utx-footer-nav td {
	padding-bottom: 15px;
}

.utx-footer-nav a {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	line-height: 24px;
	color: #444;
}

.utx-footer-nav a:hover {
	text-decoration: underline;
}

/* UTX Typography
============================================================================= */

h1 {
	font-family: 'Open Sans', sans-serif;
	font-size: 44px;
	font-weight: 400;
	margin-bottom: 40px;
	padding-bottom: 10px;
	border-bottom: 3px solid #bf5700;
}

@media (max-width: 767px) {
	h1 {
		font-size: 30px;
		line-height: 38px;
	}
}

p {
	margin-bottom: 18px;
	color: #444;
}

/* Fieldbock
============================================================================= */

.utx-quicklinks {
	margin-bottom: 40px;
	padding: 15px;
	background: #fcfcfc;
	border: 1px solid #e1ddd2;
}

.utx-quicklinks h4 {
    margin: 0px 0 19px 0;
    color: #2d2a28;
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    line-height: 24px;
    color: #2d2a28;
    text-align: center;
    border-bottom: 1px solid #e1ddd2;
    padding-bottom: 10px;
}

.utx-quicklinks ul {
	list-style: none;
	margin: 0px;
	padding: 0px 10px;
}

.utx-quicklinks ul li {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: #222;
	padding-bottom: 10px;
}

.utx-quicklinks ul li a {
	color: #bf5700;
}

/* UTX Forms
============================================================================= */

fieldset {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

legend {
	font-size: 22px;
	font-weight: 600;
	color: #000;
	border: 0px;
	margin: 0px 0px 15px;
	padding-top: 10px;
}

.form-group-error label {
	color: red;
}

.form-group-error input,
.form-group-error select,
.form-group-error textarea {
	border-color: red;
}

.help-block {
	font-style: italic;
}

.help-block-error {
	color: red;
}

.datepicker {
	font-size: 14px;
}

/* UTX Tables
============================================================================= */

.table thead {
	background: #f5f4f0;
	border: 1px solid #e1ddd2;
}

.table thead tr {
	background: none !important;
}

.table thead tr th {
	padding: 12px 13px 9px;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	color: #444;
	text-shadow: 0px 1px 0px #fff;
	background: none !important;
	border: 0px;
}

.table tbody {
	border-left: 1px solid #e1ddd2;
	border-right: 1px solid #e1ddd2;
	border-top: 1px solid #ccc;
}

.table tbody tr {
	border-bottom: 1px solid #dfdfdf;
}

.table tbody tr td {
	padding: 15px;
	font-size: 15px;
	line-height: 23px;
	color: #444;
	border: 0px;
}

.table.table-bordered tbody tr td {
	border-left: 1px solid #e1ddd2;
}

.table.table-bordered tbody tr td:first-child {
	border-left: 0px;
}

.table.table-condensed thead tr th {
	padding: 9px 9px 7px;
	font-size: 13px;
	line-height: 17px;
}

.table.table-condensed tbody tr td {
	padding: 11px;
	font-size: 13px;
	line-height: 19px;
}

.panel-default>.panel-heading {
  background-color: #f5f4f0;
}


/* UTX Buttons
============================================================================= */
.btn {
  border-radius: 5px;
}
.action-btn {
  margin: 0 2px;
  float: right;
}
div.tooltip-inner {
    font-size: 12px;
}

/* Custom ThermoDex App Styling
============================================================================= */
#id_compound_select
{
    display:block;
}

.utx-footer a, .utx-footer a:hover, .utx-footer a:link, .utx-footer a:visited
{
    color:black;
}

.topnavbar {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.navbar_list {
  display: inline;
	padding: 2px;
	font-size: 14px;
}

.about_head {
	font-weight: bold;
}

.about_table {
  border-collapse: collapse;
}

.about_table, .about_td {
  border: 1px solid black;
	padding: 5px;
}

.tab_before_text {
	padding-left: 30px;
}

.search_form {
	float: left;
	padding-top: 15px;
	padding-left: 10px;
	width: 25%;
	font-size: 12px;
	font-weight: bold;
	border: solid 1px;
	border-radius: 25px;
	margin-left: 0%;
	margin-right: 1%;
}

.search_text {
	display: block;
}

.record_detail tr td:first-of-type {
	width: 25%;
	vertical-align: top;
}

.record_detail {
    border: 4px solid gray;
}

.record_detail tr td {
    padding: 20px 20px 30px 20px;
    border: 1px solid gray;
}

.record_detail tr td:nth-child(1) {
    background-color: #cccccc;
    font-weight: 700;
    font-size: 18px;
}

.record_detail tr td:nth-child(2) {
    font-size: 15px;
}


.disclaimer hr {
    border-top: 2px dashed black;
}

.browse_table th {
    background-color: #cccccc;
    font-weight: 700;
    font-size: 15px;
    border-bottom: 2px solid black;
    padding: 10px 10px;
}

.browse_table tr:nth-child(even) {
    background-color: #F7F7F7;
}

.browse_table tr td:last-of-type a {
	white-space: nowrap;
}

.browse_table tr td {
    padding: 10px;
}

.breadcrumbs {
    font-size: 10px;
}

.submit_button, .reset_button {
	margin-top: 10px;
	display: inline-block;
}

.checkbox_title {
	padding-bottom: 0px;
	margin-bottom: 0px;
	padding-top: 10px;
	font-size: 14px;
}

checkbox {
	width: 90%;
}

.help_text {
	font-size: 10px;
	font-weight: normal;
}

input#id_property_text,
input#id_compound_text,
input#id_property_select_text,
input#id_compound_select_text
{
	outline: none;
	border: 0px solid;
	/* display:inline-block; */
	width: 100%;
	padding-bottom: 0px;
	margin-bottom: 0px;
	font-size: 13px;
}

button.reset_button a{
	text-decoration: none;
	color: #444444;
}

* {
	box-sizing: border-box;
}

/* Mobile Styling */
@media screen and (max-width: 414px) {
	.browse_table {
		font-size: 12px;
	}

	.search_form {
		width: 100%;
	}
}

div.footer-links p {
    padding: 20px;
}

div.column {
    float: left;
    width: 33.33%;
}

div.utx-footer-right {
    padding-top: 20px;
}

h1.search_head {
    border: transparent;
}
