.article-list h2 {
    font-family: "F Grotesk", "FGrotesk-Bold";
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 19px;
    font-weight: 600;
    color: #31312f;
    padding: 0 0 0 16px;
    margin: 0;
    display: inline-block;
}

.main-dashboard {
	padding-left: 109px;
	padding-right: 40px;
	padding-top: 16px;
	width: 100%;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	&.hidden {
		display: none;
	}
	&.visible {
		display: block;
	}
	.results-header {
		margin: 0 0 16px;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		span {
			margin-right: 16px;
			i {
				line-height: .8;
			}
		}
		.status {
			display: flex;
			align-items: flex-end;
			font-size: 24px;
		}
		.filters {
			display: flex;
			justify-content: flex-end;
			input[type="date"] {
				height: 29px;
				background-color: $c-white;
				color: $warm-grey-600;
				width: 160px;
				&::-webkit-calendar-picker-indicator {
					color: $warm-grey-600;
				}
			}
			input[type="date"]::-webkit-calendar-picker-indicator {
				opacity: .4;
			}
			input[type="date"]::-webkit-calendar-picker-indicator:hover {
				cursor: pointer;
				opacity: .8;
			}
			button {
				width: 60px;
			}
			.button-group-container {
				margin-left: 24px;
			}
			.view {
				padding-right: 24px;
				border-right: 1px solid $warm-grey-500;
			}
		}
	}
	.overview-grid {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr 1.2fr 80px;
		gap: 2px;
		grid-template-areas: ". . . . . .";
		box-shadow: $elevation-01;
		border-radius: 4px;
		overflow: hidden;
	}
	.overview {
		margin-bottom: 32px;
		cursor: pointer;
		border: 2px solid $c-white;
		transition: all .2s ease-in-out;
		&:hover {
			border: 2px solid $sky-blue-400;
		}
		.col {
			background-color: #FFF;
			position: relative;
			display: flex;
			flex-direction: column;
			justify-content: center;
			header {
				h3 {
					text-align: center;
					margin: 0;
					padding: 4px;
					line-height: 1;
					@include headline-5;
				}
				.sub-col-titles {
					display: flex;
					justify-content: space-around;
					background-color: $warm-grey-400;
					h4 {
						width: 50%;
						text-align: center;
						margin: 0;
						padding: 2px;
						line-height: 1;
						@include headline-5;
						font-weight: normal;
						font-size: 13px;
						line-height: 1;
					}
				}
			}
			&.time {
				justify-content: space-between;
				h3 {
					white-space: nowrap;
					overflow: hidden;
					text-overflow: ellipsis;
				}
				.start-end {
					color: $warm-grey-800;
				}
			}
			&.brands {
				img {
					height: 34px;
				}
				.total {
					@include headline-5;
				}
			}
			&.result {
				i {
					font-size: 32px;
					line-height: 0.8;
				}
			}
			.row {
				display: flex;
				justify-content: space-around;
				align-items: center;
				font-size: 24px;
				padding: 8px;
				&.total {
					border-top: 2px solid $warm-grey-500;
				}
				.control-r,
				.test-r {
					padding: 0 8px;
				}
				.control-r {
					color: $warm-grey-600;
				}
				.test-r {
					color: $warm-grey-800;
				}
			}
		}
	}
	.results-grid {
		display: grid;
		grid-template-columns: 80px auto auto auto 80px 80px;
		gap: 2px;
		grid-template-areas: ". . . . . .";
		box-shadow: $elevation-01;
		border-radius: 4px;
		overflow: hidden;
	}
	.results {
		.col {
			font-size: 32px;
			background-color: #FFF;
			position: relative;
			.brand-selector {
				width: 180px;
				padding: 32px 8px 16px;
				background-color: $c-white;
				position: absolute;
				box-shadow: $elevation-01;
				border-radius: 4px;
				transition: all .25s ease-in-out;
				ul {
					li {
						padding: 4px 0;
					}
				}
				&.hidden {
					opacity: 0;
					top: -220px;
				}
				&.visible {
					opacity: 1;
					top: 0;
					z-index: 2;
				}
			}
			.info, .edit, .close {
				font-size: 14px;
				position: absolute;
				padding: 4px 8px;
				right: 0;
				top: 0;
				color: $warm-grey-600;
			}
			.edit, .close {
				cursor: pointer;
				&:hover {
					color: $soft-black;
				}
			}
			&.brands .edit, &.brands .close {
				right: auto;
				left: 0;
			}
			header {
				h3 {
					text-align: center;
					margin: 0;
					padding: 16px 4px;
					line-height: 1;
					@include headline-4;
				}
				.sub-col-titles {
					display: flex;
					justify-content: space-around;
					background-color: $warm-grey-400;
					h4 {
						width: 50%;
						text-align: center;
						margin: 0;
						padding: 2px;
						line-height: 1;
						@include headline-5;
						font-weight: normal;
						line-height: 1;
					}
				}
			}
			&.brands {
				.brand-logo {
					padding: 0 8px;
				}
				img {
					height: 50px;
					margin: auto;
				}
				.total {
					@include headline-4;
				}
			}
			&.ss {
				&.col, .row {
					justify-content: center;
				}
				.yes, .no {
					text-transform: uppercase;
					span {
						font-size: 24px;
						padding-left: 4px;
					}
				}
				.yes {
					color: $sea-green-700;
				}
				.no {
					color: $letterpress-red-900;
				}
			}
			&.result {
				i {
					line-height: 0.8;
				}
			}
			.row {
				display: flex;
				justify-content: space-around;
				align-items: center;
				height: 80px;
				border-top: 1px solid $warm-grey-300;
				&.total {
					border-top: 2px solid $warm-grey-400;
				}
				.control-r,
				.test-r {
					padding: 0 8px;
				}
				.control-r {
					color: $warm-grey-600;
				}
				.test-r {
					color: $warm-grey-800;
				}
			}
		}
	}
	&.graph {
		.results-grid {
			grid-template-columns: 80px 1fr 1fr 1fr 80px 80px;
		}
		.col {
			&.ss {
				min-width: auto;
			}
			.row {
				padding: 8px 0;
			}
			h4 {
				display: none;
			}
		}
	}
}


canvas {
	height: 201px;
	width: 100% !important;
}
.yes i {
	color: $sea-green-700;
}
.no i {
	color: $letterpress-red-700;
}
.meh i {
	color: $sand-yellow-700;
}
.pulsate {
    -webkit-animation: pulsate 2s ease-out;
    -webkit-animation-iteration-count: infinite; 
    opacity: 0.4;
}
@-webkit-keyframes pulsate {
    0% { 
        opacity: 0.4;
    }
    50% { 
        opacity: 1.0;
    }
    100% { 
        opacity: 0.4;
    }
}