/* Fonts */
@font-face {
  font-family: 'Bahnschrift';
  src: url('fonts/bahnschrift.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Public Sans';
  src: url('fonts/publicsans-blackitalic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}


body { 
  padding-top: 80px;
}

.left-aligned { margin-left: auto; }
.bg-dark { background-color: #343a40 !important; }

/* CALLOUT */
.bd-callout { padding:1.25rem; margin-top:1.25rem; margin-bottom:1.25rem; border:1px solid #e9ecef; border-left-width:.25rem; border-radius:.25rem }
.bd-callout h4 { margin-bottom:.25rem }
.bd-callout p:last-child { margin-bottom:0 }
.bd-callout code { border-radius:.25rem }
.bd-callout+.bd-callout { margin-top:-.25rem }
.bd-callout-info { border-left-color:#5bc0de }
.bd-callout-warning { border-left-color:#f0ad4e }
.bd-callout-danger { border-left-color:#d9534f }

/* Header style */
.navbar {
  font-family: 'Bahnschrift', 'Arial', 'Helvetica', sans-serif;
  width: 100%;
  position: fixed;
  color: black;
  background-color: transparent;
  transition: background-color 0.2s linear;
  
  &.solid-nav {
    background-color: rgba(255, 255, 255, 0.9);
    transition: background-color 0.2s linear;
  }
}

.navbar-brand img {
  height: 5rem;
  }
.navbar-light .navbar-nav .nav-link {
  font-size: 1.2rem;
  font-weight: bold;
  color:#E65929 !important;
  text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.5); /* Add text shadow */
}

@media (max-width: 767px) {
  .navbar {
    background-color: transparent;
    height: 5rem;
    transition: background-color 0.2s linear, height 0.2s linear;
  }
  .navbar-brand img {
  height: 4rem;
  }
  #navbarContainer {
    background: rgba(255, 255, 255, 0.9);

  }
} 

:root {
  --tomato-red: #E65929;
  --crimson-red: #BA2424;
  --fresh-green: #7ED957;
  --deep-sky-blue: #0097B2;
  --sky-blue: #1D9CD8;
  --light-sky-blue: #24B8F2;
  --soft-blue: #9CD8EF;
  --light-gray: #F2F2F2;
  --ocean-surface: #2B76D9;
  --ocean-middle: #020659;
  --ocean-deep: #010440;
}

.map-container {
  margin-top: 2rem;
  width: 100%;
  height: 60vh;
  position: relative;
  padding: 1rem;
}

.main-image {
  padding-top: 1.8rem;
  width: 100%;
  height: 80%;

}
/* Container for the image and data credit */
.main-container {
  position: relative;
  display: inline-block; /* Ensure the container's size fits the content */
  width: 100%;
}

/* Style for the data credit */
.data-credit {
  position: absolute;
  bottom: 10px; /* Adjust the vertical position as needed */
  right: 10px; /* Adjust the horizontal position as needed */
  color: white; /* Text color */
  padding: 5px 10px; /* Padding for the data credit */
}

.main-title {
    font-family: 'Bahnschrift', 'Arial', 'Helvetica', sans-serif;
    font-size: 2.5rem;;
    position: relative;
    margin-top: 3rem;
    width: 100%; 
    height: 250px;
}

@media (max-width: 767px) {
  .main-image {
    padding-top: 0.9rem;
    width: 100%;
    height: 80%;
  }
  .main-title {
      font-size: 30px; 
      height: 220px;
  }
}

/* duck */

/* Styling for the floating duck */
.floating-duck {
  position: relative;
  top: 35%;
  left: -100px; /* Start the duck off-screen on the left */
  width: 70px; /* Adjust the duck's size */
  height: 70px;
  animation: floatAnimation 10s linear infinite; /* Adjust animation duration */
  cursor: pointer;
}

.floating-duck:hover {
  animation-play-state: paused; /* Pause animation on hover */
}

/* Define the animation for the floating duck */
@keyframes floatAnimation {
  0% {
    left: -60px; 
  }
  100% {
    left: 100%; 
  }
}
.tooltip {
  font-family: 'Bahnschrift', 'Arial', 'Helvetica', sans-serif;
  font-size: 1rem;
  position: absolute;
  bottom: 100%; 
  left: 50%; 
  transform: translateX(-50%); 
  color: #E65929;
  padding: 3px;
  white-space: nowrap;
  opacity: 1;
  transition: font-size 0.3s ease, box-shadow 0.3s ease; 
}
.tooltip:hover {
  font-size: 1.1rem; 
  background: #feb;
  box-shadow: 0 0 5px #feb; 
  border-radius: 8px;
}

/* ocean */
.sky {
  height: 100px;
  overflow: hidden;
}
.ocean {
  left: 0px;
  height: 58px;
  position: absolute;
  overflow: hidden;
}

.wave {
background: url("https://static.igem.wiki/teams/4811/wiki/images/wave1.svg");
position: absolute;
width: 200%;
height: 100%;
left: 0;
animation: wave 8s -3s linear infinite;
transform: translate3d(0, 0, 0);
opacity: 0.8;
}

.wave:nth-of-type(2) {
animation: wave 18s linear reverse infinite;
opacity: 0.5;
left: 0;
}

.wave:nth-of-type(3) {
animation: wave 10s -1s linear infinite;
opacity: 0.5;
left: 0;
}

@keyframes wave {
  0% {transform: translateX(0);}
  50% {transform: translateX(-25%);}
  100% {transform: translateX(-50%);}
}

/* Main page content */
.main-content {
  position: relative;
  top: 1.7rem;
  width: 100%;
  height: 100%;
}

.text-background {
  background: linear-gradient(#3399CCf0, #000614);
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; /* Make the container a positioning context */
}


.jump-button {
  font-size: 1.5rem;
  position: absolute;
  background-color: #007BFF;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Add shadow */
  transition: background-color 0.2s ease, color 0.2s ease; /* Add transition for smoother hover effect */
}

.jump-button:hover {
  background-color: #0056b3;
  color: #cfcfcf;

}

/* Hide the text when the button is clicked */
.jump-button:active {
  color: transparent;
  text-shadow: none;
}

@media (max-width: 767px) {
  .jump-button {
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 3px;

  }
}

.video-container {
  width: 100%; /* or any desired width */
}

video {
  width: 100%;
  height: auto;  /* maintain the aspect ratio */
}

/* Page design */
.page {
  width: 100%;
  background-image: linear-gradient(#264187,#000614); 
  background-position-y: 23rem;
  margin-top: 2rem;
}

.page-header {
  background-image: linear-gradient(white, #264187);
  background-position: center;
  background-size: cover;
  position: relative;
  height: 24rem;
  margin-top: 2rem;
  text-align: center;
  display: flex; /* Use flexbox to vertically align content */
  flex-direction: column; /* Stack child elements vertically */
  justify-content: center; /* Center content vertically */
  color: white;
  width: 100%;
}
.page-header h1 {
  font-family: 'Bahnschrift', 'Arial', 'Helvetica', sans-serif;
  font-size: calc(2rem + 1.5vw);
}

.page-header .photo-credit {
  position: absolute; /* Position the photo credit absolutely within the container */
  color: #ffffffa3;
  font-style: italic;
  bottom: 10px; /* Adjust the distance from the bottom */
  right: 10px; /* Adjust the distance from the right */
  padding: 5px 10px; /* Add padding for better readability */
  font-size: 14px; /* Adjust font size as needed */
}

.page-content{
  padding-bottom: 3.5rem;
}

.page-content h1 {
  color: white;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.page-text{
  color: white;
  padding: 2rem;
  max-width: 100%;
  overflow-x: auto; 
}

.page-text img {
  width: 100%;
  max-width: 100%; 
  height: auto; 
}

.page-text h2 {
padding-top: 3rem;
padding-bottom: 2rem;
}

.page-text h1 img {
  height: 1em; 
  margin-right: 10px; 
  width: auto;
}

.page-text h3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.page-text p {
  text-align: justify;
}

.page-text a {
  color: #f0ad4e;
}
.page-text a:visited {
  color: #f0ad4e; 
}
.page-text a:hover {
  color: #f0ad4e; 
}

.page-text img.svg-img {
  background-color: white;
  padding: 1rem;
}

.page-text .album{
  border: 5px solid rgb(255, 255, 255); /* Add a white border */
  border-radius: 1rem; /* Add rounded corners */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.page-text figure {
  margin: 7% auto;
  text-align: center;
  display: block;
}
@media (max-width: 767px) {
  .page-text figure {
    margin: 4% auto;
    text-align: center;
    display: block;
  }
}
.page-text figure.square{
  width: 80%; 
  height: 300px; 
  overflow: hidden; 
  position:center; 
  margin: 3rem auto;
}

.page-text figure.small{
  width: 60%;
  margin: 5rem auto;
}
.page-text figure.square img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  top: 0; 
  left: 0;
}
.page-text figure figcaption{
    padding-top: 0.8rem;
    font-style: italic;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
    display: block;
}
.page-text figure.image-container {
  margin: 6% auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  text-align: center;
  aspect-ratio: 1/1; /* Set the aspect ratio to 1:1 for square cropping */
}

.page-text img.image {
  width: 49.5%; /* Each image takes half of the square container */
  height: 100%; /* Make the images take the full height of the container */
  object-fit: cover; /* Crop the images to fit within the square container */
  margin: 0; /* Add spacing between images */
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .page-text img.image {
    width: 100%; /* On smaller screens, make the images stack on top of each other */
    height: auto; /* Allow the images to scale proportionally on smaller screens */
  }
}

.page-text .prize {
  text-align: center;
  background-color: #212529;
  border-radius: 1rem;
  padding: 3rem;
  width: 90%;
  margin: 3rem auto; /* Center the container horizontally */
  color: #000614;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* Add a subtle box shadow */
}

.page-text .prize img {
  width: 60%;
}

.page-text .prize h1 {
  margin: 1rem;
}

@media (max-width: 767px) {
  .page-text .prize {
    padding: 1.5rem;
    width: 100%;
  }
  .page-text .prize h1 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-inline: auto;
  }
  .page-text .prize img {
    width: 80%;
  }
}

.page-text .text-container {
  background-color: #99CCFF;
  border-radius: 1rem;
  padding: 2rem;
  width: 90%;
  margin: 2rem auto; /* Center the container horizontally */
  color: #000614;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* Add a subtle box shadow */
}

.page-text .text-container figure {
  margin: 3% auto;
}

.page-text .text-container figcaption {
  font-size: 0.9rem;
  color: #010440;
}

.page-text table {
  border-collapse: collapse;
  overflow-x: auto;
  width: 100%;
  margin-bottom: 20px;
}

.page-text table th {
  background-color: #f2f2f2;
  font-weight: bold;
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  color: black;
}
.page-text table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  color: black;
}
.page-text table tbody tr:nth-child(even) {
  background-color: #fff;
}
.page-text table tbody tr:nth-child(odd) {
  background-color: #f2f2f2;
}
.page-text table tbody tr:hover {
  background-color: #ddd;
}


/* style for notebook */
#notebook {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}

#notebook td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  color: black;
  cursor: pointer; /* Change cursor to indicate clickability */
  transition: background-color 0.3s, box-shadow 0.3s, font-weight 0.3s; /* Smooth transitions for hover effects */
}

#notebook tr:nth-child(even) {
  background-color: #fff;
}

#notebook tr:nth-child(odd) {
  background-color: #f2f2f2;
}

#notebook td:hover {
  background-color: #ddd; /* Change background color on hover */
  box-shadow: 0 0 10px 2px rgba(0,0,0,0.2); /* Glow effect */
  font-weight: bold; /* Make font bold */
}


/* page text style */
.page-text ul {
  max-width: 100%; 
  overflow-x: auto;
}

.page-text ul li {
  word-wrap: break-word;
}

/* The sidebar menu */
.toc {
  position: -webkit-sticky;
  position: sticky;
  left: 3em;
  top: 6em;
  padding-top: 1em;
  padding-bottom: 1em;
  width: 14em;
  line-height: 2;
  height: 100vh; /* Set a max height for the TOC */
  overflow-y: auto; /* Add scrollbars if the TOC overflows */
  font-size: 0.9rem;
}
.toc h5 {
  padding-top: 2rem;
  padding-bottom: 0.5rem;
  color: white;

}
.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc ul ul { padding-left: 2em; }
.toc li a {
  display: inline-block;
  color: #aaa;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.toc li.visible > a {
  color: #aaa;
  -webkit-transform: translate(5px);
  transform: translate(5px);
}
.toc-marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.toc-marker path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.toc li.visible > a {
  color: white;
  transform: translate(5px); /* Remove -webkit- prefix for cross-browser compatibility */
}

@media (max-width: 992px) {
  .toc {
    position: relative;
    left: 1rem;
    top: 0rem;
    height: 100%; /* Set a max height for the TOC */
  }
}
/* figures on other pages*/
figure {
  display: flex; /* Use flexbox to make the images side by side */
}

figure img {
  width: 300px;
  height: 500px;
  margin: 0 10px 15px 0; /* Adjust margin for spacing between images */
}


/* Style page content */
.main {
  margin-left: 275px; /* Same as the width of the sidebar */
  padding: 0px 10px;
  color: white;
}
/* previous and next button */
.buttons{
  margin-left: 350px;
  margin-right: 20px;
  padding-right: 70px;
  padding-left: 70px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 20px;
  background: #68b04d;
  color: white;
  cursor: pointer;
  font-size: 15px;
  width: 300px;
  text-decoration: none;
  border-width: thick;
  border-style: solid;
  border-color: black;
  }

/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

/* Team Page */

.gallery-container {
  width: 100%;
  overflow: hidden; /* Hide overflow to create a scrolling effect */
  position: relative;
}

.gallery {
  display: flex; /* Create a horizontal layout for the images */
  transition: transform 0.3s ease-in-out; /* Add a smooth transition effect for scrolling */
}

.gallery img {
  width: 100%; /* Ensure images take up the full container width */
  max-width: 300px; /* Set a maximum width for each image */
  height: auto; /* Maintain the aspect ratio */
}

.page-header .hover-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  height: 40rem;
  width: 100%;
  transition: background-image 0.3s ease-in-out;
  background-image: url('https://static.igem.wiki/teams/4811/wiki/team/team4.jpeg');
}

 .hover-image-prize {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 40rem;
  width: 100%;
  transition: background-image 0.3s ease-in-out;
  background-image: url('https://static.igem.wiki/teams/4811/wiki/awards/celebrate2.jpg');
}

/* Media query for screens with a maximum width of 768px */
@media (max-width: 960px) {
  .page-header .hover-image {
    background-size: cover;
    background-position: top center;
    height: 25rem;
  }
}

@media (max-width: 550px) {
  .page-header .hover-image {
    background-size: cover;
    background-position: top center;
    height: 15rem;
  }
}



.team-member {
  text-align: center; 
  display: flex;
  flex-direction: column;
  align-items: center; 
  margin: 1rem;
}

.team-member p {
  margin-left: 1rem;
  margin-right: 1rem;
  text-align: justify; 
}

.team-member .image-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 20rem;
  height: 20rem;
}
@media (max-width: 767px) {
  .team-member .image-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 15rem;
    height: 15rem;
  }
}
  /* Style for circular frame */
.team-member .img-cropped {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover; /* Crop the image to fit */
    border-radius: 50%; /* Create a circular frame */
  }

/* Style for circular frame */
.team-member .img-cropped {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover; /* Crop the image to fit */
  border-radius: 50%; /* Create a circular frame */
  border: 2px solid #fff; /* Add a white border for contrast */
  transition: opacity 0.3s ease; /* Add a smooth transition effect */
}

.team-member .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s ease;
}

/* Show the overlay image on hover */
.image-container:hover .image-overlay {
  opacity: 1;
}


/* Footer Style */

.footer {
  background-color: var(--tomato-red);
  padding: 1px;
}

footer a { color: white; font-weight: bold; text-decoration: none; }
footer a:hover { color: white; text-decoration: underline; }

.biobuilders_logo {
  max-width: 200px;
}

.sponsor-container {
  display: flex;
  justify-content: space-between;
}
.sponsor-group {
  text-align: center; 
  margin-bottom: 10px; 
  justify-content: space-evenly;
}
.sponsor-group img {
  max-width: 115px;
  margin-bottom: 10px; 
  display: block;
}
.sponsor-group img[src*="DTU_sq.jpg"] {
  max-width: 70px; 
}
.sponsor-group img[src*="New_England_Biolabs_sq.jpg"] {
  max-width: 70px; 
}
@media (max-width: 767px) {
  .sponsor-group {
    flex-direction: column; 
    align-items: center; 
  }
}


/* Slide show*/
.mySlides {display: none;}
.mySlides-ng {display: none;}

/* Slideshow container */
.slideshow-container {
  max-width: 800px;
  position: relative;
  margin: auto;
}

/* Number text (1/6 etc) */
.numbertext {
  color: black;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot-ng {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 2s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/*Tables for experiment page*/
.cell-text{
  display: none;
}
.tg  {border-collapse:collapse;border-spacing:0;}
.tg td{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;
  overflow:hidden;padding:10px 5px;word-break:normal;}
.tg th{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;
  font-weight:normal;overflow:hidden;padding:10px 5px;word-break:normal;}
.tg .tg-ycr8{background-color:#ffffff;text-align:left;vertical-align:top;border-color:inherit;}
.tg .tg-lxkz{background-color:#FEECD9;border-color:inherit;text-align:left;vertical-align:top;}
.tg .tg-jcg2{background-color:#FEECD9;text-align:left;vertical-align:top;border-color:inherit;}
.tg .tg-c6of{background-color:#ffffff;border-color:inherit;text-align:left;vertical-align:top;}
.tg .tg-0lax{text-align:left;vertical-align:top;border-color:inherit;}
.tg .tg-xdti{background-color:#FCF5D1;border-color:inherit;text-align:left;vertical-align:top;}
.tg .tg-2mxx{background-color:#FCF5D1;text-align:left;vertical-align:top;border-color:inherit;}
.tg .tg-4i0c{background-color:#DDDBF0;text-align:left;vertical-align:top;border-color:inherit;}
.tg .tg-nefs{background-color:#D4F6E1;text-align:left;vertical-align:top;border-color:inherit;}
.tg .tg-ktyi{background-color:#FFF;text-align:left;vertical-align:top;border-color:inherit;}
.tg .tg-0pky{border-color:inherit;text-align:left;vertical-align:top;}
.tg .tg-rr3b{background-color:#DDDBF0;border-color:inherit;text-align:left;vertical-align:top;}
.tg .tg-nskj{background-color:#D4F6E1;border-color:inherit;text-align:left;vertical-align:top;}
.tg .tg-mq52{background-color:#D5F0AD;text-align:left;vertical-align:top;border-color:inherit;}
.tg .tg-btco{background-color:#F2BBBB;text-align:left;vertical-align:top;border-color:inherit;}
.tg .tg-f6vz{background-color:#D2B7D4;text-align:left;vertical-align:top;border-color:inherit;}
.tg .tg-6hra{background-color:#E8F9CF;border-color:inherit;text-align:left;vertical-align:top;}
.tg .tg-h0mt{background-color:#E8F9CF;text-align:left;vertical-align:top;border-color:inherit;}
.tg .tg-cly1{text-align:left;vertical-align:middle;}
.tg .tg-ghha{background-color:#FCF5D1;border-color:#000000;text-align:left;vertical-align:middle;}
.tg .tg-44gr{background-color:#FCF5D1;text-align:left;vertical-align:middle;}
.tg .tg-yptd{background-color:#DDDBF0;border-color:#000000;text-align:left;vertical-align:middle;}
.tg .tg-9eks{background-color:#DDDBF0;text-align:left;vertical-align:middle;}
.tg .tg-ajf8{background-color:#C2EDF8;text-align:left;vertical-align:middle;}
.tg .tg-2y0e{background-color:#E8F9CF;border-color:#000000;text-align:left;vertical-align:middle;}
.tg .tg-87mj{background-color:#F9DAD0;border-color:#000000;text-align:left;vertical-align:middle;}
.tg .tg-axrs{background-color:#D4F6E1;text-align:left;vertical-align:middle;}
.tg .tg-g1rt{background-color:#F6C7B9;text-align:left;vertical-align:middle;}
.tg .tg-z2ag{background-color:#F9DAD0;text-align:left;vertical-align:middle;}
.tg .tg-yk8m{background-color:#D5F0AD;text-align:left;vertical-align:middle;}
.tg .tg-5423{background-color:#E8F9CF;text-align:left;vertical-align:middle;}
.tg .tg-7kyp{background-color:#ABEFC4;text-align:left;vertical-align:middle;}
.tg .tg-ajf8{background-color:#C2EDF8;text-align:left;vertical-align:middle;}
.tg .tg-81u1{background-color:#ffffff;border-color:#000000;text-align:left;vertical-align:middle;}
.tg .tg-y0hg{background-color:#ffffff;text-align:left;vertical-align:middle;}
.tg .tg-cfuy{background-color:#0DAF49;text-align:left;vertical-align:middle;}
.tg .tg-9eks{background-color:#DDDBF0;text-align:left;vertical-align:middle;}
.tg .tg-yptd{background-color:#DDDBF0;border-color:#000000;text-align:left;vertical-align:middle;}
.tg .tg-9wuf{background-color:#EB820F;text-align:left;vertical-align:middle;}
.tg .tg-z2ag{background-color:#F9DAD0;text-align:left;vertical-align:middle;}
.tg .tg-x3ok{background-color:#F6C7B9;border-color:#000000;text-align:left;vertical-align:middle;}
.tg .tg-ijk7{background-color:#D5F0AD;border-color:#000000;text-align:left;vertical-align:middle}
.tg-djgr{background-color:#D4F6E1;border-color:#000000;text-align:left;vertical-align:middle}
.tg .tg-mol4{background-color:#F2BBBB;text-align:left;vertical-align:middle}
.tg .tg-qfs1{background-color:#D2B7D4;text-align:left;vertical-align:middle}
