@charset "UTF-8";
/* CSS Document */

.textBold { /* left col headers */
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 18px;
}
.paintingsIntroWrapper {
	display: grid;
	grid-column: 2 / -2;
	grid-template-columns: 100px repeat(2, 1fr) 100px;
	margin-top: 20px;
	}
.paintingsAbout {
	grid-area: "intro";
	padding: 10px;        
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 18px;
	text-align: center;
	color: #fff;
	letter-spacing: 1px;
	background-color: #036;
	}
.responsive { /* For Images */
	width: 100%;
	height: auto;
	}
hr {
	margin-bottom: 5px;
	margin-top: 5px;
	margin-left: 10px;
	margin-right: 10px;
	color: #99ccff;
		}
.paintingsSelectionWrapper {
	grid-column: 1 / -1;
	text-align: center;
	margin: 20px;
	}
myBtnContainer {
	text-align: center;
	grid-column: 2 / -2;
	}
.paintingsCardsWrapper {
	grid-column: 2 / -2;
	align-content: center;
	text-align: center;
	justify-content: center;
	margin-bottom: 20px;
	}
.rowpaintings {
	grid-column: 2 / -2;
	grid-row: 2;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	}

/* Add padding BETWEEN each column */
.rowpaintings,
.rowpaintings > .column {
	grid-gap: 1rem;
	}
.column { /* Four columns for full width */
	margin-bottom: .8rem;
	display: none;
	}
.show {
	display: block; /* Show the selected elements */
	}
.rowpaintings:after { /* Clears the floats after rows */ 
	content: "";
	}
.content {
	background-color: #fff;
	padding: 1rem;
	}
.btn {
	border: none;
	outline: none;
	padding: .95rem 1rem;
	background-color: #99ccff;
	margin-bottom: .3rem;
	cursor: pointer;
	}
.btn:hover {
	background-color: #036;
	color: #fff;
	}
.btn.active {
	background-color: #036;
	color: #99ccff;
	}
.artist_name {
	font-size: 1.2rem;
	color: #036;
	margin-bottom: .2rem;
	text-align: center;
	}	
.painting_title {
	font-size: 1.2rem;
	color: #036;
	margin-bottom: .2rem;
	text-align: center;
	}
.painting_details {
	font-size: 1.2rem;
	color: #036;
	margin-bottom: 1rem;
	text-align: center;
	}	
.card { /* Shadows */
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	}
.artist_box {
	padding: 0 1rem;
	margin-top: 1rem;
	text-align: center;
	}
.artist_box::after,
.row::after {
	content: "";
	clear: both;
	display: table;
	}
.title {
	color: #036;
	font-size: .9 rem;
	text-align: center;
	margin-bottom: 1rem;
	}



/* ------------ start media ------------ */
@media screen and (max-width: 1200px) { /* Three columns for 998 width */
.column {
	float: left;
	width: 100%;
	margin-bottom: 1rem;
	}
.rowpaintings {
	grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 992px) { /* Three columns for 998 width */
.column {
	float: left;
	width: 100%;
	margin-bottom: 1rem;
	}
.paintingsIntroWrapper {
	grid-column: 2 / -2;
	grid-template-columns: 40px repeat(2, 1fr) 40px;
	}
.rowpaintings {
	grid-template-columns: repeat(3, 1fr);
	}
}
		
@media screen and (max-width: 768px) { /* Three columns for 768 width */
.column {
	float: left;
	width: 100%;
	margin-bottom: 1rem;
	}
.paintingsIntroWrapper {
	grid-column: 2 / -2;
	grid-template-columns: 20px repeat(2, 1fr) 20px;
	}
.paintingsIntro {
	grid-template-columns: 1fr 1fr;
	grid-template-areas: "intro officers"
	}
.paintingsAbout {
	grid-area: "intro";
	}
.paintingsheaderImage {
	display: none;
	}
.rowpaintings {
	grid-template-columns: repeat(2, 1fr);
	}
}
		
@media screen and (max-width: 576px) { /* One or Two columns for 576 width */
.paintingsIntroWrapper {
	grid-column: 2 / -2;
	grid-template-columns: 5px repeat(2, 1fr) 5px;
	}
.paintingsheaderImage {
	display: none; 
	}
.paintingsIntro {
	grid-template-columns: 1fr;
	grid-template-areas: "intro" "officers"
	}
.paintingsOfficers {
	grid-area: "officers";
	}
.paintingsAbout {
	grid-area: "intro";
	}
.rowpaintings {
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	}
}