@charset "UTF-8";
body {
  padding: 1rem;
  color: #797e86;
}
.main-content{
width: 60%;
background:#f7f8f8;
padding: 30px;
}
.box-downtimes h2{
	font-size: 15px;
  font-weight: 500;
  padding: 40px 0 0 20px;
  font-family: 'Roboto';
  color: #343945;
}

.box-downtimes h3{
	font-size: 15px;
  font-weight: 400;
  font-family: 'Roboto';
  padding: 0;
  display: inline-block;
  height: auto;
  color: #656c7b;
}
.box-downtimes input[type="checkbox"]:checked + label h3{
	color: #fff;
}
.box-downtimes{
	
	display: inline-block;
  width: 100%;
  margin-bottom:15px;
box-shadow: 0px 1px 32px 0px rgba(6, 6, 6, 0.07); 
background: #fff;
}
.box-downtimes .b-title{
	width: 20%;
	float: left;
}
.box-downtimes aside{
	width: 100%;
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
}
.box-downtimes aside > div{
	width: 25%;
  padding: 10px;
  box-sizing: border-box;
  height: 80px;
  min-height: 80px;
  margin-bottom: 0;
  display: flex;
  align-content: center;
}

.box-downtimes .b-content{
	width: 80%;
	float: left;
	box-sizing: border-box;
  padding: 15px;
}

.box-downtimes input[type=checkbox] {
  display: none;
}
.box-downtimes input[type=checkbox]:not(:disabled) ~ label {
  cursor: pointer;
}
.box-downtimes input[type=checkbox]:disabled ~ label {
  color: #bcc2bf;
  box-shadow: none;
  cursor: not-allowed;
}

.box-downtimes label {
  height: 100%;
   width: 100%;
  background: white;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 1rem;
  text-align: center;
  box-shadow: 0px 3px 10px -2px rgba(161, 170, 166, 0.5);
  position: relative;
  align-content: center;
}

.box-downtimes input[type=checkbox]:checked + label {
  color: white; 
}
.box-downtimes label:hover{
	background: #f4f4f4;
}
.box-downtimes input[type=checkbox]:checked + label::after {
  color: #3d3f43;
  font-family: FontAwesome;
  content: "";
  font-size: 12px;
  position: absolute;
  top: -11px;
  left: 5px;
  transform: translateX(-50%);
  height: 27px;
  width: 27px;
  line-height: 25px;
  text-align: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.25);
}
.b-blue input[type=checkbox]:checked + label {
  background: #0a7ef6;
  border-color: #0a7ef6;
}
.b-blue input[type=checkbox]:checked + label::after, .b-blue label {
	border: 2px solid #0a7ef6;
}
.b-green input[type=checkbox]:checked + label {
  background: #20df80;
  border-color: #20df80;
}
.b-green input[type=checkbox]:checked + label::after, .b-green label {
	border: 2px solid #20df80;
}
.b-red input[type=checkbox]:checked + label {
  background: #ff4b39;
  border-color: #ff4b39;
}
.b-red input[type=checkbox]:checked + label::after, .b-red label {
	border: 2px solid #ff4b39;
}
.b-orange input[type=checkbox]:checked + label {
  background: #ff9f39;
  border-color: #ff9f39;
}
.b-orange input[type=checkbox]:checked + label::after, .b-orange label {
	border: 2px solid #ff9f39;
}


