.fs-wrapper {
  background: #eff3f7;
  padding: 2rem 0 0;
}

.fs {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.fs__title {
  font-size: 2rem;
  text-align: left;
}
.fs__text {
  text-align: left;
}
.fs__tile {
  border-radius: 1rem;
  padding: 1rem;
  background: #fff;
  border: 2px solid #e5e7eb;
  display: flex;
  gap: 1rem;
  position: relative;
  cursor: pointer;
  transition: 0.3s ease-out background-color;
}
.fs__tile:hover {
  background: #fafcff;
}
.fs__tile:after {
  position: absolute;
  content: "\f078";
  font-family: "Font Awesome 5 Pro", sans-serif;
  font-size: 1rem;
  color: #99a1af;
  right: 1rem;
  top: 1rem;
}
.fs__tile-icon {
  font-size: 1.2rem;
  color: #4a5565;
  background: #f3f4f6;
  border-radius: 0.5rem;
  width: 2.8rem;
  text-align: center;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  margin-right: 0;
  flex-shrink: 0;
}
.fs__tile-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0 0 0.5rem;
}
.fs__tile-desc {
  line-height: 1.3rem;
}
.fs__tile.active {
  background: linear-gradient(#eff6ff, #eff6ff) padding-box, linear-gradient(to right, #252b83, #cb0ac6) border-box;
  border: 2px solid transparent;
}
.fs__tile.active:after {
  content: "\f077";
}
.fs__tile.active .fs__tile-title {
  color: #005ea7;
}
.fs__tile.active .fs__tile-icon {
  background: #005ea7;
  color: #fff;
}
.fs__panel {
  display: grid;
  grid-column: 1/-1;
  order: 999;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease-out;
}
.fs__panel.active {
  grid-template-rows: 1fr;
  order: 7;
}
.fs__panel.active .fs__panel-content {
  opacity: 1;
}
.fs__panel-header {
  text-align: center;
}
.fs__panel-title {
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}
.fs__panel-text {
  margin-bottom: 3rem;
}
.fs__panel-content {
  min-height: 0;
  opacity: 0;
  transition: opacity 0.2s ease-out;
}
.fs__panel-content-inner {
  background: #f7fbff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 2px solid #bedbff;
}
.fs__panel-alert {
  text-align: left;
  background: #fefbea;
  border: 1px solid #fdf3c7;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  display: flex;
  align-items: start;
}
.fs__panel-alert:before {
  content: "\f06a";
  font-family: "Font Awesome 5 Pro", sans-serif;
  color: #e17101;
  margin-right: 1.2rem;
  font-size: 1.5rem;
}
.fs__panel-alert-inner {
  display: flex;
  flex-direction: column;
}
.fs__panel-alert strong {
  color: #7b3306;
  font-weight: 600;
}
.fs__panel-alert span {
  color: #973c00;
}
.fs__card {
  background: #fff;
  padding: 1.5rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid #daeafe;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.fs__card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-grow: 1;
  justify-content: space-between;
}
.fs__card-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #252b83;
}
.fs__card-text {
  line-height: 1.2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .fs__tile[data-target=fs-panel-1] {
    order: 1;
  }
  #fs-panel-1.active {
    order: 2;
  }
  .fs__tile[data-target=fs-panel-2] {
    order: 3;
  }
  #fs-panel-2.active {
    order: 4;
  }
  .fs__tile[data-target=fs-panel-3] {
    order: 5;
  }
  #fs-panel-3.active {
    order: 6;
  }
  .fs__tile[data-target=fs-panel-4] {
    order: 7;
  }
  #fs-panel-4.active {
    order: 8;
  }
  .fs__tile[data-target=fs-panel-5] {
    order: 9;
  }
  #fs-panel-5.active {
    order: 10;
  }
  .fs__tile[data-target=fs-panel-6] {
    order: 11;
  }
  #fs-panel-6.active {
    order: 12;
  }
}
@media (min-width: 768px) {
  .fs {
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
  .fs__title {
    font-size: 2rem;
    text-align: center;
    margin: 0.8rem;
  }
  .fs__text {
    text-align: center;
  }
  .fs__tile {
    padding: 2rem;
    display: block;
  }
  .fs__tile:after {
    display: none;
  }
  .fs__tile-icon {
    float: none;
    margin-right: 1.5rem;
  }
  .fs__tile-title {
    font-size: 1.1rem;
    margin: 0.5rem 0;
  }
  .fs__panel-content-inner {
    padding: 2rem 2.2rem;
  }
  .fs__panel-title {
    font-size: 1.75rem;
    margin-bottom: 0.7rem;
  }
  .fs__panel-alert {
    padding: 0.75rem 0.7rem;
    align-items: center;
  }
  .fs__panel-alert:before {
    margin-right: 0.5rem;
  }
  .fs__panel-alert-inner {
    display: block;
  }
}