html,body{
  font-family: Tahoma,Arial,Veranda,sans-serif;
  background-color: lightcyan;
  height:100%;
  width:100%;
}

#headerdiv {
    border-top:10px solid #0000b8;
    border-bottom:10px solid #0000b8;
    background-color:#0000b8;
    position:fixed;
    top:0;
    left:0;
    z-index:1;
    color:lightblue;
    background-color:#0000b8;
    width: 100%;
}

.zoom {
	transition: transform .2s;
	height: 200px;
	margin: 0 auto;
}

/* If the screen size is 601px wide or more, set the font-size of <div> to 80px 
@media screen and (min-width: 601px) {
  div.example {
    font-size: 80px;
  }
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px 
@media screen and (max-width: 600px) {
  div.example {
    font-size: 30px;
  }
}
*/
html { font-size: 1em; }

.topview {
	position:relative;
	text-align:center;
	margin-bottom:8px;
	border-width:0px;
	border-style:solid;
	border-color:black;
	padding:0px;
}

.bottomview {
	position:relative;
	text-align:center;
	border-width:0px;
	border-style:solid;
	border-color:black;
	padding:0px;
}

/*slider css-----------------------------------------------*/
.rangeslider{ 
    width: 50%; 
} 
  
.myslider { 
    -webkit-appearance: none; 
    background: #FCF3CF  ; 
    width: 50%; 
    height: 20px; 
    opacity: 2; 
   } 
  
  
.myslider::-webkit-slider-thumb { 
    -webkit-appearance: none; 
    cursor: pointer; 
    background: #34495E  ; 
    width: 5%; 
    height: 20px; 
    border:20px solid blue;
} 
  
  
.myslider:hover { 
    opacity: 1; 
}

/*end of slider css-----------------------------------------------*/





/*old css is below/*
.iframe-container {
  overflow: hidden;
  position: relative;
  display:none;
}

.iframe-container iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}
/* 4x3 Aspect Ratio */
.iframe-container-4x3 {
  padding-top: 75%;
}

.tooltip {
    display: none;
    color: blue;
    margin-left: 28px;
    margin-top: 15px;
    position: absolute;
    z-index: 1000;
}

.ht:hover .tooltip {
    display:block;
    cursor:help;
    border:5px solid black;
    padding:3px;
    background-color:gainsboro;
    border-radius: 8px;
}


/*header
.flex-container {
  display: flex;
  flex-wrap: nowrap;
  background-color: mediumblue;
}

.flex-container > div {
  background-color: mediumblue;
  width: 100px;
  margin: 10px;
  text-align: center;
  line-height: 50px;
  font-size: 30px;
  border-radius:7px;
}
*/

/*end of header*/
/*
select > option[value=""] {
  display: none;
}

style="background-color:lime;
font-size:.9em;">
*/
.label {
  background-color: lime;
  border-radius:10px;
  padding-left:5px;
  padding-top:0px;
  padding-right:4px;
  padding-bottom:2px;
  color:white;
  font-weight:bold;
  font-size:.9em;
}

.labelsmall {
  border-radius:10px;
  padding-left:5px;
  padding-top:0px;
  padding-right:4px;
  padding-bottom:2px;
  color:white;
  font-weight:bold;
  margin-left:10px;
  margin-bottom:10px;
  font-size:.7em;
}


/*flexbox for background page*/
.bg-wrapper {
	padding-left:20px;
	background-color:cornsilk;
}
.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}
.left-column {
  background-color: cornsilk;
  height: 100px;
}

.right-column {
  background-color: greenyellow;
  height: 100px;
}


