/*<meta conditions="Conditions.DoNotImport" />*/

/*==Home Page General Styles==*/

body
{
	font-family: 'Roboto Light', 'Open Sans', Arial, sans-serif;
	background-repeat: no-repeat;
	background-attachment: fixed;
	line-height: normal;
	color: #282828;
	font-size: 16px;
}

.center
{
	position: relative;
	margin-right: auto;
	margin-left: auto;
	float: none !important;
	text-align: center;
}

.off-canvas-content .main-section > .outer-row
{
	max-width: 100%;
	padding: 0;
}

.body-container
{
	overflow-x: hidden;
	padding: 25px 0 0;
}

#mc-main-content
{
	margin: 0;
}

p
{
	color: #282828;
	margin: 0;
}

/*==Responsive Header Styles==*/

#contentBody > .responsive-header
{
	background-color: transparent;
}

div.search-container
{
	margin: 0 auto;
}

.title-bar-container
{
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

/*==Landing Page Tile Layout==*/

.home-tiles-list
{
	max-width: 1200px;
	margin: 40px auto 0;
	padding: 0 24px 30px;
	display: grid;
	grid-template-columns: repeat(2, minmax(500px, 1fr));
	gap: 16px 20px;
	box-sizing: border-box;
}

a.product-tile
{
	display: flex;
	align-items: center;
	min-height: 100px;
	padding: 16px 22px;
	background: #ffffff;
	border: 1px solid #dcdcdc;
	border-radius: 6px;
	text-decoration: none;
	color: #282828;
	box-shadow: none;
	box-sizing: border-box;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

a.product-tile:hover
{
	border-color: #ce0e2d;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
	transform: translateY(-3px) scale(1.02);
	color: #282828;
}

.product-tile-icon
{
	flex: 0 0 96px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.product-tile-icon img
{
	max-width: 72px;
	max-height: 72px;
	width: auto;
	height: auto;
	display: block;
}

.product-tile-text
{
	flex: 1 1 auto;
	min-width: 0;
	max-width: 100%;
}

p.tile-title
{
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 6px;
	color: #282828;
}

p.tile-content
{
	font-size: 15px;
	line-height: 1.45;
	color: #666666;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Improve text wrapping */

.product-tile-text p
{
	word-wrap: break-word;
	overflow-wrap: break-word;
}

/*==Tablet==*/

@media only screen and (max-width: 1279px)
{
	.home-tiles-list
	{
		grid-template-columns: 1fr;
		max-width: 700px;
		gap: 14px;
		padding: 0 16px 24px;
	}

	a.product-tile
	{
		min-height: 96px;
		padding: 15px 18px;
	}

	.product-tile-icon
	{
		flex-basis: 84px;
		margin-right: 16px;
	}

	.product-tile-icon img
	{
		max-width: 64px;
		max-height: 64px;
	}

	p.tile-title
	{
		font-size: 18px;
	}

	p.tile-content
	{
		font-size: 14px;
		line-height: 1.4;
	}
}

/*==Mobile==*/

@media only screen and (max-width: 767px)
{
	#mc-main-content
	{
		margin: 0 1rem 0;
	}

	.home-tiles-list
	{
		grid-template-columns: 1fr;
		max-width: 100%;
		margin: 20px auto;
		padding: 0 0 20px;
		gap: 12px;
	}

	a.product-tile
	{
		padding: 14px 16px;
		min-height: 88px;
	}

	.product-tile-icon
	{
		flex: 0 0 64px;
		margin-right: 12px;
	}

	.product-tile-icon img
	{
		max-width: 48px;
		max-height: 48px;
	}

	p.tile-title
	{
		font-size: 16px;
		margin-bottom: 4px;
	}

	p.tile-content
	{
		font-size: 14px;
		line-height: 1.35;
		-webkit-line-clamp: 2;
	}
}

