@charset "utf-8";
/* CSS Document */
/* ----- v20251016 -----*/
/* ----- 0.- General declarations -----*/
* {
	margin: 0;
	padding: 0;
	border: none;
	box-sizing: border-box;
}

html, body {
	font-family: "Segoe UI", Arial, Tahoma, Geneva, sans-serif;
	color: #000;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	background-color:#222;
/*	background-color:#FFF;*/
/*	background-image:url(background.jpg);
	background-repeat:no-repeat;
	background-position:top;
	background-attachment:scrol;*/
}
/* ----- 1.- Header/Logo -----*/
.header {
	display: grid;
  	grid-template-columns: auto auto;
	background-color: #FAFAFA;
	padding: 10px;
}

#logoContainer {
	justify-self:left;
}
#userContainer {
	justify-self:right;
}

.logo {
	text-align: left;
	font-family: "Segoe UI", Arial, Tahoma, Geneva, sans-serif;
}
.subLogo {
	text-align: left;
	font-family: "Segoe UI", Arial, Tahoma, Geneva, sans-serif;
	font-size: 10px;
	letter-spacing:1px;
	color: #04AA6D;
	padding:0px;
}
.userName {
	text-align:right;
	font-family: "Segoe UI", Arial, Tahoma, Geneva, sans-serif;
	color:#666;
}
.userEmail {
	text-align:right;
	font-family: "Segoe UI", Arial, Tahoma, Geneva, sans-serif;
	font-size: 10px;
	letter-spacing:1px;
	color: #04AA6D;
	padding:0px;
}
.userOrg {
	text-align:right;
	font-family: "Segoe UI", Arial, Tahoma, Geneva, sans-serif;
	font-size: 10px;
	letter-spacing:1px;
	color:#666;
	padding:0px;
}

/*@media screen and (max-width: 600px) {
  .logo {
	  text-align: center;
  }
  .subLogo {
	  text-align: center;
	  padding: 0px;
  } 
}*/

/* ----- 2.- Navigation -----*/
.topnav {
	overflow: hidden;
	background-color: #222;
	position: sticky;
	top: 0;
}

.topnav a {
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
}

.activeNav {
	background-color:#04AA6D;
	color: white;
}

.topnav .icon {
	display: none;
}

#loginBtn {
	float:right;	
}

.dropdown {
	float: left;
	overflow: hidden;
}

.dropdown .dropbtn {
	font-size: 17px;    
	border: none;
	outline: none;
	color: white;
	padding: 14px 16px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

.dropdown-content a {
	float: none;
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
	background-color: #555;
	color: white;
}

.dropdown-content a:hover {
	background-color: #ddd;
	color: black;
}

.dropdown:hover .dropdown-content {
	display: block;
}

@media screen and (max-width: 800px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
  	display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
#loginBtn {
	float:none;	
}
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}


/* ----- 3.- Central Panel -----*/
/* Container for flexboxes */
.row {
	background-color: #FAFAFA;
	display: -webkit-flex;
	display: flex;
}

/* Create three unequal columns that sits next to each other */
.column {
/*	padding: 10px;*/
/*  min-height: 600px;  Should be removed. Only for demonstration */
}

/* Left and right column */
.column.side {
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

/* Middle column */
.column.central {
	-webkit-flex: 4;
	-ms-flex: 4;
	flex: 4;
	padding:10px;
}
.container1 {
    display: flex;
    flex-direction: row;
	background-color: #FAFAFA;
}
.container2 {
    display: flex;
    flex-direction: row;
	background-color: #FAFAFA;
}
.container3 {
    display: flex;
    flex-direction: row;
	background-color: #FAFAFA;
}
.card {
	background-color: #f1f1f1;
	width: 100%;
	margin: 10px;
	padding: 10px;
	border: 1px solid #CCC;
}
.cardTitle {
	padding:10px 0px 0px 0px;
}
.cardTxtUp {
	padding:20px 0px 20px 0px;
}
.cardTxtBtn {
	text-align:center;
}

.card button {
	font-family: "Segoe UI", Arial, Tahoma, Geneva, sans-serif;
	font-size: 16px;
	letter-spacing:1px;
	cursor:pointer;
	text-decoration: none;
	text-align:center;
	color: #FFF;
	border:2px solid #04AA6D;
	border-radius: 4px;
	background-color: #04AA6D;
	padding: 10px;
/*	margin: 0px 50%;*/
}

.card button:hover {
	color: #04AA6D;
	background-color: #f1f1f1;
}

.cardTxtDown {
	padding:20px 0px 20px 0px;
	font-size: 12px;
}

.rssContainer { /* RSS */
	background-color:#E9E9E9;
	padding:5px;
	margin:20px 5px 5px 5px;
	overflow-x: hidden; /* Hide horizontal scrollbar */
    overflow-y: scroll; /* Add vertical scrollbar */
	min-height:200px;
	max-height:230px;
	max-width:280px;
}

.feed-title a {
	text-decoration:none;
	font-size: 12px;
	font-weight:bold;
	color:#333;
}
.feed-title a:hover {
	color: #04AA6D;
}

.feed-date {
	font-size: 10px;
	color:#666;
}

.feed-item-image {
  max-width: 100%;
  height: auto;
}

.feed-description {
	font-size: 10px;
	color:#666;
}
.feed-description a{
	text-decoration:none;
	font-size: 10px;
	color:#666;
}
.feed-description a:hover {
	color: #04AA6D;
}





.linksContainer { /* Usefull links */
	background-color:#E9E9E9;
	padding:5px;
	margin:20px 5px 5px 5px;
	overflow-x: hidden; /* Hide horizontal scrollbar */
    overflow-y: scroll; /* Add vertical scrollbar */
	min-height:200px;
	max-height:230px;
}
.linksContainer ul {
	list-style-type: none;
	padding:0px;
	margin:0px;
}

.linksContainer a {
	text-decoration:none;
	font-size: 12px;
	color:#666;
}
.linksContainer a:hover {
	color: #04AA6D;
}






/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Add a z-index if needed */
  left: 44%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}



#advertisement_left_container {
	float:left;
	width:160px;
	height::600px;
	margin:10px 10px 10px 0px;
}
#advertisement_right_container {
	float:right;
	width:160px;
	height:600px;
	margin:10px 0px 10px 10px;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 900px) {
  #advertisement_left_container {
	display:none;
  }
  #advertisement_right_container {
	display:none;
  }
  .row {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .container1 {
    flex-direction: column;
  }
  .container2 {
    flex-direction: column;
  }
  .container3 {
    flex-direction: column;
  }
  .card {
	width: 96%;
  }
  .linksContainer a {
	font-size: 14px;
  }
  
  .rssContainer { /* RSS */
	max-width:100%;
  }

}



/* ----- 4.- Footer -----*/
.footer{
	background-color:#222;
}
.footerNav {
	color:#AAA;
	text-align: center;
/*  font-family: "Segoe UI", Arial, Tahoma, Geneva, sans-serif;*/
	font-size: 14px;
	text-decoration: none;
	padding: 20px 10px 10px 10px;
}

.footerNav a{
	text-decoration: none;
	color:#AAA;
	letter-spacing:1px;
}

.footerNav a:hover{
	color: #04AA6D;
}

.allRights {
/*	color:#FFF;*/
	color: #04AA6D;
	text-align: center;
/*  font-family: "Segoe UI", Arial, Tahoma, Geneva, sans-serif;*/
	font-size: 12px;
	padding: 10px;
}

