/* +++++++++++ 첫 시작 화면 +++++++++++ */
.page_init {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  background: #fff;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  padding: 1em;
}

.page_init img {
}

#start-btn {
  min-height: calc(var(--vh, 1vh) * 6);
  /* letter-spacing: 6px; */
  /* background: #034ea2; */
  /* font-weight: bold; */
  color: #fff;
  padding: 0.2em;
  padding-left: 3em;
  padding-right: 3em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  background: #5465ae !important;
  color: #fff !important;
}

#p0 img {
  /* height: calc(var(--vh, 1vh) * 44); */
  width: auto;
}

/* +++++++++++ modal +++++++++++ */
.modal {
}

.modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  width: calc(75vh * 9 / 16) !important;
}

.modal-footer {
  justify-content: center !important;
}

.modal-footer button {
  --bs-btn-color: white;
  --bs-btn-bg: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: white;
  --bs-btn-hover-bg: #6c757d;
  --bs-btn-hover-border-color: #6c7957d;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: white;
  --bs-btn-active-bg: #6c757d;
  --bs-btn-active-border-color: #6c757d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: white;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
  width: 100%;
  /* letter-spacing: 6px; */
  /* font-weight: bold; */
}

.modal-body {
  text-align: center;
}

/* +++++++++++ 스크롤러 +++++++++++ */
.scroller {
  scroll-behavior: smooth;
  overflow-y: scroll;
  -ms-overflow-style: none;
}

.scroller::-webkit-scrollbar {
  display: none;
}

.xScroller {
  scroll-behavior: smooth;
  overflow-x: scroll;
  -ms-overflow-style: none;
}

.xScroller::-webkit-scrollbar {
  display: none;
}

.scroller-img-wrap {
  width: 100%; /* 부모 컨테이너의 너비를 설정 */
  height: calc(
    var(--vh, 1vh) * 100
  ); /* 부모 컨테이너의 높이를 화면 높이와 동일하게 설정 */
  overflow-y: auto; /* 세로 스크롤을 허용하도록 설정 */
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.scrollable-image {
  width: 100%; /* 이미지의 너비를 100%로 설정 */
  height: auto; /* 이미지의 높이를 자동으로 조절하여 비율 유지 */
}

.scroller-img-wrap {
  scroll-behavior: smooth;
  overflow-y: scroll;
  -ms-overflow-style: none;
  position: relative;
}

.scroller-img-wrap::-webkit-scrollbar {
  display: none;
}

/* ============== 컨트롤바============= */

.ctrlbar {
  /* z-index: 100; */

  display: flex;
  justify-content: space-around;
  align-items: center;
  /* background: #ffffff; */
  width: 98%;
  height: calc(var(--vh, 1vh) * 12);
  margin: 0.2em;
  backdrop-filter: blur(1px);
  border-radius: 10px 10px 10px 10px;

  flex-direction: row;
  width: calc(87vh * 9 / 16) !important;
  background: rgb(224, 224, 224);
  box-shadow: 2px 2px 0px #bbbbbb, -1px -1px 0px #eeeeee;
  padding: 0.4em;
}

.ctrlbar-wrap {
  width: 100%;
  height: calc(var(--vh, 1vh) * 13);
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2em;
  padding-top: unset;
}

.ctrlbar_shadow {
  z-index: 200;
  /* border-top: 1px solid rgba(0, 0, 0, 0.136); */
  /* box-shadow: 2px 2px 0px #bbbbbb, -1px -1px 0px #bbbbbb; */
}

.ctrlbar .baricon_wrap,
.ctrlbar .baricon_wrap .stop,
.ctrlbar .baricon_wrap .play {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ctrlbar .baricon_wrap {
  width: calc(87vh * (9 / 16) / 5) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctrlbar .baricon_wrap .baricon {
  width: calc(87vh * (9 / 16) / 5 * 0.85) !important;
  height: 50%;
  background: #ffffff;
  box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ctrlbar .baricon_wrap .baricon .svg {
  width: 80%;
  height: 80%;
}

.ctrlbar .baricon_wrap .baricon .svg.hint {
  width: 70%;
  height: 70%;
  color: #5465ae;
} /*네비바 힌트버튼 전구색 변경*/

.ctrlbar .baricon_wrap .baricon .svg.front {
  color: #fff;
  position: absolute;
  width: 60%;
  height: 60%;
  top: 14%;
  left: 20%;
}

.ctrlbar .baricon_wrap .bartext {
  font-size: calc(var(--vh, 1vh) * 3);
  font-weight: bold;
  color: #424242;
  max-height: 40%;
  padding-top: 0.2em;
}

/* ============== 커서 ============= */

.cursor_wrap {
  z-index: 31 !important;
}

.show {
  display: block !important;
}

.cursor {
  cursor: help;
  display: inline-flex;
  flex-direction: column;
  z-index: 200;
  position: absolute;
  will-change: transform;
  top: 0px;
  left: 0px;
}

.cursor_outer {
  /* animation: 1.2s ease-in-out 0s infinite normal none running joyride-beacon-inner; */
  background-color: rgb(255, 0, 68);
  border-radius: 50%;
  display: block;
  height: 70%;
  left: 50%;
  opacity: 0.7;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
}

.cursor_inner {
  animation: 1.2s ease-in-out 0.2s infinite normal none running
    joyride-beacon-outer;
  background-color: rgba(255, 0, 68, 0.2);
  border: 2px solid rgb(255, 0, 68);
  border-radius: 70%;
  box-sizing: border-box;
  display: block;
  height: 100%;
  left: 0px;
  opacity: 0.9;
  position: absolute;
  top: 0px;
  transform-origin: center center;
  width: 100%;
}

.react-joyride__beacon {
  background-color: transparent;
  border: 0px;
  border-radius: 0px;
  color: rgb(85, 85, 85);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 8px;
  appearance: none;
  display: inline-block;
  height: 36px;
  position: relative;
  width: 36px;
  z-index: 100;
}

@keyframes joyride-beacon-outer {
  0% {
    transform: scale(1);
  }

  45% {
    opacity: 0.7;
    transform: scale(1.5);
  }

  100% {
    opacity: 0.9;
    transform: scale(1);
  }
}

/* ============== 하이라이트(그림자) ============= */

.addShadow {
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 0 9999px;
  z-index: 30;
}

.addShadow-darker {
  box-shadow: rgba(0, 0, 0, 0.5) 0 0 0 9999px !important;
  z-index: 30;
}

.addShadow-more-darker {
  box-shadow: rgba(0, 0, 0, 0.7) 0 0 0 9999px !important;
  z-index: 30;
}

.addShadow-highlighter-yellow {
  box-shadow: inset rgba(255, 225, 0, 0.3) 0 0 0 9999px;
  z-index: 30;
  border-radius: 0.8rem;
}

.addInnerShadow {
  box-shadow: inset rgba(0, 0, 0, 0.3) 0 0 0 9999px;
  z-index: 30;
}

.addInnerShadow-darker {
  box-shadow: inset rgba(0, 0, 0, 0.5) 0 0 0 9999px;
  z-index: 30;
}

.mk_border_darker {
  border: 2px solid #b2b2b2 !important;
}

.mk_txt_darker {
  filter: brightness(75%);
}

.mk_txt_more_darker {
  filter: brightness(10%);
}

.mk_border_b_darker {
  border-bottom: 2px solid #b2b2b2 !important;
}

/* ============== +++++++++++++++++ ============= */
/* ============== 자주 사용하는 요소 ============= */
/* ============== +++++++++++++++++ ============= */

/* ============== home-pg ============= */
.main-home-pg .home-tab .right svg {
  width: 100%;
}
.home-tab {
  background: #2b8cdd;
  color: white;
}

.home-tab .middle {
  display: flex;
  align-items: center;
}

.home-tab svg {
  width: calc(var(--vh, 1vh) * 4);
  height: calc(var(--vh, 1vh) * 5);
}

.home-tab .middle svg {
  width: 1.5em;
  height: 1.5em;
  padding: 0.3em;
  border-radius: 2rem;
  border: 1.5px solid white;
}

.home-banner {
  height: calc(var(--vh, 1vh) * 72);
}

.home-banner .banner1 {
  display: flex;
  width: 100%;
  padding: 1em;
  padding-right: unset;
  padding-bottom: unset;
  align-items: flex-end;
  justify-content: space-between;
  background: #e8d7a1;
}
.home-banner .banner1 .left {
  width: 60%;
  padding-bottom: 1em;
}

.home-banner .banner1 .right {
  width: 40%;
}

.home-banner .banner2 {
  display: flex;
  width: 100%;
  padding: 1em;
  padding-right: unset;
  padding-bottom: unset;
  align-items: flex-end;
  justify-content: space-between;
  background: #d8d8d8;
  position: relative;
}

.home-banner .banner2 .left {
  width: 60%;
  padding-bottom: 1em;
}

.home-banner .banner2 .right {
  width: 40%;
}

.home-banner .banner3 {
  display: flex;
  width: 100%;
  padding: 1em;
  align-items: center;
  justify-content: space-between;
  background: #70c7d1;
  color: white;
}

.home-banner .banner4 {
  display: flex;
  width: 100%;
  padding: 1em;
  align-items: center;
  justify-content: space-between;
  background: #87b6e0;
  color: white;
  flex-direction: column;
}

.home-banner .btn-tab .sbtn {
  padding: 0.5em;
  border-radius: 2rem;
  border: 1.5px solid white;
  color: white;
  padding-left: 1em;
  padding-right: 1em;
  text-align: center;
}

/* ============== 하단 메뉴 바 ============= */
.bottom-menu-tab {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  width: 100%;
  height: calc(var(--vh, 1vh) * 8);
  align-items: center;
  padding-left: 0.3em;
  padding-right: 0.3em;
  justify-content: space-around;
  background: #e5e8ef;
  color: #424242;
}

.bottom-menu-tab .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: calc(var(--vh, 1vh) * 7);
}

.bottom-menu-tab .icon-wrap .txt {
  white-space: nowrap;
}

.bottom-menu-tab .icon-wrap svg {
  width: calc(var(--vh, 1vh) * 2.5);
  height: calc(var(--vh, 1vh) * 2.5);
  margin-bottom: 0.15em;
}

/* ============== 상단 스크롤 메뉴 바 ============= */
.tab-menu-top {
  height: calc(var(--vh, 1vh) * 7);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: calc(87vh * 9 / 16);
  scroll-behavior: smooth;
  overflow-x: auto;
  white-space: nowrap; /* 줄바꿈 없이 한 줄로 콘텐츠 표시 */
  overflow-y: hidden;
  color: #959596;
}

/* 스크롤바 전체 영역 */
.tab-menu-top::-webkit-scrollbar {
  height: 3px; /* 가로 스크롤바 높이 */
}

/* 스크롤바 트랙 (스크롤바가 움직이는 영역) */
.tab-menu-top::-webkit-scrollbar-track {
  background-color: #ffffff; /* 트랙의 배경색 */
}

/* 스크롤바 핸들(스크롤바 자체) */
.tab-menu-top::-webkit-scrollbar-thumb {
  background-color: #c9c9c9; /* 스크롤바의 색상 */
  border-radius: 2rem; /* 스크롤바의 둥근 모서리 */
}

.tab-menu-top .opt {
  white-space: nowrap;
  padding: 0.5em;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.tab-menu-top .sel {
  color: #2b8cdd;
  border-bottom: 2px solid #2b8cdd;
  margin-left: 0.5em;
  margin-right: 0.5em;
}

/* ============== 버튼 요소 ============= */

.blue-btn {
  padding: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  color: white;
  background: #2b8cdd;
  border-radius: 2rem;
  text-align: center;
}

.sky-btn {
  padding: 0.2em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  border-radius: 2rem;
  text-align: center;
  border: 1px solid #2b8cdd;
  color: #2b8cdd;
  width: fit-content;
  /* margin-left: 1em; */
}

.navy-filled-btn {
  padding: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 2rem;
  text-align: center;
  border: 1px solid #2b8cdd;
  color: white;
  background: #2b8cdd;
  width: fit-content;
  /* margin-left: 1em; */
}

.whiteBtn {
  padding: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 0.3rem;
  text-align: center;
  border: 1px solid #9e9e9e;
}

.grayLineBtn {
  padding: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 0.3rem;
  text-align: center;
  color: #65646a;
  border: 1px solid #cfcfcf;
  background-color: #fff;
}

.blueBtn {
  padding: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  color: white;
  background: #2b8cdd;
  border-radius: 0.3rem;
  text-align: center;
}

/* ============== 리스트 요소 ============= */
.gray-sm-ul li {
  margin-bottom: 0.5rem;
  width: 100%;
  padding-left: 0.7rem;
  color: #65646a;
  padding-left: unset;
  list-style-type: disc;
  margin-left: 1em;
}

.gray-sm-ul {
  margin-bottom: 0;
}

.table-li {
  width: 100%;
  border-bottom: 1px solid #9f9f9f;
  display: flex;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  font-size: 0.8em;
}

.table-li .left {
  width: 30%;
}

.table-li .right {
  width: 70%;
}

.right-svg-banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em;
}

.right-svg-banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em;
}

.right-svg-bannerimg {
  width: 2em;
  height: 2em;
}

.bul-list-type01 li {
  color: #222;
  margin-bottom: 0.5em;
  padding-left: 1.5em;
  background: url(../../SDF3/assets/images/12-btn-1.png) no-repeat 0 0.15rem;
  background-size: 1rem 1rem;
}

.bul-list-type02 li {
  color: #222;
  margin-bottom: 0.5em;
  padding-left: 1.5em;
  background: url(../../SDF3/assets/images/12-btn-2.png) no-repeat 0 0.15rem;
  background-size: 0.8rem 0.4rem;
}

.ul-unset {
  margin: unset;
  padding: unset;
  padding-top: 0.5em;
  padding-bottom: 1em;
}

.img2em {
  width: 2em;
  height: 2em;
}

.img3em {
  width: 3em;
  height: 3em;
}

.img4em {
  width: 4em;
  height: 4em;
}
/* ============== 리스트 요소 : 박스 ============= */

.combo-box-tab {
  background: #eeeeee;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff;
}

.combo-box-tab .square {
  background: white;
  border: 1px solid #bababa;
  width: 1em;
  height: 1em;
  border-radius: 0.2rem;
}

.selc-box-tab {
  padding: 0.5em;
  border: 1px solid #5f5f5f;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.w-copyright {
  width: 100%;
  height: calc(var(--vh, 1vh) * 10);
  padding: 1em;
  color: #888;
  text-align: center;
  background-color: #f0f2f5;
}

.w-copyright-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 10);
  padding: 1em;
  color: #888;
  text-align: center;
  background-color: #f0f2f5;
}

/* ==================== 1, 2페이지 css ====================== */
.circle-opt {
  padding: 1em;
  border-radius: 3rem;
  border: 1px solid rgb(222, 222, 222);
  width: calc(var(--vh, 1vh) * 7);
  height: calc(var(--vh, 1vh) * 7);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-right: 1em;
}

.dot-dorange {
  color: #ef8c51;
  position: absolute;
  top: -0.2em;
  left: 1em;
}

.intro-pg ul {
  margin: unset;
  padding: unset;
  padding-top: 0.5em;
  padding-bottom: 1em;
}

.intro-pg ul li {
  color: #0d58a9;
}

.intro-pg .w-step-st02 ol,
.intro-pg .w-step-st02 li {
  padding: unset;
}

.intro-pg .w-step-st02 li {
  width: 100%;
  color: #fff;
  margin: 0 0 0.8rem;
  border-radius: 1.7rem;
  background: #19c7d4;
  box-shadow: 0 0.2rem 0.3rem 0 rgba(0, 0, 0, 0.2);
  padding: 0.5em;
}

.intro-pg .w-step-st02 span {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  color: #19c7d4;
  margin: 0.15rem 0.5rem 0.15rem 0.15rem;
  text-align: center;
  border-radius: 50%;
  background: #fff;
}

.intro-pg .li-blue2 li {
  line-height: 1.3;
  margin-bottom: 0.5rem;
  width: 100%;
  color: #65646a;
  background: 0 0.7rem no-repeat;
  background-size: 0.3rem;
  width: 100%;
  padding-left: 0.7rem;
  color: #65646a;
  padding-left: unset;
  list-style-type: disc;
  margin-left: 1em;
}

.intro-pg .li-blue2 li .stit2 {
  color: #222;
  font-weight: 600;
}

.intro-pg .li-blue2 p {
  margin: unset;
  color: #65646a;
}

.intro-pg .sky-btn {
  padding: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 2rem;
  text-align: center;
  border: 1px solid #2b8cdd;
  color: #2b8cdd;
  width: fit-content;
  /* margin-left: 1em; */
}

.intro-pg .btns-tab div {
  width: 48%;
  padding: 0.5em;
  color: white;
  border-radius: 0.3rem;
  text-align: center;
  white-space: nowrap;
}

.intro-pg .btns-tab .btn1 {
  color: #fff;
  border: 0.1rem solid #19c7d4;
  background-color: #19c7d4;
}

.intro-pg .btns-tab .btn2 {
  color: #fff;
  border: 0.1rem solid #2b8bdc;
  background-color: #2b8bdc;
}
/* ========================================== */
.form-select {
  border-radius: 0.1rem !important;
}

.appl-btn {
  width: 3.5em;
  height: 3.5em;
  border-radius: 3rem;
  background: #19c3d2;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gray-circle-btn {
  width: 3.5em;
  height: 3.5em;
  border-radius: 3rem;
  background: #999999;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blue-square-btn {
  padding: 0.5em;
  color: white;
  background: #2b8bdc;
  width: fit-content;
  margin-bottom: 1em;
}

[data-popper-reference-hidden] {
  visibility: visible !important; /* 숨기지 않고 항상 보이도록 설정 */
  opacity: 1 !important;
}

[data-popper-escaped] {
  visibility: visible !important; /* 숨기지 않고 항상 보이도록 설정 */
  opacity: 1 !important;
}

/* ================= 사이드 메뉴 오픈 탭========================= */
.sidemenu-tab-wrap {
  background-color: white;
  height: calc(var(--vh, 1vh) * 87);
  position: absolute;
  right: 0;
  top: 0;
  width: 90%;
  z-index: 10;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 0 9999px;
}

.sidemenu-tab-wrap .login-tab {
  width: 100%;
  display: flex;
  height: calc(var(--vh, 1vh) * 7);
  padding: 1em;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
  color: white;
  background: #2b8cdd;
}

.sidemenu-tab-wrap .grayLineBtn {
  padding: 0.2em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  border-radius: 2rem;
  text-align: center;
  border: 1px solid #999999;
  color: #999999;
  width: fit-content;
}

.blueLineBtn {
  padding: 0.5em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  text-align: center;
  border: 1px solid #2b8bdc;
  color: #2b8bdc;
  width: fit-content;
}

.square-mint-btn {
  padding: 0.5em;
  color: white;
  text-align: center;
  white-space: nowrap;
  background-color: #19c7d4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
}

.square-blue-btn {
  padding: 0.5em;
  color: white;
  text-align: center;
  white-space: nowrap;
  background-color: #2b8bdc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
}

/* ========================================== */
.round-popup {
  position: absolute;
  top: 30%;
  box-shadow: rgba(0, 0, 0, 0.5) 0 0 0 9999px;
  z-index: 8;
  background: white;
  width: 80%;
  border-radius: 0.5rem;
  left: 10%;
  overflow: hidden;
  border: 1px solid #595959;
}

.alert-popup {
  padding: 1em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 30%;
  box-shadow: rgba(0, 0, 0, 0.5) 0 0 0 9999px;
  z-index: 8;
  background: white;
  width: 80%;
  border-radius: 0.2rem;
  left: 10%;
  overflow: hidden;
}
