.common-address-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  padding: 20px 25px;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  text-align: center;

  .title {
    margin-bottom: 8px;
    color: #525C65;
    font-size: 16px;
  }

  .subtitle {
    margin-bottom: 15px;
    font-size: 13px;
    color: #ED6A1D;
    text-align: left;
  }

  input {
    width: 250px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #DDD;
    font-size: 13px;
    color: #999;
    outline: 0;
    -webkit-appearance: none;

    &:nth-child(n+2) {
      margin-top: 10px;
    }

    &::placeholder {
      color: #999;
    }
  }

  .submit {
    margin-top: 18px;
    width: 121px;
    height: 33px;
    background: #09f;
    border-radius: 17px;
    font-size: 15px;
    color: #fff;
    -webkit-appearance: none;
    outline: 0;
    border: 0;
  }

  .close{
    position: absolute;
    left: 50%;
    bottom: -56px;
    transform: translateX(-50%);
    font-size: 26px;
    color: #fff;
  }
}