@charset "utf-8";
/* boonsoo 240715 */
/* CSS Document */

/*-------------------------------*/
/*            Loading            */
/*-------------------------------*/
.loadingBg {
	position:fixed;
	z-index: 9999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .6);
}
.loadingBox {
	position: fixed;
	z-index: 20;
	top: 50%;
	left: 50%;
	width: 50px;
	min-height: 50px;
	margin-top: -25px;
	margin-left: -25px;
	border-top: 5px solid transparent;
	border-right: 5px solid #fff;
	border-bottom: 5px solid #fff;
	border-left: 5px solid #fff;
	border-radius: 50%;
	-webkit-animation: linear 0.8s infinite 0s loadingBox;
	-moz-animation: linear 0.8s infinite 0s loadingBox;
	animation: linear 0.8s infinite 0s loadingBox;
}
@-webkit-keyframes loadingBox {
 0%   { transform: rotate(0deg); }
 100% { transform: rotate(360deg); }
}
@-moz-keyframes loadingBox {
 0%   { transform: rotate(0deg); }
 100% { transform: rotate(360deg); }
}
@-ms-keyframes loadingBox {
 0%   { transform: rotate(0deg); }
 100% { transform: rotate(360deg); }
}
@-o-keyframes loadingBox {
 0%   { transform: rotate(0deg); }
 100% { transform: rotate(360deg); }
}
@keyframes loadingBox {
 0%   { transform: rotate(0deg); }
 100% { transform: rotate(360deg); }
}
.loadingBox span {
	display: block;
	text-indent: -9999px;
}
.loadingTextBox {
    position: absolute;
    z-index: 30;
    top: 50%;
    left: 50%;
    width: 100px;
    /*
    margin-top: 75px;
    margin-left: -50px;
    */
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    transform: translate(-50%, 50px);
}


/* ----------------------------- */
/*            common             */
/* ----------------------------- */
.wrapper {
	position: relative;
	/* display: block; */
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100vh;
}
.headerBox {
	position: sticky;
	z-index: 888;
	top: 0;
	display: flex;
	justify-content: center;
	width: 100%;
	min-width: 320px;
	height: 82px;
    background-color: #fff;
    box-shadow: 0 5px 5px rgba(0,0,0,0.1);
	box-sizing: border-box;
}

.topWrapper {
	position: relative;
	display: flex;
	width: 100%;
	height: 82px;
}
.headerTopBox {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 82px;
}

.loginType {
    display: flex;
    z-index: 10;
    flex-shrink: 0;
    align-items: center;
    height: 32px;
    margin-left: auto;
    margin-right: 10px;
    padding: 0 4px 0 20px;
    font-size: 13px;
    background-color: #f0f0f0;
    border-radius: 32px;
}

.logoutBtn {
	height: 24px;
	margin-left: 5px;
	color: #fff;
	background-color: #4d5259;
	border: none;
}

.headerTopBox ul.checkList {
	margin-right: 10px;
}
.headerTopBox ul.checkList input[type="radio"] + label {
	height: 32px;
}
.headerTopBox ul.checkList li:nth-child(2) input[type="radio"] + label {
	border-top-left-radius: 42px;
	border-bottom-left-radius: 42px;
}
.headerTopBox ul.checkList li:last-child input[type="radio"] + label {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-top-right-radius: 42px;
	border-bottom-right-radius: 42px;
}

.bookTypeBox {
	position: relative;
	display: flex;
	align-items: center;
	height: 32px;
	margin-right: 20px;
	padding: 0 20px;
	background-color: #f0f0f0;
	border-radius: 52px;
}

.logoBox {
	position: relative;
    z-index: 10;
    left: 20px;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    min-width: 120px;
    height: 62px;
	border-radius: 52px;
    box-sizing: border-box;
}
a.logoLink:link,
a.logoLink:visited,
a.logoLink:hover,
a.logoLink:active {
	position: relative;
	display: flex;
    align-items: center;
	width: auto;
    height: 62px;
}
a.logoLink img {
    max-width: 180px;
    max-height: 62px;
}

/*-------------------------------*/
/*             login             */
/*-------------------------------*/
.mobileLoginBox {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	min-height: calc(100vh - 50px);
	margin-top: 50px;
	font-size: 16px;
}
.mobileLoginTitle {
	position: absolute;
	top: 0;
	display: flex;
	justify-content: center;
    align-items: center;
	width: 100%;
    height: 62px;
    padding: 0 15px;
	font-size: 20px;
	color: #fff;
	background-color: #aa2b00;
	border-radius: 20px 20px 0 0;
	box-sizing: border-box;
}
.mobileLoginContentBox {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* height: calc(100vh - 52px); */
	margin: 50px 0;
	margin-top: auto;
	margin-bottom: 50px;
	padding: 80px 50px 35px;
	background-color: #fff;
	border: 1px solid #dedede;
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(0,0,0,.2);
	box-sizing: border-box;
}
.mobileLogoBox {
	position: relative;
	display: block;
	max-height: 52px;
	margin-bottom: 20px;
}
.mobileLogoBox img {
	max-width: 220px;
	max-height: 72px;
}

ul.mobileLoginInputBox {
	position: relative;
    display: flex;
    flex-direction: column;
	align-items: center;
    width: 400px;
	margin: 10px 0;
}
ul.mobileLoginInputBox li {
    position: relative;
	width: 100%;
    margin: 5px 0;
}
ul.mobileLoginInputBox li input {
    position: relative;
    display: flex;
    width: 100%;
    height: 42px;
    padding: 0 10px;
	background-color: #f4f9ff;
    border-radius: 42px;
}
ul.mobileLoginInputBox li:first-child:before {
    position: absolute;
    z-index: 10;
    top: 10px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 22px;
    font-size: 16px;
    color: #5d5d5d;
    content: "\e912";
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
}
ul.mobileLoginInputBox li:last-child:before {
    position: absolute;
    z-index: 10;
    top: 10px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 22px;
    font-size: 16px;
    color: #5d5d5d;
    content: "\e914";
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
}
ul.mobileLoginInputBox input[type="text"], 
ul.mobileLoginInputBox input[type="password"] {
    text-indent: 42px;
}
.loginMiddleBox {
    position: relative;
    display: flex;
    align-items: center;
    width: 400px;
    height: 42px;
}
.loginMiddleBox .checks input[type="checkbox"] + label {
	margin-bottom: 0;
	padding: 0 10px 0 10px;
	font-size: 13px;
}
.loginMiddleBox .checks input[type="checkbox"]:checked + label {
	color: #1d82d0;	
}
.loginMiddleBox .checks input[type="checkbox"] + label:before {
	width: 32px;
	height: 32px;
	line-height: 30px;
	margin-top: -5px;
	font-size: 20px;
}
a.idPassFindBtn {
    position: relative;
    display: flex;
    flex-shrink: 0;
    margin-left: auto;
	font-size: 13px;
    text-decoration: underline;
	text-underline-position: under;
}

.loginBtnBox {
    padding: 20px 0 0;
}
.loginBtn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 52px;
    margin: 0;
    font-size: 16px;
    color: #fff;
    background-color: #3a3e51;
    border: none;
    border-radius: 52px;
}
.loginBtn:hover {
	background-color: #62677b;	
}
.loginBtn:active {
	background-color: #3a3d49;	
}

.joinGuideBox {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 280px;
	min-height: 100px;
	margin: 40px 20px 20px;
	padding: 20px;
	background-color: #f9f9f9;
	border: 1px solid #dedede;
	border-radius: 10px;
} 
.joinGuideTitle {
	position: relative;
	display: flex;
	justify-content: center;
	line-height: 1.5;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
}
.mobileJoinBtn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 42px;
	margin: 15px auto;
	font-size: 16px;
	color: #fff;
	background-color: #4b90c6;
	border: none;
	border-radius: 42px;
}
.mobileJoinBtn:hover {
	background-color: #66a3d2; 	
}
.mobileJoinBtn:active {
	background-color: #2778b7; 	
}
.joinGuideEx {
	line-height: 1.5;
	text-align: center;
}

@media all and (max-width: 1024px) {
	.mobileLoginBox {
		height: auto;
		min-height: 100vh;
	}
}

@media all and (max-width: 960px) {
	.mobileLoginContentBox {
		margin: 40px 0;
	}
}

@media all and (max-width: 520px) {
	.mobileLoginBox {
		margin-top: 0;
	}
	ul.mobileLoginInputBox,
	.loginMiddleBox {
		width: 280px;	
	}
}

@media all and (max-width: 420px) {
	.mobileLoginContentBox {
		padding: 80px 20px 25px;	
	}
	ul.mobileLoginInputBox,
	.loginMiddleBox {
		width: 250px;	
	}
}

/*  footer */
.footBox {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-top: auto;
	background-color: #fff;
	border-top: 1px solid #dedede;
}

.bookList .footBox {
	padding-bottom: 62px;
} 

.footLinkBox {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	height: 42px;
	background-color: #727272;
}
.footLinkInBox {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	height: 42px;	
}

.footInBox {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
}
.footInTopBox {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 100px;
	padding: 10px 0;
	box-sizing: border-box;
}
.footInLogoBox {
	position: relative;
	display: flex;
	width: 250px;
	padding: 0 20px;
	box-sizing: border-box;
}
.footInLogoBox img {
	max-width: 100%;
	max-height: 110px;
}

.footInInfoBox {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	line-height: 1.7;
	margin-left: 20px;
	font-size: 15px;
	color: #5d5d5d;
}
.footInBottomBox {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: baseline;
	width: 100%;
	height: 42px;
	padding: 10px 0;
	font-size: 15px;
	color: #999;
	border-top: 1px solid #dedede;
}

@media all and (max-width: 960px) {
	.footInTopBox {
        flex-direction: column;
		align-items: flex-start;
		padding: 15px;
    }
	.footInInfoBox {
		margin-top: 20px;
	}
}

@media all and (max-width: 620px) {
	.footInLogoBox {
		padding: 0;
	}
	.footInInfoBox {
		margin-top: 10px;
		margin-left: 0;
	}
	.footInInfoBox div {
        flex-direction: column;
		align-items: flex-start;
    }
	.footInInfoBox div .ML20 {
		margin-left: 0 !important;
	}
}

@media all and (max-width: 420px) {
	.footInLogoBox {
		width: calc(100% - 20px);
	}
	.footInInfoBox {
		font-size: 14px !important;
	}
	.footInInfoBox div {
        flex-direction: column;
		align-items: flex-start;
    }
	.footInInfoBox div .ML20 {
		margin-left: 0 !important;
	}
}

a.footLink {
	font-size: 15px;
}

/* ----------------------------- */
/*            popup              */
/* ----------------------------- */
.popupBox {
    position: relative;
    display: block;
    min-width: 768px;
    height: 100vh;
    box-sizing: border-box;    
}
.popupInBox {
    position: relative;
    display: block;
    padding: 10px;
    box-sizing: border-box;
}
.popupBox.idPwSearchBox {
    min-width: 320px;
}

.popupBoxTitle {
    position: relative;
    display: flex;
    align-items: center;
    height: 52px;
    padding-left: 38px;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #4d5053;
    box-sizing: border-box;
	font-family: 'Noto Sans KR', sans-serif;
}
.popupBoxTitle:before {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-radius: 50%;
    transform: translate(0, -60%);
    content: "";
}

/* id password search popup */
.idpwSearchBox .tab_content {
	margin:0;
	border: 7px solid #317ac5;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	box-sizing: border-box;
}

.idpwSearchBox .contentTabInBox {
    position: relative;
    height: 44px;
    line-height: 44px;
    margin: 30px 0 0;
    border-bottom: none;
}

.idpwSearchBox .contentTabInBox ul { 
	position:relative; 
	width:auto; 
	height:46px; 
	text-align:left; 
}
.idpwSearchBox .contentTabInBox li { 
	display:inline-block;
	float: left;
	width: 50%;
	height:46px; 
	line-height:46px; 
	text-align:center; 
	color:#2d2d2d; 
	margin:0px;  
}
.idpwSearchBox .contentTabInBox li:first-child { 
	margin-left:0; 
}
.idpwSearchBox .contentTabInBox li:last-child { 
	margin-right: -2px; 
}
.idpwSearchBox .contentTabInBox a.tabBtn:link, a.tabBtn:visited, a.tabBtn:active {  
	float:left; 
	display:inline-block; 
	min-width:100%; 
	height:46px;
	padding:0 10px; 
	line-height:42px; 
	text-align:center; 
	font-size:1.8rem; 
	color:#acacac; 
	text-decoration:none; 
	margin: 0;
	background-color: #f0f0f0;
	border:1px solid #dedede;
}
.idpwSearchBox .contentTabInBox a.tabBtn:hover { 
	color:#acacac; 
	background-color: #f0f0f0;
	border:1px solid #dedede;
}
.idpwSearchBox .contentTabInBox li:last-child a.tabBtn {
	margin-right: -3px;
}
.idpwSearchBox .contentTabInBox a.tabSelected:link, 
.idpwSearchBox .contentTabInBox a.tabSelected:visited, 
.idpwSearchBox .contentTabInBox a.tabSelected:hover, 
.idpwSearchBox .contentTabInBox a.tabSelected:active { 
	float:left; 
	display:inline-block; 
	min-width: 100%; 
	height:46px; 
	line-height:46px;
	padding:0 15px;  
	text-align:center; 
	font-size:1.8rem; 
	color:#fff; 
	text-decoration:none;
	margin:-1px 0px 0px 0px; 
	background-color:#317ac5;  
	border:1px solid #317ac5;
	border-bottom:1px solid #fff;
}
.idpwSearchBox .contentTabInBox li:fisrt-child a.tabSelected {
	margin-left: 1px;
}
.idpwSearchBox .contentTabInBox a.tabSelected:link .tabLine, a.tabSelected:visited .tabLine, a.tabSelected:hover .tabLine,  a.tabSelected:active .tabLine {
	position: relative;
	display: block;
	margin-top: -3px;
	border-top: 1px solid #317ac5;
}
.idpwSearchBox .contentTabInBox a.tabSelected:link .tabLine .bottomArrow, a.tabSelected:visited .tabLine .bottomArrow, a.tabSelected:hover .tabLine .bottomArrow,  a.tabSelected:active .tabLine .bottomArrow {
   position: absolute; 
    z-index: 5;
   top: 0;
    left: 50%;
    margin-left: -7%;
    width: 0;
    height: 0;
   text-align: center;
    border-top: 5px solid #317ac5;
    border-right: 5px solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 5px solid  transparent;
}

.idpwSearchBox .testTopBox {
	position: relative;
	margin: 20px;
}

ul.popupList {
	position: relative;
	display: block;
    padding: 10px;
	font-size: 13px;
    background-color: #f9f9f9;
    box-sizing: border-box;
}

ul.popupList li {
	position: relative;
	padding: 3px 0;
	padding-left: 10px;
	text-align: left;
}

ul.popupList li:before {
	position: absolute;
    z-index: 10;
    top: 50%;
    left: 0;
    width: 3px;
    height: 3px;
    background-color: #2d2d2d;
    transform: translate(0, -50%);
    border-radius: 50%;
    content: "";
}

.popupListLineTable {
	position: relative;
	display: block;
	/* margin: 10px; */
	padding: 0 15px 15px;
    box-sizing: border-box;
}

.popupListLineTable th {
	padding: 10px;
	background-color: #f9f9f9;
    border-top: 1px solid #dedede;
}

.popupListLineTable  td {
	padding: 10px 5px;
	text-align: left;
	border-top: 1px solid #dedede;
}

.popupListLineTable tr:last-child th,
.popupListLineTable tr:last-child td {
	border-bottom: 1px solid #dedede;
}

.popupListLineTable select {
	height: 40px;
}

.popupBottomBtnBox,
.boardBottomBtnBox {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
}
.homeworkAskInputPopup .boardBottomBtnBox {
    margin: 0;
    margin-top: auto;
    padding: 20px 0;
}
.popupBottomBtnBox button,
.boardBottomBtnBox button {
    margin: 0 2px;
}

.myOrder .boardBottomBtnBox {
	padding: 0 0 20px;	
}

.joinCheckBtn,
.cancelBtn,
.paymentBtn {
    position: relative;
    width: 120px;
    height: 42px;
    margin: 0 10px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #252d40;
    border: none;
    border-radius: 42px;
    cursor: pointer;
}
.cancelBtn {
	background-color: #acacac;	
}

@media all and (max-width: 520px) {
	.popupListLineTable tr {
		display: flex;
		flex-direction: column;
	}
	.popupListLineTable th {
		padding: 7px 5px 3px 5px;	
	}
	.popupListLineTable tr:last-child th {
        border-bottom: none;
    }
	.popupListLineTable td {
		display: flex;
		align-items: center;
	}
	.popupListLineTable td .selectBox,
	.popupListLineTable td .textInput {
		margin: 0 3px;
	}
	.popupListLineTable td .textInput {
		flex-grow: 1;
	}
	
}

/*-------------------------------*/
/*         Tab Content           */
/*-------------------------------*/
.tab_container { 
	position:relative;
    z-index: 20;
	/* background-color: #fff; */
    margin-top: -1px;
}
.tab_content {
    margin: 0;
	background-color: #fff;
    border: 3px solid #6e747a;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    box-sizing: border-box;
}
.tabTopBox {
    position: relative;
    display: block;
    padding: 10px;
    box-sizing: border-box;
}
.contentTabBox {
	position: relative;
	display: block;
}
.contentTabInBox { 
	position:relative; 
	height:41px; 
	line-height:41px;
	margin: 0;
	border-bottom:1px solid #dedede;
}
.contentTabInBox:after {
	display:block;
	visibility:hidden;
	clear:both;
	content:""
}

.contentTabBtnBox {
	position: absolute;
	z-index: 5;
	top: -5px;
	right: 0px;
	width: auto;
}

.contentTabInBox ul { 
	position:relative;
    display: grid;
    grid-template-columns: 50% 50%;
	width:100%;
	height:42px; 
	text-align:left; 
}

.contentTabInBox li { 
	display:flex;
    width: 100%;
	height:42px; 
	line-height:42px; 
	text-align:center; 
	color:#2d2d2d; 
	margin:0px; 
}
 
.contentTabInBox a.tabBtn:link, a.tabBtn:visited, a.tabBtn:active {  
	display: flex;
    justify-content: center;
    align-items: center;
	width: calc(100% + 2px); 
	height:42px;
	padding:0 10px; 
	text-align:center; 
	font-size:14px; 
	color:#acacac; 
	text-decoration:none; 
	margin: 0; 
	background-color:#f9f9f9;
	border:1px solid #dedede;
    box-sizing: border-box;
}
.contentTabInBox a.tabBtn:hover { 
	color:#2f84d9; 
	background-color:#eff8ff; 
	border:1px solid #85b8e2;
}
.contentTabInBox a.tabSelected:link, 
.contentTabInBox a.tabSelected:visited, 
.contentTabInBox a.tabSelected:hover, 
.contentTabInBox a.tabSelected:active {
    z-index: 10;
	display: flex;
    justify-content: center;
    align-items: center;
	width: 100%; 
	height: 42px; 
	padding: 0 15px;  
	text-align: center; 
	font-size: 14px;
    font-weight: bold;
	color:#fff; 
	text-decoration: none;
	/* margin: -1px 0 0 0; */ 
	background-color: #6e747a;  
	border: 1px solid #6e747a;
	/* border-bottom: 1px solid #fff; */
    box-sizing: border-box;
}

.contentTabInBox a.tabSelected:link .tabLine, a.tabSelected:visited .tabLine, a.tabSelected:hover .tabLine,  a.tabSelected:active .tabLine {
	position: relative;
	display: block;
	margin-top: -3px;
	border-top: 1px solid #317ac5;
}
.contentTabInBox a.tabSelected:link .tabLine .bottomArrow, a.tabSelected:visited .tabLine .bottomArrow, a.tabSelected:hover .tabLine .bottomArrow,  a.tabSelected:active .tabLine .bottomArrow {
   position: absolute; 
    z-index: 5;
   top: 0;
    left: 50%;
    margin-left: -7%;
    width: 0;
    height: 0;
   text-align: center;
    border-top: 5px solid #317ac5;
    border-right: 5px solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 5px solid  transparent;
}


/* ------------------------- */
/*       book content        */
/* ------------------------- */
.bookContentBox {
	position: relative;
	display: block;
	width: 100%;
	max-width: 1180px;
	min-height: 100px;
	margin: 20px auto;
	padding: 0;
	/* background-color: #fff; */
	box-sizing: border-box;
}

.bookContentTitle {
	position: relative;
	display: flex;
	align-items: baseline;
	height: 62px;
	padding: 15px 10px 15px 30px;
	font-size: 24px;
	font-weight: bold;
	color: #000;
	background-color: #fff;
	border: 1px solid #dedede;
	border-radius: 100px;	
}

.classSelectBox {
	position: relative;
	display: flex;
	align-items: center;
	margin-left: 10px;
}
.classSelectBox span {
	font-size: 16px;
}

ul.bookMainList {
	position: relative;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(45%, auto));
	gap: 20px;
	/* padding: 0 0 82px; */
}
dl.bookTableList ul.bookMainList {
    grid-template-columns: 100%;
}
ul.bookMainList li {
	position: relative;
	display: flex;
}
.bookListBox .checks {
	position: absolute;
	top: 20px;
	right: 15px;
}
.bookCheckBox {
	position: relative;
	display: flex;
	align-items: center;
	height: 42px;
	margin: 5px 0;
}
.bookCheckInBox {
	display: flex;
	width: 1180px;
	max-width: 1180px;
	margin: 0 auto;
}
.bookCheckBox.on {
	position: fixed;
	z-index: 50;
	top: 76px;
	right: 0;
	left: 0;
	height: 52px;
	background-color: rgba(244, 244, 244, .8);
    border-bottom: 1px solid #dedede;
}
.bookCheckInBox .checks.MLA.MR20 {
	margin-right: 54px !important;	
}
.bookCheckBox .checks input[type="checkbox"] + label:before,
.bookListBox .checks input[type="checkbox"] + label:before {
	width: 32px;
	height: 32px;
	line-height: 30px;
}
.bookListTable .checks input[type="checkbox"] + label:before {
	width: 24px;
	height: 24px;
	line-height: 22px;	
}
.bookCheckBox .checks input[type="checkbox"] + label:before {
	margin-top: 0;
	margin-right: -88px;
}
.bookCheckBox .checks input[type="checkbox"]:checked + label:before,
.bookListBox .checks input[type="checkbox"]:checked + label:before {
	font-size: 20px;	
}
.bookListTable .checks input[type="checkbox"]:checked + label:before {
	font-size: 16px;	
}
.bookListBox .checks input[type="checkbox"] + label span,
.bookListTable .checks input[type="checkbox"] + label span {
	display: block;
	width: 0px;
	height: 0px;
	text-indent: -9999px;	
}

.bookCheckBox .checks input[type="checkbox"] + label span {
	/* margin-left: -42px; */
	font-size: 15px;
	font-weight: bold;
	display: inline-block;
	text-indent: -99999px;
}

.bookListBox {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 50px;
	padding: 20px;
	background-color: #fff;
	border: 1px solid #dedede;
	border-radius: 20px;
	box-sizing: border-box;
}

.bookListTitle {
	position: relative;
	display: flex;
	align-items: center;
	width: calc(100% - 42px);
	min-height: 24px;
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: bold;
	color: #000;
}
.bookTableBox .bookListTitle {
	width: 100%;
	padding: 10px 0;
}

.bookInfoBox {
	position: relative;
	display: flex;
	width: 100%;
}

.bookInfoBox .bookImgBox {
	position: relative;
	z-index: 10;
	display: flex;
	width: 115px;
	height: 160px;
	border: 1px solid #acacac;
	box-shadow: 5px 5px rgba(0,0,0,.05);
}

.bookInfoBox .bookImgBox img {
	max-width: 150%;
	max-height: 150%;
	aspect-ratio: 1 / 1.4;
}

ul.bookInfoList {
	position: relative;
	display: flex;
	flex-direction: column;
	margin-left: 15px;
}

ul.bookInfoList li {
	position: relative;
	display: flex;
	align-items: center;
	/* align-items: baseline; */
	margin: 3px 0;
}
ul.bookInfoList li strong {
	margin-left: 5px;
}

.salePriceBox {
	margin-left: 5px;
	color: #acacac;
	text-decoration: line-through;
}

.bookNoteBox {
	position: relative;
	display: block;
	line-height: 1.5;
	margin-top: 15px;
	padding: 10px;
	font-size: 14px;
	color: #000;
	background-color: #ecf5ff;
	border: 1px solid #acacac;
}
/*
.purchased:before {
	position: absolute;
	z-index: 30;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(255,255,255,0.8);
	border: 1px solid #dedede;
	border-radius: 15px;
	content: "";
}
*/
.purchased:after {
	position: absolute;
	z-index: 30;
	bottom: 10px;
	right: 10px;
	display: flex;
	align-items: center;
	height: 48px;
	padding: 0 40px;
	font-size: 18px;
	color: #db2e2e;
	background-color: rgba(255,255,255, .8);
	border: 1px solid #db2e2e;
	box-shadow: 0 0 5px rgba(0, 0, 0, .3);
	/* transform: translate(0, -50%); */
	content:"기존구매도서";
	border-radius: 100px;
}

.cartSumBox {
	position: fixed;
	z-index: 30;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	height: 62px;
	background-color: rgba(0,0,0,0.8);
}

.cartSumInBox {
	position: relative;
	display: flex;
	align-items: center;
	width: 1180px;
	height: 62px;
	margin: 0 auto;
	padding: 0 20px;
	color: #fff;
	box-sizing: border-box;
}

.buyBtn {
	position: relative;
	display: flex;
	align-items: center;
	height: 42px;
	padding: 0 50px;
	font-size: 18px;
	color: #fff;
	background-color: #2d95ff;
	border: none;
	border-radius: 72px;	
}

.darkBtn:hover {
	background-color:rgba(83, 83, 83, 0.5);	
}
.blueBtn:hover {
	background-color:rgba(35, 116, 236, 0.5);	
}
.quickLinkBox {
	position: fixed;
	z-index: 999;
	left: 50%;
	bottom: 82px;
	width: 100px;
	height: 100px;
	transform: translateX(600px);
}
.orderedList .quickLinkBox {
    bottom: 20px;
} 
.orderDetailLink,
.orderLink {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100px;
	padding: 10px;
	padding-top: 50px;
	font-size: 15px;
	color: #fff;
	background-color: #3386da;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(0,0,0,0.4);
	box-sizing: border-box;
}
.orderDetailLink:before,
.orderLink:before {
	position: absolute;
	z-index: 10;
	top: 10px;
	left: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 28px;
	color: #fff;
	transform: translateX(-50%);
	content: "\e909";
	font-family: 'icomoon' !important;
  	speak: none;
  	font-style: normal;
  	font-weight: normal;
  	font-variant: normal;
  	text-transform: none;
}
.orderLink:before {
	font-size: 36px;
	content: "\e92f";	
}

.orderDetailLink:hover,
.orderLink:hover {
	color: #f9f9f9;
}
.orderDetailLink:active,
.orderLink:active {
	transform: scale(0.95);
}

.bookOrderListBox {
	position: relative;
	display: block;
	padding-bottom: 10px;
}

.bookOrderListInBox {
	position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 50px;
	margin: 20px 0;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #dedede;
    border-radius: 20px;
    box-sizing: border-box;
}
ul.bookOrderList {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
ul.bookOrderList li {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
	width: 20%;
	height: 38px;
	margin-left: -1px;
	padding: 3px 5px;
	background-color: #f8feff;
	border: 1px solid #ddd;
}
ul.bookOrderList2 {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
}
ul.bookOrderList2 li {
	display: flex;
	align-items: center;
	flex-grow: 1;
	height: 38px;
	margin-top: -1px;
	margin-left: -1px;
	background-color: #fff;
	border: 1px solid #ddd;
}
ul.bookOrderList2 li div {
	display: flex;
	flex-grow: 1;
	justify-content: center;
	align-items: center;
	width: 20%;
	height: 100%;
	padding: 3px 5px;
	border-right: 1px solid #ddd;
}
ul.bookOrderList2 li .bookTitle {
	width: 40%;
	justify-content: flex-start;
}
ul.bookOrderList2 li .bookPrice {
	justify-content: flex-end;
}
ul.bookOrderList2 li .bookEtc {
	border-right: none;
}

.bookImgLayer {
	position: absolute;
	z-index: 60;
	top: 0;
	left: 0;
	width: 300px;
	border: 2px solid #2d363a;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
}
.bookImgLayer img {
	width: 100%;
	aspect-ratio: 1/1.4;	
}

.bookTableBox {
	position: relative;
	display: block;
	margin: 20px 0;
	padding: 20px;
	background-color: #fff;
	border: 1px solid #dedede;
	border-radius: 15px;
	box-sizing: border-box;
}

/*-------------------------------*/
/*      responsive table         */
/*-------------------------------*/
#no-more-tables ul.checks {
	height: 24px;
}
#no-more-tables ul.checks li {
	height: 24px;
}
#no-more-tables table > thead > tr > th {
	text-align: center;
	color: #fff;
    background-color: #5f6270;
	border-top: 1px solid #dedede;
	borer-bottom: 1px solid #dedede;
}
#no-more-tables table > thead > tr > th:first-child {
	border-left: 1px solid #dedede;
	border-radius: 20px 0 0 0;
}
#no-more-tables table > thead > tr > th:last-child {
	border-right: 1px solid #dedede;
	border-radius: 0 20px 0 0;
}

.table-condensed thead>tr>th, 
.table-condensed tbody>tr>th, 
.table-condensed tfoot>tr>th, 
.table-condensed thead>tr>td, 
.table-condensed tbody>tr>td, 
.table-condensed tfoot>tr>td {
	padding: 10px;
	vertical-align: middle;
}

.table-condensed tbody>tr>td {
	text-align: right;
	border-left: 1px solid #ddd;
}
.table-condensed tbody>tr>td:last-child {
	border-right: 1px solid #ddd;
}
.table-condensed tbody>tr>td:nth-child(1) {
	text-align: center;
}
.table-condensed tbody>tr>td:nth-child(2) {
	text-align: left;
}

.table-striped>tbody>tr:nth-child(odd)>td, 
.table-striped>tbody>tr:nth-child(odd)>th {
	background-color: transparent;
}
.table-striped>tbody>tr:nth-child(even)>td, 
.table-striped>tbody>tr:nth-child(even)>th {
	background-color: #f9f9f9;
}

.table thead>tr>th, 
.table tbody>tr>th, 
.table tfoot>tr>th, 
.table thead>tr>td, 
.table tbody>tr>td, 
.table tfoot>tr>td {
	border-top: none;
	border-bottom: 1px solid #ddd;
}

.table tfoot>tr>td {
	text-align: right;
	background-color: #f1fbff;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-radius: 0 0 20px 20px;
}

#no-more-tables .table {
	margin-bottom: 0;
}

dl.bookTableList {
	position: relative;
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    width: 100%;
	border-bottom: 1px solid #ddd;
    box-sizing: border-box;
}
dl.bookTableList .selectBox {
	width: 100%;
}
dl.bookTableList dt {
	position: relative;
	display: flex;
	align-items: center;
	width: 100px;
	padding: 5px 7px;
	background-color: #f9f9f9;
	border-top: 1px solid #ddd;
	box-sizing: border-box;
}
dl.bookTableList dd {
	position: relative;
	display: flex;
	align-items: center;
	width: calc(50% - 100px);
	padding: 5px 10px;
	border-top: 1px solid #ddd;
	box-sizing: border-box;
}
/*
dl.bookTableList dd:last-child {
	width: calc(100% - 100px);
}
*/


.bookTableList .textInput {
	height: 42px;
}

.bookTextBox {
	position: relative;
    display: block;
	line-height: 1.7;
    margin: 20px 0;
    padding: 20px;
	font-size: 15px;
    background-color: #fff;
    border: 1px solid #dedede;
    border-radius: 15px;
    box-sizing: border-box;
}


@media all and (max-width: 1420px) {
	.quickLinkBox {
		right: 20px;
		left: auto;
		transform: translateX(0);
	}
}

@media all and (max-width: 1200px) {
	.bookContentBox {
		margin: 0 auto;
		padding: 20px;	
	}
}

@media only screen and (max-width: 800px) {
	#no-more-tables thead tr {
		position: relative;
		top: 0;
		left: 0;
	}
	#no-more-tables thead tr th {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	#no-more-tables table thead tr th:first-child {
		position: relative;
		top: 0;
		left: 0;
		text-align: left;
		background-color: #ededed;
		border: none;
		border-left: none;
		border-radius: 0;
	}
	.bookListTable table thead tr th:first-child .checks {
		margin-left: 90px;
	}
	.bookListTable table thead tr th:first-child .checks input[type="checkbox"] + label {
		margin-bottom: 0;
	}
	.bookListTable table thead tr th:first-child .checks input[type="checkbox"] + label:before {
		position: absolute;
    }
	.bookListTable table thead tr th:first-child .checks input[type="checkbox"] + label span {
		display: flex;
		align-items: center;
		width: 110px;
		height: 24px;
		margin-left: -95px;
		text-indent: 0;
		font-weight: bold;
		color: #5d5d5d;
	} 
	#no-more-tables tr {
		margin-top: -1px;
		border: 1px solid #ddd;
	}
	#no-more-tables td {
		padding-left: 100px;
	}
	#no-more-tables td:before {
		top: 0;
		left: 0;
		display: flex;
		align-items: center;
		width: 85px;
		height: 100%;
		padding: 0 10px;
		background-color: #f9fdff;
		border-right:  1px solid #ddd;
	}
	#no-more-tables tfoot td {
		width: 100%;
	}
	#no-more-tables tfoot td:before {
		background-color: #f9fdff;	
	}
}

@media all and (max-width: 767px) {
	a.logoLink img {
        max-width: 160px;
        max-height: 42px;
    }
	.headerBox {
		height: 52px;
	}
	.topWrapper {
		height: 52px;
	}
	.headerTopBox {
        height: 52px;
    }
	.logoBox {
		left: 10px;
		min-width: 90px;
		height: 52px;
	}
	a.logoLink:link, 
	a.logoLink:visited, 
	a.logoLink:hover, 
	a.logoLink:active {
		height: 52px;
	}
	ul.bookMainList {
		grid-template-columns: repeat(auto-fit, minmax(95%, auto));	
	}
	.bookTypeBox {
		display: none;
	}
	.bookContentTitle {
		height: 52px;
		padding: 10px 10px 7px 30px;
		font-size: 20px;
	}
	.bookContentTitle .red.FS14 {
		display: flex;
		align-items: baseline;
		font-size: 12px !important;
	}
	.bookCheckBox.on {
        top: 47px;
    }
	.cartSumBox,
	.cartSumInBox {
		height: 52px;
	}
	.buyBtn {
		padding: 0 30px;
		font-size: 16px;
	}
	
	.quickLinkBox {
		bottom: 120px;
	}
	dl.bookTableList dd {
		width: calc(100% - 100px);
	}
	ul.bookOrderList {
        flex-wrap: wrap;
		width: calc(100% + 1px);
		border: 1px solid #000;
		margin-left: -1px;
    }
	ul.bookOrderList li {
		width: auto;
		margin-top: -1px;
		border-right: none;
		border-bottom: 1px solid #000;
	}
    ul.bookOrderList li:first-child {
        width: 100%;
		border-top: 1px solid #000;
		border-left: 1px solid #000;
    }
	ul.bookOrderList li:nth-child(2) {
		border-left: 1px solid #000;
    }
	ul.bookOrderList2 li {
		flex-wrap: wrap;
		height: auto;
		min-height: 38px;
		border: 1px solid #acacac;
	}
	ul.bookOrderList2 li div {
		width: auto;
		height: 38px;
	}
	ul.bookOrderList2 li .bookTitle {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #ddd;
	}
	ul.bookOrderList2 li:first-child {
		border-top: none;
	}
}

@media all and (max-width: 560px) {
	.loginType {
		margin-right: 0;
		padding: 0 4px 0 10px;
	}
	.headerTopBox ul.checkList input[type="radio"] + label {
		padding: 0 5px;	
	}
	.bookContentTitle {
		padding: 13px 10px 7px 30px;
	}
	/*
	.classSelectBox {
		position: absolute;
		top: 60px;
		left: 10px;
	}
	*/
	.purchased:after {
		padding: 0 20px;
		font-size: 16px;
	}
}
@media all and (max-width: 460px) {
	.classSelectBox span {
		display: none;
	}
	.bookCheckBox .checks input[type="checkbox"] + label span {
		margin-left: -32px;
		font-size: 13px;	
	}
	.bookContentTitle {
		margin-bottom: 20px;
	}
	.bookContentBox {
		margin-top: 62px; 
	}
	.orderedList .bookContentBox {
		margin-top: 22px; 
	}
	.bookCheckBox {
		position: fixed;
		z-index: 999;
		top: 47px;
		right: 0;
		left: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 52px;
		background-color: rgba(244, 244, 244, .8);
    	border-bottom: 1px solid #dedede;
		border-right: none;
		border-left: none;	
	}
}

@media all and (max-width: 420px) {
	.logoBox {
        left: 5px;
		min-width: 90px;
    }
	a.logoLink img {
        max-width: 120px;
        max-height: 42px;
    }
	.orderedList .bookContentBox {
        margin-top: 10px;
    }
	.bookContentTitle {
        padding: 10px 10px 10px 30px;
    }
	.bookContentTitle .red.FS14 {
		display: none;
	}
	/*
	.classSelectBox {
		position: fixed;
		z-index: 999;
		top: 52px;
		right: 0;
		left: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 42px;
		background-color: rgba(255,255,255,.8);
		border: 1px solid #dedede;
		border-right: none;
		border-left: none;
	}
	*/
	.classSelectBox {
		margin-left: 0;
	}
	.bookCheckInBox {
		justify-content: center;
	}
	/*
	.bookCheckInBox .checks.MLA.MR20 {
		position: fixed;
        top: 107px;
        right: 10px;
        display: flex;
        align-items: center;
        margin-right: 0 !important;
        padding: 6px 10px 0 20px;
		width: 165px;
        height: 42px;
        background-color: rgba(255, 255, 255, .6);
        border: 1px solid #dedede;
        border-right: none;
        border-radius: 52px;
	}
	*/
	/*
	.bookCheckBox .checks input[type="checkbox"] + label:before {
        margin-left: 91px;
    }
	*/
	
	.bookListTitle {
		font-size: 16px;	
	}
	.bookInfoBox .bookImgBox {
		width: 60px;
		height: 83px;
	}
	.bookInfoList .black.FS18,
	.bookInfoList .Lblue.FS18 {
		font-size: 16px !important;
	}
	.salePriceBox {
		font-size: 13px;
	}
	.cartSumInBox {
		padding: 0 5px;
	}
	.buyBtn {
        padding: 0 20px;
        font-size: 14px;
    }
	
	.quickLinkBox {
		right: 10px;
		width: 60px;
		height: 60px;
	}
	
	.orderDetailLink,
	.orderLink {
		width: 60px;
    	height: 60px;
		padding: 5px;
    	padding-top: 30px;
		font-size: 11px;
	}
	.orderDetailLink:before,
	.orderLink:before {
		top: 0px;
        width: 42px;
        height: 42px;
        font-size: 20px;	
	}
	
	.bookOrderListInBox {
		margin: 10px 0;
	}
	
	ul.bookOrderList li {
		width: 50%;
		margin-top: -1px;
		border-bottom: 1px solid #000;
	}
	ul.bookOrderList li:nth-child(4) {
		border-left: 1px solid #000;
	}
	.orderedList .bookContentTitle {
        margin-bottom: 10px;
    }
	
}
@media (max-width: 360px) {
    a.logoLink img {
        max-width: 90px;
        max-height: 42px;
    }
}


