.popupbox_mask {
	position: absolute;
    position: fixed;
	
	top: 0;
	bottom: 0;
	
	left: 0;
	right: 0;
	
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9999;
}

.popupbox {
    position: absolute;
    left: 30%;
    top: 0;
    width: 40%;
    background-color: white;
    box-shadow: 0vh 0vh 1vh 1vh rgba(127, 127, 127, 0.5);
	
	z-index: 9999;
	
	width: calc(40vh * 16 / 9);
    left: calc((100% - (40vh * 16 / 9))/2);
	
	width: 320px;
	left: calc((100% - 320px)/2);
	top: calc((100vh - 280px) / 2)
}

.popupbox_area {
	position: relative;
    width: 100%;
    height: 100%;
}

.popupbox_text {
    width: 72.5%;
    margin: 0 auto;
    box-sizing: border-box;
	
	font-size: 18px;
	
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	
	text-shadow: none;
}
.popup_row_login .popupbox_text {

}
.popupbox.yesno .popupbox_text {
	padding: 5% 5% 0;
	width: initial;
}

.popupbox_text .openlink {
	color: blue;
	border-bottom: 1px solid blue;
	box-sizing: border-box;
}

.popupbox_input_div {
    width: 72.5%;
    margin: 0 auto;
}

.popupbox_input_input {
	width: 100%;
	font-size: 18px;
}

.popupbox_buttonrow {
	text-align: center;
	
	width: 100%;
	height: 40%;
    box-sizing: border-box;
    padding: 5%;
	
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-align-items: center;
	-webkit-align-items: center;
	align-items: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.popup_row_login {
	margin: 30px 0;
}
.popup_row_login .popupbox_input_div {
	margin-bottom: 14px;
}

.popupbox_buttonY {
    display: inline-block;
	
	/*background-image: url("../../artwork/Btn_confrim.png");*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
	width: 186px;
	height: 86px;
	
    height: 100%;
    /*width: calc(8vh * 186 / 86);*/
	margin: 0 1vh;
	
	padding: 6px 12px;
    box-sizing: border-box;
	
	border: 1px solid rgba(222,222,222,0.7);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	
	cursor: pointer;
}

.popupbox_buttonN {
    display: inline-block;
	
	/*background-image: url("../../artwork/Btn_cancel.png");*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
	width: 186px;
	height: 86px;
	
    height: 100%;
    /*width: calc(8vh * 186 / 86);*/
	margin: 0 1vh;
	
	padding: 6px 12px;
    box-sizing: border-box;
	
	border: 1px solid rgba(222,222,222,0.7);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	
	cursor: pointer;
}

.popupbox_buttonConfirm {
    display: inline-block;
	
	/*background-image: url("../../artwork/Btn_confrim.png");*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
	width: 186px;
	height: 86px;
	
    height: 100%;
    width: calc(8vh * 186 / 86);
	margin: 0 1vh;
	
	padding: 6px 12px;
    box-sizing: border-box;
	
	cursor: pointer;
}

.popupbox_input {
    position: absolute;
    top: 45%;
    left: 10%;
    width: 80%;
    height: 15%;
}

input#input_box {
    width: 100%;
    height: 100%;
    font-size: 4vh;
}

/* mode popupbox confirm */
.popupbox.confirm .popupbox_buttonY {
	display: none;
}
.popupbox.confirm .popupbox_buttonN {
	display: none;
}
/* mode popupbox confirm end */
/* mode popupbox yesno */
.popupbox.yesno .popupbox_buttonConfirm {
	display: none;
}
/* mode popupbox yesno end */


/* .sharePopup */
.sharePopup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
}
.sharePopup .sharePopupMask {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
}
.sharePopup .sharePopupBox {
    position: absolute;
    width: 1165px;
    height: 648px;
    width: calc(42vh * 1165 / 648);
    height: 42%;
    left: 30%;
    top: 29%;
    background-color: #fef47e;
    -webkit-border-radius: 5vh;
    -moz-border-radius: 5vh;
    border-radius: 2.5vh;
    box-shadow: 0vh 0vh 1vh 1vh rgba(127, 127, 127, 0.5);
	
	
    left: calc((100% - (42vh * 1165 / 648))/2);
}
.sharePopup .sharePopupBoxArea {
	position: relative;
    width: 100%;
    height: 100%;
}
.sharePopup .sharePopupTitleBar {
    position: absolute;
    top: 0;
	left: 0;
    width: 100%;
    height: 18.8%;
	
	-webkit-border-top-left-radius:  2.5vh;
	-webkit-border-top-right-radius:  2.5vh;
	-moz-border-radius-topleft:  2.5vh;
	-moz-border-radius-topright:  2.5vh;
	border-top-left-radius:  2.5vh;
	border-top-right-radius:  2.5vh;
	
	text-align: center;
    background-color: rgba(249, 220, 60, 0.5);
    font-size: 4vh;
    line-height: 8vh;
}
.sharePopup .sharePopupClassBtnList {
    position: absolute;
    top: 18.8%;
	left: 5%;
    width: 90%;
    height: 81.2%;
	
	-webkit-border-bottom-right-radius: 2.5vh;
	-webkit-border-bottom-left-radius: 2.5vh;
	-moz-border-radius-bottomright: 2.5vh;
	-moz-border-radius-bottomleft: 2.5vh;
	border-bottom-right-radius: 2.5vh;
	border-bottom-left-radius: 2.5vh;
	
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2vh 0;
    align-content: space-around;
    box-sizing: border-box;
}
.sharePopup .sharePopupClassBtn {
    box-sizing: border-box;
    width: 25%;
    display: inline-block;
    text-align: center;
	
	color: white;
	
	background-image: url("../../artwork/share/share_btn_button.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	
    font-size: 3.5vh;
    padding: 1vh 1vh 2vh;
	
	cursor: pointer;
}
.sharePopup .sharePopupCloseBtn {
    position: absolute;
    right: 1vh;
    top: 1vh;
    width: 7.6%;
    height: 13.7%;
	
	background-image: url("../../artwork/share/share_btn_close.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	
	cursor: pointer;
}
/* sharePopup end */

/* .sharePopupDetail */
.sharePopupDetail {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
}
.sharePopupDetail .sharePopupDetailMask {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
}
.sharePopupDetail .sharePopupDetailBox {
    position: absolute;
    width: 1702px;
    height: 1245px;
    width: calc(81.1vh * 1702 / 1245);
    height: 81.1%;
    left: 8.6%;
    top: 9.4%;
    background-color: #fef47e;
    -webkit-border-radius: 5vh;
    -moz-border-radius: 5vh;
    border-radius: 2.5vh;
    box-shadow: 0vh 0vh 1vh 1vh rgba(127, 127, 127, 0.5);
	
	
    left: calc((100% - (81.1vh * 1702 / 1245))/2);
}
.sharePopupDetail .sharePopupDetailBoxArea {
	position: relative;
    width: 100%;
    height: 100%;
}
.sharePopupDetail .sharePopupDetailTitleBar {
    position: absolute;
    top: 0;
	left: 0;
    width: 100%;
    height: 9.8%;
	
	-webkit-border-top-left-radius:  2.5vh;
	-webkit-border-top-right-radius:  2.5vh;
	-moz-border-radius-topleft:  2.5vh;
	-moz-border-radius-topright:  2.5vh;
	border-top-left-radius:  2.5vh;
	border-top-right-radius:  2.5vh;
	
	text-align: center;
    background-color: rgba(249, 220, 60, 0.5);
    font-size: 4vh;
    line-height: 8vh;
}
.sharePopupDetail .sharePopupDetailBookName {
    position: absolute;
    top: 9.8%;
	left: 0;
    width: 100%;
    height: 8.8%;
	
	text-align: left;
    font-size: 3.5vh;
    line-height: 7vh;
    box-sizing: border-box;
    padding-left: 2vh;
}
.sharePopupDetail .sharePopupDetailUnitPart {
    position: absolute;
    top: 18.5%;
	left: 0%;
    width: 100%;
    height: 79.3%;
	
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: flex-start;
    box-sizing: border-box;
	
	overflow-x: hidden;
	overflow-y: auto;
}
.sharePopupDetail .sharePopupDetailUnitArea {
	position: relative;
    width: 100%;
}
.sharePopupDetail .sharePopupDetailUnitList {
    padding: 0 2vh;
    box-sizing: border-box;
}
.sharePopupDetail .sharePopupDetailCloseBtn {
    position: absolute;
    right: 1vh;
    top: 1vh;
    width: 5.5%;
    height: 7.3%;
	
	background-image: url("../../artwork/share/share_btn_close.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	
	cursor: pointer;
}
.sharePopupDetailUnit.tr {
	display: -webkit-flex;
	display: flex;
	/*display: block;*/
}
.sharePopupDetailUnit.tr:first-child{
	/*height: inherit;*/
}
.sharePopupDetailUnit.tr:first-child .td {
	min-height: 21px !important;
}
.sharePopupDetailUnit.tr:not(:first-child) {
	border-top: 1px solid #CCCCCC;
}
.sharePopupDetailUnit.tr .td {
    display: inline-block;
    padding: 2vh;
    box-sizing: border-box;
	vertical-align: top;
	background-color: white;
	
    /*min-height: 90px;*/
}
.sharePopupDetailUnit.tr .th.td {
    text-align: center;
	background-color: #e7ceff;
	font-weight: bold;
}
.sharePopupDetailUnit.tr .td:not(:first-child) {
	border-left: 1px solid #CCCCCC;
}
.sharePopupDetailUnit.tr .td:nth-child(1) {
    width: 18.5%;
}
.sharePopupDetailUnit.tr .td:nth-child(2) {
    width: 18.5%;
}
.sharePopupDetailUnit.tr .td:nth-child(3) {
    width: 18.5%;
}
.sharePopupDetailUnit.tr .td:nth-child(4) {
    width: 44.5%;
}
/* sharePopupDetail end */


/* popup */
.popupbox_titlebar {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	
	background-color: #0a2759;
	
	position: relative;
	left: 0;
	top: 0;
	
	width: 100%;
	height: 30px;
	
	text-align: center;
	color: white;
	font-size: 18px;
	line-height: 30px;
}
.popupbox_btn_close {
	background-image: url("../../img/popup/popupbox_btn_close@2x.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
	
	position: absolute;
	top: 0px;
	right: 0px;
	
	width: 35px;
	height: 30px;
	
	cursor: pointer;
}
.popup_label {
	margin: 0 0 0;
	padding: 50px 50px 0;
}
.popup_row_edconnect {
	padding: 33px 50px 50px;
	text-align: center;
}
.popup_row_edconnect_object {
	display: inline-block;
	text-align: left;
}
.popup_text {
	display: inline-block;
}
.popup_btn_login {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
	
	display: inline-block;
	width: 100px;
	height: 37px;
	
	cursor: pointer;
}
.popup_btn_login.chi {
	background-image: url("../../img/popup/btn_login_c_n.png");
}
.popup_btn_login.eng {
	background-image: url("../../img/popup/btn_login_e_n.png");
}

.popupbox_btn_login {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
	
	position: relative;
		
	cursor: pointer;
	
	width: 72.5%;
	height: 64px;
    margin: 0 auto;
}
.chi .popupbox_btn_login {
	background-image: url("../../img/popup/btn_login_c@2x.png");
}
.eng .popupbox_btn_login {
	background-image: url("../../img/popup/btn_login@2x.png");
}

.popupbox_btn_forgetpassword {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
	
	position: relative;
		
	cursor: pointer;
	
	width: 72.5%;
	height: 32px;
    margin: 0 auto;
}
.chi .popupbox_btn_forgetpassword {
	background-image: url("../../img/popup/btn_forgot_pw_c@2x.png");
}
.eng .popupbox_btn_forgetpassword {
	background-image: url("../../img/popup/btn_forgot_pw@2x.png");
}
/* popup end */

/* showPopupNews */
.popupbox.news {
	position: relative;
	top: initial;
	left: initial;
	width: initial;
	height: initial;
}
.popupbox.news .listContent {
	height: calc(100% - 30px);
}
/* showPopupNews end */

/* popup admin */
.popupbox_titlebar_admin {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #9256a7;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 30px;
    text-align: center;
    color: white;
    font-size: 18px;
    line-height: 30px;
}