
:root {
    --colourLightGrey: #efefef;
    --colourGrey: #8c8c8c;
    --colourDarkGrey:  #3a3a3a;
    --colourLightBlue: #5db6dc;
    --colourDarkerBlue: #08c;
    --colourGreen: #10c469;
    --colourWhite: white;
    --colourOrange: #2e70d2;
	--colourRed: rgb(255, 131, 30);
    --colourTest: none; /* hsl(180 10% 50% / 0.5); */
    
  }

header 
{
	background-color:#3a3a3a;
	width: 100%;
	top:0;
	padding:0px;
	text-align: center;
	z-index: 1;
	max-height: 150px;
	position: fixed; /* Fixed position - sit on top of the page */

	animation: move 1s linear infinite;
  	animation-play-state: paused;
  	animation-delay: calc(var(--scroll) * -0.5s);
	
}

a
  {
    text-decoration: none;
  }
  
p 
{
	border: none;
	margin: 0;
}

@keyframes move {
	0% { 
	  transform: translateY(0);
	  opacity: 100%;
	}
	50% {
		transform: translateY(-200px);
	}
	51% {
		opacity: 0%;
	}
  }


#header
{
	display: flex;
	align-items: flex-end;
	flex-direction: row;
	background-color: inherit;

}



#myDiv
{
	transition: 1s;
}

#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

.login
{
	float: left;
    position: absolute;
    display: flex;
    top: 20%;
    left: 10px;
    right: 10px;
    text-align: center;
    justify-content: center;
}

.card-container-login
{
	position: relative;
    display: flex;
	flex-direction: column;
	align-items: center;
    padding: 2em 4em;
    background: var(--colourLightGrey);
    margin: 0.5em;
    border-radius: 2em;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 30%); 
}


.button {

	color: var(--colourDarkGrey);
	font-size: 0.5em;
    font-weight: bold;
	margin: 0.5em;
	cursor: pointer;
}

.button:hover {
	color: var(--colourLightBlue)
}




@keyframes zoom {
  from {transform: scale(0.1)} 
  to {transform: scale(1)}
}



/* If you want the content centered horizontally and vertically */
.centered,.centeredheader {
	float: left;
	position: relative;
	top: 50%;
	left: 10px;
	right: 10px;
	text-align: center;
}

.centeredbody
{
	float: left;
	position: absolute;
	top: 20%;
	left: 10px;
	right: 10px;
	text-align: center;
}



.form-inline
{
	flex-flow: row wrap;
	align-items: center;
	text-align: center;
	width: auto;
	color: aliceblue;
	background-color: #7B7B7B;	
}

.form-inline input {
  vertical-align: middle;
  margin: 5px 10px 5px 0;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.submit
{
	border: none;
	padding: 0.5em 0;
    background: var(--colourDarkerBlue);
    border-radius: 10em;
	margin: 1em 0;
    color: white;
	font-size: 1em;
    font-weight: bolder;
}

.submit:hover
{
	background: rgba(0, 136, 204, 0.655);
	cursor: pointer;
}

.input
{
	margin: 1em 0 0 0;
    width: 15em;
}

.input-form
{
	display: flex;
	flex-direction: column;
}


.left {
	float: left;
  	text-align: left;
  	padding-left: 50px;

}

.right {
	float: right;
    text-align: right;
    margin: 10px;

}



/* MAP I FRAME */

  * {
    box-sizing: border-box;
  }

.container {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 1000px;
  padding-top: 0px; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
  padding-right: 100;
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height:100%;
	padding-right: 20%;
	border: none;
}

.map
{
	width:55%;
    margin-right:2%;
	
    float: left;
	overflow: auto;
	
}
.map iframe{

   	width:100%;
	height: 500px;
	border: none;
}

.temperatureContainer {
	position: relative;
	width:42%;
    float: left;
	height: auto;
}

.temperaturemap {

  	position: absolute;
	size: 100px;
	background-color: #17314e;
	z-index: 1;
}
.box{
	position: absolute;
	margin: 32px 73px;
    padding: 185px 247px;
	background: rgb(255, 107, 107);
	z-index: 1;
	opacity: 1%;
	box-sizing: border-box;
  }
  
  .blip{
	position: absolute;
	height: 25px;
	width: 25px;
	background-color: red;
	border-radius: 57%;
	animation: move 3000ms infinite ease-in-out;
	
	@keyframes move 
	{
	  0% 
	  {
		offset-distance: 0%;
	  }
	  100% 
	  {
		offset-distance: 100%;
	  }
	}
  }
  
  .line {
		visibility: hidden;
		position: fixed;
		background-color: black;
		width: 2px; 
		height: auto;
	  	margin: 0px 0px 0px 0px;
		z-index: 2;
		color: red;
  }
  
  .cText {
	position: relative;
	margin-left: 100px;
  }

/* Dropdown Button */
.dropbtn {
  background-color: #3a3a3a;
  color: white;
  padding: 1em;
  font-size: 0.75rem;
  border-radius: 0.75em 0.75em 0 0 ;
  border: none;
  width: 100%;
  
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  width: 10rem;;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #3a3a3a;
  width: 10rem;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	border-radius: 0 0 0.75em 0.75em;
  z-index: 1;
  font-size: 0.7rem;

}

/* Links inside the dropdown */
.dropdown-content a {
  color: rgb(255, 255, 255);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: 0.7rem;

}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #17314e;
  border-radius: 10px;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #264466;}


#StrengthDisp
{
  visibility: visible;
  font-size: 0.75em;
  font-weight: 100;
  color: white;
	margin: 1em 0;
  padding: 0.5em;
  opacity: 0.75;
  border-radius: 10em;

}

#inputForm
{
	display: flex;
	align-items: center;
	flex-direction: column;
	align-items: stretch;

}

.flashes
{

	display: block;
	font-size: 0.75em;
  font-weight: 100;
  color: var(--colourWhite);
  background: var(--colourRed);
	margin: 1em 0;
  padding: 0.5em;
  opacity: 0.75;
  border-radius: 5em;
  overflow: hidden;
  max-width: 25em;
	
}




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

  	#header
	  {
		  flex-direction: column;
		  align-items: center;
	  }
	
	.centeredheader
	{
		position:relative;
		text-align: center;
	}
	
	.left
	{
		float: none;
  		text-align: center;
  		padding-left: 0px;
	}

	
	
}





