@charset "UTF-8";
.p-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 800px;
  padding: 0;
  border: none;
  border-radius: 10px;
  box-shadow: none;
}

.p-modal::backdrop {
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.btn button {
  display: inline-block;
  cursor: pointer;
}


button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none
}


.p-modal__body {
  position: relative;
  padding: 30px;
}

.p-modal__close {
  text-align: right;
}

.p-modal__close button {
  display: inline-block;
  cursor: pointer;
}

.p-modal .profile {
  display: flex;
  gap: 0 20px;
}

.p-modal .name {
  align-self: flex-end;
  text-align: right;
  font-weight: bold;
}