/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */

main > .container {
  padding: 60px 15px 0;
}

.footer {
  background-color: transparent;
}

.footer > .container {
  padding-right: 15px;
  padding-left: 15px;
}

code {
  font-size: 80%;
}

* {
    font-family: Roboto, sans-serif;
}

body {
    padding-top: 80px;
	background: url(img/bg.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top-left;
}

.navbar-brand {
    line-height: 50px;
}

.navbar-dark {
    background-color: #ff8800;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.6);
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.85);
}

.dropdown-menu {
    background-color: #006ab3;
    border-color: #ffffff;
}

.dropdown-item {
    color: #333;
}

.dropdown-item:focus, .dropdown-item:hover {
    background-color: #1c84cc;
}

.text-content {
    background-color: #ffe1bf;
    min-width: 95%;
    padding: 0.5rem 1rem;
}

#cookie-popup { 
  text-align: justify; 
  background: #5d79a3;
  position: fixed;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  z-index: 9999;
  font-size:14px; 
  padding: 20px;
  box-shadow: 2px 2px #000000;
  max-width: 75%;
  border-radius: 6px 13px 11px 17px;
  }
 
#cookie-popup.hidden {
  display: none;
}



div.gallery ul {
	list-style-type: none;
	margin-left: 3px;
}

/* animation */
div.gallery ul li, div.gallery li img {
	-webkit-transition: all 0.2s ease-in-out;
  	-moz-transition: all 0.2s ease-in-out;
  	-o-transition: all 0.2s ease-in-out;
  	transition: all 0.2s ease-in-out;
}

div.gallery ul li {
	position: relative;
	float: left;
	width: 110px;
	height: 110px;
	margin: 3px;
	padding: 3px;
	z-index: 0;
}

/* Make sure z-index is higher on hover */
/* Ensure that hover image overlapped the others */
div.gallery ul li:hover {
	z-index: 5;
}

/* Image is position nicely under li */
div.gallery ul li img {
	position: absolute;
	left: 0;
	top: 0;
	border: 1px solid #dddddd;
	padding: 3px;
	width: 110px;
	height: auto;
	background: #f0f0f0;
}

div.gallery ul li img:hover {
	width: 300px;
	height: auto;
	margin-top: -55px;
	margin-left: -55px;
	top: -35%;
	left: -35%;
	position: absolute;
}

.headerIMG {
  max-width: 100%;
  height: auto;
  max-height: 90px;
  vertical-align: middle;
}

textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	width: 98%;
	margin-left: auto;
	margin-right: auto;
}

.imagePreview {
 transition: transform 0.2s;
}

.imagePreview:hover {
 transform: scale(2.5, 2.5);
}

.buttonIMG { width: auto; height: 100%; }

@media (max-width: 768px) {
  .weKnowAboutMobile {
    display: block;
  }
  .imagePreview {width: 60px !important; height: auto !important;}
  .resultImage { width: 335px !important; height: auto !important; }
  .buttonIMG { width: 50%; height: auto;}
}

@media (min-width: 768px) {
  .weKnowAboutMobile {
    display: none;
  }
}

input { 
  font-family: 'Roboto Condensed', sans-serif;
  background: #442897; 
  color: white;
  padding: 2px; 
  font-size: 34px;
  box-shadow: 2px 2px #000; 
  border: thin black solid;
  display: inline;
  text-align: center;
  }

button { 
  font-family: 'Roboto Condensed', sans-serif;
  background: #442897; 
  color: white;
  font-size: 18px;
  font-weight: bold;
  width: 450px;
  height: 55px;
  padding: 2px; 
  box-shadow: 2px 2px #000; 
  border: thin black solid;
  display: inline;
  margin-right: 4px;}
  
  .copyResultToClipBoard { display: none; }

#splashscreen {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.95); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}

#splashText {
	margin-left: 265px;
	margin-top: 150px;
	padding: 10px;
    font-size: 16px;
    color: white;
}

  a.button { 
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 28px;
  background: #442897; 
  color: white;
  width: 150px;
  padding: 2px; 
  box-shadow: 2px 2px #000; 
  display: inline;
  float: left;
  margin-right: 10px;
  text-align: center; 
  text-decoration: none;}

a.button:hover {  
  box-shadow: 2px 2px #fff; 
  }