/* less functions */
.drawers {
  padding: 30px 0;
}
.drawers .icon {
  width: 45px;
  height: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
  color: #fff;
  text-align: center;
  font-size: 25px;
  padding-top: 4px;
  -webkit-transition: background-color 0.3s;
  /* Safari */
  transition: background-color 0.3s;
  cursor: pointer;
  background-color: #00ab84;
  border-radius: 50%;
}
.drawers .icon.active {
  display: none;
  font-size: 20px;
  padding-top: 7px;
}
.drawers .toggle-drawer {
  margin-bottom: 10px;
  border-bottom: 1px #1b2262 solid;
  cursor: pointer;
}
.drawers .toggle-drawer:last-of-type {
  border-bottom: none;
}
.drawers .toggle-drawer:hover .icon {
  background-color: #d1e0d7;
  color: #1b2262;
}
.drawers .toggle-drawer.active .toggle-header .icon.active {
  display: block;
}
.drawers .toggle-drawer.active .toggle-header .icon.in-active {
  display: none;
}
.drawers .toggle-drawer h3 {
  padding-right: 30px;
  margin-top: 0;
  max-width: 90%;
  font-size: 20px;
}
.drawers .toggle-header {
  padding: 30px 0;
  position: relative;
}
.drawers .toggle-header .icon {
  margin-top: 15px;
  margin-right: 10px;
}
.drawers .toggle-content {
  padding: 10px 0;
  display: none;
  margin-bottom: 30px;
}
.drawers .toggle-content p {
  margin: 0 0 15px 0;
}
