.transition-fade {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.transition-fade-btn {
  transition: background-color 0.3s, border-color 0.3s;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
}
.faq-list .faq .title {
  cursor: pointer;
  display: flex;
  margin-bottom: 0.5em !important;
  justify-content: space-between;
  align-items: center;
}
.faq-list .faq .title .icon {
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  position: relative;
  flex: 0 0 32px;
  margin-left: calc(10vw - 1rem);
}
.faq-list .faq .title .icon .if-closed {
  background: #368cd3;
  width: 32px;
  height: 32px;
  transform: scale(-1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s linear;
}
.faq-list .faq .title .icon .if-closed::after {
  content: '';
  background: url('images/arrow-icon-white-small.svg') center / contain no-repeat;
  width: 16px;
  height: 9px;
  display: block;
  opacity: 1;
  transition: all 0.4s linear;
}
.faq-list .faq .title .icon .if-open {
  background: #1c73ba;
  width: 20px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-list .faq .title.open .icon .if-closed {
  background: #1c73ba;
  width: 20px;
  height: 4px;
}
.faq-list .faq .title.open .icon .if-closed::after {
  opacity: 0;
}
.faq-list .faq .content {
  padding: 0.1px;
}
.faq-list .faq:not(:first-child) {
  margin-top: 1.5em !important;
}
.faq-list .faq .list {
  position: relative;
}
