/*layout style*/
/*공통*/
#wrap { position: relative; max-width: 400px; height: 100%; margin: 0 auto; transition: .2s all ease-out; }
.container { position: relative; width: 100%; height: 100%; transition: .2s all ease-out; }
.container > div { min-height: 100%; padding-top: 64px; box-shadow: 0 0 2px 2px #f2f2f2; box-sizing: border-box; }
.section { background: #f2f2f2; }
.section > .wrap { padding: 24px 12px; box-sizing: border-box; }
.flex-box { display: flex; flex-direction: column; justify-content: space-between; min-height: 100%; }
.flex-bottom { position: sticky; bottom: 0; z-index: 10; }
.flex-bottom .inner { padding: 20px; box-sizing: border-box; background: #fff; }

/*고객용*/
.customer .container > div { padding-top: 74px; box-sizing: border-box; }


/*header style*/
/*공통*/
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; max-width: 400px; margin: 0 auto; background: #fff; transition: .2s all ease-out; }
.hd { display: flex; justify-content: space-between; align-items: center; height: 64px; padding: 0 20px; box-sizing: border-box; }
.hd .hd-tit { position: absolute; left: 0; right: 0; margin: 0 auto; font-size: 18px; font-weight: 600; color: #333; text-align: center; }
.hd .hd-back { position: relative; width: 20px; height: 20px; border: none; background: url('/resource/images/common/ico_arrow_back1.svg') center center no-repeat; }
.hd .hd-search { position: relative; width: 20px; height: 20px; background: url('/resource/images/common/ico_search1.svg') center center no-repeat; }
.hd .hd-user { position: relative; width: 32px; height: 32px; background: url('/resource/images/common/ico_user1.svg') center center no-repeat; }

/*고객용*/
.customer .header { border-bottom: 2px solid #000; box-sizing: border-box; background: #3658a6; }
.customer .hd { height: 74px; }
.customer .hd .hd-tit { font-family: 'GmarketSans'; font-size: 24px; font-weight: 700; color: #fff; }
.customer .hd .hd-tit .ico { margin-right: 8px; }
.customer .hd .hd-back { width: 26px; height: 26px; background-image: url('/resource/images/common/ico_arrow_back2.svg'); }

.customer .header-v1 { border-bottom: none; background: rgba(0, 0, 0, 0.2); }
.customer .header-v1 + .container > div { padding-top: 0; background: #3658a6;}


@media only screen and (max-width: 600px) {
	#wrap, .header { max-width: 100%; }
}