@charset "UTF-8";

sectioncheckbox{
  display:flex;
  position:absolute;
  margin:10px 0 0 0px;
}


input[type=checkbox] {
  display: none;
}
input[type=checkbox]:not(:disabled) ~ label {
  cursor: pointer;
}
input[type=checkbox]:disabled ~ label {
  color: #bcc2bf;
  border-color: #bcc2bf;
  box-shadow: none;
  cursor: not-allowed;
}

.checkbox-btn label {
  height:auto;
  display: block;
  background:#f2f2f2;
  /*border:1px solid #e5e5e5;*/
  border-radius:0px;
  /*padding: 1rem;*/
  margin-bottom: 1rem;
  /*box-shadow: 0px 3px 10px -2px rgba(161, 170, 166, 0.5);*/
  position: relative;
  padding:0 30px 0 10px;
}

input[type=checkbox]:checked + label {
  background:#f2f2f2;
  color:#4a4a4a;
  /*box-shadow:0px 0px 20px rgb(185 185 185);*/
}
input[type=checkbox]:checked + label::after {
  color: #3d3f43;
  font-family: FontAwesome;
  content: "";
  font-size: 24px;
  position: absolute;
  top: -5px;
  left: 102%;
  transform: translateX(-45%);
  height: 49px;
  width:77px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background-image:url(../img/selected_services.png);
  background-repeat:no-repeat;
  background-size:37px 34px;
  /*box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.25);*/
}

input[type=checkbox]#control_05:checked + label {
  background: red;
  border-color: red;
}

.checkbox-btn{display:flex; margin:0 0 0 0px; width:auto; padding:0 3px;}

.checkbox-btn h2{font-size:12px; line-height:22px;    margin:4px 0 6px 0px;}

@media only screen and (max-width: 700px) {
sectioncheckbox{
    flex-direction: inherit;
  }
}