.popup-wrap {
  padding: 0 20px;

  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  z-index: 9997;
}
.popup-disable-button {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;

  z-index: 9998;

  background-color: #000;
  opacity: .5;
  width: 100%;
  height: 100%;
}
.popup-list {
  max-width: 600px;
  max-height: 282px;
  overflow: auto;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;

  border-radius: 12px;

  z-index: 9999;
}
.popup-list button {
  width: 100%;
  height: 56px;
  border-bottom: 1px solid #ddd;
}
.popup-input {
  max-width: 600px;

  overflow: auto;

  width: 100%;
  margin: 20px auto;

  background-color: #fff;

  border-radius: 12px;

  z-index: 99999;

  position: relative;
}
.popup-input > header {
  padding-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
}
.popup-input > header h3 {
  opacity: .7;
}
.popup-input > section {
  padding-right: 20px;
  padding-left: 20px;
}
.popup-input > section > header,
.popup-input > section > .text {
  margin-top: 24px;
  margin-bottom: 8px;
}
.popup-input > section > .text {
  line-height: 1.4;
}
.popup-input > section > .small-text {
  font-size: 14px;
  line-height: 1.4;

  opacity: .6;

  margin-top: 8px;
  margin-bottom: 8px;
}
.popup-input > section > input {
  width: 100%;
  line-height: 1.6;
}
.popup-input > section > textarea {
  width: 100%;
  line-height: 1.6;
  height: 25px;
}
.popup-input-confirm-wrap {
  display: flex;
}
.popup-input-confirm-wrap a,
.popup-input-confirm-wrap button {
  color: #3391ff;

  font-weight: bold;

  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 28px;
}
.popup-input-confirm-wrap > a:first-child,
.popup-input-confirm-wrap > button:first-child {
  padding-left: 20px;
}
.popup-input-confirm-wrap > div:last-child {
  margin-left: auto;
}
.popup-input-confirm-wrap > div:last-child > a:last-child,
.popup-input-confirm-wrap > div:last-child > button:last-child {
  padding-left: 0;
  margin-left: 28px;
  padding-right: 20px;
}


.popup-input-confirm-wrap a,
.popup-input-confirm-wrap button {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.popup-list a:active,
.popup-list button:active {
  background-color: #f5f5f5;
}
.popup-input-confirm-wrap a:active,
.popup-input-confirm-wrap button:active {
	opacity: .3;
}
@media (any-hover: hover) {
  .popup-list a:hover,
  .popup-list button:hover {
    background-color: #f5f5f5;
  }
  .popup-input-confirm-wrap a:hover,
  .popup-input-confirm-wrap button:hover {
    opacity: .3;
  }
}
