.btn{
	font-size:clamp(.25rem,75vW,1rem);
}
.myClock{
	position:absolute;
	margin-top:-20px;
	font-size:12px;
}
.chartbox{
	position:fixed;
	top:10vH;
	display:none;
	left:50%;
	margin-left:-45vW;
	margin-right:auto;
	width:90vW;
	height:80vH;
	max-height:700px;
	background-color:white;
	border: 1px solid lightgrey;
	box-shadow: 10px 10px 10px -5px;
}
.svg_main{
	width: auto;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}
.slidecontainer {
  width: 100%; /* Width of the outside container */
  display: flex;
}
.slc{
	background-color: #f7f7f7;
    padding: 20px 5px 5px 5px;
    max-width: 490px;
    margin: auto;
    border: 1px solid lightgrey;
}
/* The slider itself */
.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 25px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #04AA6D; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #04AA6D; /* Green background */
  cursor: pointer; /* Cursor on hover */
}
.myChart{
	width:90vW;
	height:80vH;
	max-height:610px
}
/* Mobile Style */
@media screen and (max-width:500px) {
	.chartbox{
		top:0px;
		height: 100vh;
        width: 100vw;
        margin: 0;
        left: 0;
	}
	.myChart{
		max-height:inherit;
	}
	.myClock{
		font-size:12pt;
		margin-top: -34px;
	}
	.slc{
		padding: 36px 5px 5px 5px;
	}
	.slider{
		height:19px;
	}
}
@media screen and (min-width:700px) {
	.myClock{
		font-size:18px;
		margin-top: -20px;
	}
	.slc{
		padding: 24px 5px 5px 5px;
	}
	.slider{
		height:34px;
	}

}
@media screen and (min-width:1024px) {
	.myClock{
		font-size:12px;
		margin-top: -14px;
	}
	.slc{
		padding: 14px 5px 5px 5px;
	}
	.slider{
		height:24px;
	}
}
