@charset "UTF-8";
/* 목록 가로선 */
.divider {
  width: 1px;
  height: 14px;
  border-left: 1px solid #979797;
  display: inline-block;
  margin-left: 16px;
  margin-right: 16px;
}

.ellip {
  display: -webkit-box;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.txt-red {
  color: red;
}

.txt-blue {
  color: blue;
}

.txt-green {
  color: green;
}

html, body {
  touch-action: manipulation;
}

html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  font-smooth: never;
  font-size: 16px;
}

#app {
  display: flex;
  flex-direction: column;
  max-width: 48rem;
  min-height: 100vh;
  background-color: #fff;
  margin: 0 auto;
}
#app header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  position: fixed;
  z-index: 1000;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  width: 100%;
  max-width: 768px;
}
#app header.gnb {
  background: rgba(255, 255, 255, 0.8);
}
#app header.gnb h2 {
  font-size: 1.125rem;
  font-weight: 600;
}
#app header.gnb a {
  position: absolute;
  top: 50%;
  left: 0.25rem;
  transform: translate(0px, -50%);
  border-radius: 0.75rem;
  transition: 0.25s;
  height: calc(var(--header-height) - 0.5rem);
  width: calc(var(--header-height) - 0.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
#app header.gnb a:hover {
  background: var(--gray-100);
}
#app header.gnb a:active {
  transform: translate(0px, -50%) scale(0.9);
}
#app main {
  position: relative;
  flex: 1;
  padding: 4.625rem 1rem 1rem 1rem;
  background-color: #fff;
}
#app footer {
  position: sticky;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--footer-height);
  background: rgba(255, 255, 255, 0.8);
  z-index: 100;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 20px 20px 0 0;
  border-top: 1px solid #f0f4f7;
  box-shadow: 0px -9px 20px -5px rgba(0, 0, 0, 0.05);
}
#app footer .row {
  height: 100%;
  padding: 0 16px;
  max-width: 378px;
  margin: 0 auto;
}
#app footer .row .col {
  width: 20%;
}
#app footer .row .col button[type=button] {
  width: 100%;
  border: none;
  padding: 0.125rem 0.5rem;
  background: transparent;
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#app footer .row .col button[type=button] > img {
  filter: grayscale(1) opacity(0.5);
}
#app footer .row .col button[type=button] > span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-wrap: nowrap;
  color: #b4b4b4;
}
#app footer .row .col button[type=button].active {
  background: rgba(122, 60, 254, 0.0509803922);
}
#app footer .row .col button[type=button].active > img {
  color: var(--brand-500);
  filter: none;
}
#app footer .row .col button[type=button].active > span {
  color: var(--brand-500);
}
#app #tmpFooter {
  padding: 0 1.3rem;
}
#app #tmpFooter p {
  margin-bottom: 0.188rem;
}

/* 처리중 */
#loading {
  display: none;
  background: #000;
  opacity: 40%;
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 9999;
}
#loading figure {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loading figure img {
  width: 50%;
}
#loading figure figcaption {
  position: relative;
  top: -50px;
  font-size: 17px;
  color: #bbb;
}

/* SweetAlert2 디자인 */
.swal2-container {
  background-color: rgba(0, 0, 0, 0.7) !important;
  grid-template-rows: auto !important;
  grid-template-areas: none !important;
  padding: 1rem;
}
.swal2-container .swal2-popup {
  max-width: 500px;
  width: 100%;
  border-radius: 1.5rem;
  grid-row: auto !important;
  align-self: center !important;
}
.swal2-container .swal2-popup:has(button.swal2-default-outline) {
  align-self: end !important;
}
.swal2-container .swal2-popup:has(button.swal2-default-outline) .swal2-actions {
  flex-direction: row-reverse;
}
.swal2-container .swal2-popup .swal2-html-container {
  font-family: "Pretendard" !important;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0px !important;
  color: var(--gray-700);
  margin-bottom: 1rem !important;
}
.swal2-container .swal2-popup .swal2-html-container strong {
  font-weight: 600;
  color: var(--brand-500);
}
.swal2-container .swal2-popup .swal2-title {
  font-family: "Pretendard" !important;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: left;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
  padding: 0px;
}
.swal2-container .swal2-popup .swal2-actions {
  width: 100%;
  gap: 0.5rem;
  margin: 0px;
}
.swal2-container .swal2-popup .swal2-actions button[type=button], .swal2-container .swal2-popup .swal2-actions button.swal2-default-outline {
  width: 40%;
  flex: 1;
  color: white !important;
  margin: 0px;
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  font-family: "Pretendard" !important;
  padding: var(--btn-padding-lg);
  border: none !important;
  border-radius: var(--radius-btn);
}
.swal2-container .swal2-popup .swal2-actions button[type=button]:hover, .swal2-container .swal2-popup .swal2-actions button[type=button]:focus, .swal2-container .swal2-popup .swal2-actions button.swal2-default-outline:hover, .swal2-container .swal2-popup .swal2-actions button.swal2-default-outline:focus {
  box-shadow: none !important;
}
.swal2-container .swal2-popup .swal2-actions button[type=button].swal2-confirm, .swal2-container .swal2-popup .swal2-actions button.swal2-default-outline.swal2-confirm {
  background-color: var(--brand-500) !important;
}
.swal2-container .swal2-popup .swal2-actions button[type=button].swal2-cancel, .swal2-container .swal2-popup .swal2-actions button.swal2-default-outline.swal2-cancel {
  background-color: var(--gray-100) !important;
  color: var(--gray-700) !important;
}
.swal2-container .swal2-popup .swal2-actions .swal2-deny {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translate(-50%, 0px);
  background: var(--gray-200) !important;
  color: transparent;
  height: 5px !important;
  width: 5rem !important;
  padding: 0 !important;
}

/* 페이지네이션 */
.pagination {
  justify-content: center;
  margin-top: 15px;
}
.pagination ul {
  width: 100%;
  margin: 0;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
}
.pagination ul li {
  border: 1px solid #f4f6f9;
  flex: 1;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: 0.25s;
}
.pagination ul li a,
.pagination ul li span {
  cursor: context-menu;
  color: #4b4e57;
  background: rgba(0, 0, 0, 0);
  border: none;
  padding: 0.125rem 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}
.pagination ul li > .page-link:hover {
  background: none;
  color: white;
}
.pagination ul li.active {
  background: #f4f6f9;
  transition: 0.25s;
  cursor: auto;
}
.pagination ul li.active > .page-link {
  color: #949eae;
  background: transparent;
  border: none;
}
.pagination ul li.active:hover {
  background: #949eae;
}
.pagination ul li.active:hover span {
  color: white;
}
.pagination ul li:first-child, .pagination ul li:last-child {
  flex: none;
  cursor: auto;
  padding: 0 0.125rem;
}
.pagination ul li:first-child > span,
.pagination ul li:first-child a, .pagination ul li:last-child > span,
.pagination ul li:last-child a {
  color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: none;
}
.pagination ul li:first-child:hover, .pagination ul li:last-child:hover {
  background: transparent;
}
.pagination ul li:first-child > span,
.pagination ul li:first-child a {
  background-image: url("/images/default/ico-arrow-left.svg");
}
.pagination ul li:first-child > span {
  opacity: 0.5;
}
.pagination ul li:first-child > a {
  opacity: 1;
}
.pagination ul li:last-child > span,
.pagination ul li:last-child a {
  background-image: url("/images/default/ico-arrow-right.svg");
}
.pagination ul li:last-child > span {
  opacity: 0.5;
}
.pagination ul li:last-child > a {
  opacity: 1;
}
.pagination ul li:hover {
  background: #949eae;
}

#tabs {
  background: #fffbd4;
  padding: 30px 15px 0 15px;
}
#tabs ul.nav li.nav-item a.nav-link {
  color: #888;
  font-size: 1.188rem;
  font-style: normal;
  font-weight: 800;
  line-height: 150%;
  letter-spacing: -0.01756rem;
  background: none;
  border-width: 0 0 1px 0;
  border-color: #b9b9b9;
}
#tabs ul.nav li.nav-item a.nav-link.active {
  color: #000;
  border-color: #000;
  border-width: 0 0 2px 0;
}

#panelYouTubeGuide {
  text-align: center;
}
#panelYouTubeGuide img {
  max-width: 30%;
}