
html {zoom: 100%;}

body {
  padding-top: 56px;
}

.left-aligned {
  margin-left: auto;
}

.bg-dark {
  background-color: #343a40 !important;
}

.bg-hero {
  background-color: #7952b3;
}

.top-menue {
  color: #000000;
}

.subtitle_main{
  color: #343a40;
}

/* 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
}

/* footer */
footer a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

footer a:hover {
  color: white;
  text-decoration: underline;
}




.custom_highlight_headings{
  background-color: yellow;
  color: #000000;
  font-weight: bold;
  display: block;
  width: max-content;
}

.yellow_high{
  background-color: yellow;
  color: #000000;
  font-weight: bold;
}


.custom_highlight_headings:hover{
  background-color: yellow;
  color: #000000;
  font-weight: bold;
  display: block;
  width: max-content;
  text-decoration: none;
}



.custom-link{
  color: #000000;
  text-decoration: underline;
}

.custom-link:hover {
  background-color: yellow;
  color: #000000;
  text-decoration: none;
} 


@font-face {
  font-family: "Karla";
  src: url("https://static.igem.wiki/teams/4216/wiki/karla-italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Karla";
  src: url("https://static.igem.wiki/teams/4216/wiki/karla-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Karla";
  src: url("https://static.igem.wiki/teams/4216/wiki/karla-bold.ttf") format("truetype");
  font-weight:bold;
  font-style: normal;
}

i{
  font-family: "Karla";
  font-style: italic;
}
b{
  font-family: "Karla";
  font-weight: bold;
}
body {
  font-family: "Karla";
}
*{
  font-family: "Karla", Times, serif;
}

h1 {
  font-family: "Karla", Helvetica, sans-serif;
  font-size: 70;
  font-weight: bolder;
}

#my-row {
  display: table;
  height: 20%;
  width: 80%;
  margin: 0;
}

.right-aligned {
  text-align: right;
}


.home-des {
  margin-top: 150;
  color: #d9534f;
}

.test {
  background-color: #7952b3;
}

.border-test {
  background-color: #d9534f;
  /* background-color: aquamarine; */
  height: 2px;
}
.spacer-test {
  background-color: #ffffff;
  /* background-color: aquamarine; */
  height: 2px;
}

.border-test2 {
  background-color: grey;
  height: 2px;
}

.border-test3 {
  background-color: grey;
  height: 1px;
}

.input{
  color: #5bc0de;
}




.screening{
  color:#6ba7a8;
}

.output{
  color: #d9534f;
}


.induction {
  color: #d9534f;
  font-weight: bold;
}

.repression {
  color: #5bc0de;
  font-weight: bold;
}

/* CUSTUM TABLES */
.btn.btn-secondary {
  color: #fff;
  border-color: #8bbabb;
  background: #8bbabb;
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
  border-color: #6ba7a8 !important;
  background: #6ba7a8 !important;
}

.test {
  color: #7952b3;
  color: #d2691e;
}

.legend{
  text-align: center;
  text-decoration: underline;
  color: grey;
}


/* ZOOM ON CLICK */
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  display: block;
  margin-left: auto;
  margin-right: auto
}

#myImg:hover {
  opacity: 0.7;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 99;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  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.9);
  /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 200%;
  max-width: 200%;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1)
  }

  to {
    -webkit-transform: scale(2)
  }
}

@keyframes zoom {
  from {
    transform: scale(0.4)
  }

  to {
    transform: scale(1)
  }
}

@-webkit-keyframes zoom-out {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(0)
  }
}

@keyframes zoom-out {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(0)
  }
}

/* Add Animation */
.modal-content,
#caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

.out {
  animation-name: zoom-out;
  animation-duration: 0.6s;
}


/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
  .modal-content {
    width: 200%;
  }
}

.pDuets {

  width: 100%;
  height: auto;

}