:root {
    --green: #3ed3a3;
    --orange:#dcc94c; 
    --red: #dc7699; 
    --default-font-size : 12px;
}
.prac-note-sample-icons .pedigree-icons{
  padding: 2px;
}

/* Ensure container has relative positioning for absolute children */
.prac-note-sample-icons {
  position: relative !important;
}

/* Hide red dot indicator by default */
.prac-note-sample-reddot-indicator {
  display: none;
}

/* Force show when has show-red-dot class */
.prac-note-sample-reddot-indicator.show-red-dot {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Modal note indicator - using same style as category dots */
.modal-note-indicator {
  display: none;
  z-index: 10;
  font-size: 6px !important;
  position: absolute !important;
  top: -2px !important;
  right: -2px !important;
  left: auto !important;
  transform:translate(-2px,4px);
}

.pedigree-dot{
  transform:translate(-2px,4px);
}

.modal-note-indicator.active {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.fa-tree-christmas {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px; /* Adjust the size as needed */
  color: orangered; /* Adjust the color as needed */
  z-index: 9999;
}

.cadre {
  position: relative;
}
  
#sampleID_tested {
  border: 1px solid gray;
  margin-right: 12px;
  border-radius: 5px;
  padding: 5px;
}

.modalHide {
 display: none !important;
}


#AImodal {
  z-index: 9999;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* Black background with opacity */
  display: flex;
  align-items: center;
  justify-content: center;
}

.AImodal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 4px;
  width: 250px;
}


/* Scoped to AI switch, without affecting shared styles */
#AI_content_switch_container .tw-toggle.AI-specific {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 24px;
}

#AI_content_switch_container .tw-toggle.AI-specific input {
  opacity: 0;
  width: 0;
  height: 0;
}

#AI_content_switch_container .toggle.AI-specific {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

#AI_content_switch_container .toggle.AI-specific:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

#AI_content_switch_container input:checked + .toggle.AI-specific {
  background-color: #2196F3;
}

#AI_content_switch_container input:checked + .toggle.AI-specific:before {
  transform: translateX(26px);
}




.flashing {
  opacity: 0.5;
  transition: opacity 0.5s ease-in-out;
}


#wheel_context{
    width: 150px; 
    position: absolute;
    z-index: 1000;
    padding:15px;
}


#levelSlider {
    -webkit-appearance: none;
    width: 100%;
    height: 1.5em;
}

#levelSlider::-webkit-slider-runnable-track {
     width: 100%;
    height: 1.5em; /* Increased to match the thumb height */
    background: lightgrey;
        cursor: pointer;
    border-radius: 1em; /* Rounded corners */
}
#levelSlider::-webkit-slider-thumb {
    height: 1.5em;
    width: 1.5em;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    -webkit-appearance: none;
     cursor: pointer;
    margin-top: -0em; /* Aligned to the track */
}

.d-flex {
    display: flex;
    flex-direction: row;
    width: 80%;
}

.d-flex > span {
    align-self: center;
    padding: 3px;

}

.right_tabs__container {
  overflow-x: auto;
  overflow-y: hidden;
}

.nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  padding-bottom: 5px; /* This will ensure the bottom border is visible */
}

.nav-tabs > li {
  display: inline-block;
  float: none;
}


.fa-memo {
  font-size: 1.5em;
}

.PDFmodal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.PDFmodal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
  text-align: center;
}


#generatePdfButton {
  position: absolute;
  font-size: 1.2em;
  top: -20%;
  right: -5%;
  color: grey;
  padding-left: 2px !important;
  padding-right: 2px !important;
  padding-top: 2px !important;
  padding-bottom: 2px !important;
  transition: background-color 0.3s, color 0.3s; /* Add a transition for smooth effect */
}

#generatePdfButton:hover {
  color: blue; /* Change the text color on hover */
}

/* legend */
.legend { list-style: none; color: #6f6f6f; margin-top: 5px; position: relative; right: -10px; height:0px;}
.legend li { float: left; margin-right: 2px; margin-left: 2px; border-bottom: 0px; font-size:11px; }
.legend span { float: left; width: 12px; height: 12px; margin: 2px; }
.legend .greendot { background-color: var(--green); border-radius: 10px;}
.legend .orangedot { background-color: var(--orange); border-radius: 10px;}
.legend .reddot { background-color: var(--red); border-radius: 10px;}
.legend .bluedot { background-color:  rgba(95, 146, 240, 1); border-radius: 10px;}

.green { background-color: var(--green);}
.orange { background-color: var(--orange);}
.red { background-color: var(--red);}
.gray85 {background-color: #d9d9d9;}

.trait_head{
border-radius: 10px;
background-color: aliceblue;
border: 1px aqua;
padding: 10px;
}

.trait_head_after{
padding: 8px;
}

.treatment{
border-radius: 10px;
background-color: linen;
border: 1px linen;
padding: 10px;
}

.descriptor{
border-radius: 5px;
background-color: #f5f5f5;
padding: 3px;
border: 1px solid #ccc;
display: inline-block;
margin: 3px;
}

/*switch
.switch {
 margin: 30% auto; 
 width: 80px;
}

.toggle {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

.toggle + label {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  user-select: none;
  padding: 2px;
  width: 80px;
  height: 40px;
  background-color: #dddddd;
  border-radius: 40px;
}

.toggle + label:before,
.toggle + label:after {
  display: block;
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  content: "";
}
.toggle + label:before {
  right: 1px;
  background-color: #f1f1f1;
  border-radius: 40px;
  transition: background 0.4s;
}
.toggle + label:after {
  width: 40px;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: margin 0.4s;
}
.toggle:checked + label:before {
  background-color: #8ce196;
}
.toggle:checked + label:after {
  margin-left: 42px;
}

/*end switch*/

#sex_determined:not(:empty){
padding: 2px 4px;
border-radius: 20%;
background: gray;
color: yellow;
font-size: calc(var(--default-font-size) - 2px);
margin-left: 5px;
font-weight: 500;
}

#abo_determined:not(:empty){
padding: 2px 3px;
border-radius: 20%;
background: gray;
color: rgb(255, 166, 0);
font-size: calc(var(--default-font-size) - 2px);
margin-left: 5px;
margin-right: 5px;
font-weight: 500;
}



/* @media (max-width: 500px) {
    .navbar-default {
      font-size: calc(var(--default-font-size) + 2px);
    }
} */

.align_c{
  text-align: center !important;
}



.login_title{
  font-family: sans-serif;
  padding:20px;
  font-size: calc(var(--default-font-size) + 4px);
  color: #446fa2;
}


.icons_i{
  padding: 10px;
float: left;
font-size: calc(var(--default-font-size) + 4px);
}

.interventions_i{
  float:left;
}

.intervention_td{
  width: 120px;
padding: 10px;
vertical-align: top;
}

.hide {
    display: none;
}



.checkmark{
font-size: calc(var(--default-font-size) + 2px);
color: green;
position: relative;
bottom: -12px;
}

.sample_width{
display: inline-block;

}

a.sample_width:hover {
  background-color: #e3eaf0;
  color:black !important;
  text-decoration: none !important;
}

.trait_description {
  white-space: pre-wrap;
  padding: 10px;
  font-size: 11px;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */


#trait_description {
  font-size: calc(var(--default-font-size) - 2px);
  padding: 8px;
}

#load_risk{
  font-size : calc(var(--default-font-size) - 2px);
font-weight: 400;
padding: 7px;
margin: 3px;
border-radius: 4px;

display: inline-block;
background-color: #f1efef;
}

.selected_intervention_row{
  background-color: rgba(11, 245, 45, 0.15);
}

#right_tabs{
    font-size : calc(var(--default-font-size) - 2px);
    font-weight: 500;
}

#data_table_int{
padding: 5px;
max-width: 750px;
font-size:  calc(var(--default-font-size) - 1px);
border-collapse: collapse;

}


#data_table_int th{
padding: 3px !important;
}

#data_table_int  td{
padding: 3px;
}

#data_table_int  tr{
border-bottom: 0.5px solid rgba(0, 0, 0, 0.16);
}

#data_table_int  tr:last-child {
  border: 0;
}



.definition{
font-style: italic;
color: rgb(61, 61, 168);
}

.row_benefits__container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: flex-start;
}

.row_benefits{
font-size : var(--default-font-size);
font-weight: 400;
padding: 4px;
margin: 2px;
border-radius: 4px;
border: 1px solid #cccccc;
display: inline-block;
background-color: #fbf9f9;
}

.row_benefits:hover { 
  background-color: rgb(237, 240, 251);
}

.intervention_td:hover { 
text-decoration: underline;
}

#interventions{
position: relative;
/* left: 250px; */
/* width: 800px;  */
/* height: 700px; */
}

#interventions_copy{
  padding: 20px;
}

#interventions_chart{
  /* height:360px; */
}

#interventions_table{
overflow: auto;
/* height: 350px; */
padding-top: 10px;
padding-bottom: 20px;
}

#sampleIDform{
  margin-top: 5px;
}

.drop_down_menu_mod{
    margin-top: 5px;
padding: 3px !important;
font-size:  calc(var(--default-font-size) - 1px) !important;
overflow: auto;
max-height: 250px;
min-width: 200px !important;
width: max-content;
}

.drop_button{
/* margin-top: -2px !important; */
  
}

/* sampleID dropdown list */
.SampleIDInput, .snpInput, .snpNoInfoInput, .geneInput,
.traitInput, .panelInput {
    position: fixed;
    max-width: 190px;
    margin: 6px 0;
}
#SampleIDDropdown, #snpDropdown, #snpNoInfoDropdown, #geneDropdown,
#traitDropdown, #panelDropdown {
    margin-top: calc(var(--default-font-size) * 3);
    width: max-content; 
}

.btn-xs {
    font-size: calc(var(--default-font-size) - 2px) !important;
    margin-bottom: 0 !important;
}
nav .btn {
    font-size: var(--default-font-size) !important;
}
/* other dropdown list */
.navbar-text__dropdown {
    color: #c1b9b9 !important;
    margin: 13px 0 0 4px !important;
}
.btn-outline {
    background-color: unset;
    /* border-color: #95a5a6; */
}
.btn-outline:focus,
.btn-outline.focus {
color: white;
background-color: unset;
/* border-color: #95a5a6; */
}
.btn-outline:hover {
color: black;
background-color: rgb(202, 202, 202);
border-color: #95a5a6;
}
.btn-outline:active,
.btn-outline.active,
.open > .dropdown-toggle.btn-outline {
color: black;
background-color: rgb(202, 202, 202);
border-color: #95a5a6;
}
.btn-outline:active:hover,
.btn-outline.active:hover,
.open > .dropdown-toggle.btn-outline:hover,
.btn-outline:active:focus,
.btn-outline.active:focus,
.open > .dropdown-toggle.btn-outline:focus,
.btn-outline:active.focus,
.btn-outline.active.focus,
.open > .dropdown-toggle.btn-outline.focus {
color: black;
background-color: rgb(202, 202, 202);
border-color: #95a5a6;
}
.btn-outline:active,
.btn-outline.active,
.open > .dropdown-toggle.btn-outline {
background-image: none;
}
.btn-outline.disabled:hover,
.btn-outline[disabled]:hover,
fieldset[disabled] .btn-outline:hover,
.btn-outline.disabled:focus,
.btn-outline[disabled]:focus,
fieldset[disabled] .btn-outline:focus,
.btn-outline.disabled.focus,
.btn-outline[disabled].focus,
fieldset[disabled] .btn-outline.focus {
background-color: unset;
border-color: #95a5a6;
}
/* .btn-info .badge {
color: #5bc0de;
background-color: #fff;
} */

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  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.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: calc(var(--default-font-size) + 16px);
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


.the_logo {
color: #81a8ba !important;
font-size: calc(var(--default-font-size) + 4px) !important;
}

.logo--active {
    color: #5bc0de !important;
}
.logo--inactive {
    color: #c1b9b9 !important;
}

#test-switch i {
    cursor: pointer;
}

.fal {
font-weight: 400 !important;
}


#legend_front {
z-index: 1000;
position: relative;
display: flex;
align-items: center;
justify-content: center;
font-size : calc(var(--default-font-size) - 2px);
top: -8px;
/*margin-left: -100px;*/
}

.legend_front{
  /* width: 800px; */
display: flex;
align-items: center;
justify-content: center;
height: 0px;
}

#list_mods_pos{
margin-top: -22px;
z-index: 1000;
position: relative;
display: flex;
/* width: 540px; */
align-items: center;
justify-content: center;
/*border:  1px dotted rgba(143, 143, 143, 0.69);
*/border-radius: 35px;
padding-top: 20px;
padding-bottom: 2px;
}

.mod_icon2:hover {
  color: rgba(47, 46, 49, 0.85);
}

.mod_selected_class {
  color: rgba(47, 46, 49, 0.85) !important;
}



.mod_badge_selected[count]:after{

background:  rgba(95, 146, 240, 1) !important;

}


.mod_badge[count]:after{
position: relative;
right: 10px;
top: -13px;
content: attr(count);
font-size : calc(var(--default-font-size) - 2px);
padding: 1px 4.5px !important;
border-radius: 99px;
color: white;
background:  rgba(145, 153, 168, 1);
/* text-align: center; */
/* min-width: 10px; */
font-size : calc(var(--default-font-size) - 2px);
font-weight: 400;
text-align: center;
white-space: nowrap;
}

.modifier{
border: 1px solid rgba(88, 123, 204, 0.66);
border-radius: 4px;
padding: 3px;
padding-bottom: 4px;
background-color: rgba(95, 146, 240, 1);
color: white;
font-weight: 100;
font-size : calc(var(--default-font-size) - 2px);
}


.list_mods_title{
  font-size : calc(var(--default-font-size) - 2px);
display: inline-block;
vertical-align: middle;
padding-bottom: 10px;
}

.mod_icon2{
font-size: calc(var(--default-font-size) + 6px) !important;
padding: 1px;
color: rgba(82, 80, 84, 0.57);;
margin-left: 8px;
margin-right: 6px;
}

.mod_icon2:first-of-type {
  margin-left: 10px;
}

.mod_icon2:last-of-type {
  margin-left: 8px;
}

.mod_icon{
font-size: calc(var(--default-font-size) + 2px) !important;
display: inline-block !important;
color: rgba(39, 43, 107, 0.5);
}

#the_mods_pos{
  /* width: 800px; */
display: flex;
align-items: center;
justify-content: center;
}

#mods_spacer{
  /* width: 250px; */
}

.the_version {color: rgba(7, 10, 16, 0.5);}

.the_version2 {color:  #c1b9b9 !important;}

@import url("//netdna.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css");

.trait_report {
  padding-bottom: 5px;
  line-height: 30px
}

.trait_alert_mod{
  font-size : calc(var(--default-font-size) - 2px);
font-weight: 400;
padding: 5px;
margin: 5px;
border-radius: 4px;
/* border: 1px solid #cccccc; */
/* display: table; */
color: white;
/* background-color: #F0EFEF; */
/* border: black; */
font-family: helvetica, sans-serif; !important;
}

.trait_alert {
  display: block;
margin-top: 10px;
margin-bottom: 5px;
font-weight: 600;
}

.analyte_alert  {
    display: block;
    margin-top: 5px;
    margin-bottom: 5px;
    font-weight: 600;
}

.trait_alert_level, .analyte_alert_level{
  font-size : calc(var(--default-font-size) - 2px); 
    display: block;
margin-top: 5px;
margin-bottom: 5px;
font-weight: 600;
}

.trait_alert_high_traits{
font-size : calc(var(--default-font-size) - 2px); 
font-weight: 400;
padding: 5px;
margin: 5px;
border-radius: 4px;
color: white;
font-family: helvetica;
}

.trait_alert_low_traits{
font-size : calc(var(--default-font-size) - 2px); 
font-weight: 400;
padding: 5px;
margin: 5px;
border-radius: 4px;
color: white;
font-family: helvetica;
}


.blink_me {
  animation: blinker 1s linear infinite;
}

#taqman{
    font-size : calc(var(--default-font-size) - 2px);
font-weight: 300;
}

#records{
    margin-left: 5px;
    font-weight: 600;
        font-size : calc(var(--default-font-size) - 2px);

}

.search{
padding:3px;
border-radius: 5px;
font-size : calc(var(--default-font-size) - 2px);
}

#chrom_map{
    overflow-x: auto;
    width: 100%;
}
.function, .location, .process {
    cursor: pointer;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.nav-tabs>li {
border-bottom: none;
margin-bottom: -7px !important;
}

#svg3481{
    height: 300px;
    width: 170px;
}

#svg3482{
    height: 300px;
    width: 170px;
}


.checkboxer2{
    padding-left: 25px;
    color: rgb(67, 70, 72);
}

#cytoswitch{

position: absolute;
bottom: 0;
padding-bottom: 3px;
}

pre {
    font-family: helvetica !important;
    word-break: normal !important;
    white-space: pre-wrap;
    background-color: #ffffff !important;
    font-size : 12px !important;
}

input,
label {
    margin: .6rem 0;
}

#chem_search_id {
background-image: url('icons8-search-16.png');
background-repeat: no-repeat;
float: right;
/* margin-left: 10px;
margin-right: 10px; */
margin: 0;
  border: 1px solid #ddd;
  padding-left: 20px;

}




#cy3{
    border-radius: 2%;
    padding: 10px;
    flex-grow: 1;
    width: 340px;
    height: 240px;
    position: relative;
    top: 0px;
    left: 0px;
    background-color: grey;
}

#cy2{
/*    border-radius: 2%;*/
/*    margin: 10px;
    padding: 10px;*/
/*    flex-grow: 1;*/
    width: 600px;
    height: 390px;
}

#cy{

    padding: 10px;
    flex-grow: 1;
width: 340px;
height: 240px;
    position: relative;
    top: 0px;
    left: 0px;
    background-color: rgb(229, 229, 229);

}

#cyto_column{
    width: min-content;
    height: 550px;
/*    flex-grow: 1;
   border: thin solid rgba(128, 128, 128, 0.35);*/ 
    margin-left: 5px;
    position: relative;
    z-index: 99;
}

#cyto_desc{
    margin: 10px;
    padding: 10px;
}

#male_organs{
    float:right
}

#female_organs{
    float:right
}

#protein_fold_text{
position: absolute;
font-family: Helvetica;
/* color: rgb(179, 185, 190); */
z-index: 5;
/* font-size : calc(var(--default-font-size) - 2px); */
/* padding: 5px; */
text-align: left;
padding: 6px;
padding-left: 20px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
/* border: 1px solid #969393; */
background-color: #EFEFEF;
font-size : calc(var(--default-font-size) - 2px);
width: 240px;
}

#cy_text{
    position: absolute;
font-family: Helvetica;
/* color: rgb(179, 185, 190); */
z-index: 5;
/* font-size : calc(var(--default-font-size) - 2px); */
/* padding: 5px; */
text-align: left;
padding: 6px;
padding-left: 20px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
/* border: 1px solid #969393; */
background-color: #EFEFEF;
font-size : calc(var(--default-font-size) - 2px);
width: 340px;
}

#organ_levels{
overflow-y: auto;
overflow-x: hidden;
position: relative;
height: 320px;
margin-left: 3px;
margin-bottom: 3px;
padding: 3px;
min-width: min-content;
}

.organ{
/* border: 1px solid #acafc0; */
padding: 2px;
padding-left: 3px;
padding-right: 3px;
/* border-radius: 5px; */
/* margin: 2px; */
font-size : calc(var(--default-font-size) - 2px);
display: block;
/* width: -webkit-fit-content; */
}

.all_organs{
    border: 1px solid rgba(195, 192, 198, 1);
background-color: #ece5eb29 ;
border-radius: 7px;
padding: 5px;
height: 300px;

display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: flex-start;
justify-content: flex-start;

overflow-x: auto;
overflow-y: hidden;
}



#input_id{
    height:  20px !important;
    padding-bottom: 10px;
    padding-top: 3px;
}

.a_line{
/* width: 225px; */
width: 90%;
height: 1px;
padding-bottom: 5;
background-color: grey;
display: block;
/* margin-bottom: 10px; */
margin: 0 auto 10px;
}

#zoomer{
        background-color: rgba(255, 255, 255, 0) !important;
}

.raw_container{
    display: inline-flex;
}

.raw_gene_span{
    border: 0.5px solid;
padding: 6px;
border-radius: 6px;
border-color: rgb(189, 225, 255);
}

.raw_genotype_div{
max-height: 540px;
/* width: 350px; */
overflow: auto;
/* overflow-x: h; */
/* padding-top: 5px; */
background-color: rgba(211, 211, 211, 0.15);
}

.outer_raw_genotype_div{
    /* margin-left: 250px; */
  /*  display:none;*/

}

.raw_panel{
    background-color:rgba(103, 103, 103, 0.09) !important;
}

.raw_genotype{
    text-align: center;
}

.raw_snp{
    text-align: left;
}

.raw_gene{
    text-align: left;
}




table.raw_genotype td, table.raw_genotype th {
padding: 5px;
font-size : calc(var(--default-font-size) - 2px);
color: rgba(7, 10, 16, 0.5);
line-height: 26px;
}
table.raw_genotype th {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: #f8f8f8;
}

#raw_data_list{
    padding: 10px;
margin-top: 5px;
}

tspan{
    font-weight: 800;
    font-size : calc(var(--default-font-size) - 2px);
}



.gene_table_cell{
    padding:3px;
    white-space: nowrap;
}

.gene_unit{
    margin: 3px;
}
.snp-cell {
    white-space: nowrap;
    padding-left: 3px;
}

.dot {
height: 9px;
width:9px;
background-color: rgba(40, 134, 255, 0.56);
border-radius: 50%;
display: inline-block;
}

.year{
font-weight: 300;
padding-top: 3px;
border-top: 1px dotted;
font-size: calc(var(--default-font-size) - 1px);
}

.risk_green{
background-color: var(--green) !important;
}

.risk_orange{
background-color: var(--orange) !important;
}

.risk_red{
background-color: var(--red) !important;
}

#refseq_desc_long{
    margin-top: 5px;
}

.footer {
    margin: -10px;
    padding: 10px;
    width: 1200px;
    /* border: darkcyan 1px solid;  */
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
}

#left_footer{
/* display: inline-block; */
/* float: left; */
z-index: 6;
margin: 10px;
}

#right_footer{
/* display: inline-block; */
/* margin-left: 10px; */
margin: 10px;
border-radius: 5px;
}

#protein_fold{
    border-radius: 5px;

}

#far_right_footer{
/* display: inline-block; */
/* margin-left: 10px; */
margin: 10px;
/* float:right; */
}

#eu_cell{
width: 200px;
margin: auto;
float: left;
}
.gene_trait {
font-size : calc(var(--default-font-size) - 2px);
font-weight: bold;
padding: 4px;
border-radius: 4px;
/*border: 1px dotted #cccccc;
*/margin-top: 10px;
margin-left: 5px;
background-color: #F0EFEF;
line-height: 100% !important;
color: white !important;
}
.trait_snp {
    font-size : calc(var(--default-font-size) - 2px);
    font-weight: bold;
    padding: 4px;
    border-radius: 4px;
    margin-top: 10px;
    margin-left: 5px;
    background-color: #F0EFEF;
    line-height: 100% !important;
    color: black !important;
}

.checkboxer {
    margin-top: 13px;
}

#protein_fold{
   /* width:100%;  */
   width: 240px;
   height:100%;
}


.chem_mesh{
    font-weight: normal;
    font-style: italic;
    display: none;

}

.numberCircle {
width: 24px;
line-height: 22px;
border-radius: 50%;
text-align: center;
font-size : var(--default-font-size);
border: 0.5px solid #b1b1b1;
background: white;
}

.panel_header{
    border-bottom: 1px solid #969393;
    margin-top: 8px;
    font-weight: 400;
font-size : calc(var(--default-font-size) - 2px);
}
#header_trait{
margin-left: 10px;
}

#header_gene{
float:right;
}

#mini_subopt{
    font-size : calc(var(--default-font-size) - 2px);
min-width: 8px;
padding: 2px 4px;
}

.trait_totals{
    float:right;
}

.trait_list{
font-weight: 400;
font-size:  calc(var(--default-font-size) - 1px);
}

.SNP_flag_Y {
   position:relative;
}
.SNP_flag_Y:after {
content: "S";
position: absolute;
top: -7px;
right: -7px;
font-size: .9em;
background: rgba(2, 3, 22, 0.36);
color: white;
width: 14px;
height: 14px;
text-align: center;
line-height: 14px;
border-radius: 50%;
}

#increase_button{
margin-left: 5px;
margin-right:5px;
padding: 6px;
}

#decrease_button{
margin-left: 5px;
margin-right:5px;
padding: 6px;
}

.decrease_color{
background-color: rgba(247, 128, 126, 0.16) !important;
}

.increase_color{
background-color: rgba(151, 255, 153, 0.11) !important;
}

.decrease{
background-color: rgba(247, 128, 126, 0.16) !important;
}

.increase{
background-color: rgba(151, 255, 153, 0.11) !important;
}

#all_button{
margin-right:5px;
}

.go_pills{
    line-height: 150%;
}

#gene_name{

font-weight: 600;
padding-top: 10px;
}

#gene_name_protein{
    font-size : var(--default-font-size);
    font-weight: bold; 
    margin-bottom: 3px;
    margin-top: 5px;
}

.cell_heading{
    font-size : var(--default-font-size);
    font-weight: bold; 
    margin-bottom: 7px;
    margin-top: 10px;
    white-space: nowrap;
}

.chems_listed_no{
    text-align: right;
}

.decreaser{
border: 1px solid #f42615 !important;
background-color: rgba(247, 128, 126, 0.16) !important;
}

.increaser{
border: 1px solid #11d013 !important;
background-color: rgba(151, 255, 153, 0.11) !important;
}

.decreases{
border: 1px solid #f42615 !important;
background-color: rgba(247, 128, 126, 0.16) !important;
}

.increases{
border: 1px solid #11d013 !important;
background-color: rgba(151, 255, 153, 0.11) !important;
}

#the_chems{
    padding: 10px;
/*    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;*/
    border: 0.5px solid #e1dddd;
    text-align: justify;
    overflow-x: hidden;
    overflow-y: scroll;
    height:212px !important;
    border-top: none !important;
    width: 100%;
}

#the_chems_header{
font-family: Helvetica;
z-index: 5;
text-align: left;
padding: 5px;
border: 0.5px solid #e1dddd;
background-color: #EFEFEF;
font-size : calc(var(--default-font-size) - 2px);
padding-left: 20px;
}

.active_chem{
    border: 2px solid #969393 !important;
}

.chem_interaction{
margin-top: 5px;
border-top: 1px dotted;
font-weight: bold;
padding-bottom: 5px;
padding-top: 5px;
}

.gene_list_html{
border: 1px  #cccccc;
border-radius: 5%;
font-size: 90% ;
line-height: 2 ;
color: #166cff ;
margin: 3px;
display: inline-block ;
}


.genes_list_html{
    display: none;
    font-size : calc(var(--default-font-size) - 2px);
    font-weight: normal;
    color: black;
    width: 380px;
    text-align: left;
    margin-top: 5px;
    border-top: 1px dotted;
    padding-top: 5px
}

.chem_desc{
    display:none;
    font-size : calc(var(--default-font-size) - 2px);
    font-weight: normal;
    color: black;
    width: 380px;
    text-align: left;
    margin-top: 5px;
    border-top: 1px dotted;
    padding-top: 5px
}

#the_chems:after{
    content: '';
    width: 100%; /*  justification for single lines */
    display: inline-block;
    }


.chem_name{
    font-size : calc(var(--default-font-size) - 2px);
    font-weight: 400;
    padding: 4px;
    margin: 3px;
    border-radius: 4px;
    border: 1px solid #cccccc;
    display: inline-block;
    background-color: #F0EFEF;
    cursor: pointer;
}

#thelist{
    margin-left: -10px !important;
}

#thelist2{
    margin-left: -10px !important;

}


.go_group{
padding-top: 10px;
font-weight: bold;
color: grey;
font-size : calc(var(--default-font-size) - 2px);
}


.go_heading{

    border-radius: 8px;
    border: 1px solid #73AD21;
    padding: 4px; 
    margin-top: 5px;

}

.go_detail{
    padding-left:15px;
    padding-bottom:15px;
    font-size : calc(var(--default-font-size) - 2px);
    display: none;
}

.thingmagic{
background-color: #efefef !important;
font-size : calc(var(--default-font-size) - 2px) !important;
font-weight: 400 !important;
line-height: 2 !important;
color: rgba(17, 84, 198, 0.8) !important;
}


/*.arrow_r {
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-bottom-width: 5px;
    border-top-width: 4px;
    border-left: 7px solid dimgray;
    margin-left: -7px;
    display: inline-block;
}*/

#arrower{
    position: relative;
    left: -220px;
    top: 15px;
    float:left;
    transform: translate(800px, -325px);
    }

#arrower_r, #arrower_r__blood {
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-right: 17px solid dimgray;
    display: inline-block;
}

.details {
font-size: calc(var(--default-font-size) - 1px);
font-weight: 500;
color: #323232;
}

#reference_suboptimal{
padding: 5px;
font-size : calc(var(--default-font-size) - 2px);
font-weight: 400;
}

#maf{
    font-size : var(--default-font-size);
font-weight: 400;
}

#refsnp{
    font-size : var(--default-font-size);
font-weight: 400;
}

.sparky {
    float: right;
    position: relative;
    top: -7px;
}

.panels{
       
}

.panel_contents {
    display: none;
    font-size : var(--default-font-size);
    line-height: 200%;
    font-weight: bold;
}
#version_no{
    margin-right: 5px;
}
ul {
    padding-left: 6px;
}

.hide_it {
    display: none;
}

.selected_trait_genes {
    display: none;
}

.panel_contents.active1 {
    display: unset;
}

/*.active1{
     -webkit-transition: -webkit-transform 2s ease-in-out;
     -webkit-transform:translate(0, 56px);
}*/

.navbar-brand.navbar-left {
    margin-top: -2px;
}

.onoffswitch {
    position: relative;
    width: 82px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #999999;
    border-radius: 6px;
}

.onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before,
.onoffswitch-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 20px;
    padding: 0;
    line-height: 20px;
    font-size:  calc(var(--default-font-size) - 1px);
    color: white;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    font-weight: bold;
    box-sizing: border-box;
}

.onoffswitch-inner:before {
    content: "zoom on";
    padding-left: 8px;
    background-color: #060B94;
    color: #FFFFFF;
}

.onoffswitch-inner:after {
    content: "zoom off";
    padding-right: 8px;
    background-color: #EEEEEE;
    color: #999999;
    text-align: right;
}

.onoffswitch-switch {
    display: block;
    width: 13px;
    margin: 3.5px;
    background: #FFFFFF;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 58px;
    border: 2px solid #999999;
    border-radius: 6px;
    transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch {
    right: 0px;
}

.tab-content {
    margin-top: 0px;
}

/* prac note */
#tabs-prac-note {
    overflow: hidden;
}

.codex-editor__redactor .codex-editor .codex-editor--narrow{
  font-size: 1em !important;
}

/* change toolbar size - prac note */
.ql-snow .ql-picker {
    font-size: unset !important;
}
.ql-snow .ql-picker-options .ql-picker-item {
    padding : 0px !important;
}
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
    width: 15px !important;
}
.ql-snow.ql-toolbar button, .ql-snow .ql-toolbar button {
    height: unset !important;
    width: 23px !important;
}
.ql-toolbar.ql-snow {
    padding: 0 8px !important;
}
.ql-editor {
    padding: 5px 15px !important;
    max-height: 450px;
}
.ql-snow .ql-tooltip.ql-flip {
    transform: translateY(-1px) !important;
}
/* prac notes - trix */
/* .prac-note-save__container {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
#prac-note-editor {
    max-height: 430px;
    overflow: auto;
} */

@import url('https://fonts.googleapis.com/css?family=Roboto|Roboto+Condensed');
.loading_thing {
    font-size: calc(var(--default-font-size) + 2px);
    font-variant: helvetica;
    font-style: italic;
}

.loading_thing:after {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    -webkit-animation: ellipsis steps(4, end) 900ms infinite;
    animation: ellipsis steps(4, end) 1200ms infinite;
    content: "\2026";
    /* ascii code for the ellipsis character */
    width: 0px;
}

@keyframes ellipsis {
    to {
        width: 1.25em;
    }
}

@-webkit-keyframes ellipsis {
    to {
        width: 1.25em;
    }
}

.g_x_e {
    position: relative;
}

.g_x_e:after {
    content: "GxE";
position: absolute;
top: 40%;
right: 5px;
font-size: .8em;
background: rgb(109, 137, 202);
color: white;
width: 22px;
height: 22px;
font-family: "Helvetica Neue", Helvetica, sans-serif;
text-align: center;
line-height: 22px;
border-radius: 90%;
/* box-shadow: 0 0 1px #333; */
}

.g_x_n {
    position: relative;
}

.g_x_n:after {
content: "NGx";
position: absolute;
top: 40%;
right: 5px;
font-size: .8em;
background: rgb(109, 137, 202);
color: white;
width: 22px;
height: 22px;
font-family: "Helvetica Neue", Helvetica, sans-serif;
text-align: center;
line-height: 22px;
border-radius: 90%;
/* box-shadow: 0 0 1px #333; */
}





.logo_dnaiq{
    height: 25px;
    /* padding-top: 10px; */
    /* float:right; */
    /* position: absolute;
    right: 0px;
    bottom: 10px; */
}

.logo_dnaiq_login{
    height: 35px;
    padding-top: 10px;
    /* float:right; */
    position: absolute;
    right: 0px;
    bottom: 10px;
}


.heading_accordion.case_control{
  margin-top: 30px;
}

.heading_accordion.meta_analysis{
    margin-top: 30px;
}

.case_control {
    position: relative;
}

.case_control:before {
content: "Case-Control";
position: absolute;
top: -14px;
left: 0px;
font-size: 0.9em;
background-color: var(--before-bg-color);
color: black;
height: 20px;
font-family: "Helvetica Neue", Helvetica, sans-serif;
text-align: center;
line-height: 14px;
border-radius: 3px;
padding: 3px;
padding-left: 6px;
padding-right: 6px;
font-weight: 600;
}

.meta_analysis {
    position: relative;
}

.meta_analysis:before {
content: "Meta-Analysis";
position: absolute;
top: -14px;
left: 0px;
font-size: 0.9em;
background-color: var(--before-bg-color);
color: black;
height: 20px;
font-family: "Helvetica Neue", Helvetica, sans-serif;
text-align: center;
line-height: 14px;
border-radius: 3px;
padding: 3px;
padding-left: 6px;
padding-right: 6px;
font-weight: 600;
}

.nutrients_data_table{
  margin-right: 3px;
}

.the_data_badge {
padding: 2px 4px;
border-radius: 20%;
background: gray;
color: white;
font-size : calc(var(--default-font-size) - 2px);
}

.case_control .meta_analysis:before {
    content: "Meta-Analysis";
position: absolute;
top: -10px;

font-size: .8em;
background: rgba(108, 109, 150, 0.87);
color: black;
width: 65px;
height: 13px;
font-family: "Helvetica Neue", Helvetica, sans-serif;
text-align: center;
line-height: 13px;
border-radius: 10%;
/* box-shadow: 0 0 1px #333; */
}


.input-sm {
    height: 20px !important;
    font-size : calc(var(--default-font-size) - 2px) !important;
}


.navbar-text{
    color: #c1b9b9 !important;
    margin: 15px 0 0 10px !important;
}

.far.navbar-text {
    margin-left: 0 !important;
}

#biomarkers > .navbar-text {
    margin-top: 16px !important;
}

.navbar-nav > li > a {
    padding-bottom: 8px;
}

.navbar .nav>li {
    /* line-height: 50px; */
}

.navbar {
    min-height: 44px !important;
    /* height: 44px !important; */
    background-color: rgba(0, 0, 0) !important;
    border-radius: 1px !important;
    border: 1px solid !important;
    margin-bottom: 0px !important;

}

.navbar-brand {
    padding: 0px;
}

.navbar-brand>img {
    height: 65%;
    width: auto;
}

.navbar-header__container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.navbar-left__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
}

.navbar-right__container--collapsed {
    display: none;
}
.navbar-right__container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: flex-end;
}

#bs-example-navbar-collapse-1 > ul > li {
    border: 0;
    margin: 0;
    padding: 0;
}
#bs-example-navbar-collapse-1 > ul > li.dropdown > a[aria-expanded="false"] {
    color: #c1b9b9;
    font-size : var(--default-font-size);
}

#logout-btn-collapse {
    /* display: none; */
    /* float: right; */
    /* margin: 0 5px; */
}
#welcome-info-collapse {
    display: none;
}

#color_switch_container, #snp-no-info_container, #AI_content_switch_container {
    margin-top: 13px;
    /* margin-left: 10px; */
    padding-left: 17px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    width: -webkit-fill-available;
}

#colorinfo {
    /* color: aliceblue;  */
    /* color: #c1b9b9; */
    font-size: calc(var(--default-font-size) + 2px); 
    padding: 3px;
}

/* navbar item responsive settings */
@media (min-width: 1200.1px) {
    :root {
        --default-font-size: 12px !important;
    }
}
@media (max-width: 1200px) {
    /* #logout-btn-collapse{
        display: block !important;
    } */
    /* .navbar-right__container--expanded {
        display: none !important;
    } */
    /* the dropdown height in navbar toggle */
    #biomarkers .dropdown-menu {
        max-height: 120px;
    }
    .navbar-right__container--collapsed {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        align-items: center;
        justify-content: flex-end;
    }
    #logout-btn-expand{
        display: none;
    }
    .mgt-btn, #logout-btn-expand {
        margin: 5px 15px !important;
    }
    .font-btn {
        margin: 5px 5px !important;
    }
    .navbar-text{
        margin: 0 0 0 5px !important;
    }
    #biomarkers, #tools--collapse {
        margin-top: 10px !important;
    }
    .tools__icon-container {
        margin-right: 10px !important;
    }
    #biomarkers > span:nth-child(1),
    #color_switch_container {
        margin-left: 0 !important;
    }
}
@media (max-width: 650px) {
    #welcome-info-collapse {
        display: block !important;
        margin: 10px 0 0 0 !important;
    }
    #welcome-info-expand{
        display: none !important;
    }
}



tabs-nohdr {
    padding: 0px;
    background: none;
    border-width: 0px;
}

tabs-nohdr .ui-tabs-nav {
    padding-left: 0px;
    background: transparent;
    border-width: 0px 0px 1px 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

tabs-nohdr .ui-tabs-panel {
    background: #f5f3e5 repeat-x scroll 50% top;
    border-width: 0px 1px 1px 1px;
}

.ui-widget-header {
    background: transparent !important;
}

.list-group-item .badge {
    /* font-size : calc(var(--default-font-size) - 2px) !important;
    font-family: "Helvetica Neue", Helvetica, sans-serif !important;
    margin-right: 3%;
    float: right; */
}

.badge{
    display: inline-block;
min-width: 10px;
padding: 3px 5px !important;
font-size : calc(var(--default-font-size) - 2px) !important;
font-weight: 400 !important;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: middle;
background-color: rgba(94, 106, 151, 0.72);
border-radius: 10px;
}

li {
    border-bottom: 1px dotted grey;
    margin: 10px 0 0 0;
    list-style-type: none;
    padding: 0;
    /* padding-bottom: 8px*/
}



li:last-child {
    border: none;
}

.research_heading {
    font-size: calc(var(--default-font-size) + 2px);
    font-weight: bold;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: 1px solid #c5c5c5 !important;
    background: #c5c5c5 !important;
    font-weight: normal;
    color: #000000 !important;
}

html,
body {
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    font-size: var(--default-font-size) !important;
    /* background-color: #ffffff; */
    position: relative;
    /* overflow-x: hidden; */
}

html { height: 100%; overflow:auto; }
body { height: 100%; }

#credits{
padding: 5px;
/* display: inline-block; */
font-size : calc(var(--default-font-size) - 2px);
position: fixed;
width: 100%;
overflow: hidden;
z-index: 100;
background-color: #f2f2f2;
bottom: 0px;
border-top: 1px solid rgba(2, 2, 9, 0.28);

    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}

#credits-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    width: calc(100% - 73px);
}

.container {
    margin: 0;
    width: 100% !important;
}

.list-group1 {
    list-style: none;
}

.list-group1 a {
    padding-bottom: 5px;
    padding-left: 2px;
    text-decoration: none;
    overflow-y: auto;
    overflow-x: hidden;
}

.list-group1 a:hover {}

.list-group-item {
    border-radius: 5px;
    background-color: #ffffff !important;
    margin-bottom: 10px !important;
}

.list-group-item.active1 {
border: 1px solid rgba(195, 192, 198, 1) !important;
background-color: #d1cbd029 !important;
}

[id^=cat_] {
    min-height: 63px;
}

.cat__blood--name-container {
    display: flex;
    /* flex-wrap: wrap; */
    flex-direction: column;
}
.cat__blood--datetime-clicked, .cat__blood--datetime-hovered {
    /* padding-left: 3px; */
    height: 15.69px;
}

.mayoverflow {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

input,
select {
    font-size: 1em;
}

.evid_count:empty {
margin-right: 0px;
margin-left: 0px;
}


#thelist.table>tbody>tr>td{
    border-top: unset;
    margin-bottom: unset;

}

#thelist2.table>tbody>tr>td{
    border-top: unset;
    margin-bottom: unset;

}

table {
    margin-top: -10px;
    margin-left: 7px;
    font-size : calc(var(--default-font-size) - 2px);
    text-decoration: none;
    font-weight: normal;
}

h4 {
    font-size: 1em;
    text-decoration: none;
    font-weight: normal;
    color: #deeaf3;
    padding: 1em;
}

h5 {
    font-size: 0.8em;
    text-decoration: none;
    font-weight: normal;
    color: #deeaf3;
    text-align: left;
    font-style: italic;
}

/* h3 {
    font-size: 0.5em;
    text-decoration: none;
    font-weight: normal;
    color: #deeaf3;
    padding: 1em;
} */

a.active {
    text-decoration: none;
    color: #03B003;
}


  a:focus, a:hover {
/* color: unset !important;  */
text-decoration: none;
}

.a:first-child:before>.li {
    /* Unicode hex for &raquo; */
}

a.mods_bt:hover{
background: rgba(85, 204, 84, 0.22);
border-radius: 5px;
}

.biomarker {
    overflow: hidden;
    font-weight: 600;
    padding: 10px;
}

.mark, mark {
padding: unset;
background-color: unset;
}

#bipolar1 {
    padding: 15px;
    align-content: center;
}

#records_no, #records_disp {
font-size : calc(var(--default-font-size) - 2px);
padding: 10px;}

#snp-metrics {
font-size : var(--default-font-size);
font-weight: bold;
padding: 10px;
border-radius: 3px;
border: 0.5px dotted #969393;
background-color: rgba(239, 239, 239, 0.51);
}

#snp-details {
    font-weight: 600;
    padding:5px;
}


.heading_accordion {
font: helvetica;
font-size : calc(var(--default-font-size));
font-weight: 400;
padding: 7px;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
margin-top: 24px; 

}

.body_accordion {
    display: none;
    padding:10px;
    background-color: rgba(189, 194, 220, 0.18);

border: 1px solid #c6c2c2;
border-width: 1px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}

.abstract_text {
    font: helvetica;
    font-size : var(--default-font-size);
}

#gene_depth {
    width: 99%;
    margin: 0 auto;
    text-align: center;
}

div.btn-group {
    text-align: center;
}

#select_menu {
    font-size: calc(var(--default-font-size) + 2px);
    font-weight: 400;
    line-height: 175%
}

/* main container  */
#main {
    margin: 0 auto 50px;
    position: relative;
    background-color: #ffffff;
    overflow-x: clip;
    /* border: yellow 1px solid; */
}

/* main content responsive */
@media (min-width: 1316px) and (max-width: 1440px) {
    #center-right-container, #center-right-container__blood {
        flex-wrap: nowrap;
    }
    #right-container{
        width: calc(100% - 620px) !important;
        max-width: 580px !important;
    }
    .footer {
        width: 100% !important;
    }
    #left_footer:not(.substance) {
        min-width: 480px !important;
    }
}

@media (max-width: 1315px) {
    .footer {
        max-width: 800px !important;
        flex-wrap: wrap !important;
    }
    .footer, #left_footer, #right-container {
        width: 600px !important;
    }
}

@media (max-width: 1140px) {
    .footer, #left_footer, #right-container {
        width: 600px !important;
    }
    #cyto-back-btn.focus {
        display: block !important;
    }
    #cyto_column:not(.focus), 
    #raw_data_list_div.lose-focus, 
    #input_id.lose-focus{
        display: none;
    }
}
/* mobile configuration (portrait view)*/
@media (max-width: 450px) {
    :root {
        --default-font-size: 18px;
    }
    #clear-fix-margin {
        height: 0;
    }
    .hidden_mobile{
      display: none;
    }
    /* #logo__helix {
        display: none;
    } */
    nav, nav .btn {
        font-size: 16px !important;
    }
    #tools--collapse {
        display: block;
    }
    #tools--expand {
        display: none !important;
    }
    /* sampleID dropdown style */
    #sample-info__viewing {
        display: none;
    }
    .sample-id-dropdown-item {
        margin: 5px 0;
    }
    #logout-btn-expand{
        display: block;
        width: fit-content;
    }
    #logout-btn-collapse {
        display: none;
    }
    .snp-cell {
        display: block !important;
    }
    /* the dropdown height in navbar toggle */
    #biomarkers .dropdown-menu {
        max-height: 200px;
    }
    /* container visibility */
    #left-container:not(.focus),
    #center-right-footer-container:not(.focus),
    #center-right-footer-container__blood:not(.focus),
    #center-container:not(.focus),
    #center-container__blood:not(.focus),
    .footer:not(.focus){
        position: absolute !important;
        left: -5000px;
        top: -5000px;
    }
    /* #left-container, */
    #cyto-back-btn.focus,
    #center-container-back-btn.focus {
        display: block !important;
    }
    #main-container {
        margin-left: 0 !important;
    }
    #left-container {
        width: 100% !important;
        margin: 0 auto !important;
        /* text-align: center !important; */
        position: relative !important;
        height: auto !important;
    }
    [id^=cat_] {
        min-height: 80px;
    }
    .table-row-divider {
        display: block !important;
    }
    /* .gene_unit {
        margin: 3px auto !important;
    } */
    #interventions_table{
        width: 100vw !important;
        overflow-x: scroll !important;
    }
    #cyto_column:not(.focus), 
    #raw_data_list_div.lose-focus, 
    #input_id.lose-focus{
        display: none;
    }
    .raw_genotype_div {
        width: 100vw;
        max-height: calc(100vh - 220px) !important;
    }
    #cyto_column {
        width: 100vw !important;
    }
    #cy2 > div > canvas {
        left: 0;
    }
    .credits__link {
        display: block !important;
    }
    .credits__detailed-info {
        display: none !important;
    }
    .footer, #left_footer, #right-container {
        width: auto !important;
    }
    /* hide wheel chart */
    #infovis, #infovis__blood,
    #arrower, #arrower__blood,
    .legend_front, .legend_front__blood,
    #the_mods_pos {
        position: absolute !important;
        left: -5000px;
        top: -5000px;
    }
    /* overflow setting in mobile portrait view */
    #main {
        overflow: hidden !important;
        margin: 0 !important;
        padding: 50px 0 50px !important;
    }
    #interventions, #cyto_column{
        height: unset !important;
        max-height: calc(100vh - 150px) !important;
        overflow-y: auto !important;
    }
    /* infovis layout */
    .subdetails__long {
        /* width: 80% !important; */
        overflow: auto;
        max-height: 50vh;
    }
    .infovis-mini {
        left:77% !important;
    }
    .infovis-mini.active1.top {
        top: 3px !important;
    }
}
@media (min-width: 450.1px) {
    #clear-fix-margin {
        height: 50px;
    }
    .subdetails__long,
    .trait-details__long,
    .gene-details__long,
    .snp-cell-details__container {
        display: none !important;
    }
    .subdetails {
        display: block !important;
    }
    /* sampleID dropdown style */
    #client_login_dropdown--1 {
        display: block;
    }
}
/* mobile configuration (horizontal view)*/
@media (max-width: 918px) and (max-height: 542px) {
      #wheel_context {
    display: none;
  }
    :root {
        --default-font-size: 14px;
    }
    .sample-id-dropdown-item {
        margin: 5px 0;
    }
    /* the dropdown height in navbar toggle */
    #biomarkers .dropdown-menu {
        max-height: 120px;
    }
    .footer, #left_footer, #right-container {
        width: 100% !important;
    }
    .snp-cell {
        display: block !important;
    }
    /* hide wheel chart */
    #infovis, #infovis__blood,
    #arrower, #arrower__blood,
    .legend_front, .legend_front__blood,
    #the_mods_pos {
        position: absolute !important;
        left: -5000px;
        top: -5000px;
    }
    .raw_container{
        height: calc(100vh - 140px);
    }
    .credits__link {
        display: block !important;
    }
    .credits__detailed-info {
        display: none !important;
    }
    
    .function__container, .location__container, .process__container {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: flex-start;
        align-content: center;
        width: calc(100vw - 280px);
    }
    .function, .location, .process {
        margin-right: 5px;
    }
    #chrom_map {
        width: calc(100vw - 280px);
    }
    .all_organs {
        width: calc(100vw - 280px);
    }
    /* update tab style (right container) */
    .right_tabs__container {
        position: fixed !important;
        top: 52px;
        left: 260px;
        width: 100% !important;
        background: white;
        z-index: 100;
    }
    #right_tabs {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        max-width: calc(100vw - 265px);
    }
    .tab-content {
        margin-top: 20px !important;
    }

    /* prac note element spacing */
    .prac-note-open {
    padding-left: 5px;
    }


    /* prac note editor */
    #prac-note-read-only {
        display: inline !important;
    }
    .ql-editor {
        max-height: unset !important;
    }
    .nav > li  {
        margin-top: 0 !important;
    }
    .nav > li > a {
        padding: 5px 10px !important;
    }
    .table-row-divider {
        display: block !important;
    }
    #left_footer, #cy_text, #protein_fold_text {
        z-index: 1 !important;
    }
    /* hide scrolling in this view */
    .shower {
        overflow: hidden !important;
        max-height: 100% !important;
    }
    .tab_detail {
        overflow: hidden !important;
        height: fit-content !important;
    }
}
@media (min-width: 918.1px) and (min-height: 542.1px) {
    .navbar-default .navbar-toggle:hover {
        background-color: #ddd;
    }
    /* desktop mode - category visibility */
    #desktop-mode-container {
        display: block !important;
    }
    /* hide "genes" and "categories" option */
    #left-container.desktop-mode div.list-group1 > div.list-group-item.raw_panel:nth-of-type(3) {
        display: none !important;
    }
    /* hide inactive categories */
    #left-container.desktop-mode div[id^=cat_]:not(.active1) {
        display: none !important;
    }
    /* hide horizontal line on desktop mode (when no active categories)*/
    #select_menu > div.list-group1 > div.a_line.desktop-mode {
        display: none !important;
    }
}
/* hide "genes" option globally*/
#left-container div.list-group1 > div.list-group-item.raw_panel:nth-of-type(1),
#select_menu > .a_line {
    display: none !important;
}

#main-container {
    margin-left: 250px;
    width: fit-content;
    background-color: #ffffff; 
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
}
#center-right-footer-container, #center-right-footer-container__blood {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
#center-right-container, #center-right-container__blood {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

#center-right-container__blood {
    /* justify-content: center; */
}

#left-container,
#center-container, #center-container__blood {
    margin: 5px;
}

[id^="analyte-chart__"], #date-chart__blood {
    margin: 0 auto;
    /* margin-left: -12px; */
}
#analyte-chart__blood {
    /* margin-left: -12px; */
}

#left-container {
    position: fixed;
    min-width: 200px;
    width: 250px;
    height: calc(100% - (80px));;
    text-align: left;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 4;
    background-color: rgba(255, 255, 255, 0.6);
    /* border: blue 1px solid; */
}

#center-container, #center-container__blood {
    z-index: 3;
    /* width: 700px; */
    left: 25x;
    background-color: #ffffff;
    /* border: green 1px solid; */
}

#right-container {
    top: 0;
    /* height: 600px; */
    width: 580px;
    text-align: left;
    position: relative;
    z-index: 2;
    /* border: orange 1px solid; */
}
#right-container.lose-focus{
    display: none;
}

#tabs-1__blood {
    font-family: helvetica !important;
    /* word-break: normal !important;
    white-space: pre-wrap; */
    background-color: #f8f8f8 !important;
    font-size: calc(var(--default-font-size) - 2px) !important;
    display: block;
    position: relative;
    padding: 9.5px;
    margin: 13px 20px;
    /* font-size: 13px; */
    /* line-height: 1.42857143; */
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-gutter: stable;
    max-height: 80vh;
    min-width: 200px;
}

#tabs-1__blood #tabs-1__toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

#analyte-container {
    display:flex;
    /* max-width:200px; */
    justify-content:flex-start;
    /* margin-top:10px; */
    flex-direction: column;
}

.analyte-container__item {
    margin: 5px 0;
    display: flex;
    flex-direction: column;
}

.analyte-container__data {
    display: flex;
    /* width: 350px; */
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    max-height: 40px;
} 

.analyte-container__data--right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    /* margin-left: 10px; */
}

.analyte-container__description {
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white !important;
    max-height: 300px;
    overflow-x: hidden;
    white-space: normal;
}

.analyte-icon--chart {
    color: gray;
    cursor: pointer;
}

.analyte_report {
    margin: 5px 0;
    display: flex;
    /* width: 350px; */
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    max-height: 40px;
}

.analyte_report_analytes__container, .analyte-container__value {
    padding: 3px 5px;
    margin: 0 5px;
    border-radius: 4px;
    white-space: nowrap;
}

.analyte-container__value {
    white-space: nowrap;
}

.analyte_report_analytes {
    font-size : calc(var(--default-font-size) - 2px); 
    font-weight: 400;
    color: white;
    font-family: helvetica;
}

.tab_container {}

.tab_header {
    padding-left: 5px;
    padding-right: 5px;
}

.tab_detail {
    padding-left: 20px;
   /* padding-top: 30px;
    padding-right: 30px;*/
    font-size : calc(var(--default-font-size) - 2px);
    overflow-y: scroll;
    height: 440px;
}

.shower {
    padding-left: 5px;
    padding-top: 0px;
    padding-right: 5px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 580px;
}

.text {
    margin: 7px;
}

#inner-details {
    font-size: 0.5em;
    color: #29293d;
    list-style: none;
    background-color: #e8e8e8;
}

.activated_panel {
    background: #f00;
}

#infovis {
    position: relative;
    /* width: 800px; */
    max-width: 600px;
    height: 600px;
    margin: auto;
    /*overflow:hidden;*/
    padding: 5px;
}
#infovis.wheel {
    left: -220px;
}

#infovis-container__blood {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#gene_level {
position: absolute;
font-size:  calc(var(--default-font-size) - 1px);
width: 400px;
margin: auto;
/* overflow: hidden; */
float: top;
transform: translate(450px, -120px);
}

.ui-checkboxradio {
    width: 50%;
}

.bottom_aligner {
    display: inline-block;
    height: 100%;
    vertical-align: bottom;
    width: 0px;
}


/*TOOLTIPS*/

.tip {
    color: #111;
    width: 139px;
    background-color: white;
    border: 1px solid #ccc;
    -moz-box-shadow: #555 2px 2px 8px;
    -webkit-box-shadow: #555 2px 2px 8px;
    -o-box-shadow: #555 2px 2px 8px;
    box-shadow: #555 2px 2px 8px;
    opacity: 0.8;
    filter: alpha(opacity=80);
    font-size : calc(var(--default-font-size) - 2px);
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    padding: 7px;
    border-radius: 0.5em;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}


.toHighlight {
background-color: rgba(108, 233, 249, 0.34);
}

.searchTextHighlight {
background-color: rgba(249, 227, 81, 0.6);
font-weight: bolder;
}

.associationTextHighlight {
 background-color: rgba(144, 238, 144, 0.65);
 font-style: italic;
}

.referentHighlight{
/*background-color: rgba(249, 227, 81, 0.6);*/
font-style: italic;
}


}

.positive {
background-color: rgba(139, 255, 128, 0.52);
padding-left: 2px;
padding-right: 2px;
}

.negative {
background-color: rgba(255, 159, 144, 0.47);
padding-left: 2px;
padding-right: 2px;
}

.negative,
.negative .positive{
background-color: rgba(255, 159, 144, 0.47);
padding-left: 2px;
padding-right: 2px;
}


.emphasis {
    background-color: #d9edf7;
    padding-left: 2px;
padding-right: 2px;
}

.attention {
    background-color: #fcf8e3;
    padding-left: 2px;
padding-right: 2px;
}

.bold {
    font-weight: bold;
}

.highlight--gray {
    border-radius: 5px;
    background: gray;
    color: white;
    padding: 2px 4px;
}

.italic {
    font-style: italic;
}

.subdetails,
.subdetails__long,
.trait-details__long{
    display: block;
font-size : calc(var(--default-font-size) - 2px);
/* font-style: italic; */
line-height: 130%;
color: rgb(139, 139, 139);
margin-top: 3px;
margin-left: 2px;
white-space: pre-wrap;
}

.subdetails {
    width: 72%;
}
.subdetails__long {
    margin-top: 26px;
}
.infovis-mini {
    position: absolute;
    top:3px;
    left:72%;
}

.infovis-mini-container__blood {
    /* margin-top: 5px; */
    display: flex;
    justify-content: flex-end;
}

.scroll--horizontal {
    overflow-x: auto;
    overflow-y: hidden;
    height: -webkit-fit-content;
}

.infovis-mini__blood {
    display: flex;
}

.infovis-mini-item__blood {
}

.infovis-mini-item__arrow {
    text-align: center;
    margin: -9px 2px -1px 0;
    visibility: collapse;
}

.gene-details__long {
    font-size : calc(var(--default-font-size) - 2px);
    /* font-style: italic; */
    line-height: 130%;
    color: rgb(139, 139, 139);
    padding-left: 13px;
    white-space: pre-wrap;
}

.snp-cell-details {
    font-size : calc(var(--default-font-size) - 2px);
    line-height: 130%;
    color: rgb(139, 139, 139);
}

.suboptimal_desc{
display: block;
line-height: 135%;
font-size : calc(var(--default-font-size) - 2px);
font-weight: 300;
margin-left: 3px;
}

.onoffswitch {
    position: relative; width: 97px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoffswitch-checkbox {
    display: none;
}
.onoffswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    border: 2px solid #E3E3E3; border-radius: 16px;
}
.onoffswitch-inner {
    display: block; width: 200%; margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block; float: left; width: 50%; height: 20px; padding: 0; line-height: 20px;
    font-size : var(--default-font-size); color: white; font-family: Trebuchet, Arial, sans-serif; 
    box-sizing: border-box;
}
.onoffswitch-inner:before {
    content: "exercise";
    padding-left: 10px;
    background-color: #FFFFFF; color: #421111;
}
.onoffswitch-inner:after {
    content: "sedentary";
    padding-right: 10px;
    background-color: #FFFFFF; color: #666666;
    text-align: right;
}
.onoffswitch-switch {
display: block;
width: 16px;
/* margin: 2px; */
background: #A1A1A1;
position: absolute;
/* top: 2px; */
bottom: 0;
right: 73px;
/* border: 2px solid #E3E3E3; */
border-radius: 16px;
transition: all 0.3s ease-in 0s;
height: 16px;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px; 
    background-color: #27A1CA; 
}

#result_stats, #result_stats2{
    padding: 7px;
margin: 2px;
border: 1px dotted #cccccc;
border-radius: 5px;
font-size : calc(var(--default-font-size) - 2px);
font-weight: 400;

}

#all_count{
      /*float:right;; */
      
}

#all_count_mod{

}


.evid_count{
    margin-right: 5px;
     margin-left: 5px;
}


/* add alert modal to show session status */
.alert {
    /* padding: 20px; */
    background-color: #cce5ff;
    color: white;
    opacity: 1;
    transition: opacity 0.6s;
    /* margin-bottom: 15px; */
    width: fit-content;
    margin: 0 auto;
    position: fixed;
    left: 0;
    right: 0;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
  }

.alert.success {    
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert.info {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}
.alert.warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}
.alert.dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}

.closebtn {
margin-left: 15px;
/* color: white; */
font-weight: bold;
float: right;
font-size: calc(var(--default-font-size) + 10px);
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}

.closebtn:hover {
color: black;
}

/* credits modal */
.w3-modal {
	z-index: 100;
	display: none;
	padding-top: 100px;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
}

.w3-modal-content {
	margin: auto;
	background-color: #fff;
	position: relative;
	padding: 0;
	outline: 0;
	width: 600px;
}

@media (max-width: 600px) {
	.w3-modal-content {
    margin: 0 10px;
    width: auto!important;
	}
}

@media (max-width: 768px) {
	.w3-modal-content {
    width: 500px;
	}
}

.w3-container, .w3-panel {
	padding: 0.01em 16px;
}

.w3-display-topright {
	position: absolute;
	right: 0;
	top: 0;
}

.w3-container:after, .w3-container:before, .w3-panel:after, .w3-panel:before, .w3-row:after, .w3-row:before, .w3-row-padding:after, .w3-row-padding:before, .w3-cell-row:before, .w3-cell-row:after, .w3-clear:after, .w3-clear:before, .w3-bar:before, .w3-bar:after {
	content: "";
	display: table;
	clear: both;
}

.w3-btn, .w3-button {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.w3-btn, .w3-button {
	border: none;
	display: inline-block;
	padding: 8px 16px;
	vertical-align: middle;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	background-color: inherit;
	text-align: center;
	cursor: pointer;
	white-space: nowrap;
	font-size: xx-large;
}

a {
	color: #446fa2;
	cursor: pointer;
}

.acct-consent__statement {
	cursor: pointer;
}

#date-range__blood {
    overflow-x: auto;
    overflow-y: hidden;
    height: -webkit-fit-content;
    max-width: 435px;
    /* margin-left: 50px; */
    display: flex;
    flex-direction: column;
}
#date-range__blood::-webkit-scrollbar {
    width: auto;
    height: 8px;
}
#date-range__blood::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #0000007d;
    /* -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 50%); */
}
#date-range__blood::-webkit-scrollbar-track {
    margin-left: 44px;
    /* margin-right: 35px; */
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

/* date picker */
div.google-visualization-tooltip {
    font-size: calc(var(--default-font-size) - 2px);
}
.date-chart_y-axis {
    position: absolute;
    margin-top: 17px;
}
.date-chart_y-axis--left {
    background-color: white;
    width: 33px;
    height: 128px;
    position: absolute;
    z-index: 500;
}
#analyte-chart__body {
    overflow: hidden;
}
.anlayte-chart_y-axis {
    position: absolute;
    margin-top: 17px;
}
.anlayte-chart_y-axis--left {
    background-color: white;
    width: 45px;
    height: 120px;
    position: absolute;
    z-index: 500;
}
/* .anlayte-chart_y-axis--right {
    background-color: white;
    width: 45px;
    height: 120px;
    position: absolute;
    left: 440px;
    z-index: 500;
} */

#analyte-chart__body text[text-anchor=middle],
#analyte-chart__body circle,
#date-chart__blood text[text-anchor=middle] {
    cursor: pointer;
}

/* nested dropdown style */
.dropdown-submenu {
    position: relative;
    margin-bottom: 5px;
}

.dropdown-submenu .btn{
    font-size:calc(var(--default-font-size) - 1px) !important;
}

.dropdown-submenu__item {
    border: 1px #dddddd solid;
    border-radius: 2px;
    padding: 5px 5px 0;
    margin: 2px 0;
}

#loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: #555;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000; 
}

.pathways-groups{
  font-size: 12px;
}