.ly_container {
  max-width: 1200px;
  margin: 80px auto;
}

.bg {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal {
  width: 500px;
  margin: 40px auto;
  background: #fff;
  border: 1px solid #d1d1d1;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.modal_header {
  background: #f4f5f6;
  position: relative;
  text-align: center;
  padding: 10px 15px;
  border-bottom: 1px solid #d1d1d1;
}

.modal_ttl {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.modal_close {
  position: absolute;
  font-size: 18px;
  top: calc(50% - 9px);
  right: 15px;
  cursor: pointer;
}

.modal_body {
  padding: 30px 15px;
  overflow: auto;
  max-height: 400px;
}

.modal_footer {
  border-top: 1px solid #d1d1d1;
  padding: 15px;
  text-align: right;
}

.modal_footer button {
  margin: 0 0 0 10px;
  cursor: pointer;
}
/*# sourceMappingURL=style_modal.css.map */