.btn {
    background-color: #14C0D4; /* Blue background */
    border: none; /* Remove borders */
    color: white; /* White text */
    padding: 12px 16px; /* Some padding */
    font-size: 16px; /* Set a font size */
    cursor: pointer; /* Mouse pointer on hover */
}

/* Darker background on mouse-over */
.btn:hover {
    color: white;
}
.panel-body{
    padding-top: 15px  !important; padding-left: 0px !important;
}
#accordion .panel-heading a.collapsed, #accordion .panel-heading a.collapsed {
    background-color: #14C0D4;
    color: white;
    transition: all 0.2s ease-in!important;
}
#accordion .panel-heading .accordion-toggle.collapsed::before {
    color: white;
    transform: rotate(-135deg)!important;
    transition: all 0.2s ease-in!important;
}
h3 {
  margin: 0;
  font-size: 1.4em;
  line-height: 1.2;
}

.newContainer {
  position: relative;
  margin: 2rem auto;
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;
  box-shadow: rgba(165, 165, 165, 0.3) 0 0 77px;
}

label {
  display: block;
  overflow: hidden;
}

.title-terms {
  font-size: 15px;
  padding: 1rem;
  position: relative;
  z-index: 599;
  background: #fbfbfb;
  border-bottom: 1px solid #eee;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.title-terms:hover {
  cursor: pointer;
  background: #f5f5f5;
}

.content {
  position: relative;
  padding: 0;
  max-height: 0px;
  border-bottom: 1px solid #eee;
  -webkit-transition: max-height 0.3s linear;
  -moz-transition: max-height 0.3s linear;
  transition: max-height 0.3s linear;
}
.content p {
  position: relative;
  padding: 1.2em 3em;
  margin: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.55s ease;
  -moz-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox]:checked + .title-terms {
  background: #c3f7ea;
}

input[type=checkbox]:checked + .title-terms + .content {
  max-height: 555px;
}

input[type=checkbox]:checked + .title-terms + .content p {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}