/*
 * BMRB stylesheet (new as of 2021)
 * 
 * green: #99c457
 * light green: #e1ebc8
 * blue: #3f7aad
 * purple: #97247d
 * light blue: #0ca1d8
 * orange: #f6871f
 *
 */
* {
  box-sizing: border-box; }

body {
  /* font-family: Arial, Verdana, Helvetica, sans-serif; */
  font-family: "Roboto", sans-serif;
  font-size: 100%;
  margin: 0;
  padding: 0; }

p,
li,
td,
th,
textarea,
input,
div {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  letter-spacing: 0.02em; }

p,
h3,
h4 {
  color: #221e20; }

p {
  font-weight: 300; }

span {
  font-weight: inherit; }

a {
  text-decoration: none;
  font-size: 100%;
  color: #99c457;
  font-weight: 500; }
  a:visited:hover:active {
    color: #99c457; }

li {
  padding: 5px 0px; }

textarea {
  /* font-family: monospace; */
  font-family: "Roboto", sans-serif;
  font-size: 0.9em;
  width: 100%; }

table {
  border: none; }

pre {
  padding-top: 1em;
  font-family: "Roboto", sans-serif;
  font-size: 1.1em; }

tt {
  font-family: "Roboto", sans-serif;
  font-size: 1.1em; }

/* top section with logos */
header,
footer {
  width: 100%;
  margin-top: 0.7em;
  background-color: transparent;
  border: 0px;
  border-spacing: 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0; }

header:first-of-type {
  margin-top: 0; }

/* Fix the border corner radius */
footer {
  padding: 1em;
  margin-bottom: 0.7em;
  -webkit-border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px; }

section {
  width: 100%;
  padding: 0;
  border-spacing: 0; }

/*
 * left-side column w/ nav menu
 */
#bmrb_navmenucolumn {
  margin: 0 0 0 0;
  padding: 1em 1em 0.5em 10px;
  text-align: left;
  background-color: #ededed;
  border: solid #33527b;
  border-width: 0 2px 2px 2px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px; }

/* 
 * SEARCH
 */
/* Search box style */
/* .instant_search {
  border: solid #33527b;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 5px 0;
  text-align: left;
  background-color: #cbdbff;
} */
/* Instant search should scroll */
.ui-autocomplete {
  max-height: 500px;
  min-width: 400px;
  overflow-y: auto;
  /* prevent horizontal scrollbar */
  overflow-x: hidden;
  /* add padding to account for vertical scrollbar */
  padding-right: 20px; }

/* The :not(.gsc-input) prevents the google search box from having these rules applied to it */
.search-bar input [type="text"]:not(.gsc-input):not(.combobox) {
  border-width: 1px; }
.search-bar input:not([type]) {
  border-width: 1px; }
.search-bar textarea {
  border-width: 1px; }

input [type="text"]:not(.gsc-input):not(.combobox) {
  border-radius: 3px;
  transition: all 0.5s ease;
  background: #ededed;
  border: 1px solid #c8c8c8;
  color: #221e20;
  margin: 7px 5px 7px 0;
  padding: 5px 3px 5px 3px; }
input:not([type]) {
  border-radius: 3px;
  transition: all 0.5s ease;
  background: #ededed;
  border: 1px solid #c8c8c8;
  color: #221e20;
  margin: 7px 5px 7px 0;
  padding: 5px 3px 5px 3px; }

textarea {
  border-radius: 3px;
  transition: all 0.5s ease;
  background: #ededed;
  border: 1px solid #c8c8c8;
  color: #221e20;
  margin: 7px 5px 7px 0;
  padding: 5px 3px 5px 3px; }

.instant_search p {
  margin: 0 1em 0 0em; }

#random_image {
  width: 95%; }

/* for Wisharts servers page */
.progname {
  font-size: 120%;
  font-weight: bold; }

/* basic text alignment */
.top {
  vertical-align: top; }

.middle {
  vertical-align: middle; }

.bottom {
  vertical-align: bottom; }

.center {
  text-align: center; }

.right {
  text-align: right; }

.left {
  text-align: left; }

table.content {
  width: 90%; }

/* Prevent autocomplete box from going off screen */
.ui-autocomplete {
  font-size: 90% !important; }

/*
 * Input boxes & forms
 */
input[type="text"]:focus:not(.gsc-input),
input:not([type]):focus,
textarea:focus {
  box-shadow: 0 0 2px #666666 inset;
  background-color: #ffffff;
  border: 1px solid #666666;
  outline: none; }

input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="file"],
input[type="checkbox"],
select,
button {
  text-decoration: inherit;
  border-radius: 3px;
  border: 1px solid #c8c8c8;
  padding: 5px 10px 5px 10px;
  cursor: pointer;
  display: inline-block;
  background: #ededed; }

input[type="checkbox"] {
  margin-left: 1em; }

/* Don't show the transition for textareas - it looks weird. */
textarea {
  transition: all 0s; }

/* Show the dark grey outline for all form elements on hover */
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
input[type="file"]:hover,
input[type="checkbox"]:hover,
select:hover,
textarea:hover,
input[type="text"]:not(.gsc-input):hover,
input:not([type]):hover,
button:hover {
  transition: all 0.5s ease;
  box-shadow: 0 0 2px #666666 inset;
  border: 1px solid #666666;
  outline: none; }

/* Fix the padding around the google search box. */
.cse .gsc-control-cse,
.gsc-control-cse {
  padding: 0 !important; }

/* Use these to style tables nicely */
/* table.alternating tr:nth-child(even) {
  background-color: #cbdbff;
}
table.alternating tr:nth-child(odd) {
  background-color: #ffffff;
}
table.alternating td {
  padding: 0.25em;
  text-align: left;
  vertical-align: top;
}
table.alternating {
  width: 100%;
}
table.alternating th {
  padding: 0.25em;
  font-size: 130%;
  text-align: left;
  background-color: #cbdbff;
}
table.alternating tfoot {
  font-size: 110%;
  background-color: #cbdbff;
}
table.alternating tr:hover {
  border: 1px solid #c8c8c8;
  background: #ededed;
}
/* Text align center for the query grid */
/* table.query_grid {
  text-align: center;
}
table.query_grid th {
  text-align: center;
} */
/* The following makes the selected and not selected buttons out of elements.
 * This is used on the entry summary page and the metabolomics pages.
 * */
.active_tab,
.other_tab,
.active_tab:visited,
.other_tab:visited {
  color: #333333;
  text-decoration: none;
  font-weight: bold;
  border-radius: 3px;
  border: 1px solid #c8c8c8;
  padding: 5px 10px 5px 10px;
  display: inline-block; }

.other_tab {
  background-color: #ededed; }
  .other_tab:hover {
    box-shadow: 0 0 2px #666666 inset;
    border: 1px solid #666666;
    outline: none; }

.active_tab {
  background-color: transparent; }

/* For expandingMenu */
.expandingHeader {
  cursor: pointer; }

/*
 * For jquery-based navigation bar
 */
#accordion_sidebar.ui-accordion {
  /* font-family: Arial, Verdana, Helvetica, sans-serif; */
  font-family: "Roboto", sans-serif;
  font-size: 100%;
  color: #0000ff;
  background: white !important;
  border: 0 !important; }
  #accordion_sidebar.ui-accordion .ui-state-default {
    color: #0000ff;
    background: white !important;
    border: 0 !important; }
  #accordion_sidebar.ui-accordion .ui-state-active {
    color: #0000ff;
    background: white !important;
    border: thin solid #b9b9b9 !important; }
    #accordion_sidebar.ui-accordion .ui-state-active .ui-state-highlight {
      color: #0000ff;
      border: thin solid #b9b9b9 !important;
      background: white !important; }
  #accordion_sidebar.ui-accordion .ui-accordion-header {
    padding-top: 0.1em !important;
    padding-bottom: 0.1em !important; }
  #accordion_sidebar.ui-accordion .sidebar-menu-single-item .ui-icon {
    display: none !important; }
  #accordion_sidebar.ui-accordion .sidebar-submenu {
    display: block;
    padding: 0.5em 0.5em 0.5em 1em !important;
    margin: 0;
    background: white !important; }
  #accordion_sidebar.ui-accordion .sidebar-submenu-item {
    color: #99c457 !important;
    background: white !important; }
  #accordion_sidebar.ui-accordion li .sidebar-submenu-item:hover {
    display: block;
    background: #e1e1e1 !important; }

/*
 * center column w/ content
 */
#bmrb_pagecontentcolumn {
  margin: 0;
  vertical-align: top;
   /*
*
* For the metabolomics summary pages:
  ./metabolomics/mol_summary/show_data.php:
  ./metabolomics/mol_summary/index.php:
  ./metabolomics/mol_summary/show_theory.php
  ./metabolomics/mol_summary/tabs.inc
*
*/
  /* This supports the small borders around the graphs */ }
  #bmrb_pagecontentcolumn .exp_wrapper {
    padding: 1em 0;
    border-bottom: 1px dashed #99c457;
    width: auto; }

/* This is for the synonym list on the main display */
.bold_on_hover:hover {
  font-weight: bold; }

/* Supports the navigation tabs at the top of the page */
.nav_div {
  padding-bottom: 0.2em;
  border-bottom: 1px solid #666666; }

/****** NEW **********/
/* Header */
.header-container {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  background-color: #fff; }

.header-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; }

.mobile {
  display: none; }

/* Header: Main Menu */
#main-menu {
  width: 100%;
  background-color: #221e20; }
  #main-menu nav {
    display: flex;
    list-style: none;
    flex-direction: row;
    justify-content: space-between; }
    #main-menu nav .desktop {
      display: flex;
      list-style: none;
      flex-direction: row;
      justify-content: space-between;
      width: 100%; }
    #main-menu nav .mobile {
      list-style: none;
      flex-direction: row;
      justify-content: space-between;
      width: 100%; }
  #main-menu .desktop .menu-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding: 0;
    margin: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem; }
    #main-menu .desktop .menu-link > a {
      display: flex;
      align-items: center;
      color: #fff;
      font-family: "Roboto", sans-serif;
      font-weight: 400;
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase; }
      #main-menu .desktop .menu-link > a:hover {
        cursor: pointer;
        color: #99c457; }
    #main-menu .desktop .menu-link .active > a {
      cursor: pointer;
      color: #99c457; }
    #main-menu .desktop .menu-link.active > a {
      color: #99c457; }
  #main-menu .desktop #menu-link-home {
    padding-left: 0px;
    justify-content: flex-start; }
    #main-menu .desktop #menu-link-home span {
      margin-left: 0.2em; }
    #main-menu .desktop #menu-link-home img {
      height: 30px; }

/* Main Menu - sub menu */
.sub-nav {
  --subnav_top: 0px;
  position: absolute;
  display: none;
  top: var(--subnav_top);
  margin-top: 0px;
  padding: 0.75em 1em;
  background-color: #fff;
  left: 0;
  right: 0;
  z-index: 2; }
  .sub-nav .sub-nav-inner-wrapper {
    display: flex;
    flex-direction: row; }
  .sub-nav .sub-nav-logo-wrapper {
    display: flex;
    width: 175px;
    height: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start; }
    .sub-nav .sub-nav-logo-wrapper img {
      display: inline;
      width: 60px;
      margin-left: -7px; }
    .sub-nav .sub-nav-logo-wrapper span {
      font-size: 2em;
      font-weight: 900; }
  .sub-nav ul {
    display: inline-block;
    vertical-align: top;
    margin: 0 1em 0 0;
    padding: 0; }
    .sub-nav ul li {
      display: block;
      list-style-type: none;
      margin: 0;
      padding: 3px 0px; }

.active .sub-nav {
  display: block; }

.nav-list-wrapper {
  width: max-content;
  border-right: 1px dashed;
  padding: 0px 20px 50px;
  margin-top: 5px; }
  .nav-list-wrapper:last-of-type {
    border-right: 0px; }
  .nav-list-wrapper h4 {
    margin-top: 10px;
    margin-bottom: 0px;
    font-size: 0.9em; }
    .nav-list-wrapper h4:first-child {
      margin-top: 0px; }
    .nav-list-wrapper h4 a {
      color: #000;
      cursor: pointer; }
      .nav-list-wrapper h4 a:hover {
        color: #99c457; }

.sub-nav-group > li {
  color: #444;
  flex-direction: column; }
  .sub-nav-group > li > a {
    color: #000;
    font-size: 0.8em;
    font-weight: 400;
    cursor: pointer; }
    .sub-nav-group > li > a:hover {
      color: #99c457; }

/* Header: Logo */
#bmrb-logo {
  margin: 10px 0px; }
  #bmrb-logo img {
    height: 65px;
    width: auto; }

/* Header: Search Bar */
.search-bar {
  width: 50%; }
  .search-bar input[type="text"]:not(.gsc-input):not(.combobox) {
    width: 100%;
    border-width: 1px;
    border-radius: 0px;
    border-color: black;
    background-color: #fff; }

.form-input-description {
  font-size: 12px;
  padding: 0px;
  line-height: 1.1em; }

/***************
 * ALL PAGES
 **************/
/* Core & Custom styles */
.bold {
  font-weight: 700; }

ul li::marker {
  color: #99c457; }

/* Content */
.content-container {
  width: 800px;
  padding: 0px;
  margin: auto; }

#bmrb_pagecontentcolumn {
  margin-bottom: 50px; }

/* Section full bleed */
.section-full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 25px 0px; }
  .section-full-bleed .inner {
    width: 800px;
    margin: auto; }
  .section-full-bleed p, .section-full-bleed h2, .section-full-bleed h3 {
    padding: 0px;
    margin: 0.2em 0px;
    font-weight: 400;
    letter-spacing: 0.02em; }
  .section-full-bleed a {
    font-size: 0.9em;
    font-weight: 700;
    line-height: 2.5em;
    letter-spacing: 0.02em; }

.section-bg-green {
  background-color: #99c457;
  color: #fff; }
  .section-bg-green p, .section-bg-green a {
    color: #fff; }
  .section-bg-green a:hover {
    color: #fff; }
  .section-bg-green a:visited {
    color: #fff; }

/* Section  - banner */
.section-banner {
  padding: 20px 0px; }
  .section-banner h2 {
    font-weight: 400;
    margin: 0.2em 0px; }

.section-banner-subheader {
  line-height: 1.3em;
  letter-spacing: 0.02em;
  max-width: 575px; }

/*
 * PAGES -- full width headers (new theme)
 */
/* (new theme: removing this) Automatically put some padding around all content so that
 * individual pages don't need style="padding-left: 1em" etc. */
#bmrb_pagecontentcolumn {
  /* float: left; */
  width: 100%;
  /* Lists */ }
  #bmrb_pagecontentcolumn ul {
    padding-left: 20px; }
    #bmrb_pagecontentcolumn ul li::marker {
      color: #99c457;
      font-size: 1.2em; }

/* 
 * SINGLE-COLUMN LAYOUT -- Data Library Entry (new theme) 
 */
/* green heading */
#bmrb_pagecontentcolumn > h1:first-of-type,
#bmrb_pagecontentcolumn #main_content > h1:first-of-type,
#bmrb_pagecontentcolumn > h2:first-of-type,
#bmrb_pagecontentcolumn > div:first-of-type > h2:first-of-type {
  width: 100%;
  background-color: #99c457;
  padding: 25px;
  border-radius: 10px;
  color: #fff;
  font-weight: 500; }
  #bmrb_pagecontentcolumn > h1:first-of-type a,
  #bmrb_pagecontentcolumn #main_content > h1:first-of-type a,
  #bmrb_pagecontentcolumn > h2:first-of-type a,
  #bmrb_pagecontentcolumn > div:first-of-type > h2:first-of-type a {
    color: white;
    text-decoration: underline; }

.entry_details_box {
  display: block;
  background-color: transparent;
  border-radius: 0px;
  margin-top: 1em;
  margin-right: 10px;
  border-bottom: 1px dashed #99c457;
  padding-bottom: 15px;
  padding-right: 10px; }

.entry_info_float {
  float: left;
  width: 30%;
  min-width: 30%;
  padding-left: 1em;
  text-align: center; }

/* 
 * 2-COLUMN LAYOUT (new theme) 
 */
.section-2col {
  display: flex;
  flex-direction: row;
  align-items: flex-start; }

.section-2col > [class^="col-"] {
  display: flex;
  flex-direction: column;
  align-items: flex-start; }

.section-2col > .col-left {
  width: 65%; }

.section-2col > .col-right {
  width: 35%;
  border-left: 1px dashed #99c457;
  padding-left: 15px; }

/* 2-Col Layout within 'Data Library Summary' section (ex - https://bmrb.io/data_library/summary/index.php?bmrbId=15000) */
.data-sum-2col {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding-bottom: 15px; }

.data-sum-2col > .col-left {
  font-weight: 600;
  width: 35%; }

.data-sum-2col > .col-right {
  width: 65%;
  border-left: 0px;
  padding-left: 0px; }

/* 
 * 1-COLUMN LAYOUT (new theme) 
 */
.section-1col {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start; }

/*
 * TABLES
 */
table {
  border-spacing: 0px; }

table.alternating th {
  width: max-content;
  background-color: #99c457;
  font-size: 1em;
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 5px 10px; }

table.alternating th a {
  color: white; }

table.alternating tr:nth-child(even) {
  background-color: #e1ebc8;
  font-weight: 300; }

table.alternating td {
  font-weight: 300;
  padding: 5px 10px !important;
  text-align: left; }

table.alternating td > a {
  font-weight: 700;
  color: #475A28; }

.light_rowspan {
  background: #ffffff; }

.dark_rowspan {
  background: #e1ebc8; }

/* 
 * TABS
 */
.entry_details_box ul.metachoice {
  padding-left: 0px !important; }

.active_tab,
.other_tab,
.active_tab:visited,
.active_tab:hover,
.other_tab:visited,
.other_tab:hover {
  color: #333333;
  background-color: #e1ebc8;
  text-decoration: none;
  font-weight: 100;
  border-radius: 0px;
  border: 2px solid #99c457;
  padding: 2px 10px;
  display: inline-block;
  cursor: pointer; }

.other_tab {
  background-color: #e1ebc8; }

.active_tab {
  background-color: #99c457;
  color: #fff; }

/* 
 * FORMS & INPUT
 */
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="file"],
input[type="checkbox"],
input[type="text"]:not(.gsc-input),
input[type="text"]:not(.combobox),
input:not([type]),
textarea,
select,
button {
  border-radius: 0px;
  font-family: "Roboto", sans-serif;
  font-weight: 300; }

/* radio buttons */
input[type="radio"]:after {
  width: 13px;
  height: 13px;
  border-radius: 13px;
  top: 0px;
  left: -1px;
  position: relative;
  background-color: #fff;
  content: "";
  display: inline-block;
  visibility: visible;
  border: 1px solid #221e20; }

input[type="radio"]:checked:after {
  width: 13px;
  height: 13px;
  border-radius: 13px;
  top: 0px;
  left: -1px;
  position: relative;
  background-color: #99c457;
  content: "";
  display: inline-block;
  visibility: visible;
  border: 1px solid #221e20; }

/* checkboxes */
input[type="checkbox"]:not(:checked),
input[type="checkbox"]:checked {
  position: relative;
  left: 0px;
  opacity: 1;
  border: 0px;
  border-radius: 0px;
  margin: 5px 2px;
  bottom: -1px; }

input[type="checkbox"]:first-of-type {
  margin-top: 10px; }

input[type="checkbox"]:not(:checked):before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 0px;
  top: 0px;
  left: 0px;
  position: relative;
  background-color: #fff;
  border: 1px solid #221e20;
  display: inline-block;
  visibility: visible;
  opacity: 1; }

input[type="checkbox"]:checked:before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 0px;
  top: 0px;
  left: 0px;
  position: relative;
  background-color: #99c457;
  border: 1px solid #221e20;
  display: inline-block;
  visibility: visible; }

/* submit button */
input[type="submit"] {
  background-color: #99c457;
  border: 1px solid #221e20;
  font-weight: 300;
  letter-spacing: 0.03em; }

/* form layout */
.entry_details_box .form-container {
  display: flex;
  flex-direction: column; }

.entry_details_box .form-container > div {
  margin: 7px 0px; }

.entry_details_box .form-container > div.form-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between; }

.entry_details_box .form-container .form-row > input,
.entry_details_box .form-container .form-row > select {
  margin: 0px;
  min-width: 60%;
  padding: 5px; }

.entry_details_box .form-container .form-row > select {
  width: 312px; }

.entry_details_box .form-container .form-row > span,
.entry_details_box .form-container .form-row > p,
.entry_details_box .form-container > div,
.entry_details_box .form-container p {
  font-weight: 300;
  font-size: 1em; }

/*
 * Custom controls
 */
/* used in 2-col layout, ex - Metabolomics search */
a.hideshowbutton {
  color: #221e20;
  font-weight: 700;
  padding: 15px 0px;
  left: -16px;
  position: relative; }

.hideshowbutton:before {
  content: "\A";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 6px;
  border-color: transparent transparent transparent #221e20;
  position: relative;
  left: 0px;
  margin-right: 3px;
  bottom: -0.5px;
  display: inline-block; }

.hs-visible::before {
  border-color: #221e20 transparent transparent transparent;
  bottom: -5px;
  left: -3px; }

/*
 * PLOTLY
 */
.js-plotly-plot .plotly .main-svg .draglayer {
  fill: #e1ebc8; }

/* 
 * HOME GRID 
 */
#section-home-grid {
  display: block;
  padding: 50px 0px; }

.home-grid {
  border: 1px solid #221e20; }

.home-grid:not(.active) {
  display: none; }

#home-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  margin-top: 10px;
  border: 1px solid #221e20; }

.home-grid-row {
  display: flex;
  flex-direction: row;
  width: 100%; }

.home-grid-col,
[class^="home-grid-col"] {
  display: flex;
  flex-direction: column;
  width: 25%; }

.home-grid-tile {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: 100%;
  border: 1px solid #221e20;
  height: 100%;
  border-bottom: 0px;
  -webkit-transition: all 750ms ease;
  -moz-transition: all 750ms ease;
  -o-transition: all 750ms ease;
  transition: all 750ms ease; }

.home-grid-tile:hover {
  cursor: pointer; }

.home-grid-tile:before {
  content: "";
  width: 0;
  padding-bottom: 100%; }

.home-grid-tile-icon-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }

.home-grid-tile-img {
  width: 65px;
  height: 65px;
  /* background-color: #99c457; */
  margin-top: 20px;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 750ms ease;
  -moz-transition: all 750ms ease;
  -o-transition: all 750ms ease;
  transition: all 750ms ease; }

.home-grid-tile-img img {
  position: relative;
  top: -65px;
  width: 65px;
  height: 65px;
  opacity: 1;
  -webkit-transition: all 750ms ease;
  -moz-transition: all 750ms ease;
  -o-transition: all 750ms ease;
  transition: all 750ms ease; }

.home-grid-tile-label {
  margin-top: 30px;
  text-transform: uppercase;
  font-size: 0.8em;
  letter-spacing: 0.06em;
  width: 135px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; }

.home-grid-tile.selected .home-grid-tile-label,
.home-grid-tile:hover .home-grid-tile-label {
  color: #fff; }

.home-grid-tile.selected .home-grid-tile-img img.inactive {
  /* display: none; */
  opacity: 0; }

div.home-grid-tile:not(.selected) .home-grid-tile-img img:not(.inactive),
.home-grid-tile-img img.active {
  /* display: none; */
  top: 5px;
  opacity: 1; }

div.home-grid-tile:hover .home-grid-tile-img img.inactive {
  opacity: 0; }

.home-grid-col-large {
  width: 50%; }

.home-grid-row-top .home-grid-tile {
  border-top: 0px;
  border-bottom: 1px; }

.home-grid-row-bottom .home-grid-tile {
  border-bottom: 1px; }

.home-grid-col-left .home-grid-tile {
  border-left: 0px; }

.home-grid-col-middle .home-grid-tile {
  border-left: 0px; }

.home-grid-col-right .home-grid-tile {
  border-left: 0px;
  border-right: 0px; }

#home-grid-feature {
  width: 100%;
  height: 100%;
  position: relative; }
  #home-grid-feature img {
    width: 55%;
    height: 55%; }

#home-grid-feature .home-grid-feature-title {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  top: 10px;
  left: 10px; }

#home-grid-feature .home-grid-feature-title {
  color: #fff; }

#home-grid-feature .home-grid-feature-title img {
  width: 40px;
  height: auto;
  margin-right: 7px; }

#home-grid-feature .home-grid-feature-title .feature-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center; }

#home-grid-feature .feature-title-wrapper span {
  font-size: 16px; }

#home-grid-feature .feature-title-wrapper span.subtitle {
  font-size: 22px;
  font-weight: 600; }

.home-grid-feature-img,
.home-grid-feature-links {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }

.home-grid-feature-img .tile_link_wrapper img {
  width: 55%;
  height: 55%; }

.home-grid-feature-img .tile_link_wrapper img.feature-img-large {
  width: 100%;
  height: 100%; }

.home-grid-feature-links {
  align-items: flex-start; }

.home-grid-feature-links li {
  list-style: none;
  margin: 0px 50px; }

.home-grid-feature-links li a {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
  opacity: 0.8;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease; }

.home-grid-feature-links li a:hover {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
  opacity: 1;
  text-decoration: underline; }

/* Home Grid - menu */
#home-grid-menu {
  width: 100%;
  height: 90px;
  display: none; }

#home-grid-menu ul {
  display: flex;
  list-style: none;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 0px; }

#home-grid-menu li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 90px; }

#home-grid-menu li img {
  align-self: flex-start;
  height: 25px; }

#home-grid-menu li:not(.selected) img {
  display: none; }

#home-grid-menu li#bmrb img {
  display: flex;
  align-self: flex-start;
  height: 50px; }

#home-grid-menu li a {
  display: flex;
  align-items: center;
  color: #221e20;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  height: 30px; }

#home-grid-menu li#home-grid-link-home img {
  height: 30px; }

/* Home Grid - section colors */
#home-grid-menu li:hover a,
#home-grid-menu li.selected a,
.home-grid-bmrb a {
  color: #99c457; }

.home-grid-bmrb .home-grid-tile.selected,
.home-grid-bmrb .home-grid-tile:hover {
  background-color: #99c457; }

.home-grid-bmrb .home-grid-tile.unlocked:hover {
  background-color: #bed898; }

#home-grid-menu li#proteins:hover a,
#home-grid-menu li#proteins.selected a,
.home-grid-proteins a {
  cursor: pointer;
  color: #3f7aad; }

.home-grid-proteins .home-grid-tile.selected,
.home-grid-proteins .home-grid-tile:hover {
  background-color: #3f7aad; }

#home-grid-menu li#nucleic:hover a,
#home-grid-menu li#nucleic.selected a,
.home-grid-nucleic a {
  cursor: pointer;
  color: #97247d; }

.home-grid-nucleic .home-grid-tile.selected,
.home-grid-nucleic .home-grid-tile:hover {
  background-color: #97247d; }

#home-grid-menu li#carbohydrates:hover a,
#home-grid-menu li#carbohydrates.selected a,
.home-grid-carbohydrates a {
  cursor: pointer;
  color: #0ca1d8; }

.home-grid-carbohydrates .home-grid-tile.selected,
.home-grid-carbohydrates .home-grid-tile:hover {
  background-color: #0ca1d8; }

#home-grid-menu li#organics:hover a,
#home-grid-menu li#organics.selected a,
.home-grid-organics a {
  cursor: pointer;
  color: #f6871f; }

.home-grid-organics .home-grid-tile.selected,
.home-grid-organics .home-grid-tile:hover {
  background-color: #f6871f; }

/* Footer */
footer {
  padding: 0px;
  margin-bottom: -10px; }

#footer-wrapper {
  display: flex;
  width: 100%;
  height: auto;
  padding: 50px 0px;
  background-color: #221e20;
  color: #fff; }

#footer-wrapper p,
#footer-wrapper span {
  color: #fff;
  letter-spacing: 0.02em;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.3em; }

.show_data_preface_info {
  float: left;
  padding-left: 5em;
  display: inline-block;
  width: calc(100% - 350px); }

.tdd_row {
  padding-bottom: 0.75em; }

.sub-nav ul li:before {
  content: '-';
  margin-right: 0.2em; }

.desktop {
  display: block; }

.mobile {
  display: none; }

.tablet {
  display: none; }

@media screen and (max-width: 899px) {
  .desktop {
    display: none !important; }

  .mobile {
    display: flex !important;
    padding: 1rem;
    align-items: center;
    width: 100vw !important; }

  .tdd_row {
    margin-top: 2rem;
    padding: 0;
    margin-bottom: 2rem; }

  .exp_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; }

  .exp_wrapper > p {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; }

  .exp_wrapper > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }

  .entry_detail {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0.5rem; }

  .entry_detail:first-of-type {
    margin-top: 0; }

  .entry_detail > p {
    margin: 0;
    margin-right: 0.5rem; }

  .tdd_row .noChange,
  .entry_detail a {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    border: none;
    background-color: #99c457;
    color: white;
    padding: 12px 20px;
    border-radius: 100px;
    margin-left: 0.5rem; }

  .entry_detail a {
    margin: 0; }

  .show_data_header {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 0; }

  .nav_div {
    padding: 1rem;
    padding-bottom: 0.5rem; }

  .show_data_preface_info {
    width: 100%;
    padding: 1rem; }

  #wrapper {
    overflow-x: hidden; }

  .main_content > h1 {
    width: 100vw; }

  .section-full-bleed .inner {
    width: 100%; }

  #bmrb_pagecontentcolumn > h1:first-of-type,
  #bmrb_pagecontentcolumn #main_content > h1:first-of-type,
  #bmrb_pagecontentcolumn > h2:first-of-type,
  #bmrb_pagecontentcolumn > div:first-of-type > h2:first-of-type {
    width: 100vw;
    margin: 0;
    padding: 0;
    padding-left: 0 !important;
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }

  .entry_details_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem; }

  .entry_info_float {
    float: none !important;
    width: 100%;
    padding-left: 0;
    text-align: center; }

  .alternating {
    width: 100%; }

  .metachoice {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 75%;
    width: 100%; }

  .metachoice li {
    font-weight: 500;
    border: 2px solid transparent;
    background-color: #99c457;
    color: white;
    padding: 5px 20px;
    border-radius: 100px;
    transition: 0.2s ease; }

  .metachoice li:hover {
    background: white;
    border-color: #99c457;
    color: #99c457;
    padding: 5px 20px;
    border-radius: 100px; }

  .entry_info_float > p {
    line-height: 2rem;
    text-align: left;
    width: 100%;
    max-width: 75%;
    margin: 0 auto;
    font-weight: 500; }

  .entry_info_float > p span {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    border: none;
    background-color: #99c457;
    color: white;
    padding: 5px 20px;
    border-radius: 100px; }

  .entry_info_float #molecule_viewer {
    display: flex;
    flex-direction: column;
    align-items: center; }

  .section-2col {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 1rem;
    width: 75%;
    margin: 0 auto; }

  .section-2col > .col-left,
  .section-2col > .col-right {
    width: 100%; }

  .section-2col > .col-right p {
    margin-top: 0;
    margin-bottom: 0; }

  #bmrb_pagecontentcolumn {
    width: 100vw !important; }

  .content-container {
    margin: 0;
    width: 100%; }

  .header-row {
    max-width: 100vw;
    width: 100%; }

  .search-bar {
    max-width: 100vw !important;
    width: 100%;
    padding: 1rem; }

  .section-full-bleed {
    position: initial;
    width: 100vw;
    padding: 1rem;
    margin: 0; }

  .section-banner {
    max-width: 100vw;
    padding: 1rem; }

  .top_nav {
    position: sticky;
    top: 0;
    left: 0; }

  .mobile-sub-nav {
    height: 100%;
    top: 0 !important;
    right: 0;
    width: 100%;
    z-index: 100001;
    transition: 0.5s ease;
    position: absolute;
    max-width: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-top: 0px;
    padding: 0;
    background-color: white; }

  .mobile-sub-nav > .sub-nav-top-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #6e8d3e; }

  .mobile-sub-nav > .sub-nav-top-bar > .selected-category-name {
    color: white;
    font-size: 24pt;
    margin: 0; }

  .mobile-sub-nav > .sub-nav-top-bar > svg {
    max-width: 1.5rem;
    width: 100%;
    fill: white; }

  .mobile-sub-nav > .content-container {
    justify-content: space-between;
    height: 100%; }

  .mobile-sub-nav > .content-container > .sub-nav-logo-wrapper {
    display: none; }

  .nav-list-wrapper {
    padding-bottom: 0;
    height: 100%;
    width: 100%;
    margin-top: 0;
    border: none;
    padding: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    column-count: 2;
    column-fill: balance; }

  .nav-list-wrapper h4 a,
  .sub-nav-group ul li a {
    font-size: 16pt;
    color: black; }

  .nav-list-wrapper h4 {
    margin-top: 10px;
    margin-bottom: 10px; }

  .nav-list-wrapper h4 {
    margin-top: 0; }

  .link_group {
    display: inline-block;
    width: 100%; }

  .link_group h4 {
    margin-bottom: 0; }

  .mobile-sub-nav ul {
    margin: 0;
    padding: 0;
    margin-left: 0.5rem;
    margin-bottom: 10px;
    list-style: none; }

  .mobile-sub-nav ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start; }

  .mobile-sub-nav ul li a {
    color: #99c457; }

  .nav-list-wrapper h4 a:hover,
  .mobile-sub-nav ul li a:hover {
    color: #627e39; }

  .mobile-sub-nav ul li a {
    color: #99c457; }

  .mobile-sub-nav ul li:before {
    content: '-';
    margin-right: 0.25rem;
    color: #99c457; }

  .mobile_sidebar {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 100000;
    background: #99c457;
    transition: 0.5s ease;
    padding: 0; }

  .mobile_sidebar > .top_row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem; }

  .mobile_sidebar > .top_row > svg {
    width: 1.5rem;
    fill: #fff; }

  .mobile_sidebar > .content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
    padding: 0.75rem; }

  .mobile_sidebar > .content .menu-link-item {
    margin-top: 1rem;
    color: #fff;
    font-size: 24pt;
    margin-bottom: 1rem; }

  .mobile > #menu-link-home a {
    display: flex !important;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase; }

  .mobile > #menu-link-home a img {
    max-width: 1.5rem; }

  .mobile > .hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 1.5rem;
    margin-right: 0.3rem;
    height: 1.25rem; }

  .mobile > .hamburger div {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 10px; }

  #mobile-section-home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100vw;
    padding: 0; }

  #mobile-section-home .selected_criterea_results {
    width: 100%;
    padding: 1rem;
    background: #99c457;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 1.5rem;
    position: relative; }

  #mobile-section-home .selected_criterea_results:before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
    content: '';
    width: 0;
    height: 0;
    border-left: 0.5rem solid transparent;
    border-right: 0.5rem solid transparent;
    border-bottom: 0.5rem solid #99c457; }

  #mobile-section-home .selected_criterea_results .selected_criterea_title {
    color: white;
    font-size: 16pt; }

  #mobile-section-home .selected_criterea_results .selected_criterea_title_wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 2rem; }

  #mobile-section-home .selected_criterea_results .selected_criterea_title_wrapper .selected_criterea_title {
    margin: 0; }

  #mobile-section-home .selected_criterea_results .selected_criterea_title_wrapper img {
    max-width: 2rem;
    width: 100%;
    margin-right: 1rem; }

  #mobile-section-home .selected_criterea_results .results {
    display: grid;
    grid-template-columns: repeat(2, calc(50vw - 2rem));
    grid-auto-rows: calc(50vw - 2rem);
    gap: 1rem; }
    #mobile-section-home .selected_criterea_results .results .tile {
      width: 100%;
      height: 100%;
      background: white;
      border-radius: 5px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; }
      #mobile-section-home .selected_criterea_results .results .tile .group {
        display: none; }
      #mobile-section-home .selected_criterea_results .results .tile .icon_content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; }
        #mobile-section-home .selected_criterea_results .results .tile .icon_content .text {
          text-transform: uppercase;
          font-size: 0.8em;
          text-decoration: none;
          letter-spacing: 0.06em;
          margin-top: 2rem;
          font-weight: 500;
          color: #99c457;
          text-align: center;
          width: 100%; }
        #mobile-section-home .selected_criterea_results .results .tile .icon_content img {
          max-height: 3rem;
          max-width: 3rem;
          width: 100%;
          margin-top: 2rem;
          height: 100%; }
      #mobile-section-home .selected_criterea_results .results .tile.active_tile {
        position: relative; }
        #mobile-section-home .selected_criterea_results .results .tile.active_tile .icon_content {
          position: absolute;
          top: 0.5rem;
          left: 0.5rem;
          flex-direction: row; }
          #mobile-section-home .selected_criterea_results .results .tile.active_tile .icon_content .text, #mobile-section-home .selected_criterea_results .results .tile.active_tile .icon_content img {
            margin: 0; }
          #mobile-section-home .selected_criterea_results .results .tile.active_tile .icon_content img {
            width: 1rem;
            margin-right: 0.5rem; }
        #mobile-section-home .selected_criterea_results .results .tile.active_tile .group {
          display: flex;
          margin-top: 2rem;
          margin-left: 1rem;
          align-self: flex-start;
          width: max-content;
          max-width: calc(100% - 1rem); }
          #mobile-section-home .selected_criterea_results .results .tile.active_tile .group .tile {
            width: 5rem;
            height: 5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: #99c457; }
            #mobile-section-home .selected_criterea_results .results .tile.active_tile .group .tile .text {
              color: white;
              font-weight: 500;
              text-align: center; }
    #mobile-section-home .selected_criterea_results .results .group {
      display: none;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      width: 100%;
      flex-wrap: wrap;
      gap: 1rem; }
      #mobile-section-home .selected_criterea_results .results .group .tile .text {
        margin: 0; }

  #footer-wrapper {
    max-width: 100vw;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem; }

  #footer-wrapper div {
    float: none; } }
@media screen and (min-width: 450px) {
  #mobile-section-home .selected_criterea_results .results {
    grid-template-columns: repeat(3, calc(33vw - 2rem));
    grid-auto-rows: calc(33vw - 2rem); }
    #mobile-section-home .selected_criterea_results .results .group {
      grid-template-columns: repeat(3, calc(33vw - 2rem));
      grid-auto-rows: calc(33vw - 2rem); } }
@media screen and (min-width: 650px) {
  #mobile-section-home .selected_criterea_results .results {
    grid-template-columns: repeat(4, calc(25vw - 2rem));
    grid-auto-rows: calc(25vw - 2rem); }
    #mobile-section-home .selected_criterea_results .results .group {
      grid-template-columns: repeat(4, calc(25vw - 2rem));
      grid-auto-rows: calc(25vw - 2rem); } }
@media screen and (min-width: 800px) {
  #mobile-section-home .selected_criterea_results .results {
    grid-template-columns: repeat(5, calc(20vw - 2rem));
    grid-auto-rows: calc(20vw - 2rem); }
    #mobile-section-home .selected_criterea_results .results .group {
      grid-template-columns: repeat(5, calc(20vw - 2rem));
      grid-auto-rows: calc(20vw - 2rem); } }

/*# sourceMappingURL=bmrb.css.map */
