.randomquotes-container {
	margin-bottom: 8px;
	border: 1px solid #b9c0d0;
	position: relative;
	overflow: hidden;
}
.randomquotes-container-page {
	margin-bottom: 4px;
	border: 1px solid #b9c0d0;
	position: relative;
	overflow: hidden;
}
.randomquotes-container h3 {
	margin: 16px;
	text-transform: none;
	font-size: 1rem;
	color: rgb(71, 83, 107);
	font-weight: normal;
	border-bottom: 1px solid #b9c0d0;
}
h3.randomquotes-headline {
	margin: 0px 0px 4px 0px;
}
p.randomquotes-name {
	font-family: serif;
	margin: 2px 0px;
}
.randomquotes-name i {
	vertical-align:top;
	font-size: 0.9rem;
}
.randomquotes-name-b {
	font-size: 18px;
	font-weight: bold;
	margin-left: 2px;
}
.randomquotes-name-slide {
	animation: fade-in-count 1s ease;
}
@keyframes fade-in-count {
  from { opacity: 0; }
  to   { opacity: 1; }
}
p.randomquotes-text {
	font-family: serif;
	margin-bottom: 1px;
	font-size: 1.1rem;
	font-style: italic;
	font-weight: normal;
}
p.randomquotes-text-slide {
	animation: slide-in-right 0.5s ease-out both;
	will-change: transform, opacity;
}
@keyframes slide-in-right {
  from { transform: translateX(100%); opacity: 0; } 
  to   { transform: translateX(0);    opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  p.randomquotes-text-slide {
    animation: none;
    transform: none;
    opacity: 1;
  }
}
@media (max-width: 750px) {
	span.randomquotes-name-b {
		font-size: 1rem;
	}
	p.randomquotes-text {
		font-size: 1rem;
	}
}