.pl-feedback {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    linear-gradient(rgba(12, 14, 16, .48), rgba(12, 14, 16, .34)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 28px);
  backdrop-filter: blur(4px);
}

.pl-feedback[hidden] {
  display: none;
}

.pl-feedback__card {
  width: min(520px, 100%);
  border: 2px solid #101315;
  background: #f7f3e7;
  color: #101315;
  box-shadow: 12px 12px 0 #101315, 0 34px 100px rgba(0, 0, 0, .34);
  font-family: "Courier New", Courier, monospace;
}

.pl-feedback__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-bottom: 2px solid #101315;
  background: #b9ff35;
}

.pl-feedback__top span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pl-feedback__close {
  min-width: 42px;
  min-height: 36px;
  border: 2px solid #101315;
  background: #fff;
  color: #101315;
  font: 900 13px "Courier New", Courier, monospace;
  cursor: pointer;
}

.pl-feedback__body {
  padding: 22px 22px 20px;
}

.pl-feedback h2 {
  margin: 0 0 10px;
  font: 900 clamp(28px, 6vw, 46px)/.92 "Courier New", Courier, monospace;
  letter-spacing: 0;
}

.pl-feedback p {
  margin: 0 0 18px;
  color: #3f4543;
  font-size: 14px;
  line-height: 1.45;
}

.pl-feedback__checks {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}

.pl-feedback__checks label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid #c9c2ad;
  background: rgba(255, 255, 255, .54);
  font-size: 13px;
  line-height: 1.28;
  cursor: pointer;
}

.pl-feedback__checks input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #3158ff;
}

.pl-feedback__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.pl-feedback__actions button {
  min-height: 42px;
  padding: 0 14px;
  border: 2px solid #101315;
  background: #101315;
  color: #f7f3e7;
  font: 900 12px "Courier New", Courier, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.pl-feedback__actions [data-feedback-dismiss] {
  background: #fff;
  color: #101315;
}

.pl-feedback__status {
  flex: 1 1 160px;
  min-height: 18px;
  margin: 0;
  color: #3158ff;
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 560px) {
  .pl-feedback {
    place-items: end center;
    padding: 12px;
  }

  .pl-feedback__card {
    box-shadow: 6px 6px 0 #101315;
  }

  .pl-feedback__body {
    padding: 18px;
  }
}
