:host {
  display: block;
  height: 40px;
  left: 0 !important;
  right: 0 !important;
  position: static !important;
  top: 0 !important;
}

.ctrl-hdr {
  color: rgba(128, 128, 128, 0.9);
  font-family: "Roboto-regular";
  font-size: 12px;
  padding: 1px 0px;
  width: 175px;
}

.ctrl-cnt {
  align-items: center;
  display: flex;
  color: #63666A;
  width: 175px;
}

.on-off-switch {
	width: 34px;
	height: 16px;
	border-radius: 12px;
	position: relative;
	background: rgba(221,0,0,0.2);
  border: 1px solid rgba(221,0,0,0.3);
	box-sizing: border-box;
  cursor: pointer;
  top: 3px;
}

.on-off-switch:before {
  background: #c00;
	border-radius: 10px;
	content: '';
	height: 12px;
	left: 2px;
	position: absolute;
	top: 10%;
	transition: left 0.2s linear;
	width: 13px;
}

.on-off-switch:after {
	display: none;
}

.switch-active {
	background: rgba(76,175,80,0.2);
  border: 1px solid rgba(76,175,80,0.3);
}

.switch-active:before {
	background: #4caf50;
	left: calc(100% - 15px);
	transition: left 0.2s linear;
}

.switch-disable {
	background: rgba(204,204,204,0.2);
  border: 1px solid rgba(204,204,204,0.3);
}

.switch-disable:before {
	background: #cccccc;
}

.switch-status {
  display: inline-block;
  font-family: 'Roboto-Regular';
  font-size: 12px;
  position: relative;
  top: 3px;
  width: 60px;
}

.disabled * {
  color: rgba(128, 128, 128, 0.3) !important;
}

.disabled .on-off-switch {
  cursor: not-allowed !important;
}