.gs-ab-conversion-bar {
	&__graph {
		--variation-width: 56px;
		display: grid;
		grid-template-columns: var(--variation-width) 1fr var(--variation-width);
		gap: 6px;
		align-items: center;
	}

	&__variation {
		&-name {
			font-weight: 600;

			&::after {
				content: ":";
				font-weight: 400;
			}
		}

		&-percentage {
			padding-left: 4px;
		}
	}

	&__bar {
		--height: 8px;
		height: var(--height);
		width: 100%;
		background: #f69;
		position: relative;
		margin-right: 4px;
		border-radius: 2px;

		&-fill {
			height: var(--height);
			position: absolute;
			left: 0;
			top: 0;
			background: #007cbb;
			border-radius: 2px;
		}
	}
}
