/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here... */ 

:root {
	--colt-white: #ffffff;
	--colt-green: #00d7bd;
	--colt-dark-grey: #484a47;
	--colt-black: #000000;
	--toc-col-buffer: 40px;
}

/* Temporary styles for gform button */

.gform_footer input.gform_button {
	border: 4px solid #ef476f;
	background: #ef476f;
	color: white;
	transition: all .3s;
}

.gform_footer input.gform_button:hover {
	background: white;
	color: #ef476f;
	border: 4px solid #ef476f;
}

/* Datasheet template styling */

.print-only {
	display: none;
}

@media print {
	.print-only {
		display: block;
	}
}

.datasheet-template {
	background-color: var(--colt-white);
}

.datasheet-template__wrap {
	position: relative;
	display: block;
	margin: 0 auto;
	padding: 0 1.5rem;
	max-width: 1280px;
}

.datasheet-template__main {
	display: flex;
	flex-flow: column nowrap;
	padding-top: 50px;
}

@media (min-width: 750px) {
	.datasheet-template__main {
		flex-direction: row;
	}
}

.datasheet-header {
	padding-top: 3rem;
	border-bottom: 2px solid var(--colt-green);
}

.datasheet-heading {
	font-size: 44px;
	font-weight: 400;
}

.datasheet-subheading {
	color: var(--colt-dark-grey);
	font-size: 36px;
	font-weight: 300;
	margin-top: 0;
}

.datasheet-sidebar {
	display: none;
	width: 100%;
}

.datasheet-sidebar hr {
	margin: 20px 0;
	border-color: #cccccc;
}

.datasheet-sidebar p {
	font-size: 16px;
	line-height: 24px;
	font-weight: 300;
}

@media (min-width: 850px) {
	.datasheet-sidebar {
		display: block;
		width: 350px;
	}
}

.datasheet-sidebar__content {
	top: 100px;
	position: sticky;
}

/** Table of Content (toc) */
.datasheet__toc {
	margin-bottom: 25px;
}

ul.datasheet__toc__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

ul.datasheet__toc__submenu {
	list-style: none;
	margin-top: 4px;
	padding-left: var(--toc-col-buffer);
}

.datasheet__toc__menu li, .datasheet__toc__submenu li {
	display: flex;
	align-items: flex-start;
}


.datasheet__toc__menu li span, .datasheet__toc__submenu li span {
	flex-basis: var(--toc-col-buffer);
}


.datasheet__toc__menu li a, .datasheet__toc__menu li span {
	color: var(--colt-green);
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
}

.datasheet__toc__submenu li a, .datasheet__toc__submenu li span {
	color: var(--colt-black);
	font-size: 16px;
	line-height: 27px;
	font-weight: 400;
	margin: 0;
}

/** Content */
.datasheet-content {
	width: 100%;
	max-width: 797px;
	display: block;
	margin: 0 auto;
}

.datasheet-content strong {
	color: var(--colt-black);
}

.datasheet-content h2 {
	color: var(--colt-green);
	font-size: 24px;
	line-height: 30px;
	font-weight: 600;
	margin: 30px 0px 18px 0px;
}

.datasheet-content .wp-block-columns:first-child h2 {
	margin-top: 0;
}

.datasheet-content h3 {
	color: var(--colt-black);
	font-size: 18px;
	line-height: 27px;
	font-weight: 600 !important;
	margin: 0;
}

.datasheet-content p, .datasheet-content .wp-block-list li {
	font-size: 18px;
	line-height: 27px;
	font-weight: 100;
}

.datasheet-content p {
	margin-bottom: 18px;
}

.datasheet-section {
	gap: 0;
}

.datasheet-section__number {
	font-size: 24px;
	line-height: 30px;
	font-weight: 600;
}

.datasheet-section__subnumber {
	margin-top: 0;
	font-size: 18px;
	line-height: 25px;
	font-weight: 600;
}

.datasheet-download .datasheet-download__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 20px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	color: #fff;
	border: 0;
	appearance: none;
	border-radius: 0;
	margin: 0;
	line-height: normal;
	vertical-align: top;
	transition-property: color, background;
	transition-duration: .3s;
	transform-style: ease;
	cursor: pointer;
	background-color: #ef476f;
}

@media (max-width: 781px) {
	/** Override some pesky block styling */
	.wp-block-columns {
		flex-wrap: nowrap !important
	}

	.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column.datasheet-section__column__number {
		flex: 0 0 var(--toc-col-buffer) !important;
	}
}

.datasheet-content .wp-block-columns {
	margin-bottom: 0;
}

.datasheet-content .wp-block-list {
	padding-left: 16px;
}

.datasheet-content .wp-block-list li {
	padding-left: 0.75rem;
}