/* 헤더 */
.header {
  background-repeat: no-repeat;
  padding: 30px 30px 40px 30px;
}
/* 헤더 - 닫기 버튼 */
.header__close {
  text-align: right;
}
.header__close button {
  width: auto;
  background: none;
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  font-weight: 600;
  font-size: 13px;
  color: #BCB5AD;
}
.header__close button img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(2%) saturate(3079%) hue-rotate(310deg) brightness(85%) contrast(69%);
}

/* ---------------------------------------------------- */

/* 뇌운동 리포트 */
.training-report {
  padding: 0 25px 25px 25px;
}
.training-report__title {
  font-weight: 500;
  font-size: 21px;
  margin-bottom: 15px;
}

/* ---------------------------------------------------- */

/* 현재 진행중인 퀴즈 진도율 */
.progress-rate {
  padding: 25px;
  background: var(--accent-color);
  border-radius: 12px;
  box-shadow: 4px 8px 8px 0 #BCB5AD33;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}
.progress-rate-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-around;
}
.progress-rate-content__status {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.progress-rate-content__status .empty {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
}
.progress-rate-content__status .content {
}
.progress-rate-content__status .content span {
  margin-right: 15px;
}
.progress-rate-content__status .content b {
  font-weight: 600;
}
.progress-rate-graph {
  width: 110px;
  height: 110px;
  background-image: url('../src/ico_graph_background.svg');
  background-size: 94px 94px;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.progress-rate-graph canvas {
  width: 100%;
  height: 100%;
}
.progress-rate-graph-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

/* ---------------------------------------------------- */

/* 뇌운동 요약 & 영역별 문해력 지수 & 월별 문해력 수치 */
.report-card {
  padding: 30px 25px;
  border-radius: 12px;
  border: 1px solid rgba(242, 240, 239, 1);
  box-shadow: 4px 8px 8px 0 rgba(188, 181, 173, 0.2);
}
.report-card__title {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.report-card__title .sub-title {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: rgba(35, 34, 33, 0.4);
  column-gap: 3px;
  margin-bottom: 0;
}
.report-card__title .sub-title img {
  opacity: 0.4;
  width: 13px;
  height: 13px;
  margin-bottom: 2px;
}
.report-info {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.report-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(188, 181, 173, 0.2);
  font-size: 13px;
}
.report-info-item .blue {
  color: #64B8F6;
}
.report-info-item .accent {
  color: var(--accent-color);
}
/* 뇌운동 요약 그래프 */
.result-summary {
  margin-top: 15px;
  margin-bottom: 15px;
}
/* 영역별 문해력 지수 그래프 */
.scores-by-category {
  margin-top: -15px;
  margin-bottom: -15px;
}
/* 월별 문해력 수치 그래프 */
.statistics-for-the-year {
  margin-top: 15px;
}