/* FORM SIMULATION EXPLANATION */
@import url("../core/reset.css");
@import url("../core/variables.css");
@import url("../style.css");
@import url("../../components/header/header.css");

.main.result_explanation {
  /* Margin-padding */
  padding-bottom: 60px;
}

.list_box {
  /* Display */
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list_item {
  /* Display */
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.item_title {
  /* Font */
  font-size: 18px;
  /* Margin-padding */
  padding-bottom: 8px;
}

.item_list_box {
  /* Margin-padding */
  padding-left: 24px;
}

.item_list_box > li {
  list-style: disc;
}

.link.back {
  /* Font */
  text-decoration: none;
  font-weight: 700;
  /* Size */
  width: 100%;
  /* Margin-padding */
  padding: 16px 0px;
  /* Display */
  display: flex;
  align-items: center;
  gap: 8px;
}

.link.back:hover {
  /* Font */
  color: var(--hover-link-font-color);
}

.link.back:hover > svg > path {
  fill: var(--hover-link-font-color);
}