/* ::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(128, 128, 128, 0.438);
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(128, 128, 128);
  border-radius: 20px;
} */

.faq-heading {
  font-family: "Plus Jakarta Sans" !important;
  margin: 15px !important;
  font-weight: 400;
  font-size: 15px;
  -webkit-transition: text-indent 0.2s;
  /* text-indent: 20px; */
  color: #333;
}

.faq-text {
  font-family: "Plus Jakarta Sans" !important;
  font-weight: 400;
  color: #919191;
  width: 95%;
  padding-left: 20px;
  margin-bottom: 30px;
}

.faq {
  width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 4px;
  position: relative;
  /* border: 1px solid #E1E1E1; */
}
.faq label {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  /* height: 56px; */
  padding-top: 1px;
}

.faq input[type="checkbox"] {
  display: none;
}

.faq .faq-arrow {
  width: 15px;
  height: 15px;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 2px solid rgba(0, 0, 0, 0.33);
  border-right: 2px solid rgba(0, 0, 0, 0.33);
  float: right;
  position: relative;
  top: -37px;
  right: 27px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.faq input[type="checkbox"]:checked + label > .faq-arrow {
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.faq input[type="checkbox"]:checked + label {
  display: block;
  background: rgba(255, 255, 255, 255) !important;
  color: #4f7351;
  height: 100%;
  transition: height 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 3px 1px;
}

.faq input[type="checkbox"]:not(:checked) + label {
  display: block;
  transition: height 0.8s;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 3px 1px;
  max-height: 60px; /* Collapsed state */
  overflow: hidden; /* Hide overflowing text */
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

::-webkit-scrollbar {
  display: none;
}
