:root {
  --primarycolor: #23282d;
  --secondarycolor: #36393B;
  --lightgraycolor: #425357;
  --whitecolor: #fff;
  --headingbg: #dddddd;
  --hitgraycolor: #A9A9A9;
  --watercolor: #EBF2FF;
	--defaultanchor: #0073aa;
}
/**
 * Article Container
 */

 .article-container {
	padding: 2rem;
}

/**
 * Article Block
 */

.article-block {
	text-align: center;
}

.article-block .entry-content > p {
	color: var(--secondarycolor);
}

/**
 * Tabs Container
 */

.cns-tabs-container {
	padding: 2rem;
}

/**
 * Tabs
 */

.cns-tabs {
	display: flex;
}

.cns-tabs > ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 15%;
}

.cns-tabs .cns-tab-body h2 {
  margin-top: 0;
}

.cns-tabs > ul li {
	display: block;
  margin-bottom: 0;
}

.cns-tabs > ul li:not(:last-child) {
	border-bottom: 1px solid var(--secondarycolor);
}

.cns-tabs > ul li a,
.cns-tabs > ul li a:visited {
	display: flex;
	border-bottom: none;
	text-decoration: none;
	background-color: var(--primarycolor);
	color: var(--hitgraycolor);
	padding: 1rem 0.5rem;
	transition: all 0.2s ease-in-out;
	word-wrap: break-word;
	align-items: center;
}

.cns-tabs > ul li a:hover,
.cns-tabs > ul li a:focus,
.cns-tabs > ul li a:active {
	border-bottom: none;
	outline: 0;
	border-left: 5px solid var(--watercolor);
}

.cns-tabs > ul li a.active {
	background-color: var(--defaultanchor);
	color: var(--whitecolor);
	border-left: 5px solid var(--watercolor);
}

.cns-tabs > ul li a:hover:not(.active) {
	color: #0073aa;;
}

.cns-tabs > ul li a > span {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cns-tabs > ul li a > span.tab-label {
	display: none;
}

.cns-tabs > ul li a > i {
	width: 20%;
}

.cns-tabs section {
	width: 85%;
	background-color: var(--whitecolor);
	padding: 1rem;
	display: none;
	word-wrap: break-word;
	border-bottom: 6px solid var(--primarycolor);
}

.cns-tabs section > * {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.2s, transform 0.2s;
}

.cns-tabs section > *:nth-child(1) {
	transition-delay: 0.2s;
}

.cns-tabs section > *:nth-child(2) {
	transition-delay: 0.3s;
}

.cns-tabs section > *:nth-child(3) {
	transition-delay: 0.4s;
}

.cns-tabs section > *:nth-child(4) {
	transition-delay: 0.5s;
}

.cns-tabs section > *:nth-child(5) {
	transition-delay: 0.6s;
}

.cns-tabs section > *:nth-child(6) {
	transition-delay: 0.7s;
}

.cns-tabs section > *:nth-child(7) {
	transition-delay: 0.8s;
}

.cns-tabs section > *:nth-child(8) {
	transition-delay: 0.9s;
}

.cns-tabs section > *:nth-child(9) {
	transition-delay: 1s;
}

.cns-tabs section > *:nth-child(10) {

	transition-delay: 1.1s;

}

.cns-tabs section > *:nth-child(11) {
	transition-delay: 1.2s;
}

.cns-tabs section > *:nth-child(12) {
	transition-delay: 1.3s;
}

.cns-tabs section > *:nth-child(13) {

	transition-delay: 1.4s;

}

.cns-tabs section > *:nth-child(14) {
	transition-delay: 1.5s;
}

.cns-tabs section > *:nth-child(15) {

	transition-delay: 1.6s;

}

.cns-tabs section > *:nth-child(16) {
	transition-delay: 1.7s;
}

.cns-tabs section > *:nth-child(17) {
	transition-delay: 1.8s;
}

.cns-tabs section > *:nth-child(18) {
	transition-delay: 1.9s;
}

.cns-tabs section > *:nth-child(19) {
	transition-delay: 2s;
}

.cns-tabs section > *:nth-child(20) {
	transition-delay: 2.1s;
}

.cns-tabs section.active {
	display: block;
}

.cns-tabs section.active-content > * {
	opacity: 1;
	transform: translateY(0);
}

.submitbtn {
	margin-left: 270px;
}

@media (min-width: 576px) {

	.cns-tabs > ul {
		width: 250px;
	}

	.cns-tabs > ul li a {
		flex-wrap: wrap;
	}

	.cns-tabs > ul li a > span {
		width: 100%;
	}

	.cns-tabs > ul li a > span.tab-label {
		width: 80%;
		display: block;
		margin-top: 0.2rem;
	}

	.cns-tabs div.section-wrapper {
		width: calc(100% - 250px);
		padding: 2rem 2rem;
	}
}

@media (min-width: 768px) {
	body {
		font-size: 1.125rem;
	}
	.cns-tabs-container {
		padding: 0;
	}
}

@media (min-width: 992px) {
	.cns-tabs {
		width: 100%;
	}
}
