.modal {
  display: flex;
	flex-direction: column;
  position: fixed;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .6);
  overflow: scroll;
	-ms-overflow-style: none;
  z-index: 100;
}
.modal::-webkit-scrollbar {
	display: none;
}
.modal .form {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  max-width: 90%;
  max-height: 80%;
  padding: 30px 30px;
  background-color: #FFF;
  border-radius: 8px;
  box-shadow: 0 0 3px rgba(0, 0, 0, .25);
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.modal .top {
  display: inline-block;
  width: 100%;
  margin-bottom: 25px;
	padding-right: 20px;
  color: var(--theme-color-grey);
  font-size: 20px;
  font-weight: 500;
  text-align: left;
}
.modal .body {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  font-size: 0;
  text-align: left;
}
.modal .col {
  display: inline-block;
  vertical-align: top;
  width: 50%;
}
.modal .block {
  display: inline-block;
  vertical-align: top;
  width: 50%;
}
.modal .block:nth-child(1) {
  padding-right: 6px;
}
.modal .block:nth-child(2) {
  padding-left: 6px;
}
.modal .exit {
  display: inline-block;
  position: absolute;
  top: 25px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-image: url('/image/icon-exit.png');
  background-size: auto 15px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.modal .title {
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
  color: var(--theme-color-grey);
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-family);
  text-align: left;
}
.modal .subtitle {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  color: var(--theme-color-grey);
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-family);
  text-align: center;
}
.modal .desc {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
  color: var(--theme-color-grey);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.modal .image {
  text-align: center;
}
.modal .image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 240px;
}
.modal .row {
  margin-bottom: 10px;
}
.modal .row:last-child {
  margin-bottom: 0;
}
.modal .divider {
	display: inline-block;
  flex-shrink: 0;
	width: 100%;
	height: 1px;
	margin: 10px 0;
  margin-bottom: 25px;
	background-color: #EEE;
}
.modal .form-title {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
  color: var(--theme-color-grey);
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}
.modal .field-title {
  display: inline-block;
  vertical-align: top;
  width: 240px;
  color: var(--theme-color-grey);
  font-size: 12px;
  font-weight: 500;
  text-align: left;
}
.modal .field-value {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 240px);
  color: var(--theme-color-grey);
  font-size: 12px;
  font-weight: 400;
  text-align: right;
}
.modal input,
.modal select {
  vertical-align: middle;
  width: 100%;
  height: 35px;
  font-size: 12px;
  border: 1px solid #DDD;
  border-radius: 3px;
}
.modal textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #DDD;
  border-radius: 3px;
}
.modal button {
  margin-right: 15px;
  padding: .5em 1.8em .6em 1.8em;
  font-size: 14px;
  background-color: #000;
}
.modal button:last-child {
  margin-right: 0;
}
.modal button.revert {
  background-color: #FFF;
  border: 1px solid #CCC;
  border-radius: 5px;
}
.modal button.revert:hover {
  background-color: #EEE;
}
.modal .form-warn {
  text-align: left;
}


.modal-bg {
	display: none;
}



/* Smartphones (portrait) */
@media only screen and (max-width: 480px) {
  
}

/* Smartphones (Landscape) / Tablet (portrait) */
@media only screen and (min-width: 481px) and (max-width: 800px) {
  
}

/* Tablet (Landscape) */
@media only screen and (min-width: 801px) and (max-width: 1200px) {
  
}

/* Laptop */
@media only screen and (min-width: 1201px) and (max-width: 1600px) {
  
}

/* Desktop */
@media only screen and (min-width: 1601px) {
  
}