body.page-template-page-ip-php {
  padding: 0;
}
body.page-template-page-ip-php .ip-dashboard {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6rem;
}
body.page-template-page-ip-php .ip-dashboard .ip-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media (min-width: 992px) {
  body.page-template-page-ip-php .ip-dashboard .ip-body {
    flex-direction: row;
    align-items: stretch;
  }
}

.ip-topbar {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  background-color: #1C2E4A;
  box-sizing: border-box;
}
.ip-topbar .ip-logo {
  width: 200px;
  height: auto;
  min-height: 41px;
  background-image: url("../images/logo-zonneperceel-white.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
.ip-topbar .ip-topbar-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ip-topbar .ip-topbar-actions .ip-avatar {
  font-size: 1.6rem;
  color: #FFFFFF;
}
.ip-topbar .ip-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 1rem;
}
.ip-topbar .ip-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #FFFFFF;
}

.ip-mobile-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background-color: #16253B;
  z-index: 90;
}
.ip-mobile-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.75rem;
  flex: 1;
  padding: 0.5rem 0;
}
.ip-mobile-nav a i {
  font-size: 20px;
}
.ip-mobile-nav a.active {
  color: #D9B86A;
}

.ip-sidebar {
  background-color: #16253B;
  box-sizing: border-box;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
}
.ip-sidebar h3 {
  color: #D9B86A;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 1rem 8px;
}
.ip-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ip-sidebar ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.625rem 0.75rem;
  border-radius: 0 6px 0 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.ip-sidebar ul li a i {
  font-size: 18px;
}
.ip-sidebar ul li a:hover {
  background-color: rgba(42, 70, 107, 0.6);
  color: #FFFFFF;
}
.ip-sidebar ul li a.active {
  background-color: #2A466B;
  color: #FFFFFF;
  font-weight: 500;
}
.ip-sidebar .ip-sidebar-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 0.5px solid rgba(255, 255, 255, 0.1);
}
.ip-sidebar .ip-sidebar-footer a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.625rem 0.75rem;
  border-radius: 0 6px 0 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-decoration: none;
}
.ip-sidebar .ip-sidebar-footer a i {
  font-size: 18px;
}
.ip-sidebar .ip-sidebar-footer a:hover {
  background-color: rgba(42, 70, 107, 0.6);
  color: #FFFFFF;
}

.ip-content {
  flex-grow: 1;
  background-color: #F7F9FC;
  padding: 2rem;
  box-sizing: border-box;
  min-width: 0;
}
.ip-content h1 {
  color: #1C2E4A;
  font-weight: 500;
  margin: 0 0 4px;
}
.ip-content .ip-subtitle {
  color: #2B3642;
  font-size: 0.875rem;
  margin: 0 0 1.5rem;
}

.ip-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 0 0 1.5rem 0;
}

.ip-metric-card {
  background-color: #FFFFFF;
  border: 0.5px solid #EDF2F7;
  border-radius: 0 10px 0 10px;
  padding: 1rem;
}
.ip-metric-card--accent {
  background-color: #FBF7ED;
  border-color: #F3E7C7;
}
.ip-metric-card--accent .ip-metric-label {
  color: #C7A652;
}

.ip-metric-label {
  font-size: 0.8125rem;
  color: #2B3642;
  margin: 0 0 8px;
}

.ip-metric-value {
  font-size: 1.375rem;
  font-weight: 500;
  color: #1C2E4A;
  margin: 0;
}

.ip-card {
  background-color: #FFFFFF;
  border: 0.5px solid #EDF2F7;
  border-radius: 0 16px 0 16px;
  margin: 0 0 1.5rem 0;
  padding: 1.25rem;
}
.ip-card h3 {
  color: #1C2E4A;
  font-weight: 500;
  margin: 0 0 1rem;
}

.ip-project-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ip-project-item {
  border-bottom: 0.5px solid #EDF2F7;
}
.ip-project-item:last-child {
  border-bottom: none;
}

.ip-project-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.875rem 0.75rem;
  margin: 0 -0.75rem;
  border-radius: 0 10px 0 10px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease;
}
.ip-project-link:hover {
  background-color: #EDF2F7;
}
.ip-project-link:hover .ip-project-chevron {
  color: #2A466B;
  transform: translateX(2px);
}

.ip-project-name {
  flex-grow: 1;
  font-size: 0.875rem;
  color: #1C2E4A;
}

.ip-project-chevron {
  color: #B4BCC9;
  font-size: 0.875rem;
  transition: transform 0.15s ease, color 0.15s ease;
}

.ip-badge {
  font-size: 0.8125rem;
  padding: 2px 10px;
  border-radius: 0 6px 0 6px;
  white-space: nowrap;
}
.ip-badge--success {
  background-color: #EAF3DE;
  color: #3B6D11;
}
.ip-badge--warning {
  background-color: #FAEEDA;
  color: #854F0B;
}

.ip-auth {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #F7F9FC;
  padding: 1rem;
  box-sizing: border-box;
}

.ip-auth-card {
  background-color: #FFFFFF;
  border-radius: 0 16px 0 16px;
  border: 0.5px solid #EDF2F7;
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}
.ip-auth-card h1 {
  color: #1C2E4A;
  font-weight: 500;
  margin: 1.5rem 0 4px;
}

.ip-auth-logo {
  width: 200px;
  height: auto;
  min-height: 41px;
  background-image: url("../images/logo-zonneperceel.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.ip-auth-error {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #FCEBEB;
  color: #A32D2D;
  font-size: 0.8125rem;
  padding: 0.75rem 1rem;
  border-radius: 0 6px 0 6px;
  margin: 1rem 0;
}
.ip-auth-error i {
  font-size: 1rem;
}

.ip-auth-form {
  margin-top: 1.5rem;
}

.ip-form-group {
  margin-bottom: 1rem;
}
.ip-form-group label {
  display: block;
  font-size: 0.8125rem;
  color: #2B3642;
  margin-bottom: 6px;
}
.ip-form-group input {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 0.5px solid #EDF2F7;
  border-radius: 0 6px 0 6px;
  font-size: 0.875rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  box-sizing: border-box;
}
.ip-form-group input:focus {
  outline: none;
  border-color: #2A466B;
}

.ip-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
}

.ip-checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #2B3642;
  cursor: pointer;
}

.ip-auth-link {
  color: #2A466B;
  text-decoration: none;
}
.ip-auth-link:hover {
  text-decoration: underline;
}

.ip-auth-submit {
  width: 100%;
  padding: 0.75rem;
  background-color: #1C2E4A;
  color: #FFFFFF;
  border: none;
  border-radius: 0 6px 0 6px;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.ip-auth-submit:hover {
  background-color: #2A466B;
}

.ip-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: #FBF7ED;
  border: 0.5px solid #F3E7C7;
  border-radius: 0 16px 0 16px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
  transition: background-color 0.15s ease;
}
.ip-notice:hover {
  background-color: rgb(249.1454545455, 243.2909090909, 228.6545454545);
}

.ip-notice-icon {
  color: #C7A652;
  font-size: 1.125rem;
  margin-top: 2px;
}

.ip-notice-text {
  flex-grow: 1;
}

.ip-notice-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #16253B;
  margin: 0 0 2px;
}

.ip-notice-description {
  font-size: 0.8125rem;
  color: #C7A652;
  margin: 0;
}

.ip-notice-chevron {
  color: #C7A652;
  font-size: 0.875rem;
  margin-top: 4px;
}

.ip-activity-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.625rem 0;
  border-bottom: 0.5px solid #EDF2F7;
}
.ip-activity-row:last-child {
  border-bottom: none;
}

.ip-activity-icon {
  font-size: 1rem;
  margin-top: 2px;
}
.ip-activity-icon--success {
  color: #3B6D11;
}
.ip-activity-icon--info {
  color: #2A466B;
}
.ip-activity-icon--accent {
  color: #C7A652;
}

.ip-activity-text {
  flex-grow: 1;
}

.ip-activity-title {
  font-size: 0.875rem;
  color: #1C2E4A;
  margin: 0;
}

.ip-activity-meta {
  font-size: 0.75rem;
  color: #2B3642;
  margin: 2px 0 0;
}

.ip-card--profile {
  margin-bottom: 1.5rem;
}
.ip-card--profile h3 {
  margin-bottom: 4px;
}

.ip-card-description {
  color: #2B3642;
  font-size: 0.8125rem;
  margin: 0 0 1rem;
}

.ip-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}
@media (max-width: 767px) {
  .ip-profile-grid {
    grid-template-columns: 1fr;
  }
}

.ip-profile-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ip-profile-field--wide {
  grid-column: span 2;
}
@media (max-width: 767px) {
  .ip-profile-field--wide {
    grid-column: span 1;
  }
}

.ip-profile-label {
  font-size: 0.75rem;
  color: #2B3642;
}

.ip-profile-value {
  font-size: 0.875rem;
  color: #1C2E4A;
}

.ip-card-footer {
  border-top: 0.5px solid #EDF2F7;
  margin-top: 1rem;
  padding-top: 0.75rem;
}

.ip-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  padding: 6px 12px;
  border-radius: 0 6px 0 6px;
  background-color: #EDF2F7;
  color: #2A466B;
  text-decoration: none;
}
.ip-pill-link i {
  font-size: 0.875rem;
}
.ip-pill-link:hover {
  background-color: rgb(226.4076923077, 234.35, 242.2923076923);
}

.ip-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0;
  border-bottom: 0.5px solid #EDF2F7;
  gap: 1rem;
}
.ip-toggle-row:last-child {
  border-bottom: none;
}

.ip-toggle-label {
  font-size: 0.875rem;
  color: #1C2E4A;
  margin: 0;
}

.ip-toggle-description {
  font-size: 0.75rem;
  color: #2B3642;
  margin: 2px 0 0;
}

.ip-toggle {
  flex-shrink: 0;
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background-color: #EDF2F7;
  border: none;
  padding: 0;
  position: relative;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.ip-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #FFFFFF;
  transition: transform 0.15s ease;
}
.ip-toggle.is-active {
  background-color: #D9B86A;
}
.ip-toggle.is-active::after {
  transform: translateX(18px);
}

.ip-security-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0;
  border-bottom: 0.5px solid #EDF2F7;
}
.ip-security-row:last-child {
  border-bottom: none;
}

.ip-security-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #1C2E4A;
}
.ip-security-label i {
  color: #2A466B;
  font-size: 1rem;
}

.ip-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: #2B3642;
  text-decoration: none;
  margin: 0 0 1rem 0;
}
.ip-back-link:hover {
  color: #1C2E4A;
}

.ip-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 4px 0;
}
.ip-detail-header h1 {
  margin: 0;
}

.ip-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0;
  border-bottom: 0.5px solid #EDF2F7;
  gap: 1rem;
}
.ip-list-row:last-child {
  border-bottom: none;
}

.ip-list-row-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ip-list-row-info i {
  color: #2A466B;
  font-size: 1rem;
}
.ip-list-row-info .ip-icon-success {
  color: #3B6D11;
}
.ip-list-row-info .ip-icon-warning {
  color: #854F0B;
}

.ip-list-row-title {
  font-size: 0.875rem;
  color: #1C2E4A;
  margin: 0;
}

.ip-list-row-meta {
  font-size: 0.75rem;
  color: #2B3642;
  margin: 2px 0 0;
}

.ip-list-row-amount {
  font-size: 0.875rem;
  color: #1C2E4A;
}

@media (max-width: 991px) {
  .ip-dashboard {
    padding-bottom: 56px;
  }
  .ip-topbar .ip-burger {
    display: flex;
  }
  .ip-topbar .ip-topbar-actions {
    margin-right: 1rem;
  }
  .ip-sidebar {
    position: fixed;
    top: 64px;
    left: 0;
    bottom: 0;
    width: 80%;
    max-width: 240px;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 100;
    overflow-y: auto;
  }
  .ip-dashboard.is-menu-open .ip-sidebar {
    transform: translateX(0);
  }
  .ip-dashboard.is-menu-open::after {
    content: "";
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 37, 59, 0.4);
    z-index: 99;
  }
}
@media (min-width: 992px) {
  .ip-mobile-nav {
    display: none;
  }
  .ip-sidebar {
    width: 240px;
    flex-shrink: 0;
  }
}

/*# sourceMappingURL=investor-portal.css.map */
