/* Department CSS Document */
/*For mobile first adaptive design place styles for mobile and up in the mobile and up area.
Place styles for tablet and up inside the media query in the tablet and up area.
Place styles for desktop only inside the media query in the desktop only area.

For questions or media query training contact Web Development Services.
*/
/* ====================== Mobile and Up ========================== */

.hideCard-buttonContainer {
	padding: 10px 0 50px;
	display: flex;
	flex-direction: column;
	max-width: 750px;
	margin: auto;
}
.hideCard-button a.active {
	background-color: #3f6f4e;
	color: #fff;
	text-decoration: none;
}
.hideCard-button a {
	padding: 15px 15px;
	flex: 1;
	color: #000;
}
.hideCard-button a:hover {
	text-decoration: none;
}
.hideCard-button {
	display: flex;
	text-align: center;
	flex-grow: 1;
	margin: 0;
	font-weight: 600;
	background-color: #f9f9f9;
	overflow: hidden;
}
.hideCard-button:before {
	content: none;
}
.hideCard-button:first-child {
	border-radius: 10px 10px 0 0;
}
.hideCard-button:last-child {
	border-radius: 0 0 10px 10px;
}
.hideCard-buttonContainer li {
	border: 1px solid rgba(0,0,0,.12);
}
.hideCard-buttonContainer li + li {
    border-top: none;
}
.hideCards {
	border: 1px solid #ddd;
	border-radius: 4px;
	background-color: #fff;
	overflow: hidden;
}
.hideCards h3,
.hideCards p {
	color: #fff;
}
.hideCards .datesBox tr:nth-child(even) {
	background: #f9f9f9;
}
.hideCards:focus {
	outline: none;
}
.hideCards.tab-container.open {
	display: block;
}
.hideCards.tab-container {
	display: none;
}
.hideCards .datesBox td {
	padding: 2px;
	border: 1px solid rgba(0,0,0,.05);
}
.hideCards .datesBox tr td:nth-child(1) {
	border-left: none;
}
.hideCards .datesBox tr td:nth-child(1),
.hideCards .datesBox tr td:nth-child(2) {
	text-align: center;
	padding: 0;
}
.hideCards .datesBox tr td:last-child {
	border-right: none;
}
.hideCards .datesBox tr:last-child td {
	border-bottom: none;
}
.hideCards .datesBox .row {
	margin: 0;
}



/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	
.hideCard-buttonContainer {
		align-items: center;
		justify-content: center;
		flex-direction: row;
	}
	.hideCard-button {
		border-bottom: 1px solid #ddd;
		border-top: 1px solid #ddd;
		border-right: none;
		border-left: none;
		border-radius: 0;
	}
	.hideCard-button:first-child {
		border-radius: 10px 0 0 10px;
		border-left: 1px solid #ddd;
	}
	.hideCard-button:last-child {
		border-radius: 0 10px 10px 0;
		border-right: 1px solid #ddd;
	}
	.hideCard-buttonContainer li + li {
		border-left: none;
		border-top: 1px solid #ddd;
	}
	
	
}

/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	

	
}
/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	
	
	
}

/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/