@charset "utf-8";
/*  Pretendard Font */

/* Pretendard ExtraLight (300) */
@font-face {
  font-family: 'Pretendard';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('/assets/fonts/Pretendard-ExtraLight.woff2') format('woff2'),
       url('/assets/fonts/Pretendard-ExtraLight.woff') format('woff');
}

/* Pretendard Regular (400) */
@font-face {
  font-family: 'Pretendard';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('/assets/fonts/Pretendard-Regular.woff2') format('woff2'),
       url('/assets/fonts/Pretendard-Regular.woff') format('woff');
}

/* Pretendard Medium (500) */
@font-face {
  font-family: 'Pretendard';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('/assets/fonts/Pretendard-Medium.woff2') format('woff2'),
       url('/assets/fonts/Pretendard-Medium.woff') format('woff');
}

/* Pretendard SemiBold (600) */
@font-face {
  font-family: 'Pretendard';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('/assets/fonts/Pretendard-SemiBold.woff2') format('woff2'),
       url('/assets/fonts/Pretendard-SemiBold.woff') format('woff');
}

/* Pretendard Bold (700) */
@font-face {
  font-family: 'Pretendard';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('/assets/fonts/Pretendard-Bold.woff2') format('woff2'),
       url('/assets/fonts/Pretendard-Bold.woff') format('woff');
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
    font-family: 'Pretendard', sans-serif;
    box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, a, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, button, input, textarea {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    box-sizing: border-box;
    font-family: 'Pretendard', sans-serif;
    line-height: 1;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
ol, ul {
    list-style: none;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
button {
    background: none;
    cursor: pointer;
}
button:disabled {
    cursor: default;
}
button:active, button:focus {
    outline: none;
}
select, option {
    font-family: 'Pretendard', sans-serif;
}
em {
    text-decoration: none;
    font-style: unset;
}
html {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
	overflow: hidden;
	height: 100%;
}
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}
button, a {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}
body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background-color: #E7E7ED;
    color: #222;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	overflow-x: hidden !important;
	overflow-y: hidden !important;
}
#wrapper {
    width: 1280px;
    height: 800px;
    min-width: 1280px;
    min-height: 800px;
    display: flex;
    transform: scale(var(--scale, 1));
    transform-origin: center top;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    background: #E7E7ED;
}

/*
*/
/*
*/
/* ------------------------------ */
/* ------------------------------ */
/*       PC Sidebar CSS Start     */
/* ------------------------------ */
.sidebar {
    width: 240px;
    flex-shrink: 0;
    background-color: #153B6C;
    color: #fff;
    display: flex;
    flex-direction: column;
    border-top-right-radius: 2.5rem;
    border-bottom-right-radius: 2.5rem;
    padding: 3.5rem 0;
    transition: width 0.5s ease-in-out;
    position: relative;
    z-index: 1;
}
.sidebar::after {
    content: '';
    width: 10000px;
    height: 100%;
    background: #153B6C;
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1;
}
.sidebar-header {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: center;
}
.more-open-btn {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #278A32;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-category {
    font-size: 32px;
    font-weight: 700;
    padding: 36px 0 40px 0;
    overflow: hidden;
    text-align: center;
    letter-spacing: -1px;
}
.lnb-text {
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.5s ease, width 0.5s ease;
}
.sidebar-nav {
    padding-inline-start: 0;
    margin: 0;
}
.sidebar-nav ul {
    list-style: none;
}
.sidebar-nav ul li {
    position: relative;
}
.sidebar-nav li a img {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 12px;
    fill: currentColor;
    flex-shrink: 0;
}
.sidebar-nav li a {
    width: 90%;
    height: 64px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    color: #eee;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 100%;
    overflow: hidden;
    letter-spacing: -0.2px;
    border-radius: 0 32px 32px 0;
    margin-bottom: 16px;
    opacity: 0.8;
}
.sidebar-nav li a:hover {
    opacity: 1;
}
.sidebar-nav .selected-menu {
    color: #fff;
    background-color: #F66E04;
    font-weight: 600;
    letter-spacing: -0.5px;
    opacity: 1;
}
.sidebar-nav .selected-menu::after {
    content: '';
    width: 10000px;
    height: 64px;
    background: #F66E04;
    position: absolute;
    left: -9998px;
    z-index: 2;
}
#sidebar-toggle {
    position: absolute;
    top: calc(50% - 60px);
    right: 0;
    width: 20px;
    height: 120px;
    background-color: #446289;
    border-radius: 16px 0 0 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1.5s ease-out;
	z-index: 1;
}
#sidebar-toggle:hover {
    opacity: 0.8;
}
.sidebar.collapsed {
    width: 6.5rem;
    padding: 3.5rem 20px;
}
.sidebar.collapsed .selected-menu {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}
.sidebar.collapsed .selected-menu::after {
    background: none;
}
.sidebar.collapsed .lnb-text {
    opacity: 0;
    width: 0;
    transition: opacity 0.2s ease, width 0.2s ease 0.1s;
}
.sidebar.collapsed .sidebar-nav li a {}
.sidebar.collapsed #sidebar-toggle {
    right: -20px;
    background-color: rgb(68, 98, 137, 0.5);
    border-radius: 0 16px 16px 0;
}
.sidebar.collapsed #sidebar-toggle img {
    transform: rotate(180deg);
}
.sidebar.collapsed li {
    position: relative;
}
.sidebar.collapsed li i {
    display: none;
    width: 15px;
    height: 46px;
    margin-left: 8px;
    background: url("../images/tooltip_tail.svg") no-repeat;
    position: absolute;
	z-index: 100;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.sidebar.collapsed li i::after {
    content: attr(data-title);
    height: 46px;
    padding: 5px 12px 5px 4px;
    margin-left: -1px;
    box-sizing: border-box;
    position: absolute;
	z-index: 100;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    background: #E7E7ED;
    border: 2px solid #446289;
    border-left: none;
    border-radius: 0 8px 8px 0;
    white-space: nowrap;
    font-style: normal;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    line-height: 100%;
    letter-spacing: -0.5px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.sidebar.collapsed li:hover i, .sidebar.collapsed li:hover i::after {
    opacity: 1;
    display: flex;
}
.sidebar.collapsed li i, .sidebar.collapsed li i::after {
    pointer-events: none;
	z-index: 2;
}
/* ------------------------------ */
/*        PC Sidebar CSS End      */
/* ------------------------------ */
/* ------------------------------ */
/*
*/
/*
*/
/* ------------------------------ */
/* ------------------------------ */
/*        Moremenu CSS Start      */
/* ------------------------------ */
.more-menu {
    width: 320px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    border-radius: 0 16px 16px 0;
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    z-index: 11;
    transform: translateX(-320px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s ease, opacity 0.1s ease 0.1s;
}
.more-menu.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    transition: transform 0.6s ease, opacity 0.6s ease 0.2s;
}
.sidebar-nav .selected-menu.hide-after::after {
    opacity: 0;
    transition: opacity 0.9s ease 0.1s;
}
.user-box {
    position: relative;
    width: 100%;
    height: 240px;
    background-color: #278A32;
    padding: 56px 30px 30px 32px;
}
.user-box h3 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -1px;
}
.user-box .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.user-box .close-btn img {
    width: 24px;
    height: 24px;
}
.user-box .logout-btn {
    width: 100px;
    height: 40px;
    margin-top: 12px;
    padding: 10px 12px;
    background: transparent;
    border-radius: 4px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 18px;
    line-height: 100%;
    cursor: pointer;
}
.user-box .logout-btn:hover {
    background-color: rgba(255, 255, 255, 0.16);
}
.menu-list {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    color: #444;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}
.menu-item:hover {
    color: #666;
}
.menu-item img {
    width: 40px;
    height: 40px;
}
.install {
    line-height: 22px;
    margin: 30px;
    padding: 0 32px;
    background: url("../images/desktop-icon.svg") no-repeat;
    cursor: pointer;
    color: #444;
    font-size: 18px;
    font-weight: 500;
    -webkit-tap-highlight-color: transparent;
}
.logo-box {
    width: 100%;
    height: 164px;
    padding: 20px 30px;
    background: #F2F2F2;
    border-top: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.logo-box a {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
}
.logo-box .parallaxedu-logo {
    height: 22px;
    cursor: pointer;
}
.logo-box .gnbenglish-logo {
    height: 26px;
    cursor: pointer;
}
/* ------------------------------ */
/*         Moremenu CSS End       */
/* ------------------------------ */
/* ------------------------------ */
/*
*/
/*
*/
main {
	width: 100%;
    height: 100%;
	position: relative;
	z-index: 0;
}
/* ------------------------------ */
/* ------------------------------ */
/*    PC Main Header CSS Start    */
/* ------------------------------ */
#pc-main-header {
    height: 80px;
    padding: 0 24px;
    border-bottom: 1px solid #D8D8D8;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
#pc-main-header .logo {
    justify-self: start;
}
#pc-main-header .timer {
    min-width: 208px;
    height: 48px;
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 24px;
    color: #222;
    gap: 8px;
    letter-spacing: -0.8px;
}
#pc-main-header .timer img {
    display: block;
}
#pc-main-header .profile {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.5px;
}
#pc-main-header .profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #CED1DD;
    padding: 6px;
}
#pc-main-header .profile-name {
    white-space: nowrap;
}
/* ------------------------------ */
/*     PC Main Header CSS End     */
/* ------------------------------ */
/* ------------------------------ */
/*
*/
/*
*/
/* ------------------------------ */
/* ------------------------------ */
/*     M Main Header CSS Start    */
/* ------------------------------ */
#mo-main-header {
    width: 100%;
    height: 60px;
	flex-shrink: 0;
    background-color: #153B6C;
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#mo-main-header .logo {
    height: 20px;
}
#mo-main-header .profile {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #CED1DD;
    overflow: hidden;
}
#mo-main-header .profile img {
    width: 32px;
    height: 32px;
}
/* ------------------------------ */
/*     M Main Header CSS Start    */
/* ------------------------------ */
/* ------------------------------ */
/*
*/
/*
*/
/* ------------------------------ */
/* ------------------------------ */
/*      M Main Menu CSS Start     */
/* ------------------------------ */
#mo-nav-container {
    width: 100%;
    min-height: 56px;
    display: none;
	flex-shrink: 0;
}
.mo-dropdown {
    width: 100%;
    z-index: 6;
    position: absolute;
}
.mo-dropdown-header {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.dropdown-title {
    width: 100%;
    height: 56px;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 16px 16px;
    background-color: #E7E7ED;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    line-height: 100%;
}
.dropdown-title .title-icon {
    width: 24px;
    height: 24px;
    filter: brightness(40%);
}
.dropdown-title .title-text {
    font-size: 24px;
    font-weight: 700;
    color: #222;
}
.dropdown-title .arrow {
    width: 24px;
    height: 24px;
    margin-left: 8px;
}
.mo-dropdown.open .dropdown-title .arrow {
    transform: rotate(-180deg);
}
.dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease;
    background-color: #fff;
    padding: 0 20px;
}
.mo-dropdown.open .dropdown-menu {
    max-height: 300px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.dropdown-menu li {
    list-style: none;
}
.dropdown-menu li a {
    height: 60px;
    box-sizing: border-box;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 10px;
    font-size: 18px;
    font-weight: 500;
    color: #444;
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}
.dropdown-menu li a img {
    width: 20px;
    height: 20px;
    filter: brightness(40%);
}
.dropdown-menu li a:hover {
    background-color: #f2f2f2;
}
.dropdown-menu-dim {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.72);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#mo-nav-container.active .dropdown-menu-dim {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
/* ------------------------------ */
/*       M Main Menu CSS End      */
/* ------------------------------ */
/* ------------------------------ */
/*
*/
/*
*/
/* ------------------------------ */
/* ------------------------------ */
/*       Main Area CSS Start      */
/* ------------------------------ */
#container {
    width: 100%;
    height: calc(100% - 80px);
	display: flex;
	flex-direction: column;
}
#sub-container {
    width: 100%;
    height: calc(100% - 80px);
	display: flex;
	flex-direction: column;
}
#content-header {
    width: 100%;
    height: 72px;
    padding: 24px 24px 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
	flex-shrink: 0;
}
#content-header .content-title {
    justify-self: start;
    color: #222;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 36px;
    display: flex;
}
#content-header .content-title img {
    margin-right: 8px;
}
#content-header .tab-buttons {
    height: 48px;
    display: flex;
    align-items: center;
    background-color: #D8D8D8;
    padding: 0 0;
    border-radius: 999px;
    font-weight: 600;
    font-size: 20px;
    color: #222;
    gap: 0;
    letter-spacing: -0.8px;
}
.tab-buttons button {
    min-width: 120px;
    height: 48px;
    padding: 0 32px;
    cursor: pointer;
    border-radius: 999px;
    color: #666;
    transition: all 0.2s ease;
}
.tab-buttons button.active {
    background-color: #278A32;
    color: white;
    font-weight: 600;
}
.tab-content {
    display: none;
    width: 100%;
    max-width: 1400px;
    /*margin: 10px auto;*/
    box-sizing: border-box;
}
.tab-content.active {
    display: block;
}
#learningBooks {
	padding: 0 10px;
}
#finishedBooks {
	padding: 0 10px;
}
/* ------------------------------ */
/*        Main Area CSS End       */
/* ------------------------------ */
/* ------------------------------ */
/*
*/
/*
*/
/* ------------------------------ */
/* ------------------------------ */
/*      layer Popup CSS Start     */
/* ------------------------------ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.72);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}
.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}
.popup-layer {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, 15px);
    width: 360px;
    max-width: 90%;
    background: #fff;
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.popup-layer.show {
    opacity: 1;
    transform: translate(-50%, 0);
    visibility: visible;
}
.popup-message {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 136px;
    box-sizing: border-box;
    text-align: center;
    font-size: 20px;
    color: #222;
    line-height: 1.5;
    padding: 0 24px;
    word-break: keep-all;
}
.popup-buttons {
    height: 56px;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 0px;
}
.popup-btn {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.popup-btn.cancel {
    background-color: #EEE;
    border-top: 2px solid #ccc;
    color: #222;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    padding-bottom: 4px;
}
.popup-btn.confirm {
    background-color: #EA7851;
    border-top: 2px solid #E85632;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    padding-bottom: 4px;
}

/* 자동 로그아웃 팝업 */
.warning-popup-message {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 136px;
    box-sizing: border-box;
    text-align: center;
    font-size: 20px;
    color: #222;
    line-height: 1.5;
    padding: 0 24px;
    word-break: keep-all;
}
.warning-popup-buttons {
    height: 56px;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 0px;
}
.warning-popup-btn {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.warning-popup-btn.cancel {
    background-color: #EEE;
    border-top: 2px solid #ccc;
    color: #222;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    padding-bottom: 4px;
}
.warning-popup-btn.confirm {
    background-color: #EA7851;
    border-top: 2px solid #E85632;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    padding-bottom: 4px;
}

/* ------------------------------ */
/*       layer Popup CSS End      */
/* ------------------------------ */