@charset "UTF-8";
/* ///// RESET / meyerweb.com ///// */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**********************************************************************************
reset
***********************************************************************************/
html, body {
  height: 100%;
  box-sizing: border-box;
  font-family: "Pretendard", Helvetica, "MalgunGothic", "맑은고딕", sans-serif;
  font-size: 14px;
  color: #222;
  line-height: 1.6em;
  -webkit-text-size-adjust: none;
  box-sizing: border-box;
}

div {
  box-sizing: border-box;
}

/**********************************************************************************
common
***********************************************************************************/
/* frequent use style */
.hide {
  visibility: none;
}

.offscreen {
  display: none !important;
}

.svg-shadow {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
}

input {
  outline: none;
}

/**********************************************************************************
button
***********************************************************************************/
button * {
  vertical-align: middle;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
}

/**********************************************************************************
font
***********************************************************************************/
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/Pretendard-Light.woff2") format("woff2"), url("../fonts/Pretendard-Light.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/Pretendard-Regular.woff2") format("woff2"), url("../fonts/Pretendard-Regular.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Pretendard-SemiBold.woff2") format("woff2"), url("../fonts/Pretendard-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Pretendard-Bold.woff2") format("woff2"), url("../fonts/Pretendard-Bold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Pretendard-ExtraLight.woff2") format("woff2"), url("../fonts/Pretendard-ExtraLight.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Pretendard-ExtraBold.woff2") format("woff2"), url("../fonts/Pretendard-ExtraBold.woff") format("woff");
}
/* _variable.scss */ /* _layout.scss */
.wrap .map-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.wrap .map-wrap .map {
  width: 100%;
  height: 100%;
}
.wrap .top-wrap, .wrap .nav-wrap {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}
.wrap .bottom-wrap {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 5;
}
.wrap .bottom-section {
  display: flex;
  gap: 5px;
  flex-direction: column;
  padding: 10px;
  background: #e5e7f1;
}

/* _common.scss */
/* ========== common style ========== */
.loca-abs-center, .route-wrap > div button, .drive-wrap > div button, .drive-wrap > div .tag-speed-limit {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.btn-ico {
  background-color: transparent;
}
.btn-ico span {
  display: none;
}

.btn-tx {
  display: inline-block;
  padding: 5px 10px;
  font-size: 1.1rem;
  border-radius: 20px;
}

.btn-sty-point, .drive-wrap > div button {
  color: #fff;
  border: none;
  background-color: #4a63ca;
}

.btn-sty-basic, .btn-tx {
  color: #000;
  border: none;
  background-color: #fff;
}

.btn-sty-border, .route-wrap > div button {
  border: 2px solid #e5e7f1;
  border-radius: 20px;
  background-color: transparent;
}

.btn-loc-center {
  display: block;
  position: absolute;
  top: 50%;
  padding: 5px 10px;
  transform: translate(0, -50%);
  font-size: 1.1rem;
}

caption {
  display: none;
}

/* _ico.scss */
i {
  display: inline-block;
  background-size: contain;
}
i span {
  display: none;
}

.ico-loca {
  background: url(../images/svg/ico_loca.svg) no-repeat center center;
}

.ico-pin {
  background: url(../images/svg/ico_pin.svg) no-repeat center center;
}

.ico-map {
  background: url(../images/svg/ico_map.svg) no-repeat center center;
}

.ico-route {
  background: url(../images/svg/ico_route.svg) no-repeat center center;
}

.ico-goto {
  background: url(../images/svg/ico_goto.svg) no-repeat center center;
}

.ico-fold {
  background: url(../images/svg/ico_fold.svg) no-repeat center center;
}

.ico-extend {
  background: url(../images/svg/ico_extend.svg) no-repeat center center;
}

.ico-reduce {
  background: url(../images/svg/ico_reduce.svg) no-repeat center center;
}

.ico-destination {
  background: url(../images/svg/ico_destination.svg) no-repeat center center;
}

.ico-warn {
  background: url(../images/svg/ico_warn.svg) no-repeat center center;
}

.ico-warn-red {
  background: url(../images/svg/ico_warn_red.svg) no-repeat center center;
}

.ico-danger {
  background: url(../images/svg/ico_danger.svg) no-repeat center center;
}

.ico-construct {
  background: url(../images/svg/ico_construct.svg) no-repeat center center;
}

.ico-oneway {
  background: url(../images/svg/ico_one.svg) no-repeat center center;
}

.pt-warn {
  background: url(../images/svg/pt_warn.svg) no-repeat center center;
}

.pt-danger {
  background: url(../images/svg/pt_danger.svg) no-repeat center center;
}

.pt-construct {
  background: url(../images/svg/pt_construct.svg) no-repeat center center;
}

.pt-oneway {
  background: url(../images/svg/pt_one.svg) no-repeat center center;
}

.pt-traffic {
  background: url(../images/svg/pt_traffic.svg) no-repeat center center;
}

.ico-turn-off {
  background: url(../images/svg/ico_turn_off.svg) no-repeat center center;
}

.ico-arrive {
  background: url(../images/svg/ico_arrive.svg) no-repeat center center;
}

.ico-turn-left {
  background: url(../images/svg/ico_turn_left.svg) no-repeat center center;
}

.ico-turn-right {
  background: url(../images/svg/ico_turn_right.svg) no-repeat center center;
}

.ico-turn-u {
  background: url(../images/svg/ico_turn_u.svg) no-repeat center center;
}

.ico-truck {
  background: url(../images/svg/ico_truck.svg) no-repeat center center;
}

.ico-lift {
  background: url(../images/svg/ico_lift.svg) no-repeat center center;
}

button .ico-close-bk {
  background: url(../images/svg/ico_close_bk.svg) no-repeat center center;
}

.ico-close {
  background: url(../images/svg/ico_close.svg) no-repeat center center;
}

/* _custom.scss */
/* btn style */
/* btn size */
.btn-wrap {
  display: flex;
  padding: 10px;
}

/* ========== top wrap ========== */
.destination-wrap {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  padding-bottom: 3px;
  background-color: #fff;
}
.destination-wrap .depart {
  padding: 10px 10px 10px 20px;
  border-bottom: 1px solid #e5e7f1;
}
.destination-wrap .depart * {
  vertical-align: middle;
}
.destination-wrap .depart i {
  width: 30px;
  height: 30px;
  background-size: cover;
}
.destination-wrap .depart span {
  margin-left: 7px;
  font-size: 1.2rem;
  font-weight: 200;
  color: #666;
}
.destination-wrap .arrive {
  display: flex;
  align-items: center;
}
.destination-wrap .arrive span {
  flex: 1 1 auto;
  width: 100%;
  padding: 5px 0;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 400;
  vertical-align: middle;
}
.destination-wrap .arrive span.tag {
  padding: 2px 7px;
  color: #fff;
  font-weight: 100;
  font-size: 0.8rem;
  border-radius: 10px;
  background-color: #999;
}
.destination-wrap .arrive button {
  text-indent: -999em;
  flex: 0 0 50px;
  height: 100%;
  background: url(../images/svg/ico_goback.svg) no-repeat center center;
  background-size: 30px auto;
}
.destination-wrap p.title {
  font-size: 1.1rem;
  border-radius: 15px;
  text-align: center;
  text-decoration: underline;
}
.destination-wrap ol {
  overflow-y: auto;
  max-height: 150px;
  margin: 10px;
  padding: 5px;
  border-top: 1px solid #e5e7f1;
  border-radius: 10px;
  background-color: #e5e7f1;
}
.destination-wrap ol li {
  position: relative;
  padding: 0px 10px;
  list-style-type: none;
  font-size: 1.2rem;
  background: url(../images/svg/bg_v_solid.svg) repeat-y top 5px left -3px;
}
.destination-wrap ol li span {
  width: 23px;
  height: 23px;
  margin-right: 15px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
  background-color: #4a63ca;
}

.btn-direct {
  color: #fff;
  background-color: #4a63ca;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  padding: 10px;
  font-size: 1.5rem;
  border-radius: 25px;
  width: 100%;
}

.arrive-wrap {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  height: 100%;
  background-color: #fff;
}
.arrive-wrap .depart {
  position: relative;
  height: 50px;
  padding: 10px 10px 20px;
  border-bottom: 1px solid #e5e7f1;
}
.arrive-wrap .depart * {
  vertical-align: middle;
}
.arrive-wrap .depart i {
  width: 30px;
  height: 30px;
  background-size: cover;
}
.arrive-wrap .depart span {
  margin-left: 7px;
  font-size: 1.3rem;
  font-weight: 300;
}
.arrive-wrap .depart button {
  position: absolute;
  top: 3px;
  right: 0;
  border-left: 1px solid #ccc;
  background-color: transparent;
}
.arrive-wrap .depart button i {
  width: 40px;
  height: 40px;
  background-size: cover;
}
.arrive-wrap .arrive-contents {
  display: none;
  background-color: #fff;
}
.arrive-wrap .arrive-contents.on {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  background-color: #fff;
  z-index: 10;
}
.arrive-wrap .arrive-contents.on ol {
  max-height: 400px;
  overflow-y: auto;
  margin: 15px;
  padding: 10px;
  border-top: 1px solid #e5e7f1;
  border-radius: 10px;
  background-color: #e5e7f1;
}
.arrive-wrap .arrive-contents.on ol li {
  position: relative;
  padding: 12px 10px 3px;
  list-style-type: none;
  color: #000;
  font-size: 1.2rem;
}
.arrive-wrap .arrive-contents.on ol li.goto {
  color: #4a63ca;
  background: url(../images/svg/ico_arrow_bt.svg) no-repeat left 12px top -5px;
  background-size: 20px;
}
.arrive-wrap .arrive-contents.on ol li.goto span {
  background-color: #4a63ca;
}
.arrive-wrap .arrive-contents.on ol li.complete {
  color: #666;
  text-decoration: line-through;
}
.arrive-wrap .arrive-contents.on ol li.complete span {
  background-color: #999;
}
.arrive-wrap .arrive-contents.on ol li span {
  width: 23px;
  height: 23px;
  margin-right: 15px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.4rem;
  background-color: #000;
}
.arrive-wrap .arrive-contents.on button {
  width: 100%;
  height: 50px;
  background-color: #e5e7f1;
}
.arrive-wrap .arrive-contents.on button i {
  width: 80px;
  height: 30px;
  border-radius: 20px;
  background: #4a63ca url(../images/svg/ico_fold.svg) no-repeat center center;
}

.compass {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  text-indent: -999em;
  position: absolute;
  right: 7px;
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 50%;
  background: #fff url(../images/svg/ico_compass.svg) no-repeat center center;
  background-size: 80%;
}

/* ========== bottom wrap ========== */
/*  map btn  */
.map-btns-wrap {
  position: relative;
}
.map-btns-wrap .btns {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 42px;
}
.map-btns-wrap .btns button {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  text-indent: -999em;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-size: 75%;
  margin-bottom: 5px;
  background-color: #fff;
}
.map-btns-wrap .btns-maptype {
  position: relative;
}
.map-btns-wrap .btns-maptype div {
  display: none;
  position: absolute;
  top: 0px;
  right: 10px;
  width: 84px;
  height: 40px;
  text-align: right;
  border-radius: 20px;
  background-color: #4a63ca !important;
}
.map-btns-wrap .btns-maptype div button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: -2px;
  text-indent: 2px;
  text-align: left;
  color: #fff;
  background-color: transparent;
}
.map-btns-wrap .btns-maptype div button.on {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #000;
  background-color: #fff;
}
.map-btns-wrap .btns-maptype.on div {
  display: block;
}

.map-index-wrap {
  position: relative;
  display: flex;
  gap: 5px;
  margin: 5px;
  align-items: flex-end;
}
.map-index-wrap .map-index {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 5px;
  border-radius: 7px;
  background-color: #fff;
}
.map-index-wrap .map-index i {
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 5px;
  background-size: contain;
}
.map-index-wrap .map-index li {
  font-size: 1rem;
  font-weight: 200;
}
.map-index-wrap .map-index li * {
  vertical-align: middle;
}
.map-index-wrap .current-speed {
  width: 60px;
  padding: 3px 5px 7px;
  text-align: center;
  border-radius: 7px;
  background-color: #fff;
}
.map-index-wrap .current-speed span {
  display: block;
}
.map-index-wrap .current-speed span:first-child {
  margin-bottom: 3px;
  font-size: 0.8rem;
}
.map-index-wrap .current-speed span:nth-child(2) {
  font-size: 2.5rem;
}

.route-wrap > div {
  position: relative;
  padding: 7px;
  text-align: center;
  border-radius: 10px;
  color: #000;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  display: flex;
  border: 1px solid #ccc;
  background-color: #fff;
}
.route-wrap > div div {
  flex: 1 1 auto;
}
.route-wrap > div.on {
  color: #fff;
  border: 1px solid #4a63ca;
  background-color: #4a63ca;
}
.route-wrap > div.on button {
  color: #fff;
}
.route-wrap > div button {
  display: inline-block;
  right: 10px;
  padding: 5px 10px;
  font-size: 1.1rem;
}
.route-wrap > div .tag-warn {
  display: block;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translate(0, -50%);
  font-size: 1.1rem;
  font-weight: 100;
  color: #fff;
  padding: 3px 10px;
  border-radius: 15px;
  background-color: #ff3300;
}

.distance {
  flex: 1 1 auto;
  display: inline-block;
  padding-right: 1.5rem;
  font-weight: 200;
  line-height: 40px;
  font-size: 2.5rem;
  text-align: right;
}
.distance span.km {
  display: inline-block;
  margin-left: 3px;
  font-size: 1.1rem;
}

.time {
  display: inline-block;
  font-weight: 200;
  line-height: 40px;
  font-size: 1.4rem;
  text-align: center;
}
.time .min {
  display: inline-block;
  font-size: 1.1rem;
}
.time::before {
  content: "-";
}

.drive-wrap > div {
  position: relative;
  padding: 7px;
  text-align: center;
  border-radius: 10px;
  color: #000;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  border: 1px solid #ccc;
  background-color: #fff;
}
.drive-wrap > div button {
  display: inline-block;
  right: 10px;
  padding: 5px 10px;
  font-size: 1rem;
  border-radius: 20px;
}
.drive-wrap > div .tag-speed-limit {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  left: 10px;
  line-height: 42px;
  color: #000;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -3px;
  border: 4px solid #ff3300;
}

/* ========== layer wrap ========== */
.state-wrap {
  display: none;
  z-index: 7;
}

.state-wrap.off {
  display: block;
  margin-top: 5px;
  z-index: 7;
}
.state-wrap.off .state-contents {
  display: none;
}
.state-wrap.off .state-btn {
  display: block;
}
.state-wrap.off .state-btn button {
  background: transparent;
}
.state-wrap.off .state-btn i {
  display: inline-block;
  width: 50px;
  height: 50px;
}

.state-wrap.on {
  display: block;
  z-index: 7;
}
.state-wrap.on .state-contents {
  display: block;
}
.state-wrap.on .state-btn {
  display: none;
}

.state-wrap.on {
  position: relative;
  margin: 10px;
  border-radius: 20px;
  text-align: center;
  box-sizing: border-box;
  z-index: 7;
  background-color: #ff3300;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
.state-wrap.on button.close {
  position: absolute;
  top: 10px;
  right: 10px;
}
.state-wrap.on button.close i {
  display: inline-block;
  width: 20px;
  height: 20px;
}
.state-wrap.on .main {
  margin: 0px 10px 5px;
  color: #fff;
}
.state-wrap.on .main i {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-size: cover;
}
.state-wrap.on .main span {
  display: inline-block;
  font-size: 1.4rem;
  margin-right: 10px;
}
.state-wrap.on .sub {
  padding: 10px;
  color: #fff;
  border-top: 1px solid #ff6b46;
}
.state-wrap.on .sub span {
  font-size: 1.3rem;
  font-weight: 100;
}
.state-wrap.on .sub div {
  display: flex;
  margin-top: 10px;
  flex-direction: row;
}
.state-wrap.on .sub div button {
  flex: 0 0 50%;
  min-width: 50px;
  font-size: 1.2rem;
}
.state-wrap.on .sub div button.yes {
  border-radius: 10px 0 0 10px;
}
.state-wrap.on .sub div button.no {
  opacity: 0.7;
  border-radius: 0 10px 10px 0;
}
.state-wrap.on div * {
  vertical-align: middle;
}

.notice-wrap > div {
  position: absolute;
  top: 60px;
  left: 50%;
  width: 90vw;
  padding: 50px 0;
  transform: translate(-50%, 0);
  border-radius: 20px;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  opacity: 0.9;
  z-index: 7;
  background-color: #4a63ca;
}
.notice-wrap > div i {
  width: 80px;
  height: 80px;
  background-size: cover;
}
.notice-wrap > div p.notice {
  padding: 50px 0;
  font-size: 5rem;
  line-height: 2.5rem;
  font-weight: 200;
}
.notice-wrap > div p.notice-desc {
  padding-bottom: 10px;
  font-size: 2rem;
  font-weight: 100;
  line-height: 3rem;
}
.notice-wrap > div p.notice-desc span {
  text-decoration: underline;
}
.notice-wrap > div.warn {
  -webkit-animation: blink-effect 1s step-end infinite;
          animation: blink-effect 1s step-end infinite;
  background-color: #ff3300;
}

/* 공지사항 배경 어둡게 */
.notice-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
/* 공지사항 다이얼로그 상자 */
.notice-dialog-box {
  background-color: #fff;
  width: 400px;
  max-width: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}
/* 공지사항 헤더 영역 */
.notice-dialog-header {
  background-color: #3b82f6;
  color: white;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: bold;
}
/* 공지사항 본문 영역 */
.notice-dialog-body {
  padding: 20px;
  font-size: 15px;
  color: #333;
}
/* 공지사항 푸터 영역 */
.notice-dialog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-top: 1px solid #eee;
}
/* 공지사항 체크박스 라벨 */
.notice-checkbox-label {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #555;
}
.notice-checkbox-label input {
  margin-right: 6px;
}
/* 공지사항 닫기 버튼 */
.notice-close-button {
  background-color: #3b82f6;
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s ease;
}
.notice-close-button:hover {
  background-color: #2563eb;
}

@-webkit-keyframes blink-effect {
  50% {
    opacity: 0.2;
  }
}
@keyframes blink-effect {
  50% {
    opacity: 0.2;
  }
}
.notice-wrap > div.warn .notice {
  text-decoration: underline;
}
.notice-wrap > div.warn .current-speed {
  line-height: 5rem;
  font-size: 10rem;
}
.notice-wrap > div.warn .current-speed span {
  font-weight: 100;
  font-size: 2rem;
}
.notice-wrap > div.alram {
  -webkit-animation: blink-effect 10000000s step-end infinite;
          animation: blink-effect 10000000s step-end infinite;
  background-color: #4a63ca;
}
@keyframes blink-effect {
  50% {
    opacity: 0.2;
  }
}

.direction-wrap {
  width: 120px;
  height: 120px;
  margin: 10px;
  border-radius: 20px;
  color: #000;
  text-align: center;
  box-sizing: border-box;
  opacity: 0.9;
  background-color: #fff;
  z-index: 7;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
.direction-wrap i {
  width: 80px;
  height: 80px;
  display: inline-block;
  background-size: cover;
}
.direction-wrap i span {
  display: none;
}
.direction-wrap span {
  display: inline-block;
  font-size: 1.5rem;
}

/* ========== intro ========== */
.intro-wrap {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow-y: auto;
  background-image: url(../images/png/intro_portrait.jpg);
  background-size: cover;
}
.intro-wrap h1 {
  width: 100%;
  margin: 20px 0;
  text-align: center;
}
.intro-wrap h1 .logo {
  display: inline-block;
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
  text-indent: -999em;
  background-image: url(../images/svg/logo_wh.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 150px auto;
}
.intro-wrap h1 span {
  display: inline-block;
  color: #fff;
  font-weight: 200;
  font-size: 2.5rem;
}
.intro-wrap .intro-contents {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 15px 30px;
  text-align: center;
  background: linear-gradient(to bottom, rgb(70, 69, 234), rgb(127, 46, 237));
  opacity: 0.85;
}
.intro-wrap .intro-contents .speed-limit {
  display: inline-block;
  width: 60px;
  height: 60px;
  margin-right: 20px;
  color: #000;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  border: 7px solid #ff3300;
  background-color: #fff;
}
.intro-wrap .intro-contents .speed-text {
  font-size: 2rem;
  font-weight: 200;
  color: #fff;
}

.intro-setup {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 10;
  padding: 10px;
  color: #fff;
  background: rgba(74, 99, 202, 0.9);
}
.intro-setup .logo-wrap {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}
.intro-setup .logo-wrap .logo {
  display: inline-block;
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
  text-indent: -999em;
  background-image: url(../images/svg/logo_wh.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 120px auto;
}
.intro-setup .logo-wrap span {
  display: inline-block;
  color: #fff;
  font-weight: 200;
  font-size: 2.5rem;
}
.intro-setup .modal-layer {
  position: fixed;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  color: #fff;
  box-sizing: border-box;
  overflow-y: auto;
}
.intro-setup .message-permit {
  margin: 10px 0;
  padding: 90px 0 10px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 200;
  background-image: url(../images/svg/ico_permit.svg);
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: 80px auto;
}
.intro-setup p.message-point {
  display: inline-block;
  width: 100%;
  padding: 5px 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 200;
  text-align: center;
  border-radius: 20px;
  background-color: #003369;
}
.intro-setup ol {
  margin: 10px 20px;
}
.intro-setup ol li {
  font-size: 1.1rem;
  font-weight: 100;
  list-style-type: decimal;
}
.intro-setup ol li img {
  width: 30px;
  height: 30px;
}
.intro-setup ol li.alpha {
  list-style-type: lower-alpha;
}
.intro-setup ol li * {
  vertical-align: middle;
}
.intro-setup .tit {
  display: inline-block;
  margin: 7px 0;
  padding: 5px 10px;
  color: #4571dd;
  font-size: 0.9rem;
  border-radius: 20px;
  background-color: #fff;
}
.intro-setup .message-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  padding-top: 120px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 200;
  line-height: 150%;
}
.intro-setup .message-wrap p {
  margin-bottom: 30px;
}
.intro-setup .message-wrap button {
  width: 100%;
  max-width: 80%;
  padding: 10px 0;
  text-align: center;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 200;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  background-color: #fff;
}
.intro-setup .no-camera {
  background: url(../images/svg/ico_nocamera.svg) no-repeat top center;
  background-size: 100px auto;
}
.intro-setup .no-permit {
  background: url(../images/svg/ico_nopermit.svg) no-repeat top center;
  background-size: 100px auto;
}

/* ========== common style ========== */
.loca-abs-center, .route-wrap > div button, .drive-wrap > div button, .drive-wrap > div .tag-speed-limit {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.btn-ico {
  background-color: transparent;
}
.btn-ico span {
  display: none;
}

.btn-tx {
  display: inline-block;
  padding: 5px 10px;
  font-size: 1.1rem;
  border-radius: 20px;
}

.btn-sty-point, .drive-wrap > div button {
  color: #fff;
  border: none;
  background-color: #4a63ca;
}

.btn-sty-basic, .btn-tx {
  color: #000;
  border: none;
  background-color: #fff;
}

.btn-sty-border, .route-wrap > div button {
  border: 2px solid #e5e7f1;
  border-radius: 20px;
  background-color: transparent;
}

.btn-loc-center {
  display: block;
  position: absolute;
  top: 50%;
  padding: 5px 10px;
  transform: translate(0, -50%);
  font-size: 1.1rem;
}

/* ========== main ========== */
.main-wrap {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 8;
  background: #fff;
}
.main-wrap.off .main-section {
  display: none;
}
.main-wrap.off .main-btn {
  display: block;
}
.main-wrap.off .compass {
  bottom: -115px;
}
.main-wrap.on .main-section {
  display: block;
}
.main-wrap.on .main-btn {
  display: none;
}
.main-wrap.on .compass {
  bottom: -55px;
}
.main-wrap .logo-wrap h1.logo {
  width: 100%;
  height: 40px;
  background: url(../images/svg/logo_h.svg) no-repeat left 10px center;
  background-size: 100px auto;
}
.main-wrap .logo-wrap h1.logo span {
  display: inline-block;
  margin-left: 115px;
  line-height: 2.85rem;
  font-size: 2rem;
}
.main-wrap button.main-btn {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 10px;
  bottom: -60px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-indent: -999em;
  background: #4a63ca url(../images/svg/ico_search_wh.svg) no-repeat center center;
  background-size: 60%;
  z-index: 2;
}
.main-wrap .compass {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  text-indent: -999em;
  position: absolute;
  right: 7px;
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 50%;
  background: #fff url(../images/svg/ico_compass.svg) no-repeat center center;
  background-size: 80%;
}
.main-wrap .main-section {
  padding-top: 20px;
  background: #fff url(../images/svg/ico_truck_line.svg) no-repeat right 10px top;
  background-size: 100px auto;
  z-index: 3;
}
.main-wrap .main-section .location {
  display: inline-block;
  margin-left: 15px;
  padding: 5px 10px;
  color: #fff;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 200;
  background-color: #4a63ca;
}
.main-wrap .main-section .location label::after {
  content: " :";
}
.main-wrap .main-section .totalsearch-wrap {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  display: flex;
  margin: 7px 15px 10px;
  border-radius: 5px;
  border: 1px solid #dedede;
  background-color: #fff;
}
.main-wrap .main-section .totalsearch-wrap .input-wrap {
  flex: 1 1 auto;
}
.main-wrap .main-section .totalsearch-wrap .input-wrap input {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  padding-left: 10px;
  line-height: 1.5em;
  font-size: 1.4rem;
  border-radius: 15px 0 0 15px;
  border: none;
  outline: none;
}
.main-wrap .main-section .totalsearch-wrap .search-btn {
  flex: 0 0 50px;
}
.main-wrap .main-section .totalsearch-wrap .search-btn button {
  width: 50px;
  height: 50px;
  text-indent: -999em;
  background: url(../images/svg/ico_search_pr.svg) no-repeat center center;
  background-size: 70%;
}
.main-wrap .main-section .category-wrap {
  padding: 10px;
}
.main-wrap .main-section .category-wrap div {
  display: flex;
}
.main-wrap .main-section .category-wrap button {
  flex: 1 1 33.333%;
  height: 80px;
  font-weight: 600;
  font-size: 1.5rem;
  border: 1px solid #ccc;
  background-color: #fff;
}
.main-wrap .main-section .category-wrap button.factory {
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -1px;
}
.main-wrap .main-section button.close {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 50%;
  bottom: -35px;
  transform: translate(-50%, 0);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-indent: -999em;
  background: #fff url(../images/svg/ico_close_bk.svg) no-repeat center center;
  background-size: 70%;
}

/* ========== 목적지 설정 ========== */
.search-wrap {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 10;
}
.search-wrap div.search-header {
  border-bottom: 1px solid #777;
  background-color: #fff;
}
.search-wrap .search-title {
  height: 40px;
  align-items: center;
}
.search-wrap .search-title h3 {
  padding: 5px 0;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 400;
}
.search-wrap .search-title button {
  text-indent: -999em;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 50px;
  height: 40px;
  background: url(../images/svg/ico_goback.svg) no-repeat center center;
  background-size: 30px auto;
}
.search-wrap .search-category {
  flex: 0 0 50px;
  display: flex;
  padding: 10px;
  border-top: 1px solid #eaeaea;
}
.search-wrap .search-category button {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  margin-right: 5px;
  padding: 5px 10px;
  border-radius: 20px;
  word-break: keep-all;
  color: #fff;
  font-size: 1.2rem;
  background-color: #4a63ca;
}
.search-wrap .search-category div:nth-child(2) {
  padding-left: 15px;
  background: url(../images/svg/ico_depth.svg) no-repeat left -5px center;
  background-size: 20px auto;
}
.search-wrap .search-category div:nth-child(3) {
  padding-left: 15px;
  background: url(../images/svg/ico_depth.svg) no-repeat left -5px center;
  background-size: 20px auto;
}
.search-wrap div.search-form {
  flex: 0 0 50px;
  display: flex;
  border-bottom: 1px solid #999;
}
.search-wrap div.search-form input {
  flex: 1 1 auto;
  padding-left: 10px;
  line-height: 1.5em;
  border: none;
  font-size: 1.3rem;
}
.search-wrap div.search-form button {
  width: 50px;
  height: 50px;
  text-indent: -999em;
  background: url(../images/svg/ico_search_pr.svg) no-repeat center center;
  background-size: 70%;
  flex: 0 0 50px;
  width: 50px;
  background-color: #fff;
}
.search-wrap ul.search-list {
  flex: 1 1 auto;
  overflow: auto;
  background-color: #eaeaea;
}
.search-wrap ul.search-list li {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  margin: 3px 15px;
  padding: 12px 0;
  color: #000;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #cecece;
  background-color: #fff;
}
.search-wrap ul.search-list li span {
  color: #4a63ca;
}

@media landscape {
  .intro-setup {
    width: 60%;
    height: 100%;
    overflow: auto;
    z-index: 10;
    padding: 10px;
    color: #fff;
    background: rgba(74, 99, 202, 0.9);
  }
}