/* css for the website sales tools content */

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
/* iOS BLUE LINKS */
a[x-apple-data-detectors] {
	color: inherit !important;
	text-decoration: none !important;
	font-size: inherit !important;
	font-family: inherit !important;
	font-weight: inherit !important;
	line-height: inherit !important;
}

/* For Collapsable section */
.st-input {
	display: none;
	visibility: hidden;
}
.st-label {
	display: block;
	padding: 0.5em;
	text-align: left;
	font-family: "Open Sans", Arial;
	font-size: 30px;
	color: #666;
}

.st-label:hover {
	color: #000;
}

.st-label::before {
	font-family: "Material Icons";
	font-weight: bold;
	font-size: 30px;
	content: "arrow_forward";
	vertical-align: text-top;
	display: inline-block;
}

#expand {
	height: 0px;
	overflow: hidden;
	transition: height 0.5s;
	color: #FFF;
}
section {
	padding: 0 20px;
}
#toggleVideoSection:checked ~ #expand {
	height: auto;
}
#toggleVideoSection:checked ~ .st-label::before {
	content: "arrow_downward";
}
#togglePptSection:checked ~ #expand {
	height: auto;
}
#togglePptSection:checked ~ .st-label::before {
	content: "arrow_downward";
}
#togglePdfSection:checked ~ #expand {
	height: auto;
}
#togglePdfSection:checked ~ .st-label::before {
	content: "arrow_downward";
}

/* MOBILE STYLES */
@media screen and (max-width: 768px) {
	.img-max {
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
	}
	
	.max-width {
		max-width: 100% !important;
	}
	
	.mobile-wrapper {
		width: 85% !important;
		max-width: 85% !important;
	}
	
	.mobile-padding {
		padding-left: 5% !important;
		padding-right: 5% !important;
	}
}
@media all and (min-width: 800px) {
	.vHeight {
		min-height: 500px;
	}
}
@media all and (max-width: 799px) {
	.vHeight {
		min-height: 400px;
	}
}
@media all and (max-width: 600px) {
	.vHeight {
		min-height: 200px;
	}
}

/* ANDROID CENTER FIX */
div[style*="margin: 16px 0;"] {
	margin: 0 !important;
}