@charset "UTF-8";
/* CSS Document */

html, body, #wrapper {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Helvetica, Roboto, "Droid Sans", "メイリオ", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
#wrapper {
	padding: 5px;
}

#spinner {
	margin-top: 46vh;
	width: 100px;
/*	height: 25px;*/
	font-size: 10px;
	white-space: nowrap;
}
#error-msg {
	margin-top: 46vh;
	width: 90%;
	font-size: 10px;
	white-space: nowrap;
	color: #000000;
	display: none;
}
.timer {
	width: 110px;
	height: 25px;
	font-size: 10px;
}
hr {
	margin: 0.8em 0;
}

.no-gutter > [class*='col-'] {	/* bootstrap 溝を無くす */
    padding-right:0;
    padding-left:0;
}

.no-gutter {					/* bootstrap 溝を無くす */
    padding-right:0;
    padding-left:0;
}

#infobar {
	width: 100%;
	height: 65px;
	bottom: 0;
	display: none;
}

#container {
	width: 100%;
	min-height: 500px;
	height: 100%;		/* calc( 100vh - 80px );*/
	display: none;
}	
.container-fluid {
	width: 100%;
	height: 100%;		/* calc( 100vh - 80px );*/
}	

/*
#infobar > div {
	float: left;
}
*/

#progressbar {
	padding-top: 2px;
	margin-left: 10px;
	width: 30px;
	height: 30px;
	position: relative;
}

#progress {
    position: fixed;
    top: 5px;
    right: 70px;
	z-index: 2;
    display: none;
}

#btn-refresh {
	width: 100%;
	font-size: 12px;
	height: 28px;
}

#legend-graph {
	font-size: 80%;		/* 0.8vw; */
	text-wrap: none;
	white-space: no-wrap;
}

#switch-temp {
	font-size: 10px;
	float: left !important;
/*	line-height: 10px;*/
	padding-left: 10px;
}
#unit-title {
	font-size: 12px;
	float: left;
/*	line-height: 15px;*/
	margin-right: 10px;
	padding-top:4px;
}
/*
#chart-title {
	font-size: 120%;
	font-weight: bold;
	padding: 5px 0 10px 5px;
}
#chart-subtitle {
	font-size: 90%;
	padding: 0 0 10px 5px;
}
*/
.inline-block {
  display: inline-block;
}

.input-group {
	width: 6em;
	height: 30px;
}

[class*="rect-"] {
	background-color: #CCC;
	height: 30%;
	width: 6px;
	display: inline-block;

	transition-property: all;
	transition-duration: 800ms;
	transition-delay: 0s;
	transition-timing-function: linear;

}
div.rect-last {
	transition-duration: 58s;	/* 60secよりちょっと手前に */
	transition-delay: 0s;
}
div.rect-n {
	background-color: #FFF;
	height: 100%;
}

.stretch-rect {
	height: 90%;
	background-color: #7CB9FF;
}

.table-noborder, th, td, tr {
  border: none !important;
}

.unit-select input[type=radio],
.unit-select input[type=checkbox] {
    display: inline-block;
    margin-right: 6px;
}
.unit-select input[type=radio] + label,
.unit-select input[type=checkbox] + label {
    position: relative;
      
    display: inline-block;
    margin-right: 12px;
      
    font-size: 14px;
    line-height: 30px;
      
    cursor: pointer;
}

/******* radioボタン *******/

/*
.unit-select {
	display: none;
}
*/

.unit-select input[type=radio],
.unit-select input[type=checkbox] {
    display: none;
    margin: 0;
}
.unit-select input[type=radio] + label,
.unit-select input[type=checkbox] + label {
    padding: 0 0 0 24px;
}
.unit-select input[type=radio] + label::before,
.unit-select input[type=checkbox] + label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
      
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 18px;
    height: 18px;
    margin-top: -9px;
      
    background: #FFF;
}
.unit-select input[type=radio] + label::before {
    border: 2px solid #ccc;
    border-radius: 30px;
}
.unit-select input[type=checkbox] + label::before {
    border: 2px solid #ccc;
}
.unit-select input[type=radio]:checked + label::after,
.unit-select input[type=checkbox]:checked + label::after {
    content: "";
    position: absolute;
    top: 50%;
      
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
}
.unit-select input[type=radio]:checked + label::after {
    left: 5px;
      
    width: 8px;
    height: 8px;
    margin-top: -4px;
      
    background: #337ab7;
    border-radius: 8px;
}
.unit-select input[type=checkbox]:checked + label::after {
    left: 3px;
      
    width: 16px;
    height: 8px;
    margin-top: -8px;
      
    border-left: 3px solid #337ab7;
    border-bottom: 3px solid #337ab7;
      
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* either */
.unit-select .either {
    position: relative;
     
    display: inline-block;
    width: 80px;
    height: 35px;
    overflow: hidden;
    border: 2px solid #ccc;
}
.unit-select .either input[type=radio] + label {
    position: static;
     
    float: left;
    display: block;
    width: 50%;
    margin-right: 0;
    padding: 0;
    overflow: hidden;
     
    text-align: center;
}
.unit-select .either input[type=radio] + label::before {
    content: attr(data-label);
     
    top: 0;
    bottom: 0;
    z-index: 1;
     
    display: block;
    width: 50%;
    height: auto;
    margin-top: 0;
     
    text-align: center;
     
    color: transparent;
    background: transparent;
    border: 0 none;
    border-radius: 0;
}
.unit-select .either input[type=radio] + label:last-child::before {
    left: 50%;
    right: 0;
     
}
.unit-select .either input[type=radio]:checked + label::before {
    color: #fff;
}
 
.unit-select .either input[type=radio] + label::after {
    border-radius: 0;
}
.unit-select .either input[type=radio]:first-child + label::after {
    content: none;
}
.unit-select .either input[type=radio] + label + input[type=radio] + label::after {
    content: "";
     
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
     
    display: block;
    width: auto;
    height: auto;
    margin: auto;
     
    background: #337ab7;
    border: 2px solid #fff;
     
    -webkit-transition: all 200ms;
    transition: all 200ms;
}
 
.unit-select .either input[type=radio]:checked + label + input[type=radio] + label::after {
    left: 0;
    right: 50%;
}
.unit-select .either input[type=radio] + label + input[type=radio]:checked + label::after {
    left: 50%;
    right: 0;
}


@media print{

	.highcharts-contextbutton ,
	#progress 
	{
		display: none;
	}

}

/**** spinner *****************************/

.loader,
.loader:after {
  border-radius: 50%;
  width: 4em;
  height: 4em;
}
.loader {
  margin: 5px auto;
  font-size: 8px;
  position: relative;
/*  text-indent: -9999em;*/
  border-top: 0.8em solid rgba(37,128,218, 0.2);
  border-right: 0.8em solid rgba(37,128,218, 0.2);
  border-bottom: 0.8em solid rgba(37,128,218, 0.2);
  border-left: 0.8em solid #2580da;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
