article.campaign {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	gap: 16px;
}

article.campaign .header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

article.campaign .header .actions {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: .5rem;
}

article.campaign .header .actions button {
	width: 24px;
	height: 24px;
	aspect-ratio: 1 / 1;
	background: transparent;
	border: none !important;
	outline: none;
	color: #A8B7C0;
	padding: 0px !important;
	cursor: pointer;
}

article.campaign .header .actions button:hover {
	color: #6F8897;
}

article.campaign .header .actions button svg {
	width: 100%;
}

article.campaign .text {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 15px;
	margin-top: 10px;
}

article.campaign .text h1 {
	font-size: 18pt;
	font-weight: 500;
	color: var(--color-text-1);
	line-height: 100%;
	margin-bottom: 0px;
	white-space: nowrap;
	text-overflow: ellipsis;
}

article.campaign .infos {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	gap: 8px;
}

article.campaign .infos hr {
    margin: 0px !important;
    border-color: #E5EBEF;
    opacity: .5;
}

article.campaign .info_row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

article.campaign .info_row p.knowledge {
	font-size: 11pt;
	font-weight: 500;
	color: #3A4D56;
	margin-bottom: 0px;
}

article.campaign .info_row p.knowledge span.count {
	font-size: 10pt;
	font-weight: 400;
	color: #3A4D56;
	margin-bottom: 0px;
}

article.campaign .info_row p.log {
	font-size: 9pt;
	font-weight: 400;
	line-height: 100%;
	color: #A8B7C0;
	margin-bottom: 0px;
}

article.campaign .status {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-direction: column;
	gap: 8px;

	padding: 10px 0px;
}

article.campaign .status .header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

article.campaign .status .header p {
	font-size: 10pt;
	font-weight: 400;
	color: var(--color-text-1);
	line-height: 20px;
	margin-bottom: 0px;
}

article.campaign .status .caption {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 1rem;
}

article.campaign .status .caption .capt {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}

article.campaign .status .caption .capt .dot {
	width: 10px;
	height: 10px;
	border-radius: 10px;
}

article.campaign .status .caption .capt .dot[data-color="green"] {
	background-color: var(--color-badge-green-primary);
}

article.campaign .status .caption .capt .dot[data-color="blue"] {
	background-color: var(--color-badge-blue-primary);
}

article.campaign .status .caption .capt .dot[data-color="yellow"] {
	background-color: var(--color-badge-yellow-primary);
}

article.campaign .status .caption .capt .dot[data-color="red"] {
	background-color: var(--color-badge-red-primary);
}

article.campaign .status .caption .capt span {
	font-size: 8pt;
	font-weight: 400;
	color: var(--color-text-body);
	line-height: 100%;
}

article.campaign .status .progress_bar {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	gap: 2px;
	height: 10px;
	border-radius: 10px;
	overflow: hidden;
}

article.campaign .status .progress_bar {
	display: flex;
	width: 100%;
	contain: layout paint;
}

article.campaign .status .progress_bar .bar {
	height: 10px;
	border-radius: 10px;
	min-width: 10px;
	flex: 0 0 10px;
	animation: grow 800ms cubic-bezier(.25,.8,.25,1) forwards;
	animation-delay: var(--delay, 0ms);
	will-change: flex-basis;
}

@keyframes grow {
	to {
		flex-basis: var(--w);
	}
}

article.campaign .status .progress_bar .bar[data-color="green"] {
	background-color: var(--color-badge-green-primary);
}

article.campaign .status .progress_bar .bar[data-color="blue"] {
	background-color: var(--color-badge-blue-primary);
}

article.campaign .status .progress_bar .bar[data-color="yellow"] {
	background-color: var(--color-badge-yellow-primary);
}

article.campaign .status .progress_bar .bar[data-color="red"] {
	background-color: var(--color-badge-red-primary);
}

article.campaign .buttons {
	flex-direction: row;
}

article.campaign .buttons button:not(.icon) {
	width: 100%;
}