@charset "UTF-8";

*, *::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*this is a comment*/

/*so css structure is: 

1. normal html tags = name of tag (a, p, div, etc.) 
2. classes are identified using .notation 
3. ids are identified using #idName notation 

And that is also the priority (tag, class, id) of specificity for how they get displayed 
...perhaps why it is called Cascading Style Sheets?



userID {
	position: absolute;
	left:-2000px;
	display:none; 
	visibility:hidden;
}

*/

a {
    background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:1;
	color: black;
	font-family:"Helvetica";
	font-size:14px;
	font-weight:300;
	line-height:20px;
	margin:0;
	padding:1px 4px 0;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
	
}

/* CSS styles */
.marquee-container {
    position: relative;
    width: 100%;
    height: 40px; /* Adjust the height to fit your thumbnails */
    overflow: hidden;
}

.marquee-left, .marquee-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation-duration: 100s;
    animation-iteration-count: infinite;
}

.marquee-left {
    animation-name: marquee-left;
}

.marquee-right {
    animation-name: marquee-right;
}

@keyframes marquee-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes marquee-right {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}

button{
	margin: 5px;
	line-height:20px; 
    text-align: center;
    background-color: #007bff;
	color: #fff; 
	border: none; 
	padding: 2px 4 px; 
	border-radius: 5px; 
	font-size: 12px; 
	cursor: pointer; 
	outline: none;
	transition: background-color .5s ease;
}

form {
	width: 100%;
	margin: auto;
	max-width: 600px; 
	display: flex; 
	flex-flow: row nowrap; 
	justify-content: center; 
	gap: .25rem;
}

form{
	display: flex; 
	justify-content: center; 
	align-items: center;
	margin-bottom: 2px;
}

input {
	flex-grow: 1; 
	max-width: calc(80% - .25rem);
}

form input[type="submit"] {
	background-color: #007bff;
	color: #fff; 
	border: none; 
	padding: 1px 2px; 
	border-radius: 5px; 
	font-size: 12px; 
	cursor: pointer; 
	outline: none;
	transition: background-color .5s ease;
}


option {
  width: 200px; 
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 

.icon {
	width: 100px; 
	height: 100px; 
	background-size: contain; 
	background-repeat: no-repeat; 
	background-position: center center; 
} 

/*** this is a Leaflet requirement
#map { height: 180px; }

It works now so one of the below is in charge .. I do not understand the #map versus .map difference
but it does not matter yet since it all works perfectly as is!!! It looks like #map is redundant. 

****/

#map { height: 180px; }

.map {
  width: 270px;
  height: 180px auto;
  align-items: center; 
  transition: height 500ms ease-in-out;
}

/***pretty sure these are not map variables and probably not used anywhere****/
.x {
    top: 0;
    left: 0;
}
.y {
    top: 10px;
    left: 10px
}
.z {
    top: 20px;
    left: 20px;
}

.wrapingimage, .icon  
{  
float: left;   
margin: 30px 12px 3px 4px;   
border: 2px solid blue;  
}   

/* Underlay */
.underlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .5);
  z-index: 4;
  opacity: 0;
  transition: opacity 700ms ease-in-out;
  pointer-events: none;
}

.underlay.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}



/* Modal */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 500ms ease-in-out, opacity 500ms ease-in-out;
  border: 1px solid black;
  border-radius: 10px;
  z-index: 5;
  background-color: white;
  width: 400px;
  opacity: 0;
}

.modal.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}




.modal-header {
	padding: 10px 15px; 
	display: flex;
	justify-content: space-between;
	align-items: center; 
	border-bottom: 1px solid black;
}

.modal-body {
	padding: 10px 15px;
}

.modal-header {
	cursor: pointer; 
	border: none; 
	outline: none; 
	background: none;
	font-size: 1.25rem; 
	font-weight: bold;
}

.modal-backdrop {
   background-color: yellow;
   z-index: 1;
}


.close-button {
	cursor: pointer; 
	border: none; 
	outline: none; 
	background: none;
	color: red; 
	font-size: 1.55rem; 
	font-weight: bold;
}

.title {
	font-size: 1.25rem; 
	font-weight: bold;
}





.singlespace {
	line-height:20px;
}


.breadcrumb, .find {
	display: block;
	margin: auto;
	margin-left:10px;
	margin-right:auto;
	width: 90%;
	border: 1px solid gray;
	padding: 10px;
	text-align: left; 
	text-overflow:ellipsis;
	line-height:20px;
}


.about {
	display: block;
	margin: auto;
	margin-left:auto;
	margin-right:auto;
	width: 90%;
	border: 1px solid gray;
	padding: 10px;
	text-align: left;
	line-height: 20px;
	
}

.menu_top, .feature {
	margin: auto;
	margin-left:auto;
	margin-right:auto;
	width: 90%;
	padding: 10px;
	text-align: center;
	line-height: 20px;
	
}

.search {
	background-color:#fff; 
	box-shadow: 0 0 20px rgba(0,0,0,.2); 
	border-radius: 3px;
	display: block;
	margin: 0 auto;
	margin-left:auto;
	margin-right:auto;
	margin-top: 5px; 
	width: 90%;
	border: 1px solid gray;
	padding: 10px;
	line-height: 20px;
	text-align: left; 
	text-overflow:ellipsis;
}

.rssText {
	text-align: left;
}

.container, .content, .menu, .footer, .title{
	
	background-color:#fff; 
	box-shadow: 0 0 20px rgba(0,0,0,.2); 
	border-radius: 5px;
	display: float;
	margin: 0 auto;
	margin-left:auto;
	margin-right:auto;
	margin-top: 10px; 
	width: 90%;
	border: 1px solid gray;
	padding: 10px;
	line-height: 20px;
	text-align: center; 
	text-overflow:ellipsis;
	font-family:"Helvetica";
	
}


.login {
	width: 400;
	font-size: 7px;
} 
.loginTable {
	display: center;
	justify-content: center; 
}


.input {
	display: left; 
	justify-content: left;
}


.temperature {
	font-size: 48px; 
	font-weight: bold; 
	margin: 20px 0; 
}

.weatherdescription {
	font-size: 24px; 
	margin-bottom: 20px; 
}

.weatherdetail {
	display: flex; 
	justify-content: center; 
	align-items: center; 
	flex-wrap: wrap;
}

.weatherdetail > div {
	padding: 10px; 
	background-color: #f1f1f1; 
	margin: 5px; 
	flex: 1; 
	border-radius: 5px; 
	text-align: center; 
	min-height: 45px; 
}

.ul, .ul2 {
	justify-content: left;
	align-items: left;
	line-height:20px;
	}

.ul3 {
	justify-content: right;
	align-items: right;
	line-height:20px;
}

.table {
	display: center;
	justify-content: center; 
	width: 90%;
}

.tr {
	line-height:1px;
}
.td {
	justify-content: left;
	align-items: left, top;
	text-align: left;
	text-overflow:ellipsis;
	vertical-align:top;
  	margin-left: 1em;
  	margin: 4px;
	padding: 4px;
	line-height:8px;
	
}

.td2 {
	justify-content: center;
	align-items: center, top;
	vertical-align:top;
	line-height:20px;
}

.td3 {
	justify-content: right;
	align-items: right, top;
	vertical-align:top;
	text-align: right;
  	margin-right: 1em;
  	line-height:20px;
}


.td, .td2, .td3 {
	align-items: top;
	vertical-align:top;
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#666;
	font-family:"Helvetica";
	font-size:14px;
	font-weight:300;
	line-height:16px;
	margin:0;
	text-decoration:none;
	text-shadow:none;
	text-overflow:ellipsis;
}

.th {
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:1px;
	border-radius: 5px;
	color:#279;
	font-family:"Helvetica";
	font-size:14px;
	font-weight:600;
	line-height:30px;
	margin:1;
	padding:1px;
	text-decoration:none;
	text-shadow:none;
	text-overflow:ellipsis; 
	white-space: nowrap;
}

.text, .title, .ul, .ul2, .ul3
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#666;
	font-family:"Helvetica";
	font-size:14px;
	font-weight:300;
	line-height:20px;
	margin:0;
	padding:1px 4px 0;
	text-decoration:none;
	text-shadow:none;
	text-overflow:ellipsis;
}


.h3 {
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#373;
	font-family:"Helvetica";
	font-size:18px;
	font-weight:300;
	line-height:20px;
	margin:0;
	padding:1px 4px 0;
	text-decoration:none;
	text-shadow:none;
	margin-top: 0em;
	margin-bottom: -1em;
}


/* I like this card style design borrowed from USJ journal

Put this in a .css file or inside <style> in the JSP */

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 20px auto;
  max-width: 1100px;
}


.resource-card {
  background: white;
  text-align: center;
  padding: 10px;
  border: 2px solid gray;
  border-radius: 12px;
  font-size: 0.9em;
  color: black;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.resource-card video,
.resource-card audio {
  max-width: 100%;
  border-radius: 8px;
  border: 2px solid gray;
}

.caption {
  margin-top: 6px;
  font-size: 0.9em;
  color: black;
}

.resource-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid gray;
}

.file-ext {
  font-size: 0.8em;
  color: #666;
  margin-left: 4px;
  text-transform: uppercase;
}


.coiner{
	background-color: white; 
	width: 100px;
	padding: 5px;
	position: relative;
	transform: translate(-50%, -50%); 
	top: 50%;
	left: 50%;
	box-shadow: 15px 30px 35px rgba(0,0,0,0,1);
	border-radius: 10px;
	-webkit-perspective: 300px;
	perspective: 300px;
	
}
.stats{
	text-align: right;
	color: #101020; 
	font-weight: 500; 
	line-height: 25px;
}

.coin{
	height: 45px; 
	width: 45px; 
	position: relative;
	margin: 2px auto; 
	-webkit-transform-style: preserve-3d; 
			transform-style: preserve-3d;
	animation: spin-heads 300s forwards;
}

.coin img{
	width: 40px;
}

.heads, .tails {
	position: absolute;
	width: 100%;
	height: 100%; 
	-webkit-backface-visibility: hidden; 
			backface-visibility: hidden;
}

.tails{
	transform: rotateX(180deg);
	
}

@keyframes spin-tails{
	0%{
		transform: rotateX(0);
	}
	100%{ 
		transform: rotateX(1980deg);
	}
}

@keyframes spin-heads{
	0%{
		transform: rotateX(0);
	}
	100%{ 
	
		transform: rotateX(2160deg);
	}
}





.hide-me, .hidden 
{
display:none; 
visibility:hidden;

}

.show-me{
	display:true;
	visibility:true;
	
}















