@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
/* reset */
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, main, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video,
input, textarea, button, select {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Noto Sans KR", sans-serif;
  letter-spacing: -0.26px;
}

html, body {
  height: 100%;
  -webkit-text-size-adjust: none;
  position: relative;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/*드래그*/
/*::selection {*/
/*    background: #ff4bb6;*/
/*    color: #fff;*/
/*}*/
input::placeholder {
  color: #c1c2c3;
}

table {
  table-layout: fixed;
  border-collapse: collapse;
}

ol, ul {
  list-style: none;
}

*::before, *::after {
  box-sizing: border-box;
}

button {
  cursor: pointer;
  outline: transparent;
  padding: 0;
}

a {
  text-decoration: none;
  display: block;
}

h1 {
  font-size: 0;
}

[type=radio]:checked,
[type=radio]:not(:checked) {
  position: absolute;
  left: -9999em;
}

[type=radio]:checked + label,
[type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  font-size: 13px;
  line-height: 24px;
  display: inline-block;
  color: #000;
}

[type=radio] + label:before,
[type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #ededed;
  border-radius: 5px;
  background: #fff;
}

[type=radio]:checked + label:before {
  border: 8px solid #0740e4;
}

[type=radio]:checked + label:after,
[type=radio]:not(:checked) + label:after {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: 8px;
  left: 8px;
  border: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type=radio]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type=radio]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

[type=checkbox]:checked,
[type=checkbox]:not(:checked) {
  position: absolute;
  left: -9999em;
}

[type=checkbox]:checked + label,
[type=checkbox]:not(:checked) + label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  font-size: 13px;
  line-height: 24px;
  display: inline-block;
  color: #000;
}

[type=checkbox] + label:before,
[type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #ededed;
  border-radius: 5px;
  background: #fff;
}

[type=checkbox]:checked + label:before {
  border: 8px solid #0740e4;
}

[type=checkbox]:checked + label:after,
[type=checkbox]:not(:checked) + label:after {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  position: absolute;
  top: 8px;
  left: 8px;
  border: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type=checkbox]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/*LAYOUT*/
.wrap {
  min-height: 100%;
  padding-top: 56px;
  /* 2023-01-20 추가 */
  padding-bottom: 120px;
  background: #f8f9fe;
}
.wrap.non_fixed {
  margin-top: -56px;
}
.wrap.non_bg {
  background: #fff;
}
.wrap.non_height {
  min-height: auto;
}

/*TOP*/
.wrap_top {
  width: 100%;
  height: 60px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
}

.top_btn ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top_btn ul li:first-of-type {
  margin-right: 24px;
  position: relative;
}

.top_btn ul li .push {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  background: #ff673e;
  color: #fff;
  border-radius: 5px;
  position: absolute;
  top: -6px;
  right: -6px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*COMMON STYLE*/
.read {
  background: #f8f8f8;
}

.write {
  background: #fff;
}

.header_top {
  width: 100%;
  height: 56px;
  padding-left: 50px;
  background: #fff;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: -0.34px;
  text-align: center;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
}
.header_top.none {
  padding-left: 24px;
}
.header_top .header_top_btn .btn_prev {
  width: 32px;
  height: 32px;
  border: 0;
  position: absolute;
  top: 12px;
  left: 14px;
  background: url(../images/common/ico_prev.svg) no-repeat center center;
}
.header_top .header_top_btn .btn_message {
  width: 32px;
  height: 32px;
  border: 0;
  position: absolute;
  top: 12px;
  right: 14px;
  background: url(../images/common/ico_message.svg) no-repeat center center;
}
.header_top .header_top_btn .btn_close {
  width: 32px;
  height: 32px;
  border: 0;
  position: absolute;
  top: 12px;
  left: 14px;
  background: url(../images/common/ico_close_02.svg) no-repeat center center;
}
.header_top .header_top_btn .btn_setting {
  width: 32px;
  height: 32px;
  border: 0;
  position: absolute;
  top: 12px;
  right: 14px;
  background: url(../images/common/ico_setting.svg) no-repeat center center;
}
.header_top .header_top_btn .btn_detail {
  width: 32px;
  height: 32px;
  border: 0;
  position: absolute;
  top: 12px;
  right: 14px;
  background: url(../images/common/ico_detail.svg) no-repeat center center;
}
.header_top .header_top_btn .btn_route {
  width: 32px;
  height: 32px;
  border: 0;
  background: url(../images/common/ico_route.svg) no-repeat center center;
}
.header_top .header_top_btn .btn_home {
  width: 32px;
  height: 32px;
  border: 0;
  background: url(../images/common/ico_top_home.svg) no-repeat center center;
}
.header_top .header_top_btn .header_top_btn_right {
  position: absolute;
  top: 12px;
  right: 14px;
  display: flex;
  justify-content: space-between;
}
.header_top .header_top_btn .header_top_btn_right button {
  margin-left: 12px;
}
.header_top .header_top_btn .header_top_btn_right button:first-of-type {
  margin-left: 0;
}
.header_top .header_top_btn .header_top_btn_right .btn_route {
  width: 32px;
  height: 32px;
  border: 0;
  position: relative;
  top: auto;
  right: auto;
  background: url(../images/common/ico_route.svg) no-repeat center center;
}
.header_top .header_top_btn .header_top_btn_right .btn_home {
  width: 32px;
  height: 32px;
  border: 0;
  position: relative;
  top: auto;
  right: auto;
  background: url(../images/common/ico_top_home.svg) no-repeat center center;
  background-size: 20px;
}
.header_top .header_top_btn .header_top_btn_right .btn_detail {
  width: 32px;
  height: 32px;
  border: 0;
  position: relative;
  top: auto;
  right: auto;
  background: url(../images/common/ico_detail.svg) no-repeat center center;
}
.header_top .header_top_btn .header_top_btn_right .btn_setting {
  width: 32px;
  height: 32px;
  border: 0;
  position: relative;
  top: auto;
  right: auto;
  background: url(../images/common/ico_setting.svg) no-repeat center center;
}
.header_top .header_top_btn .header_top_btn_right .btn_message {
  width: 32px;
  height: 32px;
  border: 0;
  position: relative;
  top: auto;
  right: auto;
  background: url(../images/common/ico_message.svg) no-repeat center center;
}

.footer_wrap {
  padding: 24px 0 40px;
  background: #fff;
  text-align: center;
}
.footer_wrap .footer_logo {
  margin-bottom: 8px;
}
.footer_wrap .footer_info {
  font-size: 11px;
  color: #a7a7a7;
  letter-spacing: -0.22px;
}
.footer_wrap .footer_terms_wrap {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_wrap .footer_terms_wrap a {
  font-size: 11px;
  color: #000;
  margin-right: 24px;
}
.footer_wrap .footer_terms_wrap a:last-of-type {
  margin-right: 24px;
}

.btn_style01 {
  width: 100%;
  padding: 11px 0;
  border-radius: 5px;
  border: solid 1px #e5ebfc;
  background: #fafbff;
  font-size: 15px;
  text-align: center;
  line-height: 24px;
  font-weight: 500;
  color: #0740e4;
}

.btn_style001 {
  width: 100%;
  padding: 11px 0;
  border-radius: 5px;
  border: solid 1px #e5ebfc;
  background: #fafbff;
  font-size: 15px;
  text-align: center;
  line-height: 24px;
  font-weight: 500;
  color: #0740e4;
}

.btn_style02 {
  width: 100%;
  padding: 17.5px 0;
  background: #0740e4;
  border-radius: 5px;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.34px;
  border: 0;
  text-align: center;
}

.btn_style03 {
  width: calc(50% - 8px);
  padding: 10.5px 0;
  font-size: 13px;
  color: #000;
  text-align: center;
  border-radius: 5px;
  border: solid 1px rgba(7, 64, 228, 0.1);
  background-color: rgba(7, 64, 228, 0.03);
}

.btn_style04 {
  width: 100%;
  padding: 16.5px 0;
  border-radius: 5px;
  border: solid 1px #e5ebfc;
  background-color: #fafbff;
  font-size: 17px;
  text-align: center;
  color: #0740e4;
  font-weight: 500;
}

.btn_style05 {
  width: 100%;
  padding: 19.5px 0;
  border-radius: 5px;
  border: solid 1px #ededed;
  background-color: #f8f8f8;
  font-size: 13px;
  text-align: center;
  color: #a7a7a7;
}

.btn_style06 {
  width: 100%;
  padding: 17.5px 0;
  background: #0740e4;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.34px;
  border: 0;
  text-align: center;
  border-radius: 5px;
}

.btn_style07 {
  width: 100%;
  padding: 12.5px 16px;
  background: #fff;
  font-size: 15px;
  color: #555;
  border: 1px solid #ededed;
  text-align: center;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
}
.btn_style07.disabled {
  color: #d9d9d9;
  cursor: default;
}

.btn_style08 {
  width: 100%;
  padding: 14.5px 16px;
  background: #fff;
  font-size: 13px;
  color: #0740e4;
  border: solid 1px rgba(7, 64, 228, 0.1);
  background: url(../images/common/ico_arr_right.svg) no-repeat right 16px center rgba(7, 64, 228, 0.03);
  text-align: left;
  border-radius: 5px;
}

.btn_style09 {
  width: 100%;
  padding: 14.5px 16px;
  border: 1px solid rgba(7, 64, 228, 0.1);
  background-color: rgba(7, 64, 228, 0.03);
  font-size: 13px;
  text-align: center;
  border-radius: 5px;
}
.btn_style09.disabled {
  background: #f8f8f8;
  border: 1px solid #ededed;
  color: #a7a7a7;
}
.btn_style09.choose {
  border: 1px solid #0740e4;
  color: #0740e4;
  background: url(../images/common/ico_choose.svg) no-repeat calc(50% - 20px) center rgba(7, 64, 228, 0.03);
}
.btn_style09.active {
  padding-left: 10px;
  border: 1px solid #0740e4;
  color: #0740e4;
  font-weight: bold;
  background: url(../images/common/ico_choose.svg) no-repeat calc(50% - 40%) center rgba(7, 64, 228, 0.03);
}

.btn_style10 {
  width: calc(50% - 8px);
  padding: 14.5px 0;
  font-size: 13px;
  color: #000;
  text-align: center;
  border-radius: 5px;
  border: solid 1px rgba(7, 64, 228, 0.1);
  background-color: rgba(7, 64, 228, 0.03);
}
.btn_style10.active {
  padding-left: 10px;
  border: 1px solid #0740e4;
  color: #0740e4;
  font-weight: bold;
  background: url(../images/common/ico_choose.svg) no-repeat calc(50% - 40%) center rgba(7, 64, 228, 0.03);
}

.btn_style11 {
  width: 100%;
  padding: 14.5px 16px;
  background: url(../images/common/ico_arr_down.svg) no-repeat right 16px center #fff;
  font-size: 13px;
  color: #000;
  border: 1px solid #ededed;
  text-align: left;
  border-radius: 5px;
}

.btn_style12 {
  width: calc(50% - 8px);
  padding: 17.5px 0;
  border: solid 1px rgba(7, 64, 228, 0.1);
  background-color: rgba(7, 64, 228, 0.03);
  border-radius: 5px;
  font-size: 17px;
  font-weight: 500;
  color: #0740e4;
  letter-spacing: -0.34px;
  text-align: center;
}

.btn_style13 {
  width: calc(50% - 8px);
  padding: 17.5px 0;
  background: #0740e4;
  border-radius: 5px;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.34px;
  border: 0;
  text-align: center;
}

.btn_style14 {
  width: calc(50% - 8px);
  padding: 13.5px 16px;
  background: #fff;
  border-radius: 5px;
  font-size: 13px;
  text-align: center;
  border: 1px solid #ededed;
}

select.btn_style14 {
  width: calc(50% - 8px);
  padding: 13.5px 16px;
  background: #fff url(../images/common/ico_arr_down.svg) no-repeat right 16px center;
  border-radius: 5px;
  font-size: 13px;
  text-align: center;
  border: 1px solid #ededed;
}

.btn_style15 {
  width: calc(50% - 8px);
/*  padding: 13.5px 16px;*/
  padding: 13.5px 0;
  background: #fff;
  border-radius: 5px;
  font-size: 13px;
  border: 1px solid #ededed;
  text-align: center;
}

.btn_style16 {
  width: 100%;
  padding: 13.5px 0;
  background: none;
  font-size: 13px;
  text-align: center;
  border: 0;
}

.btn_style17 {
  width: 100%;
  padding: 14.5px 16px;
  font-size: 13px;
  color: #000;
  background: transparent;
  border: solid 1px #d9d9d9;
  text-align: center;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn_style17 img {
  margin-left: 8px;
}

.btn_style18 {
  width: calc(50% - 8px);
  padding: 17.5px 16px;
  font-size: 17px;
  font-weight: bold;
  color: #ff673e;
  border-radius: 5px;
  border: solid 1px rgba(7, 64, 228, 0.1);
  background-color: rgba(7, 64, 228, 0.03);
}

.btn_style19 {
  width: calc(50% - 8px);
  padding: 17.5px 16px;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  border-radius: 5px;
  background: #0740e4;
  border: 0;
}

.btn_style20 {
  width: 100%;
  padding: 28.5px 17.5px;
  background: #0740e4;
  border-radius: 5px;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.34px;
  border: 0;
  text-align: left;
}

.btn_style20 small {
  display: block;
  font-size: 14px;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.5);
}

.btn_styleAddon {
  width: 100%;
  padding: 5px 0;
  font-size: 11px;
  color: #000;
  text-align: center;
  border-radius: 5px;
  border: solid 1px rgba(7, 64, 228, 0.1);
  background-color: rgba(7, 64, 228, 0.03);
}
.btn_styleAddon.active {
  padding-left: 10px;
  border: 1px solid #0740e4;
  color: #0740e4;
  font-weight: bold;
  background: rgba(7, 64, 228, 0.03);
}

.input_style01 {
  width: 100%;
  padding: 13.5px 16px;
  font-size: 13px;
  color: #000;
  border: 1px solid #ededed;
  background: #fff;
  border-radius: 5px;
}
.input_style01.active {
  border: 1px solid #0740e4;
}
.input_style01:disabled {
  background: #f8f8f8;
  color: #000;
  border: 0;
}
.input_style01::placeholder {
  color: #ededed;
}

.input_style02 {
  width: 80px;
  padding: 13.5px 16px;
  font-size: 13px;
  color: #000;
  border: 1px solid #ededed;
  background: #fff;
  border-radius: 5px;
}
.input_style02:disabled {
  background: #f8f8f8;
  color: #000;
  border: 0;
}
.input_style02::placeholder {
  color: #a7a7a7;
}

.input_style03 {
  width: 100%;
  padding: 13.5px 16px;
  font-size: 13px;
  color: #000;
  border: 1px solid #ededed;
  background: url(../images/common/ico_arr_down.svg) no-repeat right 16px center #fff;
  border-radius: 5px;
}
.input_style03:disabled {
  background: #f8f8f8;
  color: #000;
}
.input_style03::placeholder {
  color: #a7a7a7;
}

.check_box {
  margin-top: 23px;
  display: flex;
  align-items: center;
}
.check_box .login_label {
  margin-left: 16px;
  font-size: 13px;
  cursor: pointer;
}
.check_box .chk_label {
  margin-left: 8px;
  font-size: 13px;
  cursor: pointer;
}

.check_style01 {
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  background: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #ededed;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  background: #fff;
}
.check_style01::before, .check_style01::after {
  content: "";
  display: block;
  position: absolute;
}
.check_style01:checked {
  background: url(../images/common/ico_check.svg) no-repeat center center #0740e4;
  border: 0;
}

div.switcher + div.switcher {
  margin-top: 10px;
}
div.switcher label {
  padding: 0;
}
div.switcher label * {
  vertical-align: middle;
}
div.switcher label input {
  display: none;
}
div.switcher label input + span {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  width: 40px;
  height: 24px;
  border: solid 1px rgba(7, 64, 228, 0.1);
  background-color: #f8f8f8;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
div.switcher label input + span small {
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  background: #a7a7a7;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  left: -1px;
  top: -1px;
}
div.switcher label input:checked + span small {
  left: 50%;
  background: #0740e4;
}

select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  appearance: none;
  background: #fff url(../images/common/ico_arr_down.svg) no-repeat right 16px center;
  border: 1px solid #ededed;
  border-radius: 5px;
  font-size: 13px;
}
select.select_style02 {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  appearance: none;
  background: url(../images/common/ico_arr_down.svg) no-repeat right 16px center rgba(7, 64, 228, 0.03);
  border: solid 1px rgba(7, 64, 228, 0.1);
  border-radius: 5px;
  font-size: 13px;
}

.bottom_wrap {
  width: 100%;
  height: 60px;
  padding: 0 24px;
  position: fixed;
  bottom: 24px;
  left: 0;
  background: #fff;
}
.bottom_wrap.fixed {
  height: auto;
  padding: 24px;
  bottom: 0;
}
.bottom_wrap .bottom_btn_prev {
  width: 100%;
  height: 100%;
  background: none;
  border: 0;
  font-size: 17px;
  font-weight: bold;
}
.bottom_wrap .bottom_btn_list {
  width: 100%;
  height: 100%;
  background: none;
  border: 0;
  font-size: 13px;
}

.bottom_btn {
  width: 100%;
  background: #fff;
}
.bottom_btn.fixed {
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 24px;
  width: 100%;
  background: #fff;
  margin-top: 0 !important;
}
.bottom_btn .bottom_btn_find {
  margin-bottom: 24px;
  text-align: center;
}
.bottom_btn .bottom_btn_find a {
  font-size: 13px;
  color: #000;
  display: inline-block;
}

.mt0 {
  margin-top: 0 !important;
}

.mt8 {
  margin-top: 8px !important;
}

.mt16 {
  margin-top: 16px !important;
}

.mt24 {
  margin-top: 24px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb8 {
  margin-bottom: 8px !important;
}

.mb16 {
  margin-bottom: 16px !important;
}

.mb24 {
  margin-bottom: 24px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pb120 {
  padding-bottom: 120px !important;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 55; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}
.modal.modal_images_wrap {
  background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
  z-index: 51;
}
.modal .close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 52;
  cursor: pointer;
}

/* Modal Content/Box */
.modal_content {
  width: 100%;
  padding: 24px;
  background: #fff;
  position: fixed;
  left: 0;
  bottom: 0;
}
.modal_content.modal_rent {
  animation: slideUp02 ease 0.2s 1;
}
.modal_content ul.modal_info_list li {
  margin-bottom: 16px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal_content ul.modal_info_list li:last-of-type {
  margin-bottom: 40px;
}
.modal_content ul.modal_info_list li.line {
  border-top: 1px solid #eee;
  padding-top: 16px;
}
.modal_content ul.modal_info_list li.result {
  color: #0740e4;
  font-weight: bold;
}
.modal_content .modal_text {
  font-size: 11px;
  color: #0740e4;
}
.modal_content .modal_title {
  margin-top: 24px;
  font-size: 13px;
  color: #a7a7a7;
}
.modal_content .modal_time_wrap {
  overflow: hidden;
}
.modal_content ul.modal_time_list {
  width: 100%;
  height: 52px;
  margin-top: 8px;
  overflow-x: scroll;
  white-space: nowrap;
  float: left;
}
.modal_content ul.modal_time_list::-webkit-scrollbar {
  display: none;
}
.modal_content ul.modal_time_list li {
  width: 64px;
  margin-right: 8px;
  padding: 12.5px 0;
  font-size: 15px;
  font-weight: 400;
  color: #555;
  text-align: center;
  border-radius: 5px;
  border: solid 1px #d9d9d9;
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
}
.modal_content ul.modal_time_list li.active {
  border-color: #0740e4;
  color: #0740e4;
  font-weight: 500;
}
.modal_content ul.modal_time_list li:last-of-type {
  margin-right: 0;
}
.modal_content ul.modal_minutes_list {
  width: 100%;
  height: 52px;
  margin-top: 8px;
  overflow-x: scroll;
  white-space: nowrap;
  float: left;
}
.modal_content ul.modal_minutes_list::-webkit-scrollbar {
  display: none;
}
.modal_content ul.modal_minutes_list li {
  width: 64px;
  margin-right: 8px;
  padding: 12.5px 0;
  font-size: 15px;
  font-weight: 400;
  color: #555;
  text-align: center;
  border-radius: 5px;
  border: solid 1px #d9d9d9;
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
}
.modal_content ul.modal_minutes_list li.active {
  border-color: #0740e4;
  color: #0740e4;
  font-weight: 500;
}
.modal_content ul.modal_minutes_list li:last-of-type {
  margin-right: 0;
}
.modal_content .modal_btn_wrap {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal_content .modal_bold_title {
  padding-left: 24px;
  font-size: 17px;
  font-weight: bold;
  border: 0;
  background: url(../images/common/ico_close_02.svg) no-repeat left 5.5px;
}
.modal_content .modal_bold_title.not_button {
  padding-left: 0px;
  background: none;
}
.modal_content .modal_inner .modal_input_box {
  margin-top: 8px;
}
.modal_content .modal_inner .modal_input_box.flex {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal_content .modal_inner .modal_input_box.flex select {
  width: calc(50% - 8px);
}
.modal_content .modal_inner .modal_input_box .modal_date {
  width: 100%;
  padding: 15px 16px;
  border-radius: 5px;
  border: solid 1px #ededed;
  background: url(../images/common/ico_arr_down.svg) no-repeat center right 16px #fff;
  font-size: 13px;
  line-height: 16px;
  text-align: left;
}
.modal_content .modal_inner .modal_check_box_wrap {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.modal_content .modal_inner .modal_check_box_wrap .modal_check_box {
  display: flex;
  align-items: center;
}
.modal_content .modal_inner .modal_check_box_wrap .modal_check_box.modal_search {
  width: 33.3333333333%;
  margin-top: 24px;
}
.modal_content .modal_inner .modal_check_box_wrap .modal_check_box label {
  margin-left: 16px;
  font-size: 13px;
}
/*.modal_content .modal_inner .modal_check_box_wrap .modal_check_box:nth-of-type(4), .modal_content .modal_inner .modal_check_box_wrap .modal_check_box:nth-of-type(5), .modal_content .modal_inner .modal_check_box_wrap .modal_check_box:nth-of-type(6) {
  margin-top: 24px;
}*/
.modal_content .modal_inner .modal_check_box_wrap .modal_check_box.modal_search:nth-of-type(1),
.modal_content .modal_inner .modal_check_box_wrap .modal_check_box.modal_search:nth-of-type(2),
.modal_content .modal_inner .modal_check_box_wrap .modal_check_box.modal_search:nth-of-type(3) {
  margin-top: 0px;
}
@keyframes slideUp02 {
  0% {
    margin-bottom: -100em;
  }
  100% {
    margin-bottom: 0;
  }
}

.modal_images {
  width: 100%;
  position: fixed;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
  text-align: center;
}

.modal_pop_wrap {
  width: 320px;
  position: fixed;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
  background: #fff;
  border-radius: 5px;
}
.modal_pop_wrap .modal_pop {
  padding: 24px;
}
.modal_pop_wrap .modal_pop .title_wrap {
  font-size: 17px;
  font-weight: bold;
  letter-spacing: -0.34px;
}
.modal_pop_wrap .modal_pop .title_wrap .btn_close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 52;
  cursor: pointer;
}
.modal_pop_wrap .modal_pop .modal_pop_contents {
  padding: 24px 0;
  font-size: 13px;
}
.modal_pop_wrap .modal_pop_btn_full {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.modal_pop_wrap .modal_pop_btn_full .btn_full {
  width: 100%;
  padding: 16px 0;
  background: none;
  border: 0;
  border-top: 1px solid #ededed;
  line-height: 25px;
  font-size: 17px;
  font-weight: bold;
}
.modal_pop_wrap .modal_pop_btn_full .btn_half {
  width: 50%;
  padding: 16px 0;
  background: none;
  border: 0;
  border-top: 1px solid #ededed;
  line-height: 25px;
  font-size: 17px;
  font-weight: bold;
}
.modal_pop_wrap .modal_pop_btn {
  width: 100%;
  padding: 0 24px 16px;
  display: flex;
  justify-content: space-between;
}
.modal_pop_wrap .modal_pop_btn .btn_full {
  width: 100%;
  padding: 16px 0;
  border: 0;
  line-height: 25px;
  font-size: 17px;
  font-weight: bold;
  background: #0740e4;
  color: #fff;
  border-radius: 5px;
}
.modal_pop_wrap .modal_pop_btn .btn_half {
  width: calc(50% - 8px);
  padding: 16px 0;
  background: none;
  border: 0;
  line-height: 25px;
  font-size: 17px;
  font-weight: bold;
  border-radius: 5px;
}
.modal_pop_wrap .modal_pop_btn .btn_half.cancel {
  border: solid 1px rgba(7, 64, 228, 0.1);
  background: rgba(7, 64, 228, 0.03);
}
.modal_pop_wrap .modal_pop_btn .btn_half.confirm {
  background: #0740e4;
  color: #fff;
}

.loading_wrap {
  position: fixed; /* Stay in place */
  z-index: 9999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}
.loading_wrap .loading {
  width: 48px;
  height: 48px;
  position: fixed;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
  animation: loader1 3s linear infinite;
}

@keyframes loader1 {
  0% {
    transform: translate(-50%, 50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, 50%) rotate(360deg);
  }
}
.btn_wrap.padding {
  padding: 24px;
}
.btn_wrap .bottom_btn_find {
  margin-bottom: 24px;
  text-align: center;
}
.btn_wrap .bottom_btn_find a {
  font-size: 13px;
  color: #000;
  display: inline-block;
}

.layer_pop {
  position: fixed;
  /* z-index: 55; */
  /* 2023-01-20 수정 */
  z-index: 95;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}
/* 2023-01-20 추가 */
.layer_pop .wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: auto;
  padding-bottom: 120px;
}

.slideUp {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.slideUp.active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.slideDown {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.slideDown.active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.slideLeft {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.slideLeft.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.slideRight {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.slideRight.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}