.requestPermission-modal {
  height: 100%;
  background-color: transparent;
  .requestPermission-preview {
    position: absolute;
    height: 18%;
    width: 100%;
  }
}
.requestPermission {
  font-family: Hiragino Kaku Gothic Pro;
  position: absolute;
  bottom: 0;
  height: 87%;
  width: 100%;
  background-color: #fff;
  padding: 0 16px;
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  .scroll-area {
    height: 70%;
    overflow-y: scroll;
    &::-webkit-scrollbar {
      display: none;
    }
  }
  .divider {
    height: 1px;
    background-color: #eee;
  }
  .header-setion {
    flex-basis: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    .icon-section {
      position: absolute;
      top: -36px;
      left: 50%;
      margin-left: -36px;
      border: 2px solid #fff;
      border-radius: 50%;
      width: 72px;
      height: 72px;
      img {
        position: absolute;
        margin-left: -34px;
        left: 50%;
        width: 100%;
        height: 100%;
        border-radius: 50%;
      }
    }
    .scroll-container {
      width: 100%;
      margin-top: 36px;
    }
    .scrolling-wrapper-flexbox {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      height: 100%;
      margin-bottom: 20px;
      width: 100%;
      -webkit-overflow-scrolling: touch;
      &::-webkit-scrollbar {
        display: none;
      }
      .card {
        flex: auto;
        margin-right: 3px;
        img {
          width: 220px;
          height: 220px;
          object-fit: cover;
        }
      }
    }
    .text-area-name {
      margin-top: 50px;
      .miniapp-name {
        color: #000;
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
      }
    }
    .text-area-title {
      margin-top: 8px;
      margin-top: 16px;
      .subtitle {
        color: #606060;
        font-style: normal;
        font-weight: normal;
        font-size: 12px;
        margin-bottom: 16px;
      }
    }
  }
  .permission-list {
    flex-basis: 30%;
    padding: 6px 0;
    .list-unit {
      display: flex;
      align-items: baseline;
      padding: 6px 0;
      .permission-name {
        text-align: left;
        flex-basis: 80%;
        font-weight: bold;
        font-size: 14px;
        color: #606060;
      }
      .tick-unit {
        text-align: left;
        flex-basis: 10%;
        img {
          width: 15px;
          height: 15px;
        }
      }
      .arrow-unit {
        flex-basis: 10%;
        text-align: right;
        .arrow {
          border: solid #c7c7cc;
          border-width: 0 3px 3px 0;
          display: inline-block;
          padding: 3px;
        }
        .down {
          transform: rotate(45deg);
          -webkit-transform: rotate(45deg);
        }
      }
    }
  }
  .policy {
    flex-basis: 30%;
    font-size: 14px;
    text-align: left;
    padding-top: 4px;
    // padding-bottom: 16px;
    .policy-unit {
      padding: 4px 0;
      line-height: 1em;
    }
    .text1 {
      color: #606060;
    }
    .text2 {
      color: #00b9f5;
    }
    .text3 {
      color: #909090;
    }
  }
  .agreement-area {
    // position: absolute;
    // bottom: 0;
    // left: 0;
    // padding: 0 16px;
    background: #fff;
  }
  .btn-agreement {
    flex-basis: 30%;
    padding: 2px 0;
    div {
      padding: 8px 0;
    }
    .agreement-title {
      font-size: 12px;
      color: #909090;
    }
    .btn-block {
      width: 100%;
      border: none;
      box-shadow: none;
    }
    .negative-btn {
      color: #00b9f5;
    }
  }
}
