
.top-p {
  margin: 0;
  color:black;
  padding: 10px 0;
  font-size: 25px;
}
.sum_top{
  position: absolute;
  right: 50px;
  margin-top: -25px;
  background-color: #EA6C1B;
  border-radius: 20px;

  color:white;
  padding: 5px;

}
#first {
  background-color: #4B4D65;
}

.section {
  padding-left: 50px;

}
.section input[type="radio"],
.section input[type="checkbox"]{
  display: none;
}
.container {
  margin-bottom: 10px;
  background-color: white;  padding: 5px;
}
.container label {
  position: relative;
  cursor: pointer;
}

/* Base styles for spans */
.container span::before,
.container span::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* Check-boxes */
.container span.checkbox::before {
  width: 27px;
  height: 27px;
  background-color: #fff;
  left: -35px;
  box-sizing: border-box;
  border: 1px solid grey;
  transition: border-color .2s;
}
.container span.checkbox:hover::before {
  border: 1px solid #F0FF76;
}
.container span.checkbox::after {
  content: '\f00c';
  font-family: 'FontAwesome';
  left: -31px;
  top: 2px;
  color: transparent;
  transition: color .2s;
}
input[type="checkbox"]:checked + label span.checkbox::after {
  color: #62AFFF;
}