.profile-panel {
  position: relative;
}

.profile-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.profile-panel-heading h2 {
  margin: 0;
}

.profile-toggle {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #cbd9ef;
  border-radius: 9px;
  background: #fff;
  color: #001f55;
  font-weight: 800;
  cursor: pointer;
}

.profile-panel[data-collapsed="true"] .profile-form {
  display: none;
}

.profile-panel[data-collapsed="true"] {
  padding-bottom: 20px;
}

@media (max-width: 620px) {
  .profile-panel {
    margin-bottom: 18px;
  }

  .profile-panel-heading {
    margin-bottom: 0;
  }
}
