div.faqSection {
  box-sizing: border-box;
  width: 100%;
  max-width: 720px;
  padding: 0px;
}
.myPagesGridContainer div.faqSection {
  max-width: none;
}
div.faqSection.cp {
  padding: 15px;
}

div.faqSection > .faqContainer > div {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

div.faqSection > .faqContainer > a.moreFaQs {
  position: relative;
  margin-top: 12px;
  border: 1px solid var(--lightGrey);
  padding: 15px;
  border-radius: 5px;
  color: var(--deepblue);
  font-weight: 300;
  display: block;
  cursor: pointer;
}
div.faqSection > .faqContainer > a.moreFaQs::before {
  content: "";
  position: absolute;
  top: 35%;
  right: 15px;
  margin-top: 4px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-width: 2px 2px 0 0;
  border-style: solid;
  border-color: var(--deepblue);
  transition: 0.2s ease;
  display: block;
}
div.faqSection > .faqContainer > a.moreFaQs:hover {
  background: var(--white);
}
div.faqSection > .faqContainer > div > input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  opacity: 0;
}
div.faqSection > .faqContainer > div > h5 {
  font-size: 30px;
  font-weight: 400;
  color: #4a19ff;
  margin: 10px 0 0 0;
  box-sizing: border-box;
}
div.faqSection > .faqContainer > div > h5 > label {
  position: relative;
  display: block;
  padding-left: 10px;
  padding-right: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 300;
  color: #fa7b70;
  background: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: 3px 3px 8px 1px rgba(0, 0, 0, 0.06);
  text-align: left;
  border: 1px solid var(--lighterCoral);
}
div.faqSection > .faqContainer > div > h5 > label::before {
  content: "";
  position: absolute;
  top: 35%;
  right: 15px;
  margin-top: 0px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-width: 2px 2px 0 0;
  border-style: solid;
  border-color: var(--coral);
  transition: 0.2s ease;
  display: block;
}
div.faqSection
  > .faqContainer
  > div
  > input[type="checkbox"]:checked
  ~ h5
  label::before {
  transform: rotate(135deg);
  border-width: 2px 2px 0 0;
  border-style: solid;
  border-color: var(--deepblue);
  transition: 0.2s ease;
  display: block;
}

div.faqSection > .faqContainer > div > p {
  display: none;
  background: rgba(255, 255, 255, 1);
  overflow: hidden;
  padding: 25px;
  padding-left: 10px;
  margin: 0;
  width: 100;
  font-size: 14px;
  box-sizing: border-box;
  border-radius: 0 0 5px 5px;
  margin-top: -3px;
  border: 1px solid var(--lighterCoral);
}
