
/* ********************************************************************** */
/* Garage Sale Calendar css 2018 */
/* ********************************************************************** */

h1 .PageHeading1 {
	font-family: 'Kalam';
	font-style: normal;
	font-weight: 400;
  	font-size: 1em;
	color: #000000;
	line-height: 1.25;
	letter-spacing: 0px;
	-ms-word-break: break-all;
	word-break: break-all;
	word-break: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	display: block;
	margin: -20px 0px -10px 0px;
}

h1 .PageHeading2 {
	font-family: 'Carter One';
	font-style: normal;
	font-weight: 400;
  	font-size: 1em;
	letter-spacing: 0px !important;
	line-height: 1.2;
	-ms-word-break: break-all;
	word-break: break-all;
	word-break: break-word;
	color: #ff9900;
	display: block;
}

h1 .PageHeading3 {
	font-family: 'Kalam';
	font-style: normal;
	font-weight: 400;
  	font-size: 1em;
	color: #000000;
	line-height: 1.3;
	letter-spacing: 0px;
	-ms-word-break: break-all;
	word-break: break-all;
	word-break: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	display: block;
	margin: 0px 0px -10px 0px;
}

h1 .PageHeading4, .PageHeading4Desktop {
	font-family: 'Carter One';
	font-style: normal;
	font-weight: 400;
  	font-size: 1em;
	letter-spacing: 0px !important;
	line-height: 1.2;
	-ms-word-break: break-all;
	word-break: break-all;
	word-break: break-word;
	color: #0066cc;
}

h1 .PageHeading4 {
	display: none;
}

.PageHeading4Desktop {
	display: block;
	max-width: 900px;
	margin: -30px 10px 0px 10px;
}


#PrimaryItemImage {
	max-width: 96%;
}

#ItemImageContainer {
	width: 100%;
  	margin: 10px 10px 10px 10px;
}

.ItemImageWrapper {
	max-width: 260px;
	display: inline-block;
	margin: 10px;
	vertical-align: middle;
}

.ItemImageWrapper img {
	max-width: 260px;
	vertical-align: middle;
}

.StateMapLarge {
		max-width: 160px;
		max-height: 160px;
		margin: 0px 10px 0px 10px;
}
.CategoryIconLarge {
	max-width: 200px;
	margin: 0px 10px 0px 10px;
}


/* ***************************************************************** */
/* ***************************************************************** */
/* ***************************************************************** */

#PageHeadingTable {
	display: table;
	max-width: 800px;
}
#PageHeadingTR {
	display: table-row;
}
#PageHeadingTDCenter {
	display: table-cell;
	vertical-align: middle;
	padding: 0px 10px 0px 10px;
}
#PageHeadingTDLeft {
	display: table-cell;
	vertical-align: middle;
	max-width: 180px;
	padding: 10px 0px 0px 0px;
}
#PageHeadingTDRight {
	display: table-cell;
	vertical-align: middle;
	max-width: 220px;
}

#PageHeadingTDCenterMobile {
	display: none;
}

#CityLinkwrapper {
	display: block;
	max-width: 900;
	margin: 10px 0px 10px 0px;
	text-align: center;
}

.CityLinkContainer {
	display: inline-block;
	margin: 0px 0px 0px 0px;
}

h2.MoreCountyCommunties {
	font-family: 'Kalam';
	font-style: normal;
	font-weight: 400;
  	font-size: 1.1em;
	color: #000000;
	line-height: 1.25;
	letter-spacing: 0px;
	-ms-word-break: break-all;
	word-break: break-all;
	word-break: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	display: block;
	margin: 0px 0px 20px 0px;
}



@media screen and (max-width: 580px) {

	.FormTextInput1 {
		max-width: 455px;
		width: 66vw;
	}

	h1 .PageHeading1 {
		font-size: 0.9em;
		line-height: 1.5;
	}

	h1 .PageHeading2 {
		font-size: 0.9em;
		line-height: 1.3;
	}

	h1 .PageHeading3 {
		font-size: 0.9em;
		line-height: 1.5;
	}

	h1 .PageHeading4 {
		font-size: 0.9em;
		line-height: 1.3;
	}

}



/* ***************************************************************** */
/* ***************************************************************** */
/* ***************************************************************** */


.EventPlaceAddressWrapper {
	margin: 0px;
	padding: 0px;
}

.EventPlaceAddressContainer {
	display: inline-block;
}

.EventPlaceContainer {
	display: inline-block;
}

.RedButtonMenuItem {
	display: inline-block !important;
}

a.MemberLink {color: #ffffff; text-decoration: none}
a.MemberLink:hover {color : #ffcc66; text-decoration: none}
a.MemberLink:active {color : #ff6666; text-decoration: none}


/* ********************************************************************* */
/* ********************************************************************* */
/* ********************************************************************* */

#GoToMemberSignInButtonWrapper {
	height: 80px;
}

#SpinnyThing3 {
	display: none;
}

#svg-spinner3{
	-webkit-transition-property: -webkit-transform;
	-webkit-transition-duration: 1.2s;
	-webkit-animation-name: rotate;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;

	-moz-transition-property: -moz-transform;
	-moz-animation-name: rotate; 
	-moz-animation-duration: 1.2s; 
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: linear;

	transition-property: transform;
	animation-name: rotate; 
	animation-duration: 1.2s; 
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

@-webkit-keyframes rotate {
	from {-webkit-transform: rotate(0deg);}
	to {-webkit-transform: rotate(360deg);}
}

@-moz-keyframes rotate {
	from {-moz-transform: rotate(0deg);}
	to {-moz-transform: rotate(360deg);}
}

@keyframes rotate {
	from {transform: rotate(0deg);}
	to {transform: rotate(360deg);}
}








@media screen and (max-width: 600px) {

	h1.PageHeading {
		font-size: 28px;
		line-height: 1.3 !important;
	}
	
	.PageHeadingLocation, .PageHeadingLocation span {
		font-size: 26px;
	}

	.PageHeadingDate {
		font-size: 22px;
	}

	#PageHeadingTDCenter {
		display: none;
	}
	#PageHeadingTDCenterMobile {
		display: block;
		margin: 0px 10px 0px 10px;
	}
	.StateMapLarge {
		max-width: 110px;
		max-height: 130px;
	}

	h1 .PageHeading4 {
		display: inline;
	}

	.PageHeading4Desktop {
		display: none;
	}
	
	.StateMapLarge {
		max-width: 120px;
		max-width: 120px;
		margin: 0px 10px 0px 10px;
	}
	.CategoryIconLarge {
		max-width: 120px;
		margin: 0px 10px 0px 10px;
	}
}


/* ***************************************************************** */
/* ***************************************************************** */
/* ***************************************************************** */




.numberCircle {
	border-radius: 50%;
	behavior: url(PIE.htc); /* remove if you don't care about IE8 */
	
	display: inline-block;
	min-width: 36px;
	height: 36px;
	line-height: 1;
	font-weight: 600;
	font-size: 1em;
	padding: 6px 4px 0px 4px;

	background: #fff;
	border: 2px solid #0066cc;
	color: #000;
	text-align: center;
}

.ListTableEventHeading {
	background-color: #0066cc;
	margin: 0px 0px 0px 0px;
	padding: 4px 4px 4px 4px;
	max-width: 800px;
	border-top: 2px solid white;
	border-bottom: 2px solid white;
	outline-bottom: 2px solid #ff0000;
}

.ListTableEventHeadingWrapper {
	max-width: 800px;
	background-color: #ffffff;
	padding-top: 2px;
	border-top: 2px solid #ff0000;
	padding-bottom: 2px;
	border-bottom: 2px solid #ff0000;
	margin: 20px 0px 20px 0px;
}



.ListItemTable {
	display: table;
	width: 100%;
	max-width: 800px;
}

.ListItemRow {
	display: table-row;
}

.ListItemThumbNail {
	display: table-cell;
	vertical-align: middle;
	padding: 0px 10px 0px 10px;
}

.ListItemDescription {
	display: table-cell;
	vertical-align: middle;
	padding: 0px 0px 0px 0px;
}

.right-pointing-nav-triangle::after {
	content: "\25B6 \FE0E";
	color: #ffffff;
	width: 1.1em;
}

.ListTitle {
	padding: 0px 0px 0px 0px;
	display: table-cell;
	vertical-align:top;
}

.ListDescription {
	margin: 0px 0px 0px 0px;
	display: inline-block;
}

.EventPlaceAddressWrapper {
	margin: 0px;
	padding: 0px;
}

.EventPlaceAddressContainer {
	display: inline-block;
}

.EventPlaceContainer {
	display: inline-block;
}

.RedButtonMenuItem {
	display: inline-block !important;
}

a.MemberLink {color: #ffffff; text-decoration: none}
a.MemberLink:hover {color : #ffcc66; text-decoration: none}
a.MemberLink:active {color : #ff6666; text-decoration: none}

/* ***************************************************************** */
/* ***************************************************************** */

@media screen and (max-width: 600px) {

	.ListItemTable, .ListItemRow, .ListItemThumbNail, .ListItemDescription {
		display: block;
	}
}


