body {
  background-image: url("../image/bg_main.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.viewer_wrap {
  overflow: initial !important;
}

.title {
  width: 100%;
  height: 340px;
  text-align: center;
  padding-top: 150px;
}

.animal img {
  position: absolute;
}
.animal :first-child {
  top: -145px;
  left: 1426px;
  animation: bounce_1 3s infinite forwards;
}
.animal :nth-child(2) {
  top: 86px;
  left: 33px;
  animation: bounce_2 8s infinite forwards;
}
.animal :last-child {
  top: 906px;
  left: 214px;
  animation: bounce_3 4s infinite forwards;
  display: none;
}

.books_wrap {
  width: 100%;
  height: 553px;
  position: relative;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 200px;
}
.books_wrap .btn_edit {
  width: 136px;
  height: 148px;
  background: url(../image/btn_edit.png);
  position: absolute;
  z-index: 10;
  top: 530px;
  left: 1730px;
}
.books_wrap .book {
  position: relative;
}
.books_wrap .book.content_has .btn_del {
  display: block;
}
.books_wrap .book .btn_del {
  position: absolute;
  top: -35px;
  left: 260px;
  background: url(../image/btn_delete.png);
  width: 80px;
  height: 88px;
  z-index: 1;
  display: none;
}
.books_wrap .book > a > img {
  width: 315px;
  border: 6px solid #fff;
  border-radius: 8px;
  box-shadow: 0px 30px 20px rgba(0, 0, 0, 0.2);
}
.books_wrap .book > a:hover > img {
  transform: scale(1.15);
  border-radius: 12px;
  border: 12px solid #ffd232;
}
.books_wrap.app .btn_edit {
  display: block;
}
.books_wrap.app .book > a {
  display: block;
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
}
.books_wrap.app .book > a:hover > img {
  transform: scale(1);
  border-radius: 8px;
  border: 6px solid #fff;
  background-color: #fff;
}
.books_wrap.app .book .btn_del {
  display: block;
}
.books_wrap.app .not_down {
  background-color: #000;
  border-radius: 8px;
  box-shadow: 0px 30px 20px rgba(0, 0, 0, 0.2);
}
.books_wrap.app .not_down > a > img {
  opacity: 0.2;
}
.books_wrap.app .not_down .btn_down {
  background-image: url("../image/btn_download.png");
  width: 136px;
  height: 148px;
  position: absolute;
  top: 135px;
  left: 85px;
}
.books_wrap.app .down_ef {
  position: relative;
}
.books_wrap.app .down_ef::before {
  content: url(../image/download_effect.png);
  position: absolute;
  top: -145px;
  left: -250px;
  z-index: -1;
  opacity: 0;
  animation: glow 0.4s 6 alternate forwards;
}
@keyframes glow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

footer {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  width: 100%;
  height: 200px;
  font-family: "Roboto-M", sans-serif;
  text-align: center;
  font-size: 38px;
}

.dim {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
.dim.c_black {
  background-color: rgba(0, 0, 0, 0.8);
}

.popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 920px;
  height: 550px;
  z-index: 200;
}
.popup .header {
  position: relative;
  width: 100%;
  height: 100px;
  border-radius: 20px 20px 0 0;
  background-color: #24cb7a;
}
.popup .header p {
  padding: 30px;
  font-family: "NotoSansKr-Regular", sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 32px;
}
.popup .header .btn_close {
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: url(../image/btn_close.png);
}
.popup .cont {
  width: 100%;
  height: 450px;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
}
.popup .cont._1 {
  padding-top: 40px;
}
.popup .cont._1 .cont_body {
  padding: 0 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popup .cont._1 .cont_body .txt {
  width: 560px;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
}
.popup .cont._2 {
  padding-top: 85px;
  text-align: center;
}
.popup .cont._2 > p {
  padding-top: 20px;
  text-align: center;
}
.popup .cont p, .popup .cont .txt {
  width: 100%;
  font-size: 37px;
  color: #222;
  text-align: left;
  line-height: 48px;
}
.popup .cont .btn_wrap {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
.popup .cont .btn_wrap > button {
  margin: 0 10px;
  width: 252px;
  height: 114px;
}
.popup .cont .btn_wrap > button > span {
  display: inline-block;
  margin-top: -30px;
  font-family: "NotoSansKr-Regular", sans-serif;
  color: #fff;
  font-size: 32px;
}
.popup .cont .btn_wrap .btn_ok {
  background: url(../image/btn_green.png) no-repeat;
}
.popup .cont .btn_wrap .btn_cancel {
  background: url(../image/btn_gray.png) no-repeat;
}
.popup .cont .btn_wrap .btn_yes {
  background: url(../image/btn_green.png) no-repeat;
}
.popup.down {
  width: 1010px;
  height: 650px;
}
.popup.down .cont {
  height: 555px;
}
.popup.down .cont .cont_body .txt {
  width: 640px;
}
.popup.down .cont .txt_p {
  padding-left: 30px;
}
.popup.down .cont .bg_txt {
  display: flex;
}
.popup.down .cont .bg_txt._2 {
  padding-top: 30px;
}

.circle_progress_wrap {
  position: absolute;
  width: 240px;
  height: 240px;
  top: 100px;
  left: 40px;
}
.circle_progress_wrap .circle_progress {
  transform: rotate(-90deg);
}
.circle_progress_wrap .frame, .circle_progress_wrap .bar {
  fill: none;
}
.circle_progress_wrap .frame {
  stroke: #cccccc;
}
.circle_progress_wrap .bar {
  stroke: #ffcc66;
  stroke-linecap: round;
}
.circle_progress_wrap .value {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  text-align: center;
  color: #888;
  font-size: 16px;
  line-height: 120px;
}
.circle_progress_wrap img {
  position: absolute;
  top: 112px;
  left: 36px;
}

/*# sourceMappingURL=main.css.map */
