.kalk_values_row.step_2,
.kalk_values_row.step_3,
.kalk_values_row.step_4,
.kalk_values_row.step_5 {
	display: none;
}
.kalk_values_row.step_2.show,
.kalk_values_row.step_3.show,
.kalk_values_row.step_4.show,
.kalk_values_row.step_5.show {
	display: block;
}
.kalk_values_row.step_3 .kalk_input {
	display: none;
}
.kalk_values_row.step_3.months_list .months_list {
	display: block;
}
.kalk_values_row.step_3.calendar .calendar {
	display: block;
}
.calk_btn {
	padding: 5px;
	border: 1px solid #8467a9;
	border-radius: 4px;
	background: #cdb6e3;
	background: -moz-linear-gradient(top, #cdb6e3 0%, #a78fbd 7%, #735aa7 100%);
	background: -webkit-linear-gradient(top, #cdb6e3 0%,#a78fbd 7%,#735aa7 100%);
	background: linear-gradient(to bottom, #cdb6e3 0%,#a78fbd 7%, #735aa7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cdb6e3', endColorstr='#735aa7',GradientType=0 );
	color: #FFFFFF;
	float: left;
	margin-right: 20px;
	cursor: pointer;
}
/*  ERROR CONTAINER  */
.error_container {
	width: 100%;
	display: none;
	padding: 15px;
	box-sizing: border-box;
	background: #c00;
	color: #fff;
	margin: 0 0 20px 0;
}
.error_container.show {
	display: block;
}


	/*  RESULT CONTAINER  */
.calc_result {
	display: none;
}
.calc_result.show {
	display: block;
	padding: 25px 0 0 0;
	box-sizing: border-box;
}
.calc_result p {
	font-family: 'Courier New', Monospace;
}
.result_table {
	margin: 10px 0 0 0;
	display: flex;
	flex-direction: column;
	font-family: 'Courier New', Monospace;
}
.result_table .result_row {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	margin: 5px 0;
}
.result_row:last-child {
	margin-bottom: 25px;
}
.result_table .result_row .string_num {
	width: 40px;
}
.result_table .date_row {
	display: flex;
}
.result_table .date_cell {
	border-top:1px solid #000;
	border-bottom:1px solid #000;
	width: 17px;
	height: 30px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;

}
.result_table .date_day .date_cell:first-child {
	border-left: 1px solid #000;
	border-right: 1px solid #000;
}
.result_table .date_day .date_cell:last-child {
	border-right: 1px solid #000;
}

.result_table .date_month .date_cell:first-child {
	border-left: 1px solid #000;
	border-right: 1px solid #000;
}
.result_table .date_month .date_cell:last-child {
	border-right: 1px solid #000;
}
.result_table .date_year .date_cell:nth-child(-n+3) {
	border-left: 1px solid #000;
}
.result_table .date_year .date_cell:nth-child(4) {
	border-left: 1px solid #000;
	border-right: 1px solid #000;
}
.result_table .separator {
	margin: 0 5px 0 1px;
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.deducation_codes {
	list-style: none;
	padding: 0 !important;
	margin: 15px 0 0 0 !important;
	float: left;
}
.deducation_codes .hidden {
	display: none;
}

/*  ACCESS DENIED  */
.denied_message_container {
	position: relative;
	float: left;
	padding: 20px 30px 30px 20px;
	box-sizing: border-box;
	font-size: 16px;
	line-height: 22px;
	width: 100%;
	background: #fff;
	margin: 25px 0 0 0;
	border: 1px solid #000;
	display: none;
}
.denied_message_container.open {
	display: block;
}
.lock_icon {
	width: 19px;
	height: 27px;
	position: absolute;
	top: 27px;
	left: 18px;
}
.denied_message_container > p {
	width: 100%;
	max-width: 615px;
}
.auth_list2 {
	width: 100%;
	max-width: 615px;
	display: flex;
	flex-direction: row;
}
.auth_list2 li {
	width: 30%;
	margin: 0 25px 0 0;
}
.auth_list2 li.border-right {
	border-right: 1px solid #000;
}
.auth_list2 .auth_row {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 5px;
	box-sizing: border-box;
}
.auth_list2 .auth_row .auth_lnk {
	color: #fff;
	text-decoration: none;
	background: #5d337b;
	padding: 1px 3px;
	box-sizing: border-box;
	cursor: pointer;
	font-size: 13px;
	margin-bottom: 10px;
}
.auth_list2 .auth_row .subscribe_lnk {
	color: #fff;
	text-decoration: none;
	background: #c41417;
	padding: 1px 3px;
	box-sizing: border-box;
	cursor: pointer;
	font-size: 13px;
}
.auth_list2 .auth_row .demo_lnk {
	color: #fff;
	text-decoration: none;
	background: #05ad02;
	padding: 1px 3px;
	box-sizing: border-box;
	cursor: pointer;
	font-size: 13px;
}


@media screen and (max-width: 800px) {
	.auth_list2 {
		flex-direction: column;
	}
	.auth_list2 li {
		width: 100%;
	}
	.auth_list2 li:nth-child(1) {
		border: 0;
	}
	.auth_list2 li:nth-child(2) {
		border: 0;
	}
}

@media screen and (max-width: 1024px) {
	#article_content {
		padding: 0;
	}
	#article_image {
		position: static;
		margin: 20px 0;
	}
	.article_lead {
		min-height: 0;
	}
}