


		body
		{
			font-size: 100%; /* browser default = 1.0em = 16px ... all other text on homepage is EM ... 100% means full browser text size whis is changeable by user */

			font-family: Verdana, sans-serif; /* as stated here: https://www.w3schools.com/css/css_font.asp */

			margin: 0;
		}

		img
		{
			vertical-align: middle;
		}

		#gtm_logo
		{
			position: relative;
			display: flex;
			justify-content: space-between;
			width: 95%;
			margin: 7px auto 10px auto; /* top .. right .. bottom .. left */
		}

		#gtm_logo img
		{
			max-width: 65%;
		}

		figure
		{
			margin: 0;

			/* border: 1px solid blue; */
		}

		.text_container
		{
			overflow: hidden; /* required ... else the: scrolling text is still visible when past the sides of the bar */
			text-align: center;
			background-color: #376281;
		}

		.scroll_text
		{
			position: relative; /* required for ... webkit-animation */

			color: #ccc4ad;
			font-size: 10px;
			padding: 8px 12px;
			text-align: center;

			/* -webkit-animation: mymove 5s infinite; */ /* Safari 4.0 - 8.0 */
			/* animation: mymove 12s linear infinite;

			animation-direction: reverse; */
		}

		h1
		{
			color: #BD2D0C;
			font-size: 1.9em;
			margin: 0;
			margin-left: 15px;
			margin-bottom: 10px;
		}

		h2
		{
			/* font-size: 20px; */
			color: #CE660F;
			margin: 0;
			margin-left: 25px;
		}

		#top_text
		{
			position: relative;

			width: 95%;

			margin: 0 auto;

			padding: 15px;
			padding-bottom: 5px;

			font-family: arial;

			line-height: 1.3;

			border: 1px solid green;

			/* background-color: #EFF0C0; */
		}

		ul.breadcrumb
		{
			width: 95%; /* in other files ... the width isn't set here ... because breadcrumbs lives within some other DIV */

			padding: 10px 16px;

			list-style: none;
			background-color: #eee;

			border: 1px solid green;
			margin: 5px auto 6px auto; /* top .. right .. bottom .. left */
		}
		ul.breadcrumb li
		{
			display: inline;

			font-size: 15px;
		}
		ul.breadcrumb li+li:before
		{
			padding: 8px;

			color: black;

			content: "\00BB"; /* ">>" character ... (Link 1 ... from above) https://www.w3schools.com/cssref/css_entities.asp */
		}
		ul.breadcrumb li a
		{
			color: #0275d8;
			text-decoration: none;
		}
		ul.breadcrumb li a:hover
		{
			color: #F29445;
			text-decoration: underline;
		}
		ul.breadcrumb li#fixed_text
		{
			color: #74730E;
		}

		#product_cat_block { /* width commented in ... navbar_middle_mega.css ... because it is controlled here */
			width: 95%;
		}

		#navbar_top_inner { /* width commented in ... navbar_top_fixed.css ... because it is controlled here */
			width: 95%;
		}

		#slide_divs_container
		{
			width: 100%;

				/* border: 1px solid green;	*/

			overflow: hidden;

			position: relative;

			margin: 0 auto;

			z-index: 40;
		}

		.slide_div
		{
			position: absolute; /* this is essential of course */
		}

		.dot_padding
		{
			width: 100%;

			display: flex;
			justify-content: center;

			position: relative;

			margin: 0 auto;
			padding: 5px;

			background-color: #EFF0C0;

			/* border: 1px solid orange; */

			z-index: 40;
		}

		.dot
		{
			cursor: pointer;

			height: 15px;
			width: 15px;

			margin: 0 4px;

			margin-top: 3px;

			background-color: #B6BAB9;

			/* border: 1px solid orange; */

			border-radius: 50%;

			transition: background-color 0.75s ease;
		}

		.dot:hover
		{
			background-color: #E3B067;
		}

		.active
		{
			background-color: #0A956E
		}

		.play_banner, .pause_banner
		{
			cursor: pointer;

			font-size: 11px;

			margin-left: 15px;
			margin-right: 15px;

			padding: 3px 5px 3px 5px; /* top .. right .. bottom .. left */

			color: white;
			background-color: green;

			/* border: 1px solid orange; */ /* border-radius: 50%; */

			transition: background-color 0.6s ease;
		}

		.pause_banner
		{
			background-color: #C15A58;
		}

		.play_banner:hover
		{
			color: black;
			background-color: #DDF9F2; /* light green */
		}

		.pause_banner:hover
		{
			color: black;
			background-color: #F0D0D7; /* light red */
		}

		/* Fading animation */

		/*@-webkit-keyframes fade_in {
			from {opacity: 0.2}
			to {opacity: 1}
		}*/

		@keyframes fade_in
		{
			from { opacity: 0 }
			to { opacity: 1 }
		}

		.fade_in
		{
			/*-webkit-animation-name: fade_in;
			-webkit-animation-duration: 3.0s;*/

			animation-name: fade_in;
			animation-duration: 3.0s;
		}

		@media only screen and (min-width: 495px)
		{
			ul.breadcrumb li
			{
				font-size: 16px;
			}

			.scroll_text
			{
				font-size: 13px;
			}
		}

		@media only screen and (min-width: 1200px)
		{
			ul.breadcrumb li
			{
				font-size: 18px;
			}

			.scroll_text
			{
				font-size: 16px;
			}
		}

		@media only screen and (min-width: 1600px)
		{ /* Bootstrap breakpoints: (down page a bit) https://getflywheel.com/layout/css-breakpoints-responsive-design-how-to/ */

			#gtm_logo, #slide_divs_container, .dot_padding, #product_cat_block, #navbar_top_inner, ul.breadcrumb, #footer_inner, #top_text
			{
				/* .product_cat_block ... is in ... navbar_product_cat.css ... which is set to different width for ... product_detail_page.css */

				width: 70%;
			}

			#gtm_logo
			{
				/*margin-top: 50px;*/ /* when top navbar = fixed this is needed ... but mobile = relative so initially set to: 0 further up */
			}
		}
