.two-tone-info-box {
	display: flex;
	align-items: stretch;
	width: 100%;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.4;
}

.two-tone-info-box + .two-tone-info-box{
	margin-top: 3px;
}

.two-tone-info-box__left {
	background-color: #262626;
	color: #fff;
	padding: 1.25rem 0;
	min-width: 300px;
	max-width: 300px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.two-tone-info-box__right {
	background-color: #fff;
	color: #000;
	padding: 0.75rem 1.25rem;
	flex: 1;
	display: flex;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.two-tone-info-box {
		flex-direction: column;
	}
	.two-tone-info-box__left {
		max-width: 100%;
	}
	.two-tone-info-box__left,
	.two-tone-info-box__right {
		width: 100%;
		text-align: center;
	}
}