

.split{ height:100%; width:50%;position:fixed;z-index:1;top:0;overflow-x:hidden;padding-top:20px;}


body {
  background-color:rgb(143, 130, 130);    /* Color for areas outside container */
  margin: 0;                   /* Remove default margin */
  padding: 0;
}


.map {
  width: 100%;              /* Full width on smaller screens */
  max-width: 1440px;        /* Maximum width for large screens */
  margin: 0 auto;          /* Centers the container */
  padding: 0 0px;         /* Optional: adds some padding on sides */
}



.map { 
  background-color: rgb(208, 196, 196);
}
//rgb(208,196,196)
 Add a black background color to the top navigation
.topnav {
  background-color:#333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color:white;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: yellow;
  color: white;
}

 
.sidenav {
  height: 100%;
  width: 110px;
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  background-color: #333;
  overflow-x: hidden;
  margin-top:82px;
  padding-top: 120px;
  margin-right:10px;
  opacity:0.5;
}

.sidenav a {
  padding: 6px 16px 20px 30px;
  text-decoration: none;
  font-size: 15px;
  color: #818181; 
  display: block;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.main {
  margin-left: 200px; /* Same as the width of the sidenav */
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}


/*.topnav {
  padding-bottom: 26px;
  background-color:#666;
}*/

  /* Style the buttons */
/*.btn {
  border: none;
  outline: none;
  padding: 12px 10px;
  background-color: white;
  cursor: pointer;
}*/

/* Style the active class (and buttons on mouse-over) */
/*.active, .btn:hover {
  background-color: #666;
  color: white;
}*/


/*Dropdown Button */
/*.dropbtn {
  background-color: rgb(99, 88, 88);
  color: rgb(99, 88, 88);
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}*/

/* Dropdown button on hover & focus */
/*.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;;
}*/
/**/

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

/* Dropdown Content (Hidden by Default) */
/*.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}*/

/* Links inside the dropdown */
/*.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}*/

/* Change color of dropdown links on hover */
/*.dropdown-content a:hover {background-color: #ddd;}*/

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
/*.show {display:block;}*/
/*text {

    font-family:reddit-sans ;
    font-weight: 10;
    font-size: 10px;
    fill: red;
    text-decoration: none;
}*/

 

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}


* text {
    font-family:"roboto", sans-serif ;
    font-weight: 400;
     



}

.rect1 {

    width: 100px;
    height:300px;
}

.gauge {

    width: 600px;
    height:300px;


}

.column {
    float: left;
    margin-top:20px;
    width:25%;
  }
  
  /* Left and right column */
  .column side {
    float: left;
    margin-left:0;
    width: 25%;
}

*{ font-family:"roboto", sans-serif ;


  
  


}

  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
  }
  
  li {
    float: left;
  }
  
  li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-family:"roboto", sans-serif ;
    font-weight: 10;
  }
  
  li a:hover:not(.active) {
    background-color: rgb(154, 190, 25);}
  
    
  .active {
    background-color:green;
  }

  li text {
    font-family:"roboto", sans-serif ;
    font-weight: 10;
     
}

ul {
  position: fixed;
  top: 0;
  width: 100%;
}

/*.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color:white;
  min-width: 16px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.text {
  background-color:blue;
  
}*/

/** { box-sizing: border-box; }
$duration: 30s;

@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.ticker-wrap {
  
  position: fixed;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  height: 4rem;
  background-color: rgba(#000, 0.9); 
  padding-left: 100%;
  box-sizing: content-box;

  .ticker {

    display: inline-block;
    height: 4rem;
    line-height: 4rem;  
    white-space: nowrap;
    padding-right: 100%;
    box-sizing: content-box;

    -webkit-animation-iteration-count: infinite; 
            animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
   -webkit-animation-name: ticker;
           animation-name: ticker;
    -webkit-animation-duration: $duration;
            animation-duration: $duration;

    &__item {

      display: inline-block;

      padding: 0 2rem;
      font-size: 2rem;
      color: white;   
    }
  }
   
}

  



body { padding-bottom: 5rem; }
h1,h2,p {padding: 0 5%;}*/


body { margin: 0; }

.ticker-wrap {
  width: 100%;
  height: 50px;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  position: fixed;
  bottom: 0;
  height: 2.5rem;
  background-color: rgb(95, 90, 90); 
}
.ticker {
  display: inline-block;
  margin-top: 5px;
  animation: marquee 100s linear infinite;
}
.item-collection-1 {
  position: relative;
  left: 0%;
  animation: swap 120s linear infinite;
}

.item {
  display: inline-block;
  padding: 0 1rem;
  font-size: 2rem;
  color: black;   
  font-weight: 20;
  font-family: "roboto", sans-serif;
}

/* Transition */
@keyframes marquee {
  0% {
    transform: translateX(0)
  }
  100% {
    transform: translateX(-100%)
  }
}

@keyframes swap {
  0%, 50% {
    left: 0%;
  }
  50.01%,
  100% {
    left: 100%;
  }
}

   


/*body {margin: 0;}

ul.topnav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

ul.topnav li {float: left;}

ul.topnav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul.topnav li a:hover:not(.active) {background-color: #111;}

ul.topnav li a.active {background-color: #04AA6D;}

ul.topnav li.right {float: right;}

@media screen and (max-width: 600px) {
  ul.topnav li.right, 
  ul.topnav li {float: none;}
}*/
 
/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #333;
  font-family:"arial" ;
  max-width:1440px;
  margin:0 auto;
    
  }

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 17px;
  color: rgb(201, 191, 191);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 17px;
  border: none;
  outline: none;
  color: rgb(201, 191, 191);
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: green;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: fixed;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index:1;
  ;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

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

.logo-image{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: -6px;
}

   
/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
   

 
