@charset "utf-8";

.flat_heading
{
	position: relative;
	
	display: flex;
	flex: 1;
    justify-content: start;
    align-items: center;
	
	padding-left: 7px;
	
	width: 100%;
	height: var(--fill-flat-button-height);

	font-size: 1.5rem;
	font-weight: 400;

	color: var(--gray-800);
	background: #ffffff;
}

.flat_heading ._text {
	/*
	position: absolute;

	left: 7px;
	top: 50%;

	transform: translateY(calc(-50% + 1px));

	font-size: 1.6rem;
	*/
}


section h2 {
	display: flex;
	flex: 1;
    justify-content: space-between;
    align-items: flex-end;

	width: 100%;
	height: 38px;

	color: var(--gray-600);

	font-size: 1.5rem;

	border-bottom: 2px solid var(--gray-300);
}

section h2 p {
	margin-bottom: 0.7rem;
}

section h2 small {
	
	color: var(--gray-500);
	
	font-size: 1.2rem;
	
	margin-bottom: 0.5rem;
}




section .partition2 {
	position: relative;
	
	margin: 10px 0;
	
	height: 1rem;
	
	overflow: visible;
}

section .partition2:before {
	display: block;
	content: "";
    position: absolute;
	left: calc(var(--left-section-horz-padding) * -1);
	top: 0;
	
	width: var(--left-section-width);
	height: 100%;
	
	background: var(--gray-200);
}





