@charset "utf-8";
/* CSS Document */


ul.no-bullets {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.fontsize_10 {
  font-size: 10px
}

div:target{
    color: black;
    border: 1px solid red;
} 

/* Background colors */
body {
	background-color: #FAFAFA;
}

.container-lightblue {
	background-color: #C7EEFF;
}

.container-white {
	background-color: #FAFAFA;
}

.containerlayout {
	/*background: #fff;*/
	padding-top: 4px;
  margin: 6px 100px 2px 100px; 
	/*color: #000066;*/
	border: thin none #0FF;
}


.container-blue {
	background-color: #C7EEFF;
}

.container-black {
	background-color: #1D242B;
}

.border_borderradius6_blue {
	border: double 5px #000066;
	border-radius: 6px;
}
.border_borderradius_thin_blue {
	border: solid 1px #000066;
	border-radius: 6px;
}
/* Border color */
.border-blue {
	border-style: solid;
  	border-color: #C7EEFF;
}

/* EVERYTHING NAVBAR */

.navbar {
	background-color: #1D242B;
}

/*@media all and (min-width: 992px) { */
  @media all {
.dropdown-menu li {
      position: relative;
    }

 .dropdown-menu .dropdown-submenu {
      display: none;
      position: relative;
      left: 50px;
      top: -7px;
    }
    
  .dropdown-menu .dropdown-submenu-left {
      right: 50%;
      left: auto;
    }
    
 .dropdown-menu>li:hover>.dropdown-submenu {
      display: block;
    }
}
/* ============ small devices ============ */
@media (max-width: 991px) {
  .dropdown-menu .dropdown-menu{
      margin-left:0.7rem; margin-right:0.7rem; margin-bottom: .5rem;
  }
}	

 /*@media (min-width: 576px) {
      .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
      }
    }*/


/* END EVERYTHING NAVBAR */


$("#"+location.hash).css('box-shadow', '0 5px 5px #08c1c6');

/* This is the table in the hypothalamus page */
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}
/* END the table in the hypothalamus page */

/* Images */
.image-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.div_content_center {
   display: flex;
   flex-direction: column;
   align-items: center;
}


/* Card */
.card {
	height: 450px;
}

/* Text */
.text-end {
	text-align: right;
}

.text-grey {
	color: #FAFAFA;
}


/* Link Reference */

a.text-reference:hover {
	color: #0d6efd;
}

a.text-reference:active {
	color: #0d6efd;
}

/* Link Reference Grey */
a.text-reference-grey:link {
	color: #FAFAFA;
}

a.text-reference-grey:visited {
	color: #FAFAFA;
}

a.text-reference-grey:hover {
	color: #0d6efd;
}

a.text-reference-grey:active {
	color: #0d6efd;
}


/* link */
a:link {
  	color: black;
	text-decoration: none;
}

/* visited link */
a:visited {
  	color: black;
	text-decoration: none;
}

/* mouse over link */
a:hover {
  	color: black;
	opacity: 0.7;
}

/* selected link */
a:active {
  	color: black;
	text-decoration: none;
}


/* Buttons */
.btn-right {
	float: right;
}




/* Overlay in modal */
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
}

.container:hover .overlay {
  opacity: 1;
}

.image-overlay {
  display: block;
  width: 100%;
  height: auto;
}

.container-overlay {
  position: relative;
}


/* Zoom box */
* {box-sizing: border-box;}

.img-zoom-container {
  position: relative;
}

.img-zoom-lens {
  position: absolute;
  border: 1px solid #1D242B;
  /*set the size of the lens:*/
  width: 45px;
  height: 40px;
}

.img-zoom-result {
  border: 1px solid #1D242B;
  /*set the size of the result div:*/
  width: 500px;
  height: 400px;
}

/* Hover in button animated */
.buttonanimate {
  border-radius: 4px;
  background-color: #f4511e;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 28px;
  padding: 20px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.buttonanimate span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.buttonanimate span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.buttonanimate:hover span {
  padding-right: 25px;
}

.buttonanimate:hover span:after {
  opacity: 1;
  right: 0;
}

