body {
  width: 100%;
  height: 100vh;
  background: linear-gradient(to right, #f4f4f4 0%, #f4f4f4 55%, #ffffff 45%, #ffffff 100%);
}

@media only screen and (max-width: 767px) {
  body {
    background: #ffffff;
  }
}

/* ACCORDION - START */
.accordion {
  /* background-color: #eee;
  color: #444; */
  /* cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  outline: none;
  transition: 0.4s; */
}

.active,
.accordion:hover {
  background-color: #ffffff;
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion:after {
  content: "\02795"; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #000000;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}
/* ACCORDION - END */
