﻿html, body {
    overflow-x: hidden;
}

.flex-justify-align-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-justify-center {
    display: flex;
    justify-content: center;
}

.flex-align-center {
    display: flex;
    align-items: center;
}

.flex-column-justify-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quick-menu {
    width: 96px;
    height: 367px;
    border-radius: 24px 0 0 24px;
    border: 1px solid #E0E0E0;
    background-color: #FFF;
    position: fixed;
    top: 248px;
    right: -1px;
    z-index: 20;
}
@media (max-width: 1449px) {
    .quick-menu {
        right: -10px;
        transform: scale(0.8);
    }
}
@media (max-width: 1390px) {
    .quick-menu {
        display: none;
    }
}

.quick-menu-s {
    height: 259px;
}

.quick-menu .quick-menu-wrap {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.quick-menu .save-guide {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.quick-menu .save-guide div,
.quick-menu .move-top,
.quick-menu .move-top div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.quick-menu .save-guide::after {
    content: '';
    width: 56px;
    height: 1px;
    background-color: #E0E0E0;
    
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.quick-menu .save-guide div p,
.quick-menu .move-top p {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.quick-menu .save-guide div:nth-child(1) p {
    background: linear-gradient(-135deg, rgb(22, 140, 255) 0%, rgb(132, 85, 255) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quick-menu .move-top div {
    width: 38px;
    height: 38px;
    background-color: #F8F8FA;
    border-radius: 100%;
}

.cnts {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    margin-top: 40px;
}

@media (max-width: 1385px) {
    .cnts {
        padding: 0 60px;
    }
}

.main-cnt {
    gap: 40px;
}

/* 로그인 전 메인 화면 관련 css */
.tab-cnt {
    justify-content: center;
    height: 50px;
    gap: 20px;
    width: 100%;
    min-width: max-content;
}

.tab-cnt .tab {
    display: inline-block;
    width: 90px;
    height: 40px;
    border-radius: 100px;
    background: #EBEBEB;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: #9E9E9E;
}

.tab-cnt .active {
    background: linear-gradient(-135deg, rgb(22, 140, 255) 0%, rgb(132, 85, 255) 100%);
    color: #FFF;
}

.swiper-container {
    scroll-behavior: smooth;
    position: relative;
    height: 100%;
    overflow: hidden;
    display: block;
}

.swiper-container .swiper-wrapper {
    display: flex;
}

.swiper-container .swiper-wrapper .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
}

.swiper-container .swiper-controls {
    gap: 10px;
    justify-content: flex-end;
    position: relative;
    top: 20px;
    margin-bottom: 20px;
    pointer-events: auto;
    z-index: 10;
    width: 100%;
}

.swiper-container .swiper-controls .autoplay-progress {
    width: 160px;
    height: 8px;
    border-radius: 20px;
    background-color: #E0E0E0;
    position: relative;
    overflow: hidden;
}

.swiper-container .swiper-controls .autoplay-progress span {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    background: linear-gradient(-135deg, rgb(132, 85, 255) 0%, rgb(22, 140, 255) 100%);
    transform: scaleX(progress);
    transform-origin: left;
    transition: transform 0.3s linear;
}

.book-grid {
    display: grid;
    grid-auto-flow: row;
    grid-template-rows: repeat(2, auto);
    gap: 25px 19px;
}

/* 데스크탑에서만 8열 유지 */
@media screen and (min-width: 1024px) {
    .book-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

.book-grid .img-box {
    position: relative;
    max-width: 137px;
    width: 100%;
    border: 1px solid #E6E6E4;
    border-radius: 5.7px;
    box-shadow: 1.879px 1.879px 3.758px 0 rgba(0, 0, 0, 0.20);
}

.book-grid .book-img {
    width: 100%;
    height: 175px;
    border-radius: 5.7px;
}

.book-grid .img-box .link {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #FFF;
    border-radius: 100%;
    border: 1px solid #D7D7D7;
    width: 28px;
    height: 28px;
}

.book-grid .img-box .link img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.banner-cnt {
    gap: 16px;
}

.banner-cnt .banner {
    position: relative;
    width: 402px;
    height: 190px;
    border-radius: 12px;
}

.banner-cnt .banner img {
    position: absolute;
    top: 20px;
    left: 30px;
}
.banner-cnt .banner h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;

    position: absolute;
    top: 45px;
    left: 116px;
}

.banner-cnt .banner p {
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    color: #333;
    text-align: left;

    position: absolute;
    bottom: 20px;
    left: 30px;
}

@media screen and (max-width: 1150px) {
    .banner-cnt .banner p {
        font-size: 16px;
        bottom: 25px;
    }
}

.banner-cnt .banner:nth-child(1) {
    background: #E7F4FF;
}

.banner-cnt .banner:nth-child(2) {
    background: #E0F9F3;
}

.banner-cnt .banner:nth-child(3) {
    background: #EBEAFC;
}

.guide-cnt {
    display: none;
}

.info-cnt {
    justify-content: space-between;
    margin-bottom: 110px;
}

.info-cnt .noti-cnt,
.info-cnt .faq-cnt {
    max-width: 594px;
    width: 48%;
}

.info-cnt .info-header {
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #DDD;
}

.info-cnt .info-header h3 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
}

.info-cnt .info-header a {
    gap: 4px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.info-cnt .info-header a img {
    width: 20px;
    padding: 2px;
}

.info-cnt .info-list {
    gap: 14px;
}

.info-cnt .info-list .info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 16px;
    font-weight: 400;
}

.info-cnt .info-list .info-item .info-title {
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media screen and (max-width: 1023px) {
    .quick-menu {
        display: none;
    }

    .cnts {
        min-width: 360px;
        width: 100%;
        padding: 20px;
    }

    .main-cnt {
        gap: 20px;
    }

    .tab-cnt {
        justify-content: flex-start;
        height: 32px;
        gap: 6px;
        width: auto;
        min-width: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: 0;
    }
    .tab-cnt::-webkit-scrollbar {
        display: none;
    }

    .tab-cnt .tab {
        width: 66px;
        height: 32px;
        
        font-size: 14px;

        flex-shrink: 0;
    }

    .swiper-container {
        display: flex;
        height: 260px;
    }
    
    .swiper-container .swiper-wrapper {
        width: 100%;
        overflow-x: auto;
        gap: 10px;
    }

    .swiper-container .swiper-slide {
        width: auto !important;
    }

    .swiper-container .swiper-controls {
        display: none;
    }

    .book-grid {
        width: fit-content;
        grid-auto-flow: column;
        grid-auto-columns: auto;
        gap: 10px 10px;
    }

    .book-grid .img-box {
        width: 88px;
        height: 116px;
        border-radius: 4px;
        box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.20);
    }

    .book-grid .book-img {
        width: 88px;
        height: 116px;
        border-radius: 4px;
    }

    .book-grid .img-box .link {
        bottom: 8px;
        right: 8px;
        width: 24px;
        height: 24px;
    }

    .book-grid .img-box .link img {
        width: 14px;
    }

    .banner-cnt {
        flex-direction: column;
        gap: 10px;
    }

    .banner-cnt .banner {
        min-width: 320px;
        width: 100%;
        height: 114px;
    }

    .banner-cnt .banner img {
        width: 54px;
        top: 50%;
        left: 16px;
        transform: translateY(-50%);
    }

    .banner-cnt .banner h3 {
        font-size: 18px;
        top: 20px;
        left: 82px;
    }

    .banner-cnt .banner p {
        font-size: 14px;
        letter-spacing: -0.28px;

        bottom: 22px;
        left: 82px;
    }

    .guide-cnt {
        display: flex;
        justify-content: space-between;
    }

    .guide-cnt .t-guide,
    .guide-cnt .s-guide {
        min-width: 154px;
        width: 48%;
        height: 40px;
        padding: 9px 22px;
        border-radius: 20px;

        font-size: 14px;
        font-weight: 500;
    }

    .guide-cnt .t-guide {
        background-color: #108EFF;
        color: #FFFFFF;
    }

    .guide-cnt .s-guide {
        background-color: #FFFFFF;
        color: #108EFF;
        border: 1px solid #108EFF;
    }

    .info-cnt {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .info-cnt .noti-cnt,
    .info-cnt .faq-cnt {
        max-width: 950px;
        min-width: 320px;
        width: 100%;
    }

    .info-cnt .info-header {
        padding-bottom: 12px;
        margin-bottom: 16px;
    }

    .info-cnt .info-header h3 {
        font-size: 18px;
    }

    .info-cnt .info-header a {
        font-size: 14px;
    }

    .info-cnt .info-header a img {
        width: 16px;
    }

    .info-cnt .info-list .info-item {
        font-size: 14px;
    }

    .info-cnt .info-item .info-date {
        display: none;
    }
}

/* #5498 서비스 특징 영역 css */
.service-cnt .sv-cnt_inner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}
.service-cnt .sv-cnt_inner .sv-head {
  text-align: center;
  margin-bottom: 36px;
}
.service-cnt .sv-cnt_inner .sv-head .t1 {
  font-size: 56px;
  font-weight: 700;
  color: #222;
  margin-bottom: 17px;
}
.service-cnt .sv-cnt_inner .sv-head .word {
  position: relative;
  margin-right: 7px;
}
.service-cnt .sv-cnt_inner .sv-head .word:last-of-type {
  margin-right: 0;
}
.service-cnt .sv-cnt_inner .sv-head .word:before {
  position: absolute;
  color: #3D8FF7;
  width: 100%;
  top: -14px;
  font-size: 56px;
  line-height: 0;
  font-weight: 700;
  content: ".";
}
.service-cnt .sv-cnt_inner .sv-head .t2 {
  color: #222;
  font-size: 42px;
  font-weight: 500;
  line-height: 70px;
}
.service-cnt .sv-cnt_inner .top-cards {
  width: 100%;
  padding-bottom: 100px;
}
.service-cnt .sv-cnt_inner .top-cards .sub-tit {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 70px;
}
.service-cnt .sv-cnt_inner .top-cards .cards-wrap {
  display: flex;
  width: 100%;
  gap: 20px;
  flex-wrap: wrap;
}
.service-cnt .sv-cnt_inner .top-cards .card {
  position: relative;
  height: 652px;
  border-radius: 20px;
  padding: 50px 30px;
}
.service-cnt .sv-cnt_inner .top-cards .card .card-number {
  width: 66px;
  height: 37px;
  border-radius: 22px;
  background: #222;
  text-align: center;
  line-height: 37px;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
.service-cnt .sv-cnt_inner .top-cards .card h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 27px;
  line-height: 48px;
  letter-spacing: -0.4px;
  word-break: keep-all;
}
.service-cnt .sv-cnt_inner .top-cards .card ul {
  position: relative;
  z-index: 2;
}
.service-cnt .sv-cnt_inner .top-cards .card li {
  position: relative;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.4px;
  margin-bottom: 3px;
  word-break: keep-all;
  padding-left: 10px;
}
.service-cnt .sv-cnt_inner .top-cards .card li:before {
  content: "•";
  color: #222;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -3px;
}
.service-cnt .sv-cnt_inner .top-cards .card .card-i {
  position: absolute;
  z-index: 1;
}
.service-cnt .sv-cnt_inner .top-cards .card01 {
  width: 100%;
  background: #3D8FF7;
  color: #fff;
  padding: 50px;
}
.service-cnt .sv-cnt_inner .top-cards .card01 .card-number {
  background: #FFF;
  color: #3D8FF7;
}
.service-cnt .sv-cnt_inner .top-cards .card01 h3 {
  margin-bottom: 42px;
}
.service-cnt .sv-cnt_inner .top-cards .card01 .card-i:first-of-type {
  right: 352px;
  bottom: 277px;
}
.service-cnt .sv-cnt_inner .top-cards .card01 .card-i:last-of-type {
  bottom: 0;
  right: 10px;
}
.service-cnt .sv-cnt_inner .top-cards .card01 li:before {
  color: #fff;
}
.service-cnt .sv-cnt_inner .top-cards .card02 {
  width: calc(50% - 10px);
  background: #E6F4FF;
}
.service-cnt .sv-cnt_inner .top-cards .card02 .card-number {
  color: #EDF7FF;
}
.service-cnt .sv-cnt_inner .top-cards .card02 .card-i {
  bottom: 15px;
  right: 10px;
}
.service-cnt .sv-cnt_inner .top-cards .card03 {
  width: calc(50% - 10px);
  background: #DFF3E7;
}
.service-cnt .sv-cnt_inner .top-cards .card03 .card-number {
  color: #E2E8FF;
}
.service-cnt .sv-cnt_inner .top-cards .card03 .card-i {
  bottom: 41px;
  right: 67px;
}
.service-cnt .sv-cnt_inner .top-cards .card04 {
  width: calc(50% - 10px);
  background: #F2EDFF;
}
.service-cnt .sv-cnt_inner .top-cards .card04 .card-number {
  color: #F7F8FA;
}
.service-cnt .sv-cnt_inner .top-cards .card04 .card-i {
  bottom: 25px;
  right: 26px;
}
.service-cnt .sv-cnt_inner .top-cards .card05 {
  width: calc(50% - 10px);
  background: #E2E8FF;
}
.service-cnt .sv-cnt_inner .top-cards .card05 .card-number {
  color: #DFF3E7;
}
.service-cnt .sv-cnt_inner .top-cards .card05 .card-i {
  bottom: -6px;
  right: -1px;
}
.service-cnt .sv-cnt_full {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 80px;
}
.service-cnt .sv-cnt_full .bottom-cards {
  padding: 100px 0;
  background: #F9FAFC;
}
.service-cnt .sv-cnt_full .bottom-cards .sub-tit {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 70px;
}
.service-cnt .sv-cnt_full .bottom-cards .cards-wrap {
  display: flex;
  gap: 20px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}
.service-cnt .sv-cnt_full .bottom-cards .cards-wrap .card {
  position: relative;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  height: 532px;
  flex: 1 1 0;
  padding: 258px 25px 0 30px;
}
.service-cnt .sv-cnt_full .bottom-cards .cards-wrap .card .card-i {
  position: absolute;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
}
.service-cnt .sv-cnt_full .bottom-cards .cards-wrap .card h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 33px;
  letter-spacing: -0.4px;
  word-break: keep-all;
}
.service-cnt .sv-cnt_full .bottom-cards .cards-wrap .card li {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  color: #666;
  margin-bottom: 4px;
  letter-spacing: -0.4px;
  word-break: keep-all;
  padding-left: 10px;
}
.service-cnt .sv-cnt_full .bottom-cards .cards-wrap .card li:before {
  content: "•";
  color: #666;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -3px;
}
.service-cnt .sv-cnt_full .sv-banner .mo_ban {
  display: none;
}
.service-cnt .sv-cnt_full .sv-banner img {
  display: block;
  max-width: 100%;
  height: auto;
}

.mo-br {
  display: none;
}

@media screen and (max-width: 1385px) {
  .service-cnt .sv-br {
    display: none;
  }
  .service-cnt .sv-cnt_inner {
    padding: 0 60px;
  }
  .service-cnt .sv-head .t1 {
    font-size: 52px;
  }
  .service-cnt .top-cards .sub-tit {
    font-size: 38px;
  }
  .service-cnt .top-cards .card h3 {
    font-size: 36px;
  }
  .service-cnt .sv-cnt_full .bottom-cards .sub-tit {
    font-size: 38px;
  }
  .service-cnt .sv-cnt_full .bottom-cards .cards-wrap {
    padding: 0 60px;
  }
  .service-cnt .sv-cnt_full .bottom-cards .cards-wrap .card {
    padding: 220px 10px 0 20px;
  }
  .service-cnt .sv-cnt_full .bottom-cards .cards-wrap .card h4 {
    font-size: 26px;
  }
  .service-cnt .sv-cnt_full .bottom-cards .cards-wrap .card li {
    font-size: 18px;
  }
}
@media screen and (max-width: 1023px) {
  .service-cnt .sv-br, .service-cnt .mo-br {
    display: block;
  }
  .service-cnt .sv-cnt_inner {
    min-width: 360px;
    width: 100%;
    padding: 0 20px;
  }
  .service-cnt .sv-cnt_inner .sv-head {
    text-align: center;
    margin-bottom: 22px;
  }
  .service-cnt .sv-cnt_inner .sv-head .t1 {
    font-size: 24px;
    margin-bottom: 9px;
  }
  .service-cnt .sv-cnt_inner .sv-head .word {
    margin-right: 3px;
  }
  .service-cnt .sv-cnt_inner .sv-head .word:before {
    top: -8px;
    font-size: 27px;
  }
  .service-cnt .sv-cnt_inner .sv-head .t2 {
    font-size: 15px;
    line-height: 26px;
    letter-spacing: -0.1px;
  }
  .service-cnt .sv-cnt_inner .top-cards {
    padding-bottom: 20px;
  }
  .service-cnt .sv-cnt_inner .top-cards .sub-tit {
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: -0.2px;
  }
  .service-cnt .sv-cnt_inner .top-cards .cards-wrap {
    gap: 10px;
    flex-direction: column;
  }
  .service-cnt .sv-cnt_inner .top-cards .card {
    height: 320px;
    border-radius: 12px;
    padding: 16px 8px 16px 16px !important;
    width: 100% !important;
  }
  .service-cnt .sv-cnt_inner .top-cards .card .card-number {
    width: 32px;
    height: 18px;
    border-radius: 10px;
    line-height: 18px;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .service-cnt .sv-cnt_inner .top-cards .card h3 {
    font-size: 20px;
    margin-bottom: 10px !important;
    line-height: 24px;
    letter-spacing: -0.2px;
  }
  .service-cnt .sv-cnt_inner .top-cards .card li {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.3px;
    margin-bottom: 0px;
  }
  .service-cnt .sv-cnt_inner .top-cards .card li:before {
    font-size: 16px;
    top: -1px;
  }
  .service-cnt .sv-cnt_inner .top-cards .card01 .card-i:first-of-type {
    right: 90px;
    bottom: 90px;
    width: 71px;
    height: 59px;
  }
  .service-cnt .sv-cnt_inner .top-cards .card01 .card-i:last-of-type {
    bottom: 0;
    right: -2px;
    width: 146px;
    height: 137px;
  }
  .service-cnt .sv-cnt_inner .top-cards .card02 .card-i {
    width: 132px;
    height: 124px;
    bottom: 15px;
    right: 10px;
  }
  .service-cnt .sv-cnt_inner .top-cards .card03 .card-i {
    width: 88px;
    height: 98px;
    bottom: 21px;
    right: 19px;
  }
  .service-cnt .sv-cnt_inner .top-cards .card04 .card-i {
    width: 147px;
    height: 130px;
    bottom: 7px;
    right: 5px;
  }
  .service-cnt .sv-cnt_inner .top-cards .card05 .card-i {
    width: 168px;
    height: 149px;
    bottom: -7px;
    right: -7px;
  }
  .service-cnt .sv-cnt_full {
    padding-bottom: 40px;
  }
  .service-cnt .sv-cnt_full .bottom-cards {
    padding: 40px 0;
  }
  .service-cnt .sv-cnt_full .bottom-cards .sub-tit {
    font-size: 18px;
    margin-bottom: 11px;
    letter-spacing: -0.2px;
  }
  .service-cnt .sv-cnt_full .bottom-cards .cards-wrap {
    gap: 8px;
    flex-direction: column;
    padding: 0 20px;
  }
  .service-cnt .sv-cnt_full .bottom-cards .cards-wrap .card {
    border-radius: 12px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    height: 238px;
    padding: 110px 20px 0 20px;
    flex: auto;
  }
  .service-cnt .sv-cnt_full .bottom-cards .cards-wrap .card .card-i {
    top: 20px;
  }
  .service-cnt .sv-cnt_full .bottom-cards .cards-wrap .card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 20px;
    letter-spacing: -0.2px;
  }
  .service-cnt .sv-cnt_full .bottom-cards .cards-wrap .card li {
    font-size: 14px;
    margin-bottom: 2px;
    letter-spacing: -0.2px;
  }
  .service-cnt .sv-cnt_full .bottom-cards .cards-wrap .card li:before {
    font-size: 14px;
    top: -1px;
  }
  .service-cnt .sv-cnt_full .bottom-cards .cards-wrap .card01 .card-i {
    width: 70px;
    height: 70px;
  }
  .service-cnt .sv-cnt_full .bottom-cards .cards-wrap .card02 .card-i {
    width: 60px;
    height: 65px;
  }
  .service-cnt .sv-cnt_full .bottom-cards .cards-wrap .card03 {
    height: 258px;
  }
  .service-cnt .sv-cnt_full .bottom-cards .cards-wrap .card03 .card-i {
    width: 76px;
    height: 76px;
  }
  .service-cnt .sv-cnt_full .sv-banner img {
    display: block;
    max-width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .service-cnt .sv-cnt_full .sv-banner .mo_ban {
    display: block;
    width: 100%;
  }
  .service-cnt .sv-cnt_full .sv-banner .pc_ban {
    display: none;
  }
}

/* 학생용 메인 화면 관련 css */
.my-class-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 20px;
}

.my-class-title h3 {
    font-size: 24px;
    font-weight: 600;
}

.my-class-title .select-class-wrap .select-class-btn {
    width: 230px;
    height: 46px;
    /* min-width: 180px;
    min-height: 40px; */
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #E0E0E0;

    z-index: 10;
}

.my-class-title .select-class-wrap .select-class-btn a {
    justify-content: space-between;

    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.my-class-title .select-class-wrap .select-class-btn.on {
    border-radius: 8px 8px 0 0;
    border-bottom: none;
}

.my-class-title .select-class-wrap .select-class-btn span {
    width: fit-content;
    font-size: 18px;
    font-weight: 500;
    color: #108EFF;
}

.my-class-title .select-class-wrap .select-class-btn img {
    width: 10px;
}

.my-class-title .select-class-wrap ul {
    width: 230px;
    display: none;
    position: absolute;
    border: 1px solid #E0E0E0;
    border-radius: 0 0 8px 8px;

    z-index: 10;
}

.my-class-title .select-class-wrap ul .selected {
    background-color: #F4F9FF;
    padding: 10px 14px;
    color: #108EFF;
}

.my-class-title .select-class-wrap li {
    height: 46px;
    padding: 12px 14px;
    background-color: #FFF;
    border: 1px solid #FFF;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: #7E7E7E;
}


.my-class-title .select-class-wrap li:hover {
    background-color: #F4F9FF;
    color: #108EFF;
    padding-left: 14px;
}

.my-class-title .select-class-wrap li:last-child {
    border-radius: 0 0 8px 8px;
}

.book-list {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
}

.book-list .book-wrap {
    max-width: 160px;
    width: 100%;
}

.book-list .book-wrap .book-img {
    width: 100%;
    border: 1px solid #E6E6E4;
    border-radius: 9px;
}

.book-list .book-wrap h3 {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    margin-top: 12px;
}

.book-list .book-wrap h3 br {
    display: none;
}

.book-list .book-wrap.not-submit img {
    border: 3px solid #FE2728;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.30);
}

.book-list .book-wrap.not-submit h3 {
    font-weight: 600;
    color: #FE2728;
}

.my-learning-status h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.my-learning-status .my-progress {
    height: 80px;
    padding: 20px 40px;
    border-radius: 12px;
    background-color: #FAFAFA;

    justify-content: space-between;
}

.my-learning-status .total-progress {
    gap: 10px
}

.my-learning-status .total-progress p {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.my-learning-status .total-progress h4 {
    padding: 8px 24px;
    background-color: #FFF;
    border-radius: 50px;

    font-size: 22px;
    font-weight: 600;
}

.my-learning-status .total-progress h4 em {
    font-weight: 600;
    color: #108EFF;
}

.my-learning-status .total-progress .progress-bar {
    width: 320px;
    height: 24px;
    border-radius: 50px;
    background-color: #E8E8E8;
    overflow-x: hidden;
}

.my-learning-status .total-progress .progress-bar .progress-fill {
    width: 73.3%;
    height: 24px;
    border-radius: 50px;
    background-color: #108EFF;
}

.my-learning-status .not-submitted {
    gap: 16px;
    width: 178px;
    height: 40px;
    padding: 12px 24px;
    border-radius: 50px;
    background-color: #FFF;
}

.my-learning-status .not-submitted h4 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.my-learning-status .not-submitted span {
    font-size: 22px;
    font-weight: 600;
    color: #FE2728;
}

.recent-share .recent-title {
    justify-content: space-between;
    margin-bottom: 20px;
}

.recent-share .recent-title h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.recent-share .recent-title div {
    gap: 4px;
}

.recent-share .recent-title div h3 {
    font-size: 16px;
    font-weight: 500;
}

.recent-share .recent-title div img {
    width: 20px;
    padding: 2px;
}

.recent-share .recent-list {
    width: 100%;
    max-width: 1240px;
}

.recent-share .recent-list table {
    table-layout: fixed;
    width: 100%;
}

.recent-share .recent-list thead {
    height: 50px;
    background-color: #FAFAFA;
    border-top: 1px solid #333;
}

.recent-share .recent-list thead th {
    font-size: 18px;
    font-weight: 600;
    text-align: center;

    border-right: 1px solid #DDD;
}

.recent-share .recent-list thead th:last-child {
    border-right: none;
}

.recent-share .recent-list tbody tr {
    border-top: 1px solid #DDD;
}

.recent-share .recent-list tbody td {
    height: 50px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 10px;
    border-right: 1px solid #DDD;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recent-share .recent-list tbody td:last-child {
    border-right: none;
}

.recent-share .recent-list tbody td:nth-child(2),
.recent-share .recent-list tbody td:nth-child(3) {
    text-align: left;
}

.recent-share .recent-list tbody td:nth-child(6) {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0 0;
}

.recent-share .recent-list tbody .state {
    display: flex;
    align-items: center;
    justify-content: center;
}

.recent-share .recent-list tbody .state .mark {
    width: 16px;
    height: 16px;
    border-radius: 10px;
    margin-right: 4px
}

.recent-share .recent-list tbody .state.wait .mark {
    background-color: #b4b4b4;
}

.recent-share .recent-list tbody .state.ongoing .mark {
    background-color: #108eff;
}

.recent-share .recent-list tbody .state.complete .mark {
    background-color: #ff569a;
}
@media screen and (max-width: 1023px) {
    .main-cnt.s-main {
        gap: 30px;
    }

    .my-class-title {
        flex-direction: column;
        margin-top: 20px;
        gap: 20px;
    }

    .my-class-title h3 {
        font-size: 18px;
    }

    .my-class-title .select-class-wrap {
        position: relative;
        min-width: 320px;
        width: 100%;
        box-sizing: border-box;
    }

    .my-class-title .select-class-wrap .select-class-btn {
        width: 100%;
        height: 40px;
        padding: 12px 10px;
        box-sizing: border-box;
    }

    .my-class-title .select-class-wrap .select-class-btn span {
        font-size: 14px;
    }

    .my-class-title .select-class-wrap ul {
        position: absolute;
        width: 100%;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }

    .my-class-title .select-class-wrap ul li {
        font-size: 14px;
    }

    .book-list {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 7px;
    }

    .book-list .book-wrap {
        width: 102px;
        height: 180px;
    }

    .book-list .book-wrap .book-img {
        width: 100px;
        aspect-ratio: 25/32;
        border-radius: 6px;
        box-shadow: 0 2.161px 2.161px 0 rgba(0, 0, 0, 0.25);
    }

    .book-list .book-wrap h3 {
        font-size: 14px;
        margin-top: 10px;
        line-height: 120%;
    }

    .book-list .book-wrap h3 br {
        display: block;
    }

    .book-list .book-wrap.not-submit img {
        border: 2px solid #FE2728;
        box-shadow: 0 2.161px 2.161px 0 rgba(0, 0, 0, 0.25);
    }

    .book-list .book-wrap.not-submit h3 {
        font-weight: 500;
    }

    .my-learning-status h1 {
        font-size: 18px;
    }

    .my-learning-status .my-progress {
        flex-direction: column;
        align-items: flex-start;
        height: 120px;
        padding: 16px 20px;
    }

    .my-learning-status .total-progress {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .my-learning-status .total-progress p {
        font-size: 14px;
    }

    .my-learning-status .total-progress h4 {
        display: flex;
        justify-content: center;
        width: 84px;
        padding: 4px 10px;
        font-size: 18px;
    }

    .my-learning-status .total-progress .progress-bar {
        min-width: 280px;
        width: 100%;
        height: 14px;
    }

    .my-learning-status .total-progress .progress-bar .progress-fill {
        height: 14px;
    }

    .my-learning-status .not-submitted {
        gap: 10px;
        width: 128px;
        height: 30px;
        padding: 4px 10px;

        position: relative;
        top: -50px;
        left: 95px;
    }

    .my-learning-status .not-submitted h4 {
        font-size: 14px;
        font-weight: 500;
    }

    .my-learning-status .not-submitted span {
        font-size: 18px;
    }

    .recent-share .recent-title h3 {
        font-size: 18px;
    }

    .recent-share .recent-title div h3 {
        font-size: 16px;
    }

    .recent-share .recent-title div img {
        width: 16px;
    }

    .recent-share .table-scroll-wrap {
        overflow-x: auto;
        width: 100%;
    }

    .recent-share .recent-list {
        width: 840px;
        margin: 9px;
    }

    .recent-share .recent-list tbody .badge-stat {
        font-size: 16px;
        font-weight: 500;
    }
    
    .recent-share .recent-list tbody .badge-state .mark {
        content: '';
        width: 12px;
        height: 12px;
        border-radius: 10px;
        margin-right: 4px
    }

    .s-guide-cnt {
        justify-content: center;
    }
    
    .recent-share .recent-list tbody td:nth-child(6) .btn-state {
        width: 70px;
        height: 25px;
        font-size: 12px;
    }

    .recent-share .recent-list thead {
        height: 40px;
    }

    .recent-share .recent-list thead th {
        font-size: 15px;
    }

    .recent-share .recent-list tbody td {
        height: 40px;
        font-size: 14px;
        padding: 5px 10px;
    }

    .recent-share .recent-list .badge-report.size-s {
        height: 24px;
        font-size: 12px;
    }

    .recent-share .recent-list tbody .state {
        font-size: 14px;
    }

    .recent-share .recent-list tbody .state .mark {
        width: 12px;
        height: 12px;
    }
}

/* 교사용 메인 화면 관련 css */
.state-list {
    gap: 20px;
    max-width: 1240px;
    width: 100%;
    background-color: #F4F9FF;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.state-list span {
    content: '';
    width: 1px;
    height: 28px;
    background-color: #DDD;
}

.state-list .list-title {
    width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.state-list .list-title h3 {
    font-size: 16px;
    font-weight: 500;
}

.state-list .list-title a {
    font-size: 34px;
    font-weight: 600;
    color: #108EFF;
    cursor: pointer;
}

.state-list .list-title.total h3 {
    font-weight: 700;
}

.state-list .list-title.total a {
    font-weight: 700;
}

.state-list .list-title.state-none h3 {
    color: #9E9E9E;
}

.state-list .list-title.state-none p {
    color: #9E9E9E;
}

.book-swiper {
    max-width: 1240px;
    width: 100%;
    position: relative;
}

.book-swiper .swiper-container {
    width: 90%;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;

    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.book-swiper .swiper-wrapper {
    display: flex !important;
    position: relative;
    width: 100%;
    height: 100%;
    transition-property: transform;
    box-sizing: content-box;
}

.book-swiper .swiper-slide {
    flex-shrink: 0;
    height: 100%;
}

.book-swiper .book-wrap {
    box-sizing: border-box;
}

.book-swiper .book-wrap img {
    max-width: 142px;
    width: 100%;
    border: 1px solid #E6E6E4;
    border-radius: 9px;
}

.book-swiper .book-wrap h3 {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin-top: 10px;
}

.book-swiper .book-wrap h3 br {
    display: none;
}

.book-swiper .book-wrap.checking-graph img {
    border: 3px solid #FE2728;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.30);
}

.book-swiper .book-wrap.checking-graph h3 {
    color: #FE2728;
    font-weight: 600;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: '';
    display: none;
}

.swiper-button-prev,
.swiper-button-next {
    width: 38px !important;
    height: 38px !important;
    border-radius: 100%;
    border: 1px solid #333;
    cursor: pointer;
    z-index: 10;
}

.swiper-button-prev.disabled,
.swiper-button-next.disabled {
    border: 1px solid #A4A4A4;
}

.swiper-button-prev img path,
.swiper-button-next img path {
    stroke: #333;
}

.swiper-button-prev.disabled img path,
.swiper-button-next.disabled img path {
    stroke: #A4A4A4;
}

.subject-graph-cnt h4 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.subject-graph-cnt .subject-graph-wrap {
    flex-direction: column;

    max-width: 1240px;
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    background-color: #FAFAFA;
}

.subject-graph-cnt .graph-legend {
    justify-content: space-between;

    width: 100%;
}

.subject-graph-cnt .graph-legend .average,
.subject-graph-cnt .graph-legend .label {
    gap: 16px;

    padding: 12px 24px;
    border-radius: 50px;
    background-color: #FFF;
}

.subject-graph-cnt .graph-legend .average h5 {
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.subject-graph-cnt .graph-legend .average p {
    color: #108EFF;
    font-size: 22px;
    font-weight: 600;
}

.subject-graph-cnt .graph-legend .label span {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: #108EFF;
}

.subject-graph-cnt .graph-legend .label p {
    color: #121212;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.subject-graph-cnt .subject-graph {
    min-width: 300px;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 15px;
}

.subject-graph-cnt .subject-graph::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.subject-graph-cnt .subject-graph::-webkit-scrollbar-thumb {
    width: 5px;
    height: 5px;
    border-radius: 10px;
    background-color: #bebebe;
}

@media screen and (max-width: 1023px) {
    .state-list-wrap {
        min-width: 300px;
        width: 100%;
        overflow-x: auto;

        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .state-list-wrap::-webkit-scrollbar {
        display: none;
    }

    .state-list {
        gap: 16px;
        min-width: 491px;
        width: 100%;
        height: 80px;
        padding: 15px 22px;
    }

    .state-list span {
        height: 20px;
    }

    .state-list .list-title {
        width: 27px;
        gap: 4px;
    }

    .state-list .list-title h3 {
        font-size: 14px;
        line-height: 22px;
    }

    .state-list .list-title a {
        font-size: 20px;
        font-weight: 700;
    }

    .book-swiper {
        max-width: none;
        min-width: 300px;
        height: 183px;
    }

    .book-swiper .swiper-container {
        width: 100%;
        overflow: auto;
    }

    .book-swiper .book-wrap img {
        width: 92px;
        border-radius: 6px;
    }

    .book-swiper .book-wrap h3 br {
        display: block;
    }

    .book-swiper .book-wrap.checking-graph img {
        border: 2px solid #FE2728;
        box-shadow: 1.297px 1.297px 2.593px 0 rgba(0, 0, 0, 0.30);
    }

    .book-swiper .book-wrap.checking-graph h3 {
        font-weight: 500;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none !important;
    }

    .subject-graph-cnt h1 {
        font-size: 18px;
    }

    .subject-graph-cnt .subject-graph-wrap {
        min-width: 300px;
        width: 100%;
        height: 332px;
        padding: 15px 10px 10px 10px;
    }

    .subject-graph-cnt .graph-legend .average,
    .subject-graph-cnt .graph-legend .label {
        gap: 10px;

        padding: 4px 10px;
    }

    .subject-graph-cnt .graph-legend .average h5 {
        font-size: 12px;
    }

    .subject-graph-cnt .graph-legend .average p {
        font-size: 18px;
    }

    .subject-graph-cnt .graph-legend .label span {
        width: 10px;
        height: 10px;
    }

    .subject-graph-cnt .graph-legend .label p {
        font-size: 12px;
    }
}