/* ── Variables ────────────────────────────────────────────────────────────── */
.cp-wrapper {
  --cp-blue: #0284c7;
  --cp-blue-light: #e0f2fe;
  --cp-blue-border: #bae6fd;
  --cp-sky: #0ea5e9;
  --cp-sky-dark: #0369a1;
  --cp-green: #10b981;
  --cp-purple: #a855f7;
  --cp-teal-grad-from: #0ea5e9;
  --cp-teal-grad-to: #2563eb;
  --cp-text: #0a005a;
  --cp-text-mid: #727888;
  --cp-text-muted: #727888;
  --cp-border: #e5e7eb;
  --cp-border-light: #f3f4f6;
  --cp-bg: #f3f4f6;
  --cp-white: #ffffff;
  --cp-radius: 12px;
  --cp-shadow-sm:
    0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --cp-shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);

  /* texts */
  --text-primary: #0a005a;
  --text-muted: #727888;
  --text-gradient: linear-gradient(180deg, #ff00b8 0%, #1500c0 100%);

  /* buttons */
  --btn-primary: #ff00b8;
  --btn-secondary: #34a5fb;

  /* labels */
  --lbl-primary: #a3dfff;

  display: flex;
  gap: 24px;
  align-items: flex-start;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 14px;
  line-height: 22.75px;
  color: var(--cp-text);
  background: var(--cp-bg);
  padding: 24px;
  box-sizing: border-box;
}

/* ── Sidebar ──────────────────────────────────────────────────────────────── */
.cp-sidebar {
  width: 256px;
  flex-shrink: 0;
  background: var(--cp-white);
  border-radius: var(--cp-radius);
  box-shadow: var(--cp-shadow-sm);
  border: 1px solid var(--cp-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: sticky;
  top: 24px;
}

/* Cover banner */
.cp-sidebar__cover {
  width: 100%;
  height: 96px;
  background: #0a005a;
  flex-shrink: 0;
}

/* Avatar positioned over cover */
.cp-sidebar__avatar-wrap {
  padding: 0 0 0 16px;
  margin-top: -40px;
  margin-bottom: 12px;
}

.cp-sidebar__avatar {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: #f1f5f9;
  border: 4px solid #ffffff;
  box-shadow: var(--cp-shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cp-sidebar__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cp-sidebar__initial {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 24px;
  font-weight: 400;
  color: #0a0a0a;
  line-height: 32px;
}

.cp-sidebar__body {
  padding: 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cp-sidebar__name {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 14px;
  font-weight: 700;
  color: var(--cp-text);
  margin-bottom: 4px;
  line-height: 19.25px;
}

.cp-sidebar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.cp-sidebar__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: auto;
  padding-bottom: 16px;
  border-bottom: 0.8px solid #f3f4f6;
}

.cp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 16px;
  border-radius: 6px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
  border: none;
  width: 100%;
  font-family: inherit;
  transition:
    background 0.15s,
    opacity 0.15s;
}

.cp-btn--primary {
  background: var(--btn-primary);
  color: #fff;
}

.cp-btn--primary:hover {
  background: var(--btn-primary);
  color: #fff;
}

.cp-btn--primary:focus {
  background: var(--btn-primary);
  color: #fff;
}

.cp-btn--outline {
  background: var(--btn-secondary);
  color: white;
}

.cp-btn--outline:hover {
  background: var(--btn-secondary);
  color: white;
}

.cp-btn--outline:focus {
  background: var(--btn-secondary);
  color: white;
}

/* Mobile: stack actions vertically and make buttons full-width */
@media (max-width: 420px) {
  .cp-sidebar__actions {
    flex-direction: column;
    width: 100%;
  }
  .cp-btn {
    width: 100%;
  }
}

.cp-sidebar__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  margin-bottom: 16px;
}

.cp-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 12px;
  line-height: 16px;
  color: var(--cp-text-mid);
}

.cp-meta-row svg {
  flex-shrink: 0;
  color: var(--cp-text-muted);
}

.cp-meta-row a {
  color: var(--cp-blue);
  text-decoration: none;
}

.cp-meta-row a:hover {
  text-decoration: underline;
}

/* Quick stat card in sidebar */
.cp-stat-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12.8px;
  border-radius: 12px;
  background: #f0f9ff;
  border: 1px solid var(--cp-blue-border);
}

.cp-stat-card > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.cp-stat-card a {
  color: #0369a1;
}

.cp-stat-card__label {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 12px;
  font-weight: 600;
  color: var(--cp-sky-dark);
  line-height: 16px;
}

/* ── Tags ─────────────────────────────────────────────────────────────────── */
.cp-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  background: #f3f7fb;
  color: #0082f7;
  border: 1px solid #0082f7;
  box-shadow: 0px 1px 2px -1px #0000001a;
  box-shadow: 0px 1px 3px 0px #0000001a;
}

.cp-tag--solid {
  background: var(--cp-blue);
  color: #fff;
  border-color: var(--cp-blue);
}

/* ── Main ─────────────────────────────────────────────────────────────────── */
.cp-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Cards ────────────────────────────────────────────────────────────────── */
.cp-card {
  background: var(--cp-white);
  border-radius: var(--cp-radius);
  box-shadow: var(--cp-shadow-sm);
  padding: 24px;
  border: 1px solid var(--cp-border);
}

.cp-card--gradient {
  background: var(--text-primary);
  border: none;
}

/* Card title with left accent bar */
.cp-card__title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  color: var(--cp-text);
  margin-bottom: 13px;
  padding-left: 12px;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.cp-card__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  border-radius: 9999px;
}

.cp-card__title--blue::before {
  background: linear-gradient(180deg, #ff00b8 0%, #1500c0 100%);
}

.cp-card__title--purple::before {
  background: linear-gradient(180deg, #ff00b8 0%, #1500c0 100%);
}

.cp-card__title--green::before {
  background: var(--cp-green);
}

.cp-card__title--white {
  color: #fff;
}

.cp-card__title--white::before {
  background: rgba(255, 255, 255, 0.5);
}

/* ── About ────────────────────────────────────────────────────────────────── */
.cp-about__desc-card {
  background: #f9fafb;
  border: 1px solid var(--cp-border-light);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 14px;
}

.cp-about__desc-header {
  display: block;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--cp-text-muted);
  line-height: 16px;
  margin-bottom: 5.6px;
}

.cp-about__desc-card p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 14px;
  line-height: 22.75px;
  color: var(--cp-text-mid);
  margin: 0;
}

.cp-about__section-label {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 12px;
  font-weight: 600;
  color: var(--cp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0%;
  margin: 14px 0 6px;
}

.cp-about__section-label--sub {
  margin-top: 4px;
}

.cp-about__row {
  display: flex;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--cp-border-light);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 14px;
  line-height: 1.5;
}

.cp-about__row strong {
  width: 160px;
  flex-shrink: 0;
  color: var(--cp-text);
  font-weight: 600;
}

.cp-about__row span {
  color: var(--cp-text-mid);
}

.cp-about__body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 14px;
  line-height: 1.7;
  color: var(--cp-text-mid);
  margin: 10px 0 0;
}

/* ── Tabs ─────────────────────────────────────────────────────────────────── */
.cp-tabs {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  background: #f5f5f5;
  width: fit-content;
  border-radius: 8px;
  padding: 4px;
  height: 36px;
}

.cp-tab {
  padding: 4.8px 12px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  color: var(--cp-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.15s background 0.15s;
}

.cp-tab--active {
  color: var(--cp-text);
  background-color: #ffffff;
}

.cp-tab:hover {
  color: var(--cp-text);
  background-color: transparent;
}

.cp-tab:focus {
  color: var(--cp-text);
  background-color: #ffffff;
}

.cp-tab-panel {
  display: none;
}

.cp-tab-panel--active {
  display: block;
}

/* ── Document grid ────────────────────────────────────────────────────────── */
.cp-doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.cp-doc-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13.45px;
  border-radius: 12px;
  border: 1px solid var(--cp-border);
  cursor: pointer;
  background: var(--cp-white);
  box-shadow: var(--cp-shadow-sm);
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  overflow: hidden;
  min-width: 0;
}

.cp-doc-card:hover {
  border-color: var(--cp-sky);
  box-shadow: var(--cp-shadow-md);
}

.cp-doc-card--active {
  border-color: var(--cp-sky) !important;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1) !important;
}

.cp-doc-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cp-doc-card__icon--red {
  background: #fee2e2;
  color: #dc2626;
}

.cp-doc-card__icon--orange {
  background: #ffedd5;
  color: #ea580c;
}

.cp-doc-card__icon--purple {
  background: #ede9fe;
  color: #7c3aed;
}

.cp-doc-card__icon--blue {
  background: var(--cp-blue-light);
  color: var(--cp-blue);
}

.cp-doc-card__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6.8px;
}

.cp-doc-card__title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--cp-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  max-width: 100%;
}

.cp-doc-card__row2 {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.cp-doc-card__meta {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: var(--cp-text-muted);
}

.cp-doc-card__view {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cp-text-muted);
  padding: 4px;
  border-radius: 4px;
  display: flex;
  flex-shrink: 0;
  transition: color 0.15s;
}

.cp-doc-card__view:hover {
  color: var(--cp-blue);
}

/* Toggle active/inactive icons */
.cp-doc-card__view svg:nth-child(1) {
  display: block;
}

.cp-doc-card__view svg:nth-child(2) {
  display: none;
}

.cp-doc-card--active .cp-doc-card__view svg:nth-child(1) {
  display: none;
}

.cp-doc-card--active .cp-doc-card__view svg:nth-child(2) {
  display: block;
}

/* ── Badges ───────────────────────────────────────────────────────────────── */
.cp-badge {
  display: inline-block;
  padding: 2.8px 10px;
  border-radius: 6px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  width: fit-content;
  white-space: nowrap;
}

.cp-badge--blue {
  background: var(--cp-blue);
  color: #fff;
}

.cp-badge--sky {
  background: var(--cp-blue-light);
  color: var(--cp-sky-dark);
}

/* ── Document Viewer ──────────────────────────────────────────────────────── */
.cp-doc-viewer {
  display: none;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--cp-border);
}

.cp-doc-viewer--active {
  display: block;
}

.cp-doc-viewer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background: #f9fafb;
  border-bottom: 1px solid var(--cp-border);
  gap: 10px;
  min-height: 40px;
}

.cp-doc-viewer__bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--cp-text);
  overflow: hidden;
}

.cp-doc-viewer__name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}

.cp-doc-viewer__bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cp-doc-viewer__open {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 12px;
  line-height: 16px;
  color: #0284c7;
  text-decoration: none;
  font-weight: 400;
  white-space: nowrap;
}

.cp-doc-viewer__open:hover {
  text-decoration: underline;
}

.cp-doc-viewer__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cp-text-muted);
  padding: 0px;
  display: flex;
  align-items: center;
}

.cp-doc-viewer__close:hover {
  color: var(--cp-text);
}

/* Frame wrap */
.cp-doc-viewer__frame-wrap {
  position: relative;
  width: 100%;
  /* Match spec: 806.4 × 526.4 ratio → height based on container */
  height: 526px;
  background: #1e293b;
}

/* Loading overlay */
.cp-doc-viewer__loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #1e293b;
  color: #94a3b8;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 13px;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cp-doc-viewer__loading.cp-hidden {
  opacity: 0;
}

@keyframes cp-spin {
  to {
    transform: rotate(360deg);
  }
}

.cp-spin {
  animation: cp-spin 0.8s linear infinite;
  transform-origin: center;
}

/* Both iframes share position */
.cp-doc-viewer__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: none;
}

.cp-doc-viewer__iframe--active {
  display: block;
}

/* ── Video grid ───────────────────────────────────────────────────────────── */
.cp-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px 16px;
}

.cp-video-card {
  min-width: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--cp-border);
  background: var(--cp-white);
  cursor: pointer;
  transition: box-shadow 0.15s;
}

.cp-video-card:hover {
  box-shadow: var(--cp-shadow-md);
}

.cp-video-card__thumb {
  position: relative;
  padding-top: 56.25%;
  background: #334155;
  overflow: hidden;
}

.cp-video-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cp-video-card__thumb .cp-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
}

.cp-video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  transition:
    background 0.15s,
    transform 0.15s;
  z-index: 2;
}

.cp-video-card__play:hover {
  transform: translate(-50%, -50%) scale(1.02);
}

.cp-video-card__info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cp-video-card__title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #0f172a;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.cp-video-card__views {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #64748b;
}

/* ── Looking For ──────────────────────────────────────────────────────────── */
.cp-looking-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.cp-section-label {
  display: block;
  font-size: 12px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #9ca3af;
  line-height: 16px;
  margin-bottom: 5.6px;
}

.cp-looking-details {
  background: #f9fafb;
  border: 1px solid var(--cp-border-light);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 14px;
}

.cp-looking-details p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 14px;
  color: #4b5563;
  line-height: 22.75px;
  margin: 0;
}

/* ── Financials ───────────────────────────────────────────────────────────── */
.cp-financials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cp-financials__item {
  background: #f3f7fb;
  border: 1px solid #e0f2fe;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cp-financials__label {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 12px;
  color: #0082f7;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.3px;
}

.cp-financials__value {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 12px;
  line-height: 16px;
  color: var(--text-primary);
  font-weight: 600;
}

/* ── Get in Touch ─────────────────────────────────────────────────────────── */
.cp-card-get-in-touch__title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 13px;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.cp-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.cp-contact-item {
  background: #ffffff26;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: background 0.15s;
}

.cp-contact-item:hover {
  background: rgba(255, 255, 255, 0.25);
}

.cp-contact-item__icon {
  display: flex;
}

.cp-contact-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cp-contact-item__label {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 11px;
  font-weight: 400;
  color: #ffffffb2;
  line-height: 16px;
}

.cp-contact-item__value {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  line-height: 14px;
  word-break: break-all;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .cp-wrapper {
    flex-direction: column;
    padding: 16px;
  }

  .cp-sidebar {
    width: 100%;
    position: static;
  }

  .cp-sidebar__actions {
    flex-direction: row;
  }

  .cp-financials {
    grid-template-columns: repeat(2, 1fr);
  }

  .cp-doc-viewer__frame-wrap {
    height: 420px;
  }
}

@media (max-width: 600px) {
  .cp-doc-grid {
    grid-template-columns: 1fr;
  }

  .cp-video-grid {
    grid-template-columns: 1fr;
  }

  .cp-contact-grid {
    grid-template-columns: 1fr;
  }

  .cp-financials {
    grid-template-columns: 1fr;
  }

  .cp-doc-viewer__frame-wrap {
    height: 320px;
  }

  .cp-about__row {
    flex-direction: column;
    gap: 2px;
  }

  .cp-about__row strong {
    width: auto;
  }
}

.cd-badge-gft {
  background: #00a3e0;
  border-color: #00a3e0;
  color: #ffffff;
}
