@charset "utf-8";
/* CSS Document */

.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;
}


.navbar {
	background-color: #1D242B;
}


/* Border color */
.border-blue {
	border-style: solid;
  	border-color: #C7EEFF;
}


$("#"+location.hash).css('box-shadow', '0 5px 5px #08c1c6');


/* 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;
}
