﻿body {
	color: #121212;
	font-family: Assistant, Arial,Helvetica,sans-serif;
}
/* assistant-regular - latin */
@font-face {
	font-display: swap;
	font-family: 'Assistant';
	font-style: normal;
	font-weight: 400;
	src: url('/fonts/assistant-v18-latin-regular.woff2') format('woff2'), url('/fonts/assistant-v18-latin-regular.woff') format('woff');
}

@media (min-width: 510px) { /* phone vs desktop */
	.burgmenopen {
		display: none;
	}
}

@media (max-width: 509px) { /* phone vs desktop */
	#divLrgMenu {
		display: none;
	}
}

/* Big Cat menu */
.dropdown {
	display: inline-block;
	position: relative;
	padding-right: 8px;
}

	.dropdown button {
		border: 0;
		background-color: white;
	}

		.dropdown button:hover {
			text-decoration: underline;
			cursor: pointer;
		}

	.dropdown, .dropdown button {
		font-family: inherit;
		font-size: 14px;
	}

.dropdown-content {
	display: none;
	position: absolute;
	/* width: 100%;  limits to width of button */
	overflow: auto;
	z-index: 3;
	background-color: #ffffff;
	box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.4);
	border-radius: 5px;
	padding-top: 5px;
	padding-bottom: 10px;
}

	.dropdown-content a:hover {
		color: #FFFFFF;
		background-color: #00A4BD;
		text-decoration: none;
	}

	.dropdown-content a {
		display: block;
		color: #000000;
		padding: 7px 15px;
		text-decoration: none;
	}


/* Burger menu on left for phone */
:root {
	--navburg-hideleft:-340px; /* > width */
}
#navBurgBack {
	position: absolute;
	display: none;
	left: var(--navburg-hideleft);
	width: 330px;
	height: 410px;
	overflow-x: hidden;
	z-index: 20; /* > slides */
	background: #f4f4f4;
}

.burgermenu {
	margin-top: 10px;
	position: absolute;
	background: #f1f1f1;
	height: 400px; /*back less 10*/
}

.burgmenopen, .burgmenclose {
	position: absolute;
	cursor: pointer;
	padding: 5px 5px 0 15px;
}

.burgmenclose {
	display: none
}

.burgmenwrap {
	z-index: 3;
	width: 310px;
	padding-left: 20px;
	font-size: 18px;
}

	.burgmenwrap li a {
		display: block;
		border-bottom: #dddddd 1px solid;
		padding: 15px 0 15px 15px;
	}

	.burgmenwrap a:hover {
		text-decoration: none;
	}

ul.burgermenu {
	list-style-type: none;
}

.burgmenparent {
	padding: 15px 0 15px 15px;
	display: flex;
	justify-content: space-between;
	border-bottom: #dddddd 1px solid;
	cursor: pointer;
}

	.burgmenparent:hover {
		background: #ffffff;
	}
.burgmenCurrSel {
	background-color: #e0e0e0;
}
.burgmenarrow {
	align-self: flex-end;
	margin-right: 25px;
}
.subMenuOpen {
	z-index: 5;
	transform: translateX(0);
	transition: transform 0.3s linear;
}

.subMenuClosed {
	transform: translateX(100%);
	transition: transform 0.3s linear;
}

.mnuSubMenu {
	width: 280px;
}

	.mnuSubMenu > li {
		border-bottom: #dddddd 1px solid;
	}
	.mnuSubMenu > li > a {
		padding: 15px 0 15px 15px;
		display: block; /*for padding*/
	}

.burgmenSubReturn {
	cursor: pointer;
	padding: 12px 0 12px 15px;
}

.subMenuReturnTxt {
	font-size: 14px;
}
/* Slideshow */
.container {
	position: relative;
	text-align: center;
	height: 720px;
}
#slides {
	position: absolute;
	height: 710px; /* also adj container */
	border: 1px solid grey;
	width: 100%;
	padding: 0px;
	margin: 0px;
	list-style-type: none;
}

.slide {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: -1;
	-webkit-transition: opacity 1s;
	-moz-transition: opacity 1s;
	-o-transition: opacity 1s;
	transition: opacity 1s;
	font-size: 40px;
	padding: 40px;
	box-sizing: border-box;
	background: #333;
	color: #fff;
	background-position: center;
	background-size: cover;
}

.showing {
	opacity: 1;
	z-index: 0;
}

.controls {
	display: inline-block;
	background: #fff;
	border: none;
	cursor: pointer;
	width: 25px;
	height: 30px;
	vertical-align: middle;
	font-size: 16px;
}

	.controls:hover {
		font-size: 18px;
	}



.slideshow_txtbox {
	margin: 240px auto 0 auto;
	max-width: 475px;
	z-index: 2;	position: relative; /* pos-rel needed for zindex */
	background-color: white;
	padding: 40px 35px 40px 35px;
}

#slideshow_txthead, .static_txthead {
	font-size: 24px;
	line-height: 32px;
	margin-bottom: 10px;
}

#slideshow_text, .static_text {
	font-size: 16px;
	letter-spacing: 0.6px;
	line-height: 28px;
}

.slideshow_shopbutton {
	letter-spacing: 0.8px;
	width: 120px;
	height: 36px;
	padding-top: 13px;
	margin: 15px auto 0px auto;
	background-color: blue;
}
#slideshow_shopanch:link, #slideshow_shopanch:visited {
	color: white;
}

.slbuttons {
	text-align: center;
	z-index: 8;	position: relative;
}

.slidot {
	background-color: #fff;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 1px solid black;
	padding: 0;
	margin-top: 2px;
	margin-left: 12px;
	margin-right: 12px;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
}
.dotselected {
	background-color: #000;
}
@media (min-width: 481px) and (max-width: 1024px) { /*tablet*/
	#slides {
		position: relative;
		height: 410px;
	}

	.container {
		height: 610px; /* push buttons down */
	}

	.slideshow_txtbox {
		padding: 1px 35px 30px 35px;
		margin: 0 auto 0 auto;
		/*background-color: #c0c0c0;*/
	}
}
@media (max-width: 480px) { /*mobile */
	#slides {
		position: relative;
		height: 320px;
	}

	.container {
		height: 540px; /* push buttons down */
	}

	.slideshow_txtbox {
		padding: 1px 35px 30px 35px;
		margin: 0 auto 0 auto;
		/*background-color: #c0c0c0;*/
	}
}
/* Image and cat link shop */
.catImgPair {
	display: flex;
	flex-wrap: nowrap; /* =default*/
	gap: 12px;
	margin-bottom: 12px;
}

@media (max-width: 1000px) {
	.catImgPair {
		flex-wrap: wrap; /* one pic, no pairs*/
	}
}

.catImgShop {
	background-color: #F6F6F6;
	padding: 25px;
	border-radius: 20px;
}

.statimg {
	max-width: 100%;
	width: auto;
	height: auto; /* scale down with html witdh height*/
}

/*
	@media (max-width: 480px) { /*mobile* /
	@media (min-width: 481px) and (max-width: 1024px) { /*tablet* /
	@media (min-width: 1025px) { /*desktop* /
*/
