.pk-help-inline-wrap {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 10px 0;
  width: 100%;
}

.pk-help-inline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #5b6472;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pk-help-inline-btn:hover {
  color: #1f2d3d;
}

.pk-help-inline-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(31, 91, 214, 0.16);
  border-radius: 6px;
}

.pk-help-inline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid #9aa4b2;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.pk-help-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.pk-help-modal.is-open {
  display: block;
}

.pk-help-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.pk-help-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 32px));
  margin: 9vh auto 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  padding: 40px 42px 34px;
}

.pk-help-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #7a8594;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.pk-help-modal-close:hover {
  color: #1f2d3d;
}

.pk-help-modal-title {
  margin: 0 0 18px;
  color: #202938;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
}

.pk-help-modal-text {
  margin: 0 0 20px;
  color: #5e6878;
  font-size: 18px;
  line-height: 1.6;
}

.pk-help-modal-contact {
  color: #3f4957;
  font-size: 17px;
  line-height: 1.7;
}

.pk-help-modal-contact a {
  color: #4f7fd8;
  text-decoration: none;
}

.pk-help-modal-contact a:hover {
  text-decoration: underline;
}

body.pk-help-modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .pk-help-inline-wrap {
    justify-content: flex-start;
    margin-bottom: 8px;
  }

  .pk-help-modal-dialog {
    width: calc(100% - 20px);
    margin-top: 6vh;
    padding: 28px 18px 24px;
  }

  .pk-help-modal-title {
    font-size: 23px;
    padding-right: 28px;
  }

  .pk-help-modal-text,
  .pk-help-modal-contact {
    font-size: 16px;
  }
}