/*=====================================================================================
버  전 : 3.0
날  짜 : 2024.05.29
제작사 : (주)에듀마루
본 파일 소스의 모든 저작권은 (주)에듀마루에 있습니다. 임의의 수정 및 배포를 금합니다.
문  의 : 02-6989-9337
=====================================================================================*/

.downloadFrame {
  display: none;
}

.contentsArea .slideTabBtnList.special > li.off {
  display: none;
}

.dailyContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/daily/bg_daily.png) center / contain no-repeat;
  display: none;
}
.dailyContainer.on {
  display: block;
}

/* 매일 학습 - 차시 정보 */
.dailyContainer .chapterBox {
  position: absolute;
  top: -8px;
  left: 75px;
  width: 1200px;
  height: 220px;
  padding: 46px 0 0 130px;
  background: url('../images/daily/bg_chapterBox.svg') center / contain no-repeat;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
}
.dailyContainer .chapterBox .chapterNum {
  height: 100%;
  color: #546fe5;
  font-size: 114px;
  font-family: 'PretendardB';
  display: flex;
  align-items: center;
}
.dailyContainer .chapterBox .chapterName {
  font-size: 96px;
  font-family: 'PretendardB';
  display: flex;
  align-items: center;
}

.dailyContainer .subjectArea {
  position: absolute;
  top: 282px;
  left: 150px;
  width: calc(100% - 300px);
  height: 430px;
  background-color: #fff;
  border: 6px solid #4865bf;
  border-radius: 120px;
  box-shadow: 5px 5px 10px rgba(73, 68, 50, 0.5);
  padding: 80px 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  /* justify-content: center;
  align-items: center;
  gap: 50px; */
}
.dailyContainer .subjectArea .subjectBox {
  display: flex;
  align-items: center;
  gap: 20px;
}
.dailyContainer .subjectArea .subjectBox .subjectName {
  color: #49433a;
  font-size: 90px;
  line-height: 1;
  font-family: 'ONEMobileTitle';
  /* opacity: 0.3; */
}
.dailyContainer .subjectArea .subjectBox .levelBox {
  width: 160px;
  height: 90px;
  line-height: 1;
  color: #fff;
  font-size: 65px;
  font-family: 'BaskinrobbinsB';
  background-color: #4865bf;
  border: 6px solid #fff;
  border-radius: 45px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 매일 학습 > 문제 수 선택 */
.dailyContainer .subjectArea .choiceBox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.dailyContainer .subjectArea .choiceBox .countChoiceBtn {
  width: 308px;
  height: 108px;
  font-family: 'ONEMobileTitle';
  font-size: 70px;
  background-color: #d7e2ff;
  border-radius: 30px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.dailyContainer .subjectArea .choiceBox .countChoiceBtn.on {
  color: #fff;
  background-color: #4a4c4f;
}

.dailyContainer .dailyStartBtn {
  position: absolute;
  top: 770px;
  left: 50%;
  transform: translateX(-50%);
  width: 330px;
  height: 100px;
  font-family: 'ONEMobileTitle';
  background-color: #fff;
  border: 6px solid #4865bf;
  border-radius: 30px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* 매일 학습 > 캐릭터 */
.dailyContainer .chars {
  position: absolute;
  background: center / contain no-repeat;
  transform: rotate(-5deg);
}
.dailyContainer .chars.on {
  animation: 0.7s rotate10 alternate forwards;
  animation-timing-function: linear;
  animation-iteration-count: 5;
}
@keyframes rotate10 {
  0% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(5deg);
  }
}

.dailyContainer .chars.char_1 {
  bottom: 4px;
  left: 46px;
  width: 250px;
  height: 340px;
  background-image: url('../images/daily/char_daily_1.svg');
}
.dailyContainer .chars.char_2 {
  bottom: 4px;
  right: 34px;
  width: 350px;
  height: 400px;
  background-image: url('../images/daily/char_daily_2.svg');
}
