/* Les variables sont definies dans config-v5/style.css dans le projet "Aide En Ligne" */

/* Alert Styles */
.p_Alert, .p_Attention, .p_Warning, .p_Info, .p_Noter {
	border-radius: 8px;
	padding: 1.1250rem 1.1250rem 1.1250rem 1.1250rem;
}
.p_Alert, .p_Warning, .p_Info {
	display: grid;
	grid-template-columns: 24px 1fr;
	gap: 16px;
}
.p_Warning {
  background: var(--amber-l);
  border-color: var(--amber);
}
.p_Alert, .p_Attention {
  background: var(--coral-l);
  border-color: var(--coral);
}
.p_Info, .p_Noter {
  background: var(--blue-l);
  border-color: var(--blue);
}

.alert-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #ffffff;
  color: var(--amber-d);
  font-size: 18px;
  font-weight: 800;
}
.p_Alert .alert-icon,
.p_Attention .alert-icon {
  color: var(--coral-d);
}
.p_Info .alert-icon,
.p_Noter .alert-icon {
  color: var(--blue-d);
}

.p_Alert h2,
.p_Attention h2,
.p_Warning h2,
.p_Info h2,
.p_Noter h2 {
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--amber-d);
}
.p_Alert h2,
.p_Attention h2 {
  color: var(--coral-d);
}
.p_Info h2,
.p_Noter h2 {
  color: var(--blue-d);
}

.f_Alert,
.f_Attention,
.f_Warning,
.f_Info,
.f_Noter {
  margin: 0;
  line-height: 1.55;
  color: var(--amber) !important;
}
.f_Alert,
.f_Attention {
  color: var(--coral) !important;
}
.f_Info,
.f_Noter {
  color: var(--blue) !important;
}

.p_Alert .f_Alert,
.p_Attention .f_Attention,
.p_Warning .f_Warning,
.p_Info .f_Info,
.p_Noter .f_Noter {
  margin: 0;
  line-height: 1.55;
  color: var(--amber-d) !important;
}
.p_Alert .f_Alert,
.p_Attention .f_Attention {
  color: var(--coral-d) !important;
}
.p_Info .f_Info,
.p_Noter .f_Noter {
  color: var(--blue-d) !important;
}

/* Heading2 (Collapse) */

.p_Heading2Collapse {
    border-color: var(--teal);
    border-radius: 6px;
    display: flex;
    align-items: center;
}
.p_Heading2Collapse > .f_Heading2Collapse {
	display: block;
	flex: 1 1 auto;
}
.p_Heading2Collapse > .f_Heading2Collapse > a {
	display: block;
}