:root { /* CSS variables declared in the global scope */
  --col-white: #ffffff;
  --col-greyscale90: #e6e6e6;
  --col-greyscale80: #cccccc;
  --col-greyscale60: #999999; 
  --col-greyscale50: #7f7f7f;
  --col-greyscale40: #666666;
  --col-greyscale20: #333333;
  --col-greyscale10: #191919;
  --col-black: #000000;
  --col-magenta: #be0045;
}

/* Vertical line */
.vl {
	border-left: 2px solid var(--col-greyscale40);
	height: 70px;
	position: absolute;
	left: 50%;
	margin-left: -1px;
	top: 0;
}
