
@charset "utf-8";

/*
** common css
*/

.backFixed {
    overflow: hidden;
}
.blur {
    filter: blur(5px);
}
.itemMobile {
		display: none;
	}
/*
** mark
*/
.mark {
    padding: 5px 15px !important;
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    border-radius: 16px;
    background-color: transparent !important;
}
.mark.lg {
    height: 37px;
    border-radius: 19px;
}
.mark.md {
    height: 32px;
}
.mark.sm {
    padding: 5px 10px;
    height: 26px;
    font-size: 14px;
}
/* mark background */
.mark.client {
    color : #C7C7C7 !important;
    border: 1px solid #C7C7C7;
}
.mark.center {
    color : #4A65D6 !important;
    border: 1px solid #4A65D6;
}
.mark.orange {
    color : #1ECB40 !important;
    border: 1px solid #1ECB40;
}
.mark.add {
    color : #fff !important;
    background: #4A65D6 !important;
    border: 1px solid #4A65D6;
}
.mark.ask {
    color : #202020 !important;
    background: #ECECEC !important;
    border: 1px solid #ECECEC;
}
.mark.regist {
    color : #fff !important;
    background: #FD7D1A !important;
    border: 1px solid #FD7D1A;
}
.mark.refund {
	color : #fff !important;
	background: #F52B13 !important;
	border: 1px solid #F52B13;
}
.mark.white {
	color : #fff !important;
	border: 1px solid #fff;
}
.mark.dark {
	color : #fff !important;
	background: #383838 !important;
    border: 1px solid #383838;
}
/*
** text color
*/
.txtLightBlue {
    color: #4A65D6 !important;
}
.txtLightGray {
    color: #a4a4a4 !important;
}
.txtGray {
    color: #707070 !important;
}
.txtOrange {
    color: #FF7d1a !important;
}
.txtBlack {
    color: #202020 !important;
}
.txtWhite {
    color: #fff !important;
}
.txtLightRed {
	color: #E60000 !important;
}
.txtRed {
    color: #F52B13 !important;
}
.txtBlushRed {
	color: #ff7160 !important;
}

/*
** text align
*/
.txtCenter {
    text-align: center !important;
}
.txtRight {
    text-align: right !important;
}
.txtLeft {
    text-align: left !important;
}
.vertiCenter {
	font-size: 24px;
    vertical-align: -webkit-baseline-middle;
    margin-right: 2px;
}
/*
** background color
*/
.bgLightBlue { 
    background: #4A65D6 !important;
}
.bgDarkGray { 
    background: #383838 !important;
}
.bgLightGray { 
    background: #a4a4a4 !important;
}
.bgLightGray2 { 
    background: #ECECEC !important;
}
.bgIceGray { 
    background: #F8F9FB !important;
}
.bgRed {
    background: #F52B13 !important;
}
.bgOrange {
	background: #FF7D1A !important; 
}

/*
** input 
*/
.comInput {
    padding: 10px 20px;
    width: 100%;
    color: #202020;
    font-family: inherit;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #B2B8CC;
    box-sizing: border-box;
}
.comInput::placeholder {
    color: #B2B8CC;
}
/* input size */
.comInput.lg {
    height: 56px;
}
.comInput.md {
    height: 48px;
}
.comInput.sm {
    height: 40px;
    font-size: 14px;
}
/* input disabled */
.comInput:disabled,
.comSelect:disabled {
    background-color: #F4F6F8;
}
.comInput:disabled::placeholder {
    color: #202020;
}
/* search */
.comInput.search {
    padding: 10px 40px 10px 20px;
}
.comInput.date {
    padding: 10px 40px 10px 20px;
    background: #fff url(../images/common/icon_calender.png) right 10px center no-repeat;
}

/*
** textarea
*/
.comTextArea {
    padding: 10px 20px;
    width: 100%;
    height: 100%;
    min-height: 135px;
    color: #202020;
    font-family: inherit;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #B2B8CC;
    resize: none;
}
.comTextArea::placeholder { 
    color: inherit;
    font-family: inherit;
    font-size: inherit;
}

/*
** select
*/
.comSelect {
    display: flex;
    align-items: center;
    padding: 10px 30px 10px 20px;
    width: 100%;
    color: #202020;
    font-family: inherit;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #B2B8CC;
    background: #fff url(../images/common/icon_select_down.png) right 10px center no-repeat;
}
/* select size */
.comSelect.lg {
    height: 56px;
}
.comSelect.md {
    height: 48px;
}
.comSelect.sm {
    height: 48px;
    font-size: 14px;
}

/*
** button
*/
.btnWrap {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 5px;
    width: 100%;
}
.btnWrap > * {
    width: calc((100% - 5px) / 2);
}
.comButton {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-family: 'nexon',sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    background: #fff;
    border: 0;
}
/* border */
.comButton.border {
    color : #4A65D6 !important;
    border: 1px solid #4A65D6;
}
/* button size */
.comButton.fill {
    display: flex;
    width: 100%;
}
.comButton.lg {
    height: 56px;
    font-size: 18px;
}
.comButton.md {
    height: 48px;
}
.comButton.sm {
    height: 40px;
    font-size: 14px;
}
/* button radius */
.comButton.bdRadius {
    border-radius: 25px;
}
/* search button */
.btnSearch {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
}
.btnSearch:before {
    content: "";
    background: url(../images/common/icon_search.png) center no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
}
/* cart */
.comButton.btnCartDel {
    color: #202020 !important;
    background: #ECECEC;
}

/*
** checkbox
*/
.comCheckbox {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}
.comCheckbox input[type="checkbox"] + label {
    display: flex;
    align-items: center;
    color: #707070;
    font-size: 14px;
    cursor: pointer;
}
.comCheckbox input[type="checkbox"] + label::before {
    content: "";
    margin-right: 9px;
    width: 22px;
    height: 22px;
    background: url('../images/common/icon_check_off.png') center no-repeat;
    background-size: contain;
}
.comCheckbox input[type="checkbox"]:checked + label::before {
    content: "";
    background: url('../images/common/icon_check_on.png') center no-repeat;
    background-size: contain;
}
.comCheckbox input[type="checkbox"] {
    display: none;
}

/*
** radio
*/
.comRadiobox {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.comRadiobox input[type="radio"] + label {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 10px;    
    color: #666;
    font-size: 14px;
    cursor: pointer;
}
.comRadiobox input[type="radio"] + label::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 22px;
    height: 22px;
    background: url('../images/common/icon_radio_off.png') center no-repeat;
    background-size: contain;
}
.comRadiobox input[type="radio"]:checked + label::before {
    content: "";
    background: url('../images/common/icon_radio_on.png') center no-repeat;
    background-size: contain;
}
.comRadiobox input[type="radio"] {
    display: none;
}

/*
** file
*/
.comFileUpload {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.comFileUpload > label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    cursor: pointer;
}
.comFileUpload .upload { 
    width: calc(100% - 115px);
}
.comFileUpload input[type="file"] {
    display: none;
}

/* check radio form */
.checkLabel {
    display: flex;
    align-items: center;
    gap: 0 30px;
}
/* radio */
.checkLabel.radio .comRadiobox {
    width: auto;
}
.checkLabel.radio .comRadiobox input[type="radio"] + label {
    color: #383838;
    font-size: 16px;
}
/* radio + check */
.checkLabel.radioCheck .comRadiobox {
    width: auto;
}
.checkLabel.radioCheck .comRadiobox input[type="radio"] + label {
    color: #383838;
    font-size: 16px;
}
.checkLabel.radioCheck .comRadiobox input[type="radio"] + label::before {
    content: "";
    width: 22px;
    height: 22px;
    background: url('../images/common/icon_check_off.png') center no-repeat;
    background-size: contain;
}
.checkLabel.radioCheck .comRadiobox input[type="radio"]:checked + label::before {
    content: "";
    background: url('../images/common/icon_check_on.png') center no-repeat;
    background-size: contain;
}
/* checkbox */
.checkLabel.check .comCheckbox input[type="checkbox"] + label {
    color: #383838;
    font-size: 16px;
}
/* moreButton */
.moreWrap {
    margin-top: 60px;
    text-align: center;
}
/* 
** paging 
*/
.pagiNation {
    margin-top: 60px;
}
ul.paging {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 10px;
}
ul.paging li {}
ul.paging li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #707070;
    font-size: 14px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #B2B8CC;
}
ul.paging li a.prev,
ul.paging li a.next {
    font-size: 0;
    text-indent: -9999px;
}
ul.paging li a.prev::before,
ul.paging li a.next::before {
    content: "";
    width: 10px;
    height: 17px;
}
ul.paging li a.prev::before {
    background: url(../images/common/icon_prev.png) center no-repeat;
    background-size: contain;
}
ul.paging li a.next::before {
    background: url(../images/common/icon_next.png) center no-repeat;
    background-size: contain;
}
ul.paging li a.on.prev::before {
    background: url(../images/common/icon_prev.png) center no-repeat;
    background-size: contain;
}
ul.paging li a.on.next::before {
    background: url(../images/common/icon_next.png) center no-repeat;
    background-size: contain;
}
ul.paging li.on a,
ul.paging li:hover a {
    color: #fff !important;
    background: #587EFF;
    border: 1px solid #587EFF;
}
/*
** none Border
*/
.noneBorder {
	border: none !important;
}

/*
** alert popup
*/
.dimmed {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(0, 0, 0, 0.1);
    z-index: 9;
}
.popAlert {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    padding: 20px;
    max-width: 400px;
    max-height: 100%;
    height: min-content;
    border-radius: 5px;
    box-shadow: 0 0 6px rgb(0 0 0 / 16%);
    background: #fff;
    z-index: 100001 !important;
}
.popAlert.saveComplete {
    padding: 0 0 20px;
}

.popAlert.saveComplete .pop_swiper {
    width: 100%;
    height: 370px;
    padding: 20px 20px 0;
    box-sizing: border-box;
    margin-bottom: 30px;
    background: #E6EAFC;
}
.popAlert.saveComplete .pop_swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}
.popAlert.saveComplete .pop_swiper .swiper-slide img {
    max-width: 100%;
    width: 100%;
    object-fit: contain;
}
.popAlert.saveComplete .middle {
    padding: 0 20px;
}
.popAlert.saveComplete .middle .pop_txt01 {
    font-size: 20px;
    font-weight: 500;
    color: #242424;
    letter-spacing: -0.03em;
}
.popAlert.saveComplete .middle .pop_txt02 {
    margin-top: 14px;
    font-size: 16px;
    color: #686E81;
    letter-spacing: -0.03em;
    line-height: 1.4;
}
.popAlert.saveComplete .btnWrap {
    gap: 0 12px;
}
.popAlert.saveComplete .btnWrap .btn_s {
    max-width: 110px;
}
.popAlert.saveComplete .btnWrap .btn_b {
    max-width: 235px;
}

.popAlert .imgClose {
    position: absolute;
    top: 18px;
    right: 24px;
}
.popAlert .head {
    margin: 10px 0;
    position: relative;
    text-align: center;
}
.popAlert .head .btnClose {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
}
.popAlert .head strong {
    color: #202020;
    font-size: 20px;
    font-weight: 500;
}
.popAlert .head p {
    display: flex;
    align-items: center;
    gap: 0 5px;
    color: #202020;
    font-size: 16px;
    font-weight: 500;
}
.popAlert .head span {
    margin-top: 5px;
    display: block;
    color: #707070;
    font-size: 14px;
}
.popAlert .head p span {
    font-size: 12px;
}
.popAlert .head .logo:before {
    content: "";
    width: 25px;
    height: 25px;
    background: url(../images/logistics/sLogo.png) center no-repeat;
    background-size: contain;
}
.popAlert .middle {
    text-align: center;
}
.popAlert .middle p {
    color: #9A9A9A;
    font-size: 14px;
    line-height: 20px;
}
.popAlert .middle .formField {
	display: block;
    margin-top: 10px;
}
.popAlert .middle .formField textarea::placeholder {
    color: #9A9A9A;
}
/* card popup */
.commonCardPopup {
    padding: 0;
    max-width: 600px;
}
.commonCardPopup .head {
    margin: 0;
    padding: 25px 30px;
    border-bottom: 1px solid #B2B8CC;
}
.commonCardPopup .head .btnClose {
    top: 25px;
    right: 25px;
}
.commonCardPopup .middle {
    padding: 30px;
}
.commonCardPopup .middle p {
    color: #202020;
    font-size: 16px;
}
.popCardWrap {
    margin-top: 20px;
    padding: 35px 20px;
    display: flex;
    gap: 0 20px;
    background: #F4F6F8;
    border-radius: 10px;
}
.popCardWrap .cardTextWrap {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px 0;
}
.popCardWrap .cardTextWrap strong {
    color: #202020;
    font-size: 16px;
    font-weight: 500;
}
.popCardWrap .btnCardRegist {
    padding: 5px 12px;
    display: inline-flex;
    align-items: center;
    width: auto;
    height: 30px;
    color: #fff !important;
    font-size: 14px;
    background: #383838;
    border-radius: 25px;
}
.commonCardPopup .bottom {
    padding: 30px;
}
/* alarm popup */
.popAlarm {
    display: none;
    position: absolute;
    top: 180px;
    right: calc(50% - 660px);
    min-width: 445px;
    height: min-content;
    border-radius: 10px;
    box-shadow: 0 0 6px rgb(0 0 0 / 16%);
    background: #fff;
    z-index: 10;
}
.popAlarm .head {
    padding: 20px;
    position: relative;
}
.popAlarm .head .btnClose {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
}
.popAlarm .head strong {
    color: #202020;
    font-size: 20px;
    font-weight: 500;
}
.popAlarm .middle {
    padding: 0 20px 20px;
    max-height: 210px;
    overflow-y: auto;
}
.popAlarm .middle.scrollWrap {
    padding: 0;
}
.popAlarm .middle.scrollWrap .mCSB_inside > .mCSB_container {
    margin-right: 20px;
}
ul.alarmList {
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
}
ul.alarmList li {
    padding: 10px 20px;
}
ul.alarmList li:hover {
    background: #F8F9FB;
}
ul.alarmList li .iconAlarm {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(88, 126, 255, 0.1);
    border-radius: 100%;
}
ul.alarmList li .iconAlarm::before {
    content: "";
    width: 25px;
    height: 25px;
}
ul.alarmList li .iconAlarm.check {
    background-color: rgba(164, 164, 164, 0.1);
}
ul.alarmList li .iconAlarm.cancel {
    background-color: rgba(255, 69, 47, 0.1);
}
ul.alarmList li .iconAlarm.type01::before {
    background: url(../images/common/icon_alarm2_type01.png) center no-repeat;
    background-size: contain;
}
ul.alarmList li .iconAlarm.type02::before {
    background: url(../images/common/icon_alarm2_type02.png) center no-repeat;
    background-size: contain;
}
ul.alarmList li .iconAlarm.type03::before {
    background: url(../images/common/icon_alarm2_type03.png) center no-repeat;
    background-size: contain;
}
ul.alarmList li .iconAlarm.type04::before {
    background: url(../images/common/icon_alarm2_type04.png) center no-repeat;
    background-size: contain;
}
ul.alarmList li .iconAlarm.type05::before {
    background: url(../images/common/icon_alarm2_type05.png) center no-repeat;
    background-size: contain;
}
ul.alarmList li .iconAlarm.type06::before {
    background: url(../images/common/icon_alarm2_type06.png) center no-repeat;
    background-size: contain;
}
/* alarm cancel */
ul.alarmList li .iconAlarm.type01.cancel::before {
    background: url(../images/common/icon_alarm2_type01_cancel.png) center no-repeat;
    background-size: contain;
}
/* alarm check */
ul.alarmList li .iconAlarm.type01.check::before {
    background: url(../images/common/icon_alarm2_type01_check.png) center no-repeat;
    background-size: contain;
}
ul.alarmList li .iconAlarm.type02.check::before {
    background: url(../images/common/icon_alarm2_type02_check.png) center no-repeat;
    background-size: contain;
}
ul.alarmList li .iconAlarm.type03.check::before {
    background: url(../images/common/icon_alarm2_type03_check.png) center no-repeat;
    background-size: contain;
}
ul.alarmList li .iconAlarm.type04.check::before {
    background: url(../images/common/icon_alarm2_type04_check.png) center no-repeat;
    background-size: contain;
}
ul.alarmList li .iconAlarm.type05.check::before {
    background: url(../images/common/icon_alarm2_type05_check.png) center no-repeat;
    background-size: contain;
}
ul.alarmList li .iconAlarm.type06.check::before {
    background: url(../images/common/icon_alarm2_type06_check.png) center no-repeat;
    background-size: contain;
}

ul.alarmList li .alarmContents {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0 10px;
}
ul.alarmList li .alarmContents .textWrap {
    width: calc(100% - 120px);
}
ul.alarmList li .alarmContents .textWrap strong {
    display: block;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
ul.alarmList li .alarmContents .textWrap p {
    margin-top: 6px;
    color: #707070;
    font-size: 12px;
    font-weight: 500;
}
ul.alarmList li .alarmContents .date {
    color: #707070;
    font-size: 12px;
}
ul.alarmList li .alarmContents .new {
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 6px;
    background: #F52B13;
    border-radius: 100%;
}
/* 
** Layout 
*/
.wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.innerSection {
    position: relative;
    margin: 0 auto;
    padding: 140px 0;
    box-sizing: border-box;
    max-width: 1280px;
    height: 100%;
}

/*
** Header
*/
/*
.header {
    position: relative;
    width: 100%;
    height: 90px;
    border-bottom: 1px solid #F3F3F3;
    background: transparent;
}
.header .innerSection {
    display: flex;
    align-items: center;
}
.header .logo {
	margin: 0;
    display: flex;
    width: 130px;
    height: 55px;
    background: url(../images/common/logo_blue.png) center no-repeat;
    background-size: contain;
}
.header .logo a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 0;
    text-indent: -9999px;
}
.header .gnbMobile {
    display: none;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    width: auto;
    height: 100%;
}
.header .gnbMobile ul.userLogin {
    display: flex;
    align-items: center;
    gap: 0 5px;
}
.header .gnbMobile ul.userLogin li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}
.header .gnbMobile .btnMenuOpen {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    z-index: 7;
}
.header .gnbMobile .btnMenuOpen span,
.header .gnbMobile .btnMenuOpen span:before,
.header .gnbMobile .btnMenuOpen span:after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 1px;
    border-color: #B2B8CC;
    background: #202020;
    cursor: pointer;
}
.header .gnbMobile .btnMenuOpen span:before {
    top: -10px;
    width: 30px;
}
.header .gnbMobile .btnMenuOpen span:after {
    bottom: -10px;
    width: 30px;
}
.header .gnbMobile .btnMenuOpen span,
.header .gnbMobile .btnMenuOpen span:before,
.header .gnbMobile .btnMenuOpen span:after {
    transition: all 0.3s ease-in-out;
}
.header .gnbMobile .btnMenuOpen.active span {
    background-color: transparent
}
.header .gnbMobile .btnMenuOpen.active span:before,
.header .gnbMobile .btnMenuOpen.active span:after {
    top: 0;
}
.header .gnbMobile .btnMenuOpen.active span:before {
    transform: rotate(45deg);
}
.header .gnbMobile .btnMenuOpen.active span:after {
    top: 10px;
    transform: translatey(-10px) rotate(-45deg);
}
.header .gnbWeb {
    margin-left: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
    width: 100%;
    height: 100%;
}
.header .gnbWeb ul.gnb {
    display: flex;
    align-items: center;
    gap: 35px;
    width: auto;
    height: inherit;
    margin: 0;
}
.header .gnbWeb ul.gnb li {
    position: relative;
    display: flex;
    width: auto;
    height: inherit;
}
.header .gnbWeb ul.gnb li.active:nth-child(5) {
	height: 90px;
}
.header .gnbWeb ul.gnb li a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #202020;
    font-size: 20px;
    font-weight: 500;
}
.header .gnbWeb ul.gnb li.active a {
    padding-top: 4px;
    color: #587EFF !important;
    border-bottom: 4px solid #587EFF;
}
.header .gnbWeb ul.userLogin {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 15px;
}
.header .gnbWeb ul.userLogin .btnLogin {
    padding: 8px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 14px;
    background: #587EFF;
    border-radius: 25px;
}
.header .gnbWeb ul.userLogin .btnLogOut {
    padding: 8px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #587EFF !important;
    font-size: 14px;
    background: transparent;
    border: 1px solid #587EFF !important;
    border-radius: 25px;
}
.header .gnbWeb .userLogin .userName {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 10px;
    color: #202020;
    font-size: 14px;
}
.header .gnbWeb .userLogin .userName::before {
    content: "";
    display: flex;
    width: 32px;
    height: 32px;
    background: url("../images/common/icon_user.png") center no-repeat;
}
.header .gnbWeb .userLogin .userName:hover span {
    text-decoration: underline;
}
.header .userLogin .btnUser {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;                        
    width: 35px;
    height: 35px;
}
.header .userLogin .btnUser.logOut {
/*    background: url(../images/common/icon_logout_black.png) center no-repeat;
    background-size: contain;
    width: 23px;
    height: 20px;
}
.header .userLogin .btnUser.alarm {
    background: url(../images/common/icon_alarm_black.png) center no-repeat;
    background-size: contain;
    width: 24px;
    height: 28px;
}
.header .userLogin .btnUser.basket {
    background: url(../images/common/icon_basket_black.png) center no-repeat;
    background-size: contain;
    width: 34px;
    height: 28px;
}
.header .userLogin .btnUser .cnt {
    position: absolute;
    top: -5px;
    right: -3px;
    padding: 2px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    background: #DD1B1B;
    border-radius: 30px;
}
*/
/* 하위 메뉴 */
.header .gnbWeb ul.gnb li > ol.depth {
    display: none;
    position: absolute;
    top: 85px;
    left: 0;
    width: 145px;
    background: #fff;
    box-shadow: 0 0 6px rgba(0,0,0,0.16);
    border-top: 4px solid #587EFF;
    z-index: 3;
}
.header .gnbWeb ul.gnb li > ol.depth li {
    align-items: center;
    justify-content: center;
}
.header .gnbWeb ul.gnb li > ol.depth li a {
    padding: 15px 0;
    color: #707070 !important;
    font-size: 14px;
    font-weight: 400;
    border: none;
}
/* hover */
.header .gnbWeb ul.gnb li > ol.depth li:hover a {
    color: #587EFF !important;
}
/* 메인 헤더 */
.header.main {
    position: fixed;
    top: 0;
    left: 0;
    border-bottom: 1px solid #fff;
    transition: all 0.3s ease-in-out;
    z-index: 5;
}
.header.main .gnbWeb ul.gnb li.active a {
    border-bottom: 4px solid #fff;
}
.header.main .logo {
    background: url(../images/common/logo_white.png) center no-repeat;
    background-size: auto;
}
.header.main .userLogin .btnUser.logOut {
/*    background: url(../images/common/icon_logout_white.png) center no-repeat;
    background-size: contain;
    width: 23px;
    height: 20px;*/
}
.header.main .userLogin .btnUser.alarm {
    background: url(../images/common/icon_alarm_white.png) center no-repeat;
    background-size: contain;
    width: 24px;
    height: 28px;
}
.header.main .userLogin .btnUser.basket {
    background: url(../images/common/icon_basket_white.png) center no-repeat;
    background-size: contain;
    width: 34px;
    height: 28px;
}
.header.main .gnbWeb .userLogin .userName {
    color: #fff !important;
}
.header.main .gnbWeb ul.gnb li a {
	color: #fff !important;
}
.header.main .gnbWeb .userLogin .mark {
    color: #fff !important;
    border: 1px solid #fff;
}
.header.main .gnbWeb ul.userLogin .btnLogin {
    color: #202020 !important;
    background: #fff;
}
.header.main .gnbWeb ul.userLogin .btnLogOut {
    color: #fff !important;
    border: 1px solid #fff !important;
}
/* active */
.header.main.active {
    background: #fff;
    border-bottom: 1px solid #F3F3F3;
    box-shadow: 0 0 6px rgb(0 0 0 / 16%);
}
.header.main.active .logo {
    background: url(../images/common/logo_blue.png) center no-repeat;
    background-size: contain;
}
.header.main.active .gnbWeb ul.gnb li.active a {
    border-bottom: 4px solid #587EFF;
}
.header.main.active .gnbWeb ul.gnb li a {
	color: #000 !important;
}
.header.main.active .userLogin .btnUser.logOut {
    background: url(../images/common/icon_logout_black.png) center no-repeat;
    background-size: contain;
}
.header.main.active .userLogin .btnUser.alarm {
    background: url(../images/common/icon_alarm_black.png) center no-repeat;
    background-size: contain;
}
.header.main.active .userLogin .btnUser.basket {
    background: url(../images/common/icon_basket_black.png) center no-repeat;
    background-size: contain;
}
.header.main.active .userLogin .mark.center {
    color: #587EFF !important;
    border: 1px solid #587EFF;
}
.header.main.active .userLogin .mark.client {
    color : #C7C7C7 !important;
    border: 1px solid #C7C7C7;
}
.header.main.active ul.userLogin .btnLogin {
    color: #fff !important;
    background: #587EFF;
}
.header.main.active ul.userLogin .btnLogOut {
    color: #587EFF !important;
    border: 1px solid #587EFF !important;
}
.header.main.active .userLogin .userName {
    color: #202020 !important;
}
.header.main.active .gnbWeb ul.gnb li > ol.depth li a {
    color: #707070 !important;
    border: none;
}
.header.main.active .gnbWeb ul.gnb li > ol.depth li:hover a {
    color: #587EFF !important;
}
/*
** Footer
*/
.footer {
    padding: 25px 0 30px;
    width: 100%;
    background: #383838;
}
.footer .innerSection {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer .terms {
    display: flex;
    flex-direction: column;
}
.footer ul.termsList {
    display: flex;
    flex-wrap: wrap;
    gap: 0 40px;
}
.footer ul.termsList li a {
    display: flex;
    color: #fff !important;
    font-size: 15px;
    font-weight: 500;
}
ul.socialList {
	margin: 40px 0 10px;
    display: flex;
    gap: 0 5px;    
}
ul.socialList li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    background: #888;    
    border-radius: 100%;
    text-indent: -20000px;
}
ul.socialList li a:before {
    content: "";
    width: 40px;
    height: 40px;
}
ul.socialList li a.blog:before {
    background: url("../images/common/icon_mblog.png") center no-repeat;
}
ul.socialList li a.facebook:before {
    background: url("../images/common/icon_facebook.png") center no-repeat;
}
ul.socialList li a.instagram:before {
    background: url("../images/common/icon_minstagram.png") center no-repeat;
}
ul.companyList {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;    
    max-width: 900px;
}
.terms ul:last-child {
	margin-top: 5px;
}
ul.companyList li {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 13px;
}
ul.companyList li::before {
    content: "";
    margin-left: 4px;
    margin-right: 8px;
    width: 1px;
    height: 11px;
    background: #fff;
}
ul.companyList li:first-child::before,
ul.companyList li:nth-last-child(2)::before {
    content: none;
}
.footer .side {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
ul.familyList {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0 5px;
}
ul.familyList .familySite {
    width: 180px;
    height: 46px;	
    border-radius: 35px;
    
}
ul.familyList .moveLink {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
	justify-content: center;    
    color: #fff !important;
    width: 76px;
    height: 46px;
    font-size: 15px;
    background: #587EFF;
    border-radius: 35px;
}
.footer .logo {
	margin: 15px 0 20px;
}
.copyright {
    color: #fff;
    font-size: 13px;
}

/* side */
.btnLocation {
    position: fixed;
    right: 10px;
    bottom: 160px;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    z-index: 3;
}
ul.locationList {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px 0;
}
ul.locationList li a {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px 0;
    width: 75px;
    height: 75px;
    color: inherit;
    font-size: 16px;
    font-weight: 400;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
    border-radius: 5px;
}
ul.locationList li a::before {
    content: "";
    display: flex;
    width: 30px;
    height: 30px;
}
ul.locationList li a.center::before {
    background: url(../images/common/icon_btn_center.png) center no-repeat;
    background-size: contain;
}
ul.locationList li a.estimate::before {
    background: url(../images/common/icon_btn_estimate02.png) center no-repeat;
    background-size: contain;
}
ul.locationList li a.bulk::before {
    background: url(../images/common/icon_btn_bulk02.png) center no-repeat;
    background-size: contain;
}
ul.locationList li a.center,
ul.locationList li a.bulk,
ul.locationList li a.estimate {
    color: #fff !important;
    background: linear-gradient(315deg, rgba(88,126,255,1) 0%, rgba(97,140,255,1) 50%, rgba(116,168,255,1) 100%);
}
ul.locationList li a.top {
    color: #587EFF !important;
    background: #fff;
}
ul.locationList li a.top::before {
    background: url(../images/common/icon_btn_top.png) center no-repeat;
    background-size: contain;
}

/* slide */
.swiperBtnWrap .btnArrow.swiper-button-prev {
    background: url(../images/common/icon_btn_prev.png) center no-repeat;
    background-size: contain;
}
.swiperBtnWrap .btnArrow.swiper-button-next {
    background: url(../images/common/icon_btn_next.png) center no-repeat;
    background-size: contain;
}
.swiperBtnWrap .btnArrow:after {
    content: none;
}

/* 제품 카테고리 공통 */
.category {
    padding: 4px 20px;
    display: inline-block;
    vertical-align: middle;
    color: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 25px;
}
.category.bgOrange {
    color: #fff !important;
    background: #FF7D1A;
}
.category.bgGray {
    color: #A4A4A4 !important;
    background: #EDEDED;
}
.category.bgBlue {
    color: #587EFF !important;
    background: #DEE5FF;
}
.category.bgGreen {
    color: #339665 !important;
    background: #d2e8dd;
}
.category.bgLightOrange {
    color: #FF7D1A !important;
    background: #FFE5D1;
}

/* banner */
.bannerWrap {
    margin-bottom: 100px;
}
.banner {
    margin: 0 auto;
    max-width: 1200px;
}
.banner img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.banner img.pcImg {
    display: block;
}
.banner img.mobileImg {
    display: none;
}

/*
** 인수증 프린트
*/
.receiptPrint {
    padding: 30px 0;
    margin: 0 auto;
    width: 1500px;
    display: flex;
}
.receiptPrint .logo {
    display: block;
    margin: 0 auto;
    max-width: 108px;
}
.receiptOrder {
    padding: 40px 25px;
    width: 500px;
    border-right: 1px dashed #707070;
}
.receiptOrder:last-child {
    border-right: none;
}
.receiptOrder .orderName {
    color: #262626;
    font-size: 30px;
    font-weight: 700;
    line-height: 34px;
}
.receiptOrder .chargeName {
    margin-top: 6px;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
}
.receiptOrder ul.receiptConfirm {
    display: flex;
}
.receiptOrder ul.receiptConfirm li {
    padding: 5px;
    width: 90px;
    height: 90px;
    color: #666;
    font-size: 11px;
    text-align: center;
    border: 1px solid #707070;
}
.receiptOrder ul.receiptConfirm li:first-child {
    border-right: none;
}
.receiptOrder ul.receiptConfirm li:nth-child(2) {
    border-right: none;
}
.receiptOrder ul.receiptConfirm li:last-child {
    border-right: 1px solid #707070;
}
.receiptOrder .top {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
}
.receiptOrder .middle {
    min-height: 100px;
}
.receiptOrder .bottom {
    text-align: center;
}
/* 인수증 테이블 */
.receiptTable {
    margin-bottom: 26px;
}
.receiptTable .tableName {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #262626;
    font-size: 20px;
    font-weight: 500;
}
.receiptTable .tableName:after {
    content: "";
    width: calc(100% - 160px);
    height: 2px;
    background: #262626;
}
.receiptTable dl.tableCell {
    margin-top: 8px;
}
.receiptTable dl.tableCell dt {
    color: #666;
    font-size: 12px;
    font-weight: 400;
}
.receiptTable dl.tableCell dd p {
    padding: 6px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    border-bottom: 1px solid #7D7D7D;
}
.receiptOrder .warn {
    margin-top: 6px;
    display: block;
    color: #D02020;
    font-size: 10px;
    font-weight: 400;
}
.receiptOrder .checkMessage {
    color: #262626;
    font-size: 14px;
    font-weight: 500;
}
.receiptOrder .date {
    margin: 20px 0 19px;
    color: #262626;
    font-size: 14px;
    font-weight: 700;
}
.warnInfo {
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 400;
    color: #262626;
    line-height: 20px;
    word-break: keep-all;
    letter-spacing: -0.02em;
}
.warnInfo.bullet {
    padding-left: 10px;
}
.warnInfo.bullet::before {
    content: "*";
    margin-right: 0px;
    margin-left: -10px;
}
.warnInfo em {
    color: #00ADEC;
}
/*
** 클립보드 공유
*/
.shareWrap {
    width:425px;
    margin:0 auto;
    padding:20px 15px;
}
.shareWrap .share_status {
    width:100%;
    height:30px;
    border-radius:15px;
    background:#587EFF;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:400;
    color:#fff;
    margin-bottom:59px;
}
.shareWrap .share_status.dark {
    background:#666;
}
.shareWrap .tit_box {
    width:100%;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    margin-bottom:10px;
}
.shareWrap .tit_box .status {
    font-size:12px;
    font-weight:400;
    color:#262626;
}
.shareWrap .tit_box .status span {
    font-size:20px;
    font-weight:500;
    color:#587EFF;
    margin-right:10px;
}
.shareWrap .tit_box .status span.dark {
    color:#666;
}
.shareWrap .tit_box .status .code {
    font-size:20px;
    font-weight:500;
    color:#262626;
}
.shareWrap .info_box {
    width:100%;
    border-radius:5px;
    background:#F9F9F9;
    padding:20px 0;
    margin-bottom:6px;
}
.shareWrap .info_box .price_item {
    width:100%;
    text-align:center;
    margin-bottom:25px;
}
.shareWrap .info_box .price_item .tit {
    font-size:12px;
    font-weight:400;
    color:#666;
    margin-bottom:5px;
}
.shareWrap .info_box .price_item .txt {
    font-size:20px;
    font-weight:400;
    color:#262626;
}
.shareWrap .info_box .price_item .txt span {
    font-size:30px;
    font-weight:700;
}
.shareWrap .info_box .info_item {
    width:100%;
    display:flex;
    align-items:center;
}
.shareWrap .info_box .info_item li {
    width:50%;
    font-size:12px;
    font-weight:400;
    color:#666;
    text-align:center;
    position:relative;
}
.shareWrap .info_box .info_item li:first-child:after {
    content:'';
    width:1px;
    height:16px;
    background:#707070;
    display:flex;
    position:absolute;
    top:50%;
    right:0;
    transform:translateY(-50%);
}
.shareWrap .info_txt {
    font-size:12px;
    font-weight:400;
    color:#666;
    line-height:16px;
    margin-bottom:20px;
}
.shareWrap .info_lst {
    width:100%;
}
.shareWrap .info_lst li {
    width:100%;
    margin-bottom:20px;
}
.shareWrap .info_lst li .tit {
    font-size:12px;
    font-weight:400;
    color:#666;
    margin-bottom:6px;
}
.shareWrap .info_lst li .txt {
    font-size:16px;
    font-weight:500;
    color:#262626;
    line-height:18px;
}
.shareWrap .progress_box {
    width:100%;
}
.shareWrap .progress_box .tit {
    font-size:12px;
    font-weight:400;
    color:#666;
    margin-bottom:10px;
}
.shareWrap .progress_box .map_box {
    width:100%;
    height:200px;
    border-top:2px solid #262626;
    margin-bottom:20px;
}
.shareWrap .progress_box .progress_lst {
    width:100%;
}
.shareWrap .progress_box .progress_lst li {
    width:100%;
    padding-left:96px;
    padding-bottom:20px;
    position:relative;
}
.shareWrap .progress_box .progress_lst li:not(:last-child):before {
    content:'';
    width:2px;
    height:100%;
    background:#ddd;
    display:flex;
    top:0;
    left:58px;
    position:absolute;
}
.shareWrap .progress_box .progress_lst li.on:not(:last-child):before {
    background:#587EFF;
}
.shareWrap .progress_box .progress_lst li .status {
    font-size:12px;
    font-weight:400;
    color:#ddd;
    margin-bottom:6px;
    position:relative;
}
.shareWrap .progress_box .progress_lst li.on .status {
    color:#666;
}
.shareWrap .progress_box .progress_lst li.now .status {
    color:#587EFF;
}
.shareWrap .progress_box .progress_lst li.cancel .status {
    color:#262626;
}
.shareWrap .progress_box .progress_lst li .status:before {
    content:'';
    width:10px;
    height:10px;
    border-radius:50%;
    background:#ddd;
    display:flex;
    position:absolute;
    left:-42px;
    top:0;
}
.shareWrap .progress_box .progress_lst li.on .status:before,
.shareWrap .progress_box .progress_lst li.now .status:before {
    background:#587EFF;
}
.shareWrap .progress_box .progress_lst li.cancel .status:before {
    background:#ddd;
}
.shareWrap .progress_box .progress_lst li.now .status:after {
    content:'';
    width:14px;
    height:14px;
    border-radius:50%;
    border:1px solid #587EFF;
    display:flex;
    position:absolute;
    left:-45px;
    top:-3px;
}
.shareWrap .progress_box .progress_lst li.cancel .status:after {
    content:'';
    width:14px;
    height:14px;
    border-radius:50%;
    border:1px solid #ddd;
    display:flex;
    position:absolute;
    left:-45px;
    top:-3px;
}
.shareWrap .progress_box .progress_lst li .info {
    font-size:14px;
    font-weight:500;
    color:#ddd;
    margin-bottom:3px;
    line-height: 20px;
}
.shareWrap .progress_box .progress_lst li.on .info,
.shareWrap .progress_box .progress_lst li.now .info,
.shareWrap .progress_box .progress_lst li.cancel .info{
    color:#262626;
}
.shareWrap .progress_box .progress_lst li .date {
    font-size:12px;
    font-weight:400;
    color:#ddd;
}
.shareWrap .progress_box .progress_lst li.on .date,
.shareWrap .progress_box .progress_lst li.now .date,
.shareWrap .progress_box .progress_lst li.cancel .date{
    color:#666;
}
.shareWrap .copyright {
    width:100%;
    border-top:1px solid rgba(38,38,38,0.6);
    padding:33px 0 23px;
    text-align:center;
    font-size:12px;
    font-weight:400;
    color:#666;
}
/*
** 다운로드
*/
.printWrap {
    width:100%;
    max-width:1000px;
    padding:127px 100px;
    margin:0 auto;
}
.printWrap .print_tit {
    width:100%;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    margin-bottom:34px;
}
.printWrap .print_tit .date {
    font-size:20px;
    font-weight:400;
    letter-spacing:-0.02em;
    color:#262626;
}
.printWrap .print_tit .code_box {
    display:flex;
    align-items:flex-end;
}
.printWrap .print_tit .code_box .tit {
    font-size:16px;
    font-weight:400;
    letter-spacing:-0.02em;
    color:#666;
    margin-right:20px;
}
.printWrap .print_tit .code_box .code {
    font-size:24px;
    font-weight:500;
    letter-spacing:-0.02em;
    color:#262626
}
.printWrap .info {
    width:100%;
}
.printWrap .info:not(:last-child) {
    margin-bottom:50px;
}
.printWrap .info>.tit {
    max-width: 120px;
    font-size:16px;
    font-weight:500;
    letter-spacing:-0.01em;
    color:#262626;
    margin-bottom:20px;
    background:#fff;
    position:relative;
}
.printWrap .info>.tit:after {
    content:'';
    width:100vw;
    max-width:800px;
    height:2px;
    background:#262626;
    display:flex;
    position:absolute;
    top:50%;
    left:0;
    z-index:-1;
    transform:translateY(-50%);
}
.printWrap .info .item_box {
    width:100%;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    flex-wrap:wrap;
}
.printWrap .info .item_box li {
    width:calc(50% - 20px);
    border-bottom:1px solid rgba(38,38,38,0.6);
    padding-bottom:13px;
    margin-bottom:14px;
}
.printWrap .info .item_box li .tit {
    font-size:14px;
    font-weight:400;
    letter-spacing:-0.01em;
    color:#666;
    margin-bottom:10px;
}
.printWrap .info .item_box li .txt {
    width:100%;
    font-size:18px;
    font-weight:500;
    letter-spacing:-0.01em;
    line-height:20px;
    color:#262626;
    word-break:keep-all;
    word-wrap:break-word;
}
/* 주소록팝업 */
.popAlert.addressPopup p {
	margin: 0;
}
.popAlert.addressPopup {
	display: none;
	max-width: 800px;
	z-index: 10 !important;
}
.popAlert.addressPopup .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 20px 0;
    margin: 0 0 20px;
    border-bottom: 1px solid #B2B8CC;
}
.popAlert.addressPopup .head strong {
	font-size: 24px;
	line-height: 36px;
}
.popAlert.addressPopup .addressPopWrap {
	padding: 0 20px;
    border: 1px solid #B2B8CC;
    border-radius: 5px;
    margin-bottom: 20px;
}
.popAlert.addressPopup .addressPopWrap .cross {
    cursor: pointer;
}
.popAlert.addressPopup .addressPopWrap.on {
	border: 2px solid #6386FF;
}
.popAlert.addressPopup .bookWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
}
.popAlert.addressPopup .bookTitle p {
	font-size: 16px;
	line-height: 24px;
	color: #202020;
}
.popAlert.addressPopup .cross {
    width: 24px;
    height: 24px;
    position: relative;
}
.popAlert.addressPopup .cross span {
	background: #383838;
    font-size: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.popAlert.addressPopup .crossX {
	width: 100%;
    height: 3px;
}
.popAlert.addressPopup .crossY {
	width: 3px;
    height: 100%;
}
.popAlert.addressPopup .middle {
	height: 600px;
}
.popAlert.addressPopup .addressPopWrap.on .addressBox {
    border: none;
}
.popAlert.addressPopup .addressBox {
    padding: 20px;
    border-radius: 5px;
}
.popAlert.addressPopup .addressItem > div {
	display: flex;
	flex-wrap: wrap;
}
.popAlert.addressPopup .addressItem span {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 10px;
}
.popAlert.addressPopup .addressItem .infoArea i {
	margin-right: 8px;
}
.popAlert.addressPopup .addressItem .infoArea {
	flex-wrap: initial;
    align-items: center;
}
.popAlert.addressPopup .addressItem span .labelText {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    color: #383838;
    text-align: left;
}
.popAlert.addressPopup .addressItem .infoAddress input {
	width: calc( 100% - 120px );
	margin-right: 10px;
}
.popAlert.addressPopup .addressItem .infoAddress button {
	width: 110px;
}
.popAlert.addressPopup .tableContentWrap {
    border-radius: 5px;
    border: 1px solid #B2B8CC;
    overflow: hidden;
}
.popAlert.addressPopup .tableEmpty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
}
.popAlert.addressPopup .tableEmpty .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.popAlert.addressPopup .tableEmpty .icon::before {
	content: "";
    width: 87px;
    height: 87px;
}
.popAlert.addressPopup .tableEmpty .icon.empty::before {
    background: url(../images/common/icon_table_empty.png) center no-repeat;
    background-size: contain;
}
.popAlert.addressPopup .popContentWrap {
	border-radius: 5px;
    border: 1px solid #B2B8CC;
    overflow: hidden;
}
.popAlert.addressPopup .addressListWrap {
	padding: 20px;
}
.popAlert.addressPopup .addressHead {
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.popAlert.addressPopup .addressHead p {
    display: block;
    align-items: center;
    margin-bottom: 6px;
    color: #000;
    font-size: 22px;
    line-height: 34px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all;
}
.popAlert.addressPopup .addressHead i {
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}
.popAlert.addressPopup  ul.btnList {
    display: flex;
    align-items: center;
    gap: 0 10px;
}
.popAlert.addressPopup ul.btnList li {
    padding-right: 10px;
    border-right: 1px solid #B2B8CC;
}
.popAlert.addressPopup ul.btnList li:last-child {
    padding-right: 0;
    border-right: none;
}
.popAlert.addressPopup ul.btnList li a {
    display: flex;
    align-items: center;
    color: #202020;
    gap: 0 5px;
    font-size: 13px;
}
.popAlert.addressPopup ul.btnList li a:after {
    content: "";
    width: 20px;
    height: 20px;
}
.popAlert.addressPopup ul.btnList li a.modify:after {
    background: url(../images/contents/icon_mypage_modify.png) center no-repeat;
}
.popAlert.addressPopup ul.btnList li a.delete:after {
    width: 25px;
    height: 25px;
    background: url(../images/contents/icon_mypage_delete.png) center no-repeat;
}
.popAlert.addressPopup ul.addressPopList li {
	margin-bottom: 10px;
}
.popAlert.addressPopup ul.addressPopList .addressMiddle {
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 26px;
    text-align: left;
}
.popAlert.addressPopup ul.addressPopList .addressBox {
	border: 2px solid #587EFF;
}
.popAlert.addressPopup ul.addressPopList .addressMiddle p {
    color: #202020;
    font-size: 18px;
    line-height: 26px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all;
}
.popAlert.addressPopup ul.addressPopList .addressMiddle .txtAddress {
    width: 100%;
}
.popAlert.addressPopup ul.addressPopList .addressMiddle .txtTel {
    position: relative;
    margin-left: 5px;
    padding-left: 8px;
}
.popAlert.addressPopup ul.addressPopList .addressMiddle .txtTel:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 2px;
    height: 50%;
    background: #A4A4A4;
}
.popAlert.addressPopup ul.addressPopList .addressMiddle a {
	display: flex;
	width: 62px;
	margin-left: auto;
}
.popAlert.addressPopup .mCSB_dragger_bar {
	background: #D7DCE3!important;
}
.popAlert.addressPopup .mCSB_draggerRail {
    background: #F8F9FB!important;
}
/* 사이드메뉴  */
.sideWrap_right {
	position: absolute;
    top: 90px;
    left:calc(50% + 620px);
    width: 160px;
}
.sideWrap_left {
    position: absolute;
    top: 90px;
    right:calc(50% + 620px);
    width: 160px;
}
.sideBanner {
	position: fixed;
	width: 160px;
	max-height: 385px;
}
.sideBanner a {
	display: block;
	width: 100%;
	height: 100%;
}
/* tablet */
@media all and (max-width: 1400px){
	.btnLocation {
		right: 20px;
	}
}
@media all and (max-width: 1024px){
    .innerSection {
        padding: 50px 5%;
    }
    /* button */
    .comButton.lg,
    .comButton.md {
        height: 40px;
        font-size: 14px;
    }
    /* input */
    .comInput {
        padding: 10px 15px;
        font-size: 14px;
    }
    .comInput.lg,
    .comInput.md {
        font-size: 14px;
        height: 40px;
    }
    .comInput.date {
        padding: 10px 30px 10px 15px;
        background-size: 18px;
    }
    /* select */
    .comSelect {
        padding: 10px 30px 10px 15px;
        font-size: 14px;
    }
    .comSelect.lg,
    .comSelect.md {
        font-size: 14px;
        height: 40px;
    }
    /* textarea */
    .comTextArea {
        padding: 15px;
        font-size: 14px;
    }
    /* pagiNation */
    .pagiNation {
        margin: 40px auto;
    }
    ul.paging li a {
        width: 30px;
        height: 30px;
    }
    /* category */
    .category {
        padding: 0 12px;
        font-size: 14px;
        height: 25px;
    }
    /* table */
    table {
        table-layout: auto;
    }
    /* header */
    .header {
        height: 90px;
    }
    .header .logo {
        width: 109px;
        height: 60px;
    }
    .header.main .gnbMobile .btnMenuOpen span,
    .header.main .gnbMobile .btnMenuOpen span:before,
    .header.main .gnbMobile .btnMenuOpen span:after {
        background: #fff;
    }
    .header.main.active .gnbMobile .btnMenuOpen span,
    .header.main.active .gnbMobile .btnMenuOpen span:before,
    .header.main.active .gnbMobile .btnMenuOpen span:after {
        background: #202020;
    }
    .header.main .gnbMobile.on .btnMenuOpen span,
    .header.main.active .gnbMobile.on .btnMenuOpen span {
        background: transparent;
    }
    .header .gnbMobile.on .btnMenuOpen span:before,
    .header .gnbMobile.on .btnMenuOpen span:after {
        background: #fff;
    }
    .gnbWeb {
        display: none !important;
    }
    .gnbMobile {
        display: flex !important;
    }
    .gnbMobile.on .mLayer {
        display: block !important;
    }
    .gnbMobile .mLayer {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 10;
        transition: all .5s cubic-bezier(0.64,0.03,0.21,1);
        z-index: 6;
    }
    .gnbMobile .mLayer ul.gnb {
        padding: 10px 0;
        display: flex;
        flex-direction: column;
        gap: 5px 0;
    }
    .gnbMobile .mLayer ul.gnb li a:hover,
    .gnbMobile .mLayer ul.gnb li a:active {
        color: #202020;
        font-weight: 500;
    }
    .gnbMobile .mLayer ul.gnb li a {
        display: flex;
        align-items: center;
        padding: 10px 20px;
        color: #A4A4A4;
        font-size: 18px;
    }
    .gnbMobile .mLayer ul.gnb li ol.depth {
        margin-left: 30px;
    }
    .gnbMobile .mLayer ul.gnb li ol.depth li a {
        padding: 10px;
        font-size: 16px;
    }
    .gnbMobile .mLayer ul.gnb li a .icon.circle {
    	width: 5px;
    	height: 5px;
    	margin-right: 10px;
    	background: #B2B8CC;
    	border-radius: 50%;
    }
    .gnbMobile .mLayer ul.gnb li.active a .icon.circle {
    	background: #587EFF;
    }
    .gnbMobile .mLayer .head {
        border-bottom: 1px solid #B2B8CC;
    }
    .gnbMobile .mLayer .userLoginWarp {
        display: flex;
        flex-direction: column;
        gap: 10px 0;
        padding: 30px 20px 20px;
        background: linear-gradient(90deg, rgba(88,126,255,1) 0%, rgba(70,131,255,1) 35%, rgba(59,134,255,1) 100%);
    }
    .gnbMobile .mLayer .userLoginWarp strong {
        color: #fff;
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
    }
    .gnbMobile .mLayer .userLoginWarp strong > em {
        font-weight: 500;
    }
    .gnbMobile .mLayer .userLoginWarp .btnLogin {
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #587EFF !important;
        font-size: 14px;
        font-weight: 500;
        background: #fff;
        border-radius: 25px;
        max-width: 100px;
    }
    .gnbMobile .mLayer.login .userEstimate {
        display: block;
    }
    .gnbMobile .mLayer .userEstimate {
        display: none;
        padding: 15px 20px;
    }
    .gnbMobile .mLayer .userEstimate ul.userEstimateList {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 10px;
    }
    .gnbMobile .mLayer .userEstimate ul.userEstimateList li {
        width: calc((100% - 20px) / 3 );
        border: 1px solid #B2B8CC;
        border-radius: 10px;
    }
    .gnbMobile .mLayer .userEstimate ul.userEstimateList li div {
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px 0;
    }
    .gnbMobile .mLayer .userEstimate ul.userEstimateList li div .icon {
   	    justify-content: center;
    }
    .gnbMobile .mLayer .userEstimate ul.userEstimateList li div .icon::before {
    	content: none;
    }
    .gnbMobile .mLayer .userEstimate ul.userEstimateList li div img {
    	height: 32px;
    }
    .gnbMobile .mLayer .userEstimate ul.userEstimateList li strong {
        color: #212121;
        font-size: 14px;
        font-weight: 400;
    }
    .gnbMobile .mLayer .userEstimate ul.userEstimateList li p {
        color: #383838;
        font-size: 18px;
        font-weight: 500;
    }
    .gnbMobile .mLayer .middle {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        width: 100%;
        height: 100%;
        max-height: calc(100% - 290px);
        overflow-y: auto;
    }
    /* login */
    .gnbMobile .mLayer.login .middle {
        max-height: calc(100% - 420px);
    }
    .gnbMobile .mLayer .bottom {
        padding: 20px;
        margin-top: auto;
        flex: 0 0 66px;
        background: #F8F9FB;
    }
    .gnbMobile .mLayer .bottom ul.termsList {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 10px;
    }
    .gnbMobile .mLayer .bottom ul.termsList li a {
        color: #707070;
        font-size: 12px;
        word-break: keep-all;
    }
    .gnbMobile .mLayer .bottom ul.socialList {
        margin: 30px 0;
        display: flex;
        gap: 0 10px;
    }
    .gnbMobile .mLayer .bottom ul.socialList li a {
        background: transparent;
    }
    .gnbMobile .mLayer .bottom ul.socialList li a:before {
        content: "";
        width: 25px;
        height: 25px;
    }
    .gnbMobile .mLayer .bottom ul.socialList li.btnLogOut {
        margin-left: auto;
    }
    .gnbMobile .mLayer .bottom ul.socialList li.btnLogOut a {
        width: 100%;
        height: 100%;
        color: #707070;
        font-size: 12px;
        text-indent: initial;
        text-decoration: underline;
    }
    .gnbMobile .mLayer .bottom ul.socialList li.btnLogOut a:before {
        content: none;
    }
    /* footer */
    .footer {
        padding: 15px 0 20px;
        width: 100%;
        background: #383838;
    }
	.footer .innerSection {
        display: block;
    }
    .footer .logo {
        margin: 15px 0 10px;
    }
    .footer ul.termsList, 
    .footer ul.socialList {
    	display: none;
    }
    ul.companyList li {
        font-size: 10px;
    }
    .footer .side {
    	flex-direction: row-reverse;
    	flex-wrap: wrap;
    	align-items: center;
    	justify-content: space-between;
    }
    ul.familyList .familySite {
        padding: 5px 10px;
        width: 150px;
        height: 35px;
    }
    ul.familyList .moveLink {
        width: 65px;
        height: 35px;
        font-size: 12px;
    }
    .footer .copyright {
        margin: 0;
    	width: 100%;
        font-size: 10px;
    }
    /* card popup */
    .commonCardPopup .head {
        padding: 20px;
    }
    .commonCardPopup .head .btnClose {
        top: 20px;
        right: 20px;
    }
    .commonCardPopup .middle {
        padding: 20px 20px 10px;
    }
    .commonCardPopup .middle p {
        font-size: 14px;
    }
    .popCardWrap {
        margin-top: 15px;
        padding: 20px 15px;
        gap: 0 15px;
    }
    .popCardWrap .cardImageWrap {
        max-width: 130px;
    }
    .popCardWrap .cardTextWrap strong {
        font-size: 14px;
    }
    .commonCardPopup .bottom {
        padding: 10px 20px 20px;
    }
    /* 알람 */
    .popAlarm {
        top: 0;
        left: 0;
        right: 0;
        min-width: 100%;
        height: 100vh;
        border-radius: 0;
    }
    .popAlarm .head.border {
        border-bottom: 1px solid #B2B8CC;
    }
    .popAlarm .middle {
        max-height: calc(100% - 70px);
        height: calc(100% - 60px);
    }
    .popAlarm .middle.scrollWrap {
        padding: 10px 0;
    }
    ul.alarmList li .alarmContents .textWrap strong {
        font-size: 12px;
    }
    /* banner  */
    .bannerWrap {
        margin-bottom: 0;
    }
    .banner img.pcImg {
        display: none;
    }
    .banner img.mobileImg {
        display: block;
    }
    /* side  */
    ul.locationList {
    	gap: 5px 0;
    }
    ul.locationList li a {
    	padding: 5px 0;
   	    width: 50px;
   	    height: 50px;
   	    gap: 0;
   	    font-size: 0;
   	    line-height: 0;
   	    text-indent: -99999px;
    }
}
/* mobile */ 
@media all and (max-width: 640px){
	.itemPc {
		display: none;
	}
	.itemMobile {
		display: block;
	}
    br.forMobile {
        display: none;
    }
    /* footer */
    .footer .logo {
        width: 80px;
    }
    .footer .side {
        margin-top: 5px;
        gap: 5px 0;
    }
    ul.companyList {
        max-width: 100%;
    }
    ul.companyList li:nth-last-child(4)::before,
    ul.companyList li:last-child::before {
        content: none;
    }
    /* 팝업 */
    .popAlert {
        max-width: 340px;
    }
    .popAlert .head strong {
        font-size: 18px;
    }
    .popAlert .btnWrap {
        margin-top: 15px;
    }
    
    /* 주소록 관리 */
    .popAlert.addressPopup {
    	max-width: 96%;
    	padding: 10px;
    }
    
    .popAlert.addressPopup .addressBox {
    	padding: 10px;
    }
    .popAlert.addressPopup .addressPopWrap {
    	padding: 0;
    }
    .popAlert.addressPopup .addressListWrap {
    	padding: 10px;
    }
    .popAlert.addressPopup ul.btnList li a {
    	font-size: 0;
    }
    .popAlert.addressPopup .addressHead p {
	    font-size: 18px;
	    line-height: 25px;
    }
    .popAlert.addressPopup ul.addressPopList .addressMiddle p {
        font-size: 14px;
   		line-height: 20px;
    }
}
@media all and (max-width: 320px){

}