.card {
	/* Your custom style for the inner elements */
	/*width: 300px;*/
	width:33.33%;
	height: 100%;
	display: flex;
	/*justify-content: center;*/ /* Horizontally centers the content */
	align-items: center; /* Vertically centers the content */

}
.cardborder{
	position: relative;
	width: 100%;
	margin: 5px;
	box-sizing: border-box;
	height: 200px;
	background: white;
	color: black;
	border: 2px solid black;
	border-radius: 10px;
	box-shadow: 3px 3px 6px  #3333;
	text-align: center;
}

.quote{
	/*display: flex;*/
	/*justify-content: center;*/ /* Horizontally centers the content */
	/*align-items: center;*/ /* Vertically centers the content */
	margin-top: 10px;
	height: 160px;
	overflow: hidden;
}

.cardauthor{
	position: absolute;
	bottom: 0px;
	right:10px;
	text-align: left;
}
.popfullview{
	position: absolute;
	bottom: 0px;
	left: 5px;
	width: 30px;
	font-family: arial;
	font-weight: bold;
	cursor: pointer;
}
.popover{
	border: 3px solid black;
	border-radius: 12px;
	box-shadow: 3px 3px 10px #333;
	background: white;
	width: 50%;
	height: 50%;
	max-width: 500px;
	max-height: 500px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
.popover_title{
	position: absolute;
	top: 0px;
	width: 100%;
	height: 20px;
	font-weight: bold;
	text-align: center;
	font-size: 25px;
	font-family: arial;
}
.popover_text{
	position: absolute;
	inset: 30px 0px 36px 0px;
	padding: 10px;
	font-size: 20px;
	overflow-y: scroll;	
}
.popover_blocker{
	position: fixed;
	background: #5555;
	inset: 0px;
	z-index: 1;
	
}
.popover_closebutton{
	font-size: 20px;
	background: maroon;
	color: white;
	height: 26px;
	width: 100px;
	border-radius: 13px;	
	text-align: center;
	font-family: arial;
	position: absolute;
	bottom: 5px;
	right: 5px;
	cursor: pointer;
}
.stars{
	font-size: 14px;
}
 .gold{
	color: gold;
	text-shadow: 
    -1px -1px 3px #000,  
     1px -1px 3px #000,
    -1px  1px 3px #000,
     1px  1px 3px #000; /* Outline color and thickness */
	 
 }
 .notbold{
	 color: silver;
 }
 .bigstars{
	 font-size: 26px;
}

.carousel {
	margin: 25px 20px;
	/*border: 1px solid black;*/
}

.carousel-main {
	display: flex;
	justify-content: center;
	align-items: center;
}

.carousel-content {
	background-color: white;
	display: flex;
	margin: 0px 0px;
	max-width: 1400px;
	overflow-x: hidden; /* VERY IMPORTANT: We rely on scrolling so we hide the overflow */
	scroll-behavior: smooth;
	/*box-shadow: inset 3px 3px 15px  #3333;*/
	/*border: 1px solid black;*/
	border-radius: 14px;
}

.carousel-content > * {
	flex: 0 0 auto;
}

.carousel-content > :last-child {
	margin-right: 0;
}

.carousel-arrow {
	flex: 0 0 auto;
	width: 45px;
	height: 50px;
	border: 0px solid black;
	transition: 0.2s;
	cursor: pointer;
	font-size: 34px;
	font-weight: bold;
	text-align: center;
	vertical-align: center;
}

.carousel-arrow:hover {
}

.carousel-arrow-left {
}

.carousel-arrow-right {
}

.carousel-navigation {
	display: flex;
	justify-content: center;
	align-items: center;
}

@media only screen and (min-width: 1200px) {
	.card {
		/* show four cards at a time */
		width:25%;
	}
}
@media only screen and (max-width: 1000px) {
	.card {
		/* Show two cards at a time */
		width:50%;
	}	
}
@media only screen and (max-width: 620px) {
	.card {
		/* Show one card at a time */
		width:100%;
	}
	.carousel {
		  margin: 10px 40px 50px 40px;
		  /*border: 1px solid black;*/
	}
	.carousel-main {
	  position: relative;
	}	
	.carousel-content {
	  margin: 0 0px;
	}
	.carousel-arrow {
	  position: absolute;
	  bottom: -50px;
	}
	.carousel-arrow-left {
		left: 10px;
	}
	
	.carousel-arrow-right {
		right: 10px;
	}	
	.popover{
		width: 90%;
		height: 50%;
		transform: translate(-50%, -80%);
	}
}