:root {
	--header-color: hsl(250, 70%, 15%);
	--header-color-alpha: hsla(250, 70%, 15%, .92);
	--success-message-color-start: rgba(100,255,110,0.95);
	--success-message-color: rgba(100,255,110,0.8);
	--custom-message-color: rgba(255, 255, 100, 0.8);
	--custom-message-color-start: rgba(255, 255, 100, .6);
	--footer-txt-color: #ddd;
	--sidebar-bg-clr: rgba(234, 230, 226, 0.75);
	--sidebar-bg-clr-mobile: rgb(234, 230, 226);
	--sidebar-title-clr: #a31;
	--link-color-1_hover: var(--sidebar-title-clr);
	--small-link-clr: #14d;
	--sidebar-text-clr: #333;
	--sxn-bg-clr-inactive: rgba(255, 255, 255, .75);
	--sxn-bg-clr-active: rgba(255,255,255,.9);
	--panel-box-shadow-clr: rgba(0,0,0,0.25);
	--panel-box-shadow-clr-hover: rgba(0,0,0,0.1875);
	--panel-box-shadow-offset-y: 2px;
	--panel-box-shadow-offset-y-hover: 3px;
	--panel-box-shadow-blur: 4px;
	--panel-box-shadow-blur-hover: 5px;
	--panel-box-shadow-spread: 2px;
	--panel-box-shadow-spread-hover: 3px;
	--article-metadata-border-clr: var(--sidebar-bg-clr-mobile);
	--article-metadata-border-clr: #d9ccaf;
	--content-txt-clr: #292929;
	--post-date-color: #654;
}

html {
  height: 100%;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

header * {
	font-family: "Ovo", serif;
}

.article-div code {
	background-color: #f3f3f3;
	tab-size: 3; /* Sets tab width to 2 spaces */
	-moz-tab-size: 3; /* For Firefox compatibility */
}

.nav-link {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
input, textarea {
	width: 100%;
}
.pagination-cntnr {
	text-align: center;
}
footer {
}

footer a {
	color: var(--footer-txt-color);
}
footer a:hover {
	color: var(--footer-txt-color);
	
}

.footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  color: black;
  padding: 0.5rem;
  /*background-color: white;
  box-shadow: 0 0 3px 2px rgba(0,0,0,.25);*/
}

body {
	position: relative;
	min-height: 100%;
	background-image: url(../img/thinker-auguste-rodin-gray2.webp);
	background-attachment: fixed;
	-webkit-background-size: cover;
	background-position: center;
	background-size: cover;
	font-family: "Ovo", serif;
	color: #333333;
	padding-bottom: 6rem;
}

h1, h2, h3, h4, h5, h6 {
  color: #444444;
}

p,
.article-content {
	font-size: 105%;
}
.article-content h4 {
	margin-bottom: 0;
}

ul {
  margin: 0;
}

.bg-steel {
  background-color: transparent;
}

.site-header .navbar-nav .nav-link {
  color: #cbd5db;
}
.site-header .navbar-nav p {
  color: #cbd5db;
  margin-bottom: 0;
}


.site-header .navbar-nav .nav-link:hover {
  color: #ffffff;
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 500;
}

main {
	padding-top: 2rem;
}

.btn-primary-custom {
	color: var(--header-color);
	border-color: var(--header-color);
}

.btn-primary-custom:hover {
	background: var(--header-color);
	color: #eee;
}

.btn-sun {
	color: #222;
	width: 36px;
	margin-left: .6vw;
	margin-right: .6vw;
	text-align: center;
	border-radius: 50%;
	background-color: var(--sxn-bg-clr-active);
	box-shadow: 0 var(--panel-box-shadow-offset-y) var(--panel-box-shadow-blur) var(--panel-box-shadow-spread) var(--panel-box-shadow-clr);
	border-width: 0px;
	transition: none;
}
.btn-sun:hover {
	background-color: var(--sidebar-bg-clr);
}

.btn-sun-active,
.btn-sun-active:hover {
	width: 36px;
	margin-left: .6vw;
	margin-right: .6vw;
	text-align: center;
	border-radius: 50%;
	border-width: 0px;
	background-color: #555;
	color: #fff;
	cursor: not-allowed;
	box-shadow: 0 var(--panel-box-shadow-offset-y) var(--panel-box-shadow-blur) var(--panel-box-shadow-spread) var(--panel-box-shadow-clr);
	transition: none;
}
.content-section {
  color: var(--content-txt-clr);
  background-color: var(--sxn-bg-clr-inactive);
  box-shadow: 0 var(--panel-box-shadow-offset-y) var(--panel-box-shadow-blur) var(--panel-box-shadow-spread) var(--panel-box-shadow-clr);
  padding: 10px 20px;
  padding-bottom: 20px;
  border: 0px;
  border-radius: 4px;
  margin-bottom: 30px;
}

.sidebar {
	position: sticky;
	top: 2rem;
	background-color: var(--sidebar-bg-clr);
	box-shadow: 0 var(--panel-box-shadow-offset-y) var(--panel-box-shadow-blur) var(--panel-box-shadow-spread) var(--panel-box-shadow-clr);
}
.sidebar > *:last-child {
	margin-bottom: 0;
}
.article-div .sidebar {
	display: none;
	visibility: hidden;
	margin-top: 0;
}
.sidebar h1 {
	color: var(--sidebar-title-clr);
}
.sidebar p {
	color: var(--sidebar-text-clr);
}
.sidebar-list{
	border-color: rgba(235, 235, 235, 0.6);
	background-color: rgba(0,0,0,0.0);
}

.sidebar-list-item{
	border-color: rgba(235, 235, 235, 0.6);
	background-color: rgba(0,0,0,0.0);
}
.list-group-item.sidebar-list-item ul {
	padding: 0 1em;
}

.section-dynamic {
}

.section-active {
	background: var(--sxn-bg-clr-active);
}

.section-dynamic:hover {
	background-color: var(--sxn-bg-clr-active);
	box-shadow: 0 var(--panel-box-shadow-offset-y-hover) var(--panel-box-shadow-blur-hover) var(--panel-box-shadow-spread-hover) var(--panel-box-shadow-clr-hover);
	transform: scale(1.01, 1.01);
}

.article-title {
}
article h2 {
	color: #111;
	margin-bottom: 1em;
}

a:hover {
  color: var(--link-color-1_hover);
  text-decoration: none;
}

a:hover h2 {
  color: var(--link-color-1_hover);
  text-decoration: none;
}

a:hover .small-link {
	color: var(--link-color-1_hover);
}

.article-content {
  white-space: pre-line;
}
.article-content > * {
	margin-bottom: 1.5rem;
}
.article-content > *:last-child {
	margin-bottom: 0;
}
figure {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}
figure *:last-child {
	margin-bottom: none;
}
figcaption {
	margin-bottom: none;
	font-size: 95%;
}
figure img {
	margin-bottom: 0.25rem;
	max-width: 100%;
}

.article-metadata {
	padding-bottom: 1px;
	margin-bottom: 4px;
	border-bottom: 1px solid var(--article-metadata-border-clr);
}

.article-metadata a{
	color: #25f;
}

.article-metadata a:hover {
  color: #ff30a1;
  text-decoration: none;
}

.article-padding {
	width: 81px;
	display: inline-block;
	background-color: yellow;
}

.post-date {
	color: var(--post-date-color);
}

.user-posts {
	color:black;
	text-shadow: 0px 0px 6px #efefef;
}

.article-svg {
	width: 25px;
	height: 25px;
	vertical-align: middle;
}

.account-img {
	height: 125px;
	width: 125px;
	margin-right: 20px;
	margin-bottom: 16px;
}
.edit-controls-cntnr {
	position:fixed;
	right: 0;
	bottom: 0;
	padding: 10px;
	background-color: white;
	z-index: 100;
	border: 1px solid black;
}
.edit-buttons {
	display: block;
	margin: 0;
}
.edit-buttons a {
	margin: 5px;
}

.txt-on-dk-bg  {
	color: #eee;
	text-shadow: 0px 0px 5px #eee;
}

.txt-on-dk-bg:hover {
	text-shadow: none;
}
.small-link {
	color: var(--small-link-clr);
}
.small-link:hover {
	color: var(--link-color-1_hover);
}

fieldset a:hover{
	color: var(--link-color-1_hover);
}
.account-heading {
  font-size: 2.5rem;
}

.about-img {
	float: right;
	border-radius: 4px;
	opacity: .8;
	margin-left: 20px;
	width: 45%;
}

.mobile-show {
	display: none;
}


@media (max-width: 576px) {
	.mobile-show {
		display: inline;
	}
	.mobile-hide {
		display: none;
	}
	.btn-sun {
		margin-left: 5px;
		margin-right: 5px;
	}
	.btn-sun-active {
		margin-left: 5px;
		margin-right: 5px;
	}
	.mobile-margins-content {
		margin-top: 20px;
	}
	.contact-title {
		font-size: 115%;
	}
}


@media (max-width: 768px) {
	main {
		padding-top: 0;
	}
	.content-section {
		display: block;
		background-color: var(--sxn-bg-clr-active);
		margin-bottom: 20px;
	}
	.sidebar {
		background-color: var(--sidebar-bg-clr-mobile);
		position: fixed;
		top: 0;
		left: 0;
		z-index: 10;
		width: 100%;
		padding: 10px 20px;
	}
	.article-div .sidebar {
		display: block;
		position: static;
		margin-top: 0;
	}
	.sidebar h1 {
		margin-bottom: 0;
	}

}


@media (min-width: 576px) {
}


@media (min-width: 768px) {
	.custom-media-body {
		width: 80%;
		display: inline;
	}
	.custom-media-body-2 {
		width: 80%;
		display: block;
	}
	.about-img {
		width: 200px;
	}
}


@media (min-width: 992px) {
	.custom-media-body {
		width: 85.5%;
	}
	.about-content {
		text-align: justify; 
	}
}


@media (min-width: 1200px) {
	.custom-media-body {
		width: 88.25%;
	}
}
