@charset "utf-8";
.sensoricon {
  width: 20px;
  height: 20px;
}

/* トグルスイッチここから*/
.onoffswitch {
    position: relative; width: 90px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoffswitch-checkbox {
    display: none;
}
.onoffswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    border: 2px solid #999999; border-radius: 20px;
}
.onoffswitch-inner {
    display: block; width: 200%; margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}
.onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block; float: left; width: 50%; height: 30px; padding: 0; line-height: 30px;
    font-size: 14px; color: white; font-family: Trebuchet, Arial, sans-serif; font-weight: bold;
    box-sizing: border-box;
}
.onoffswitch-inner:before {
    content: "ON";
    padding-left: 10px;
    background-color: #34A7C1; color: #FFFFFF;
}
.onoffswitch-inner:after {
    content: "OFF";
    padding-right: 10px;
    background-color: #EEEEEE; color: #999999;
    text-align: right;
}
.onoffswitch-switch {
    display: block; width: 22px; margin: 6px;
    background: #FFFFFF;
    position: absolute; top: 0; bottom: 0;
    right: 56px;
    border: 2px solid #999999; border-radius: 20px;
    transition: all 0.3s ease-in 0s;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px;
}
.disabled_backcolor {
  background: #868585;
}
.switchlabel_posi {
    padding-bottom: 0px;
}
.switchmain_posi {
    top: 5px;
}
/* トグルスイッチここまで */

/* OK, NGアイコンの色 */
.signal-ok {
    color:#0a0;
}
.signal-ng {
    color:#f00;
}

/* パーツのmargin */
.margin_bottom_0 {
  margin-bottom: 0!important;
}

.margin_top_15 {
  margin-top: 15px;
}

.margin_left_15 {
  margin-left: 15px;
}

.margin_left_50 {
  margin-left: 50px;
}

/*ハウス一覧 */
.sensortable {
  margin: 20px 0px;
}

.selectsplist {
  padding: 0px 15px;
}

.backbtnmargin {
  margin-bottom: 20px;
}

/* パスワードマスクボタン */
.toggle {
    position: relative;
}
.field {
    width: 100%;
    padding: 15px;
    border: 0;
    border: 1px solid #AAB2BD;
    font-size: 14px;
	margin-bottom: 10px
}
.toggle .field {
    padding-right: 80px;
}
.btnlogin {
    display: flex;
    align-items: center;
    border-radius: 0px;
    border: none;
    height: 37px
}
.btnAccount {
    display: flex;
    align-items: center;
    border-radius: 0px;
    border: none;
    color: #000000;
    height: 34px
}
.toggle .btnlogin  {
    text-align: center;
    position: absolute;
    right: 15px;
    top: 0px;
    padding: 0px 8px;
    border-top-right-radius : 3px;
  	border-bottom-right-radius : 3px;
    background: #e5e5e5;
}
.toggle .btnAccount {
    text-align: center;
    position: absolute;
    right: 15px;
    top: 0px;
    padding: 0px 8px;
    border-top-right-radius : 3px;
  	border-bottom-right-radius : 3px;
    background: #e5e5e5;
}
.btn-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.btn-label {
    font-size: 18px;
    cursor: pointer;
}
.toggle .btn-label {
    width: 30px;
}

.iposition {
  vertical-align: sub;
}

.margintop5 {
  margin-top: 5px;
}

.margintop40 {
  margin-top: 40px;
}

.marginbottom15 {
  margin-bottom: 15px;
}

.marginleft20 {
  margin-left: 20px;
}

.marginright20 {
  margin-right: 20px;
}

.setting_row {
  width: 100%;
  display: inline-block;
}

.settingtitle {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
}

/* メーカー削除リストのテーブル */
.box_srcollbar {
    overflow:auto;
    height:300px;
    padding:5px;
    background-color:#F9F9F9;
    color:#000;
    font-size:12px;
}

/* アラートマスクがOFFになってるデータの背景色*/
.offcolor {
  background-color: #b7b7b7;
  color: #666666;
}

/* ツールチップ（吹き出し） */
.cp_tooltip {
	display: inline-block;
}
.cp_tooltiptext, .cp_tooltiptext_long {
	position: relative;
  cursor: pointer;
  color: #0000ff;
}
.cp_tooltiptext::after {
	position: absolute;
	transition: all 0.3s ease 0s;
	opacity: 0;
	top: 0px;/*HOVERのスタート位置*/
	left: 0px;
	display: block;
	padding: 0.2em 0.5em;
	content: attr(data-tooltip);
  width: 350px;
  white-space: pre-wrap;
	color: #ffffff;
	border-radius: 6px;
	background: #1b2538;
}
.cp_tooltiptext:active::after {
	top: 0px;/*HOVER位置*/
  left: 100px;
	opacity: 1;
}
.cp_tooltiptext_long::after {
	position: absolute;
	transition: all 0.3s ease 0s;
	opacity: 0;
	top: 0px;/*HOVERのスタート位置*/
	left: 0px;
	display: block;
	padding: 0.2em 0.5em;
	content: attr(data-tooltip);
  white-space: pre-wrap;
	color: #ffffff;
	border-radius: 6px;
  background: #1b2538;
  word-break: break-word;
  width: 400px;
}
.cp_tooltiptext_long:active::after {
	top: 0px;/*HOVER位置*/
  left: 100px;
  opacity: 1;
}
.text-line-height {
  line-height: 34px;
}
caption p {
  text-align: left;
  font-weight: bold;
}

.card_left_45 {
  width: 45%;
  margin-right: 15px;
  background-color: blue;
}

.card_right_45 {
  width: 45%;
  margin-left: 15px;
  background-color: blue;
}

.card-body-analysis {
  border: solid 1px #ddd;
  border-radius: 5px;
  padding: 8px;
  font-size: 8px;
}

.yoko {
    display: inline-flex;
}

.selectlink {
  border-color: #3BAFDA;
  background-color: #3BAFDA;
  color: #ffffff;
}

.red {
  color: #dc143c;
}

.border_history_table_head {
  border-bottom: 0px!important;
  border-top: 2px solid #ddd!important;
}

.width30 {
  width: 30px;
}

.width80 {
  width: 80px!important;
}

.width90 {
  width: 90px;
}

.width100 {
  width: 100px;
}

.width115 {
  width: 115px;
}

.width140 {
  width: 140px;
}

.weeklybox {
  display: inline-flex;
  padding: 7px;
}

.appliancebox {
  width: 140px;
}

.paddingtop5 {
  padding-top: 5px;
}

.paddingbottom5 {
  padding-bottom: 5px;
}

.padding10 {
  padding: 10px;
}

.hour_table_checkbox {
  padding: 5px;
  /* background-color: pink; */
}

.wordwrap {
  overflow-wrap: break-word;
}

.bgSearchPanel {
  margin: 15px;
  background-color: #fff;
}
