.input-page {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 99;
  line-height: 1;
}

.input-page:not(.active) {
  background: none;
  pointer-events: none;
}

.input-page__body {
  background: #fff;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  padding: 10px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform .25s ease-out;
}

.input-page.active .input-page__body {
  transform: translateY(0);
}

.input-page header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.input-page__title {
  font-size: 17px;
  font-weight: 500;
  margin: 0;
}

.input-page__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -10px -10px 0 0;
}

.input-page__content {
  flex: 1;
  margin-top: 20px;
  margin-bottom: 20px;
}

.input-page footer {
  margin: 0 5px;
}

.input-page .button-link {
  width: 100%;
}

.form .input {
  border: none;
  text-align: right;
  flex: 1;
}


.form .date {
  flex: 1;
  text-align: right;
}

.form .date input {
  position: absolute;
  width: 0;
  height: 0;
  transform: scale(0);
}

.form select {
  width: auto;
  border: none;
  padding-right: 17px;
}

.form a.select {
  height: 40px;
}

.form .select .icon {
  color: #262626;
  transform: translate(12px, -12px) rotate(-90deg) scale(.5);
}

.form .mobile-num .icon {
  transform: translate(12px, -48%) rotate(0) scale(.5);
}

.form .input:disabled {
  background: none;
}

.form .input:invalid:focus+.requirements {
  display: none;
}

.form-item {
  min-height: 40px;
  border-bottom: .5px solid #E8E8E8;
  justify-content: space-between;
  padding-right: 10px;
}

.form-item+.form-item {
  margin-top: 0;
}

.profile-signature textarea {
  display: block;
  width: 100%;
  height: 130px;
  resize: none;
  border: solid .5px #979797;
  outline: none;
  border-radius: 0;
  padding: 10px;
  background: #fff;
}

.profile-signature .input__suffix {
  position: absolute;
  margin: -18px 0 0 0;
  right: 15px;
  color: #bfbfbf;
}