@charset "UTF-8";
/* bootstrap Modal Dialog
-------------------------------------- */
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal .modal-dialog {
  max-width: 768px;
  margin: 0 auto;
  padding: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translate(0, 200%);
  background-color: transparent !important;
  transition: transform 0.3s ease-out;
}
.modal .modal-dialog .modal-content {
  position: relative;
  margin: 20px;
}
.modal .modal-dialog .modal-content .modal-header {
  padding: 15px;
  margin-bottom: 0 !important;
  text-align: center;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  border-bottom: 1px solid var(--border-color);
}
.modal .modal-dialog .modal-content .modal-header .modal-title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .modal-dialog .modal-content .modal-header .modal-title img {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  margin-right: 6px;
}
.modal .modal-dialog .modal-content .modal-body {
  position: relative;
  padding: 15px 30px !important;
  max-height: calc(100vh - 260px);
  overflow-y: auto;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  /* 회원 메뉴 */
}
.modal .modal-dialog .modal-content .modal-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.modal .modal-dialog .modal-content .modal-body ul > li {
  margin: 0;
  padding: 0;
}
.modal .modal-dialog .modal-content .modal-body ul > li + li {
  border-top: 0.5px solid var(--border-color);
}
.modal .modal-dialog .modal-content .modal-body ul > li > a, .modal .modal-dialog .modal-content .modal-body ul > li > button {
  display: flex;
  align-items: center;
  height: 40px;
  cursor: pointer;
  font-size: inherit;
  color: var(--text-baseColor);
  padding: 0;
  border: 0;
  background: none;
}
.modal .modal-dialog .modal-content .modal-body ul > li > a > svg, .modal .modal-dialog .modal-content .modal-body ul > li > button > svg {
  margin-right: 4px;
}
.modal .modal-dialog .modal-content .modal-body ul > li:hover a, .modal .modal-dialog .modal-content .modal-body ul > li:hover button {
  text-decoration: underline;
}
.modal .modal-dialog .modal-content .modal-footer {
  margin-top: 10px;
  padding: 0 !important;
  text-align: right;
  border: 0 !important;
}
.modal .modal-dialog .modal-content .modal-footer button.modal-close {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  border-radius: 10px;
  border: 0;
  color: var(--text-strongColor);
  background-color: #fff;
}
.modal.in .modal-dialog {
  transform: translate(0, 0);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
  transition: opacity 0.2s linear;
}
.modal-backdrop.in {
  opacity: 0.8;
}
@media (min-width: 992px) {
  .modal .modal-dialog {
    top: 0;
    bottom: auto;
    transform: translate(0, -100%);
  }
  .modal.in .modal-dialog {
    transform: translate(0, 20%);
  }
}
/*# sourceMappingURL=3da3f7b975be4738e1fe01a8cff26bdb0be79c45.bootstrap.custom.scss.map */
