@charset "utf-8";

/*********************************************************************
    Modal Window CSS
*********************************************************************/

.modal-content-wrapper #note ul,
#privacy-policy ul {
  padding-left: 24px;
}

.modal-content-wrapper #note ul li,
.modal-content-wrapper #privacy-policy ul li {
  line-height: 20px;
  margin-bottom: 10px;
}

.modal-content-wrapper #note dt,
.modal-content-wrapper #privacy-policy dt {
  font-weight: normal;
}

.modal-content-wrapper .item-heading {
  margin: 30px auto 10px;
  font-size: 18px;
  border-bottom: solid 1px;
}   

.modal-content-wrapper .list-number {
  list-style-type: none;
  padding-left: 20px;
  text-indent: -20px;
}

.modal-content-wrapper .second-list {
  margin-top: 10px;
  list-style-type: disc;
  text-indent: 0;
}

.modal-content-wrapper .manager {
  margin: 30px auto 100px;
  border-top: solid 1px;
  padding-top: 8px;
  text-align: right;
}

.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.contact-modal-body {
  position: relative;
  background: #fff;
  /* padding: 20px; */
  padding: 0 10px 10px 10px;
  border-radius: 5px;
  max-width: 80%;
  max-height: 80vh;
  overflow-y: auto;
}

.contact-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.modal-header {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
  z-index: 1;
}

.modal-title{
  font-weight: bold;
  padding-left: 10px;
}