#{$prefix}-global-notice {
  padding: 0;
  border-color: #e2e2e5;
  z-index: 99;
  box-shadow: none;
  #{$prefix}-button-disallow {
    border: 0;
    color: #3e3d41;
    background-color: #eff0f4;
    &:hover {
      background-color: #e7e7e9;
    }
  }
  #{$prefix}-notice-button-wrap {
    button {
      padding: 10px 16px;
      border-radius: 3px;
      cursor: pointer;
    }
  }
  #{$prefix}-global-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    img {
      width: 45px;
      height: auto;
      vertical-align: middle;
    }
  }
  #{$prefix}-button-allow {
    background-color: transparent;
    color: white;
    transition: --primaryColor 1s, --secondaryColor 1s;
    border: none;
  }
  #{$prefix}-button-skip {
    border: 0;
  }
}
#{$prefix}-notice {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0px;
}
#{$prefix}-notice-wrapper {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 400px;
  margin: auto;
  padding: 32px;
  border: 1.5px solid #ddd;
  border-radius: 5px;
  &::before {
    content: '';
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
    left: -40px;
    padding: 40px;
    top: -40px;
    border: 1.5px solid #cdcccc;
    border-radius: 5px;
  }
}
#{$prefix}-header {
  text-align: justify;
  margin-bottom: 38px;
}
#{$prefix}-title {
  text-align: center;
}
#{$prefix}-actions {
  border: 1px solid #ddd;
  padding: 16px 10px;
  border-left: unset;
  border-right: unset;
  form {
    display: flex;
    justify-content: space-between;
    margin: 0px;
    padding: 0px;
  }
  button {
    padding: 6px 16px !important;
  }
}
#{$prefix}-permission {
  padding: 32px;
  text-align: center;
  p {
    margin: 0px;
    font-weight: bold;
    font-size: 13px;
    color: #2271b1;
  }
}
#{$prefix}-permission-item {
  display: flex;
  align-items: center;
  column-gap: 16px;
}
#{$prefix}-data-list {
  ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
  }
  li {
    margin-bottom: 22px;
    &:last-child {
      margin-bottom: 0px;
    }
  }
  #{$prefix}-desc {
    h3 {
      margin: 0px;
      margin-bottom: 5px;
      font-size: 1.2em;
    }
    p {
      margin: 0px;
      font-size: 1em;
    }
  }
  .dashicons {
    font-size: 32px;
    height: 32px;
    width: 32px;
  }
}
#{$prefix}-notice-content {
  h3 {
    margin: 0 0 10px;
    font-size: 20px;
  }
  p {
    margin: 0;
    color: #5f6169;
    max-width: 750px;
    a {
      color: #2970ee;
      font-weight: 500;
      text-decoration: none;
      &:hover {
        text-decoration: underline;
      }
    }
  }
}
#{$prefix}-notice-button-wrap {
  margin-top: 14px;
}
button {
  &.notice-dismiss {
    padding: 25px;
  }
}