/* SCG Process Steps — v1.0.6 */

.scg-psteps {
  /* max-width: 800px; */
  margin: 0 auto;
  /* padding: 0 32px; */
}

.scg-psteps__item {
  border-bottom: 1px solid #e5e7eb;
}
.scg-psteps__item:last-child {
  border-bottom: none;
}
.scg-psteps__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  /* padding-bottom: 20px; */
  background: transparent !important;
  color: inherit !important;
  border: none !important;
  cursor: pointer;
  text-align: left;
  box-shadow: none !important;
  padding-left: 0;
}
.scg-psteps__question:focus {
  outline: none;
}
.scg-psteps__question-text {
  font-family: "DM Sans", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #093868;
  padding-right: 16px;
  margin-bottom: 18px;
  transition: color 0.2s ease;
}
.scg-psteps__item--open .scg-psteps__question-text,
.scg-psteps__question:hover .scg-psteps__question-text {
  color: #e09f54;
}
.scg-psteps__item--open .scg-psteps__question-text {
  margin-bottom: 0;
}
.scg-psteps__icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  color: #093868;
  margin-bottom: 18px;
}
.scg-psteps__item--open .scg-psteps__icon {
  margin-bottom: 0;
}
.scg-psteps__icon::before,
.scg-psteps__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.scg-psteps__icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.scg-psteps__icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}
.scg-psteps__item--open .scg-psteps__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}
.scg-psteps__answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.45s ease;
}
.scg-psteps__item--open .scg-psteps__answer {
  grid-template-rows: 1fr;
}
.scg-psteps__answer-inner {
  overflow: hidden;
  min-height: 0;
}
.scg-psteps__answer-text {
  color: #5a6b7f;
  font-family: "DM Sans", "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625;
  padding-bottom: 20px;
  padding-left: 0;
  padding-right: 32px;
  margin: 0;
}
