@charset "UTF-8";
/*
    # 전체 스타일 정의
*/
/* COLOR */
/* SIZES */
/* FONT SIZE */
.red {
  color: red; }

.blue {
  color: blue; }

.gray {
  color: #999; }

.font-7 {
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1rem; }

.font-8 {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.2rem; }

.font-10 {
  font-size: 1rem !important; }

.font-12 {
  font-size: 1.2rem !important; }

.font-13 {
  font-size: 1.3rem !important; }

.font-16 {
  font-size: 1.6rem !important; }

.font-24 {
  font-size: 2.4rem !important;
  line-height: 3rem; }

#snackbar {
  visibility: hidden;
  /* Hidden by default. Visible on click */
  min-width: 150px;
  /* Set a default minimum width */
  background-color: rgba(0, 0, 0, 0.7);
  /* Black background color */
  color: #fff;
  /* White text color */
  text-align: center;
  /* Centered text */
  border-radius: 2px;
  /* Rounded borders */
  padding: 0.53333rem 1.6rem;
  /* Padding */
  position: fixed;
  /* Sit on top of the screen */
  z-index: 9999;
  /* Add a z-index if needed */
  left: 50%;
  font-size: 13px;
  transform: translate(-50%, -50%);
  bottom: 4rem;
  /* 30px from the bottom */ }

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible;
  /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar. 
However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.0s;
  animation: fadein 0.5s, fadeout 0.5s 2.0s; }

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0; }
  to {
    bottom: 65px;
    opacity: 1; } }

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0; }
  to {
    bottom: 65px;
    opacity: 1; } }

@-webkit-keyframes fadeout {
  from {
    bottom: 65px;
    opacity: 1; }
  to {
    bottom: 0;
    opacity: 0; } }

@keyframes fadeout {
  from {
    bottom: 65px;
    opacity: 1; }
  to {
    bottom: 0;
    opacity: 0; } }

.red {
  color: red; }

html, body {
  height: 100%; }

.min-100 {
  min-height: 100%; }

.clearfix:before,
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  overflow: hidden; }

.clearfix:after {
  clear: both; }

.clearfix {
  zoom: 1; }

.app-container {
  margin: 0 auto;
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  overflow: hidden;
  overflow-y: scroll;
  height: 100%; }

.hide {
  display: none !important; }

.container {
  padding-bottom: 15rem;
  min-height: 100%; }

::-webkit-scrollbar {
  display: none; }

.app-padding {
  padding: 0.8rem; }

.app-padding-lr {
  padding: 0 0.8rem; }

.app-padding-tb {
  padding: 0.8rem 0; }

.app-padding-tlr {
  padding: 0.8rem 0.8rem 0 0.8rem; }

.app-padding-blr {
  padding: 0 0.8rem 0.8rem 0.8rem; }

.form-v-center, .form-vh-center, .btn-login, .btn-login-kakao, .purchase-tickets > .ticket .left-part, .purchase-tickets > .ticket .right-part {
  display: flex !important;
  align-items: center; }

.form-vh-center {
  justify-content: center; }

.form-left-right, .purchase-tickets > .ticket {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.form-left-right-start {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; }

.form-start {
  display: flex;
  align-items: flex-start; }

.form-top-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-around; }

.flex {
  display: flex; }

.flex-1 {
  flex: 1; }

.full-width {
  width: 100% !important;
  box-sizing: border-box; }

.pointer {
  cursor: pointer; }

.align-center {
  text-align: center; }

.btn-app-default, .btn-app-primary, .btn-app-primary-h, .btn-login, .btn-login-kakao {
  font-weight: 700;
  font-size: 1rem;
  display: block;
  border-radius: 4px;
  border-width: 1.5px;
  border-style: solid;
  padding: 0.4rem 0.8rem;
  background: white;
  transition: 0.3s; }

.btn-app-primary {
  color: white;
  background: #555555;
  border-color: #555555; }
  .btn-app-primary:hover {
    background: #5f5f5f; }

.btn-app-primary-h {
  color: #555555;
  border-color: #555555; }
  .btn-app-primary-h:hover {
    background: whitesmoke; }

.btn-login, .btn-login-kakao {
  border-width: 1px; }
  .btn-login img, .btn-login-kakao img {
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 0.6rem; }

.btn-login-kakao {
  color: #3e282b;
  background: #ffea00;
  border-color: #ffea00;
  cursor: pointer; }
  .btn-login-kakao:hover {
    background: #fff40a; }

.navbar {
  border-bottom: 1px solid #eee; }

.app-footer {
  background: #f5f5f5;
  border-top: 1px solid #ddd;
  color: #aaa;
  text-align: center;
  padding: 0.8rem 0.8rem 4rem 0.8rem;
  line-height: 1.6;
  bottom: 0;
  width: 100%;
  height: 15rem; }

.table td, .table th {
  padding: 0.45rem; }

#snackbar {
  visibility: hidden;
  /* Hidden by default. Visible on click */
  min-width: 150px;
  /* Set a default minimum width */
  background-color: rgba(0, 0, 0, 0.7);
  /* Black background color */
  color: #fff;
  /* White text color */
  text-align: center;
  /* Centered text */
  border-radius: 2px;
  /* Rounded borders */
  padding: 0.53333rem 1.6rem;
  /* Padding */
  position: fixed;
  /* Sit on top of the screen */
  z-index: 9999;
  /* Add a z-index if needed */
  left: 50%;
  font-size: 13px;
  transform: translate(-50%, -50%);
  bottom: 4rem;
  /* 30px from the bottom */ }

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible;
  /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar. 
However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.0s;
  animation: fadein 0.5s, fadeout 0.5s 2.0s; }

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0; }
  to {
    bottom: 65px;
    opacity: 1; } }

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0; }
  to {
    bottom: 65px;
    opacity: 1; } }

@-webkit-keyframes fadeout {
  from {
    bottom: 65px;
    opacity: 1; }
  to {
    bottom: 0;
    opacity: 0; } }

@keyframes fadeout {
  from {
    bottom: 65px;
    opacity: 1; }
  to {
    bottom: 0;
    opacity: 0; } }

.nav-tabs .nav-link {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: none;
  color: black;
  padding: .5rem 0.7rem; }

.nav-tabs .nav-item {
  font-size: 13px; }

.nav-tabs .nav-link.active {
  border-bottom: 3px solid #ffd71b; }

.nav-tabs {
  margin-top: 1rem; }

#input_datepicker {
  text-align: center;
  font-weight: bold;
  border: none;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-radius: 0 !important; }

.notice .card {
  border-radius: 0;
  margin-top: -1px; }

.notice .card-header {
  border-left: 0;
  border-right: 0;
  background-color: white !important; }

.loading-overlay, .popup-overlay {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  margin: 0 auto;
  overflow: hidden;
  display: block; }
  .loading-overlay ::-webkit-scrollbar, .popup-overlay ::-webkit-scrollbar {
    display: none; }

.loading {
  width: 6rem;
  height: 6rem;
  border-radius: 6px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }
  .loading img {
    width: 3rem;
    height: 3rem; }

@media screen and (max-width: 992px) {
  .collapse-a {
    display: block; }
  .collapse-b {
    display: block;
    max-width: 100%;
    margin-top: 10px;
    text-align: right; }
    .collapse-b button {
      margin-left: 8px; }
  .collapse-container {
    justify-content: unset;
    display: block !important; }
  .ads-vertical {
    display: none; } }

.mobile-sheet-dialog {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  position: fixed;
  padding: 1.6rem;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center; }
  .mobile-sheet-dialog a {
    color: #ddd;
    text-decoration: underline; }

.popup-overlay {
  z-index: 2000;
  top: 0px; }

.popup {
  z-index: 2100;
  position: fixed;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  max-width: 468px;
  max-height: 600px;
  background: white;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column; }
  .popup img {
    object-fit: cover;
    width: 100%; }
  .popup .image-holder {
    background: white; }
  .popup button {
    padding: 0.8rem;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
    background: white;
    border: none; }
  .popup .btn-popup-negative {
    border-right: 1px solid #ddd; }

.purchase-tickets > .ticket {
  text-decoration: none;
  color: black; }
  .purchase-tickets > .ticket .left-part {
    border: 1px solid #222;
    border-radius: 4px;
    height: 6rem;
    flex: 1;
    text-align: center; }
    .purchase-tickets > .ticket .left-part .inner {
      height: -webkit-fill-available; }
    .purchase-tickets > .ticket .left-part b {
      color: #17a2b8; }
  .purchase-tickets > .ticket .right-part {
    border: 1px solid #222;
    border-radius: 4px;
    background: #555;
    height: 6rem;
    padding: 0 1rem;
    color: white;
    text-align: center; }
  .purchase-tickets > .ticket .rounded-black {
    padding: 3px 8px;
    border-radius: 100px;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.5); }

.purchase-tickets {
  width: 100%; }
