/* ================================================================================== 
								Fonts
===================================================================================== */

@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i');

/* ================================================================================== 
										Reset Css
===================================================================================== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px; /* MASTER FONT SIZE!!! */
	overflow-x: hidden;
	overflow-y: scroll;
	font-weight: 400;
	background-color: #f2f2f2;
	color: #0f1419; /* was #0f1419 */
}

.color-test {
    font-weight: 400;
    color: #121212;
}


ol, ul {
	list-style: none;
}

/*
button {
	outline: none;
}
*/

table {
	border-collapse: collapse;
	border-spacing: 0;
}
* {
	margin: 0;
	padding: 0;
}

/*
a:focus {
	text-decoration: none;
	outline: none;
}
*/

a {
    text-decoration: none;
}

a:hover {
	text-decoration: underline;
	/*color: #fff;*/
}

input {
	outline: none;
}
textarea {
	outline: none;
}
section {
	float: left;
	width: 100%;
	position: relative;
}
img {
	float: left;
}
p {
	line-height: 24px;
	color: #222222;
}
hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid #e5e5e5 !important;
}

/*nav,
nav ul li a,
nav ul li:hover > ul,*/
.post-popup,
.community-popup,
.user-popup,
.email-popup {
	-webkit-transition: all 0.4s ease-in;
	-moz-transition: all 0.4s ease-in;
	-ms-transition: all 0.4s ease-in;
	-o-transition: all 0.4s ease-in;
	transition: all 0.4s ease-in;
}


.wrapper {
	/*float: left;*/
	width: 100%;
	z-index: 101; /* was 101 */
	/*position: relative;*/
}


#app-overlay.active {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    background-color: rgba(0,0,0,0.75);
    z-index: 101; /* was 99 */
}

.wrapper {
    display: none;
}


.overlay {
	/*content: '';*/
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.75);
}


main {
	float: left;
	width: 100%;
	padding-top: 25px;
}

.row {
	margin: 0;
	padding: 0;
}

.col-lg-6 {
    max-width: 630px;
}

.container {
    width: 100%;
    max-width: 1300px;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
	width: 100%;
	padding-right: 0px;
	position: relative;
}

nav ul li {
	display: inline-block;
	text-align: center;
	/*padding: 10px 20px 10px 20px;*/
	padding: 10px 20px 10px 20px;
	margin: 0px 0px 0px 0px;
	position: relative;
	border: solid 1px #8a2217;
	border-radius: 15px;
}

nav ul li span {
	display: block;
	height: 14px;
	margin-bottom: 10px;
}

nav ul li span img {
	float: none;
}

nav ul li div {
	display: block;
	color: #fff;
}

nav ul li:hover {
	background-color: rgba(255, 255, 255, 0.2); /* was #b32e1f */
	border-radius: 15px;
	border: solid 1px #8a2217;
	cursor: pointer;
}
nav ul li a:hover {
	color: #fff;
}

.nav-profile {
	display: inline-block;
	text-align: center;
	position: relative;
    margin: 10px 25px 0px 20px;
    vertical-align: top;
}

.menu-icon {
    height: 22px;
    width: 22px;
}


/*
.nav-profile img {
    height: 40px;
    width: 40px;
    border-radius: 100px;
}
*/

.nav-profile:hover {
    cursor: pointer;
}

.nav-profile-dropdown-menu {
    position: absolute;
    z-index: 999;
	right: 23px;
    background-color: #fff;
    width: 22%; /* was 300px 22% */
    border-style: solid;
    border-color: #e5e5e5;
    border-width: 0px 1px 1px 1px;
    filter: drop-shadow(5px 5px 5px rgba(51, 51, 51, 0.5));
    border-radius: 0 0 1rem 1rem;
    text-align: left;
    color: #000;
    display: none;
}


.nav-profile-dropdown-menu.active {
	visibility: visible;
}

.dropdown-box-outline {
    border: 0px solid black;
}

.dropdown-title {
	padding: 20px 20px 5px 10px;
	border-bottom: 0px solid #f2f2f2;
	display: grid;
	text-align: center;
	color: #000000;
	font-size: 18px;
	font-weight: 700;
}


.dropdown-title a {
    text-decoration: none;
    color: inherit;
}

.generic-box:focus {
    background-color: #ececec;
    cursor: pointer;
    outline: none;
}



.is-hidden {
    display: none;
}

/* ============ header & main menu =========== */
header {
	float: left;
	width: 100%;
	background-color: #8a2217; /* HEADER COLOR was #cc3322 */
}

.header-data {
	float: left;
	padding-left: 15px;
	padding-right: 5px;
	width: 100%;
}

.logo img {
	float: left;
	width: 40px;
	margin-right: 10px;
	margin-top: 0px;
}



/* ================= SEARCH BAR ================= */

.logo-and-search {
	display: flex;
	float: left;
	width: 54%;
	margin-top: 3px;
	margin-left: 0px;
	margin-right: 0px;
}

#main-logo {
	width: 37%;
	color: #fff;
	font-size: 35px;
	font-weight: 700;
	padding-left: 5px;
	text-align: left;
}

#main-logo:hover {
    cursor: pointer;
}

.search-form {
	width: 62%;
	position: relative;
}

.search-form input {
	border-radius: 20px;
	width: 100%;
	background-color: #fff;
	height: 34px;
	color: #000;
	border: 0;
	padding: 5px 15px 5px 35px;
}

.magnifying-glass {
    position: absolute;
    top: 25%;
	height: 18px;
	width: 18px;
	margin-left: 8px;
}

.search-box {
    width: 62%;
    position: relative;
}




/* New elements */
.search-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%; /* was 43px */
    margin-top: 7px;
    background-color: #ffffff; /* bg-white */
    filter: drop-shadow(5px 5px 5px rgba(51, 51, 51, 0.5));
    border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
    z-index: 1000;
    max-height: 600px; /* max-h-96 (384px) was 24rem*/
    overflow-y: auto;
}



.search-footer {
    padding: 10px;
    text-align: center;
    line-height: 24px;
    color: #0f1419;
}






/* ============ back button =========== */
.back-button {
    display: none;
    position: absolute;
    top: 15px;
    left: 40px;
    width: 25px;
    height: 25px;
    z-index: 98;
}

.back-button:hover {
    cursor: pointer;
}




/* ============ mini user profile =========== */

.full-width {
	float: left;
	width: 100%;
	background-color: #fff;
	/*border-radius: 1rem;*/
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-left: 1px solid #e5e5e5;
	border-right: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
}

.username-dt {
	float: left;
	width: 100%;
	background-color: #cc3322;
	border-radius: 1rem 1rem 0rem 0rem;
	padding-top: 20px;
}

.usr-pic {
	width: 75px;
	height: 75px;
	margin: 0 auto;
	margin-bottom: -48px;
}
.usr-pic > img {
	float: none;
	border: 5px solid #fff;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	-ms-border-radius: 100px;
	-o-border-radius: 100px;
	border-radius: 100px;
	width: 100%;
}

.user-specs {
	float: left;
	width: 100%;
	text-align: center;
	padding: 50px 0 0 0;
}

.user-specs h3 {
	color: #000000;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 5px;
}
.user-specs span {
	color: #686868;
}


/* ============ standard title box =========== */
.standard-title {
	padding: 15px 20px 15px 20px;
	border-bottom: 3px solid #f2f2f2;
	display: grid;
	text-align: center;
	color: #000000;
	font-size: 20px;
	font-weight: 600;
}


/* ============ generic profile/post box =========== */
.generic-box {
    display: flex;
    gap: 10px;
    padding: 15px;
    background-color: #fff;
}

.bottom-border {
    border-bottom: 1px solid #e4e4e4;
}

.bottom-border-dark {
    border-bottom: 1px solid #bcbcbc;
}

.top-border-dark {
    border-top: 1px solid #bcbcbc;
    
}


.profile-text-content {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    line-height: 20px;
    justify-content: center;
    min-width: 0;
}

/* hacky hacky */
.message-recipient .generic-box .profile-text-content {
	flex-grow: 0;
}



.profile-name {
	color: #000000;
	font-weight: 600;
}


.profile-handle,
.main-profile-handle {
	color: #686868;
}






.profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

#view-more,
#profile-list,
#post-list {
    display: none;
}


.profile-stats:hover {
    text-decoration: underline;
    cursor: pointer;
}



/* ============ suggestions =========== */

.generic-box-right-col {
    display: flex;
    align-items: flex-start; /* Aligns avatar to the top */
    gap: 10px;
    padding: 15px;
}

.profile-main-content {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    min-width: 0;
}

.profile-text-content {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    line-height: 20px;
    justify-content: center;
    min-width: 0;
}


.profile-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.profile-identity {
    line-height: 1.2;
    min-width: 0; /* Ensures the name doesn't push the button off-screen */
    margin-right: 10px;
}

.description-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
    word-break: break-word;
    line-height: 1.3;
    text-overflow: ellipsis;
}










/* ============ generic button =========== */
.generic-button-wrapper {
	float: left;
	width: 100%;
	text-align: center;
	margin-top: 0px;
	padding-top: 10px;
	/*border-top: 3px solid #f2f2f2;*/
}

.nav-profile-dropdown-menu .generic-button-wrapper {
    padding-top: 10px;
    padding-bottom: 20px;
    border-top: 0px;
}



.generic-button {
	color: #fff; /* was #fff */
	background-color: #555; /* was #2b2b2b */
	padding: 7px 13px 7px 13px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	border-radius: 20px;
	border: none;
	display: inline-block; /* was inline-block */
	font-weight: 500;
	height: 30px;
}

.generic-button-alignment {
	text-align: center;
}

.generic-button-alignment ul {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.generic-button:hover {
    background-color: #000; /* was #a3291a */
    cursor:pointer;
}

a .generic-box:hover {
	background-color: #ececec; /* was ececec */
}

.generic-button.cancel-button {
	color: #2b2b2b; /* was #000 */
	background-color: #fff; /* was #fff */
	border: 1px solid #999999;
}

.generic-button.cancel-button:hover {
	background-color: #ececec; /* was e0e0e0 */
}

.btn-dark-hover {
    font-weight: 600;
}

.btn-dark-hover:hover {
    background-color: black
}

.btn-dark-text {
    color: #000
}


/* NEW BOOTSTRAP BUTTONS */

/* 1. The Brand Button (Burgundy) */
.btn-brand {
    --bs-btn-font-weight: 600;
    --bs-btn-color: #ffffff;
    --bs-btn-bg: #8a2217;
    --bs-btn-border-color: #8a2217;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #6b1a12;
    --bs-btn-hover-border-color: #6b1a12;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #5c160f; /* Slightly darker than hover for the click impact */
    --bs-btn-active-border-color: #5c160f;
}


/* 2. The Action Button (Dark Neutral) */
.btn-action {
    --bs-btn-font-weight: 600;
    --bs-btn-color: #ffffff;
    --bs-btn-bg: #333333;
    --bs-btn-border-color: #333333;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #555555;
    --bs-btn-hover-border-color: #555555;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #222222;
    --bs-btn-active-border-color: #222222;
}

/* 3. The Neutral Button (White to Grey) */
.btn-neutral {
    --bs-btn-font-weight: 600;
    --bs-btn-color: #343a40;
    --bs-btn-bg: #ffffff;
    --bs-btn-border-color: #adb5bd;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #343a40;
    --bs-btn-hover-border-color: #343a40;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #212529;
    --bs-btn-active-border-color: #212529;
}

.col-sm-4,
.col-sm-6,
.col-sm-10 {
    padding: 0 5px 0 0;
}


/* ============ MAIN FEED =========== */

#main-feed-header {
    text-align: center;
    height: 50px;
    padding-top: 5px;
}

.main-feed-widget {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin: 0px 0px 0px 0px;
}

.dropdown-menu {
    min-width: 100px;
    filter: drop-shadow(5px 5px 5px rgba(51, 51, 51, 0.5));
}

.dropdown-item {
    padding: 5px 10px 5px 15px;
    text-align: left;
}

.dropdown-item:hover {
    cursor: pointer;
    background-color: #ececec;
}

.dropdown-item:active {
    color: #16181b;
}

.main-feed {
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 25px 0px;
	display: inline-block;
	/*overflow: hidden;*/
	/*border-radius: 1rem;*/
	z-index: 10;
}

.clickable-post {
	cursor: pointer;
}

.open-post {
    z-index: 99;
}


.open-post:hover {
    cursor: pointer;
    background: #ececec;
}



.post-description {
    line-height: 20px;
}

.post-image-container {
    width: fit-content;
    max-height: 400px;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    cursor: zoom-in;
    margin: 10px 0px 10px 0px;
}

.post-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

.avatar-image {
    height: 40px;
    width: 40px;
    border-radius: 100px;
    
}



/* ============ Feed Toggle =========== */







.naked-select-box2 {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0px solid red;
    outline: none;
    font-size: 20px;
}

.naked-select-box2 option {
    appearance: none;
    border: 0px solid red;
    outline: none;
	font-size: 16px;
	font-weight: 500;
	background-color: #fff;
}

.naked-select-box {
	border: none;
	outline: none;
	background-color: #f2f2f2;
	font-size: 20px;
	font-weight: 600;
	border-radius: 10px;
}

.naked-select-box option {
	font-size: 16px; /* must set manually or it is huge */
	font-weight: 500;
	background-color: #fff;
}

.naked-select-box .action-option {
	color: #777777;
}

.static-label {
    line-height: 27px;
}


/* ============ post widget =========== */

.post-widget {
	float: left;
	width: 100%;
	padding: 17px 15px;
	background-color: #fff;
	border: 1px solid #e4e4e4;
	/*border-radius: 1rem;*/
	-webkit-box-shadow: 0 0 1px rgba(0,0,0,0.24);
	-moz-box-shadow: 0 0 1px rgba(0,0,0,0.24);
	-ms-box-shadow: 0 0 1px rgba(0,0,0,0.24);
	-o-box-shadow: 0 0 1px rgba(0,0,0,0.24);
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.24);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}

.post-launcher {
    display: block;
    width: 90%;
    text-align: left;
    background-color: #f3f5f8;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    padding: 10px 15px;
    margin-left: 20px;
    color: #686868;
    text-decoration: none;
    cursor: pointer;
}

.post-launcher:hover {
    border-color: #a0a0a0;
    background-color: #e9ecf0;
}











/* ============ user hide/report/block popup =========== */
.profile-usr-opts {
    text-align: left;
    display: inline-block;
	position: relative;
	vertical-align: middle;
}

.profile-usr-opts img {
	height: 20px;
	width: 30px;
	margin-top: 0px;
	margin-right: 10px;
	padding: 6px 5px 5px 5px;
}

.profile-usr-opts img:hover {
	background-color: #d2d2d2;
	border-radius: 5px;
}


/* NEW */
.profile-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.profile-title {
    flex: 1 1 auto;
    min-width: 0;
    height: 20px;
    max-height: 20px;
}

.usr-opts {
    flex: 0 0 auto;
	position: relative;
	font-size: 18px;
	z-index: 102;
	color: #000;
    font-weight: 800;
}

.three-dots {
    display: inline-block;
    transform: translateY(-7px);
    color: #686868;
    padding: 0 7px 7px 7px;
    border-radius: 10px;
    
}

.three-dots-profile {
    display: inline-block;
    color: #686868;
    padding: 0 10px 7px 10px;
    border-radius: 10px;
}


.three-dots:hover,
.three-dots-profile:hover {
    background: rgba(0, 0, 0, 0.08);
	cursor: pointer;
}


/* OLD
.profile-header-row {
    display: inline;
}

.profile-title {
    min-width: 0;
    height: 25px;
    max-height: 25px;
}

.usr-opts {
    float: right;
    position: relative;
    
    z-index: 102;
    color: #000;
    font-weight: 800;
    left: 10px;
}
*/




/*
.usr-opts:hover {
	color: #cc3322;
}
.usr-opts-open {
	font-size: 18px;
}

.usr-opts img {
	height: 20px;
	width: 30px;
	margin-top: 8px;
	margin-right: 5px;
	padding: 6px 5px 5px 5px;
	border-radius: 5px;
}

.usr-opts img:hover {
	background-color: #ececec;
	cursor: pointer;
}
*/

.usr-options {
	position: absolute;
	top: 100%;
	right: 0;
	/*height: 100px;*/
	white-space: nowrap;
	width: fit-content;
	background-color: #fff;
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.28);
	-moz-box-shadow: 0 0 10px rgba(0,0,0,0.28);
	-ms-box-shadow: 0 0 10px rgba(0,0,0,0.28);
	-o-box-shadow: 0 0 10px rgba(0,0,0,0.28);
	box-shadow: 0 0 10px rgba(0,0,0,0.28);
	border-radius: 10px;
	opacity: 0;
	visibility: hidden;
	color: #686868;
	font-weight: 600;
	overflow: hidden;
	z-index: 104;
	/*margin: 5px 0px;
	padding: 5px 15px;
	line-height: 1.5rem;*/
}


.usr-options.flip {
    bottom: 100%;
    top: auto;
}


.usr-options.active {
	opacity: 1;
	visibility: visible;
}
.usr-options li {
	float: left;
	width: 100%;
	/*padding: 5px 15px;*/
}
.usr-options li a {
	color: #686868;
	font-weight: 600;
}
.usr-options li:hover {
	background-color: #ececec;  /* was e0e0e0 */
}

.usr-options li.profile-feedback-off:hover {
	background-color: #fff;  /* was e0e0e0 */
}

.community-feedback,
.profile-feedback,
.profile-feedback-off,
.post-feedback {
    padding: 0px 15px;
    line-height: 30px;
}

.community-feedback:hover,
.profile-feedback:hover,
.post-feedback:hover {
    cursor: pointer;
    background-color: #ececec;
}

.community-feedback:first-child,
.profile-feedback:first-child,
.profile-feedback-off:first-child,
.post-feedback:first-child {
    padding-top: 5px; 
    /*height: 30px;*/
}

.community-feedback:last-child,
.profile-feedback:last-child,
.profile-feedback-off:last-child,
.post-feedback:last-child {
    padding-bottom: 5px;
    /*height: 30px;*/
}


.feedback-disabled {
    pointer-events: none;
    cursor: default;
}

.add-margin {
    margin: 5px;   
}




/* ============ Post engagement - replies, likes, dislikes =========== */

.profile-engagement-summary {
	display: flex;
	gap: 20px;
	margin: 10px 0px 0px 5px;
	color: #686868;
}


.post-engagement,
.post-engagement a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
	color: #686868;
	margin-top: 10px;
}


.post-engagement-wrapper {
    /*display: flex;
    justify-content: space-between;*/
    position: relative;
    z-index: 101;
    /*height: 40px;*/
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    margin-top: 10px;
    padding: 0px 20px 0px 0px;
}


.post-engagement-wrapper:focus {
  outline: none;
  box-shadow: none;
}


.post-engagement-item:nth-child(1) { justify-self: start; }  /* Left */
.post-engagement-item:nth-child(2) { justify-self: center; } /* Center */
.post-engagement-item:nth-child(3) { justify-self: end; }    /* Right */

.post-engagement-item {
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 10px;
    z-index: 99;
}

.post-engagement-item img {
    height: 20px;
    width: 20px;
    margin: 5px;
    border-radius: 0px;
}

/*
.post-engagement-item:hover {
    background-color: #ececec;
    cursor: pointer;
}
*/

.post-feedback:hover,
.reply-launcher:hover{
    background-color: #ececec;
    cursor: pointer;
    z-index: 99;
}


/* Old engagement formats - delete when all of the engagements are loaded from the dbase */

.post-engagement,
.post-engagement a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
	color: #686868;
	margin-top: 10px;
}

.post-engagement li a i {
	margin-right: 5px;
}

.post-engagement img {
    height: 20px;
    width: 20px;
    margin-top: 3px;
    margin-right: 5px;
}




/* ============ notifications =========== */

.notifications-unread-banner {
    border-left: solid 5px #8a2217;
}

.notifications-read-banner {
    border-left: solid 5px transparent;
}


.notifications-detail-box {
	display: none;
}

.notifications-header h3 {
	color: #000;
	font-size: 22px;
	font-weight: 600;
	text-align: left;
	margin-top: 10px;
	margin-bottom: 20px;
}


.notifications-detail-box .full-width {
	padding-bottom: 10px;
}


/* ============ main profile box =========== */

.main-profile-box-margin {
	margin: 0px 0px 10px 0px;
}

.main-profile-box-inner {
	float: left;
	width: 100%;
}

.main-profile-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.main-profile-name {
	font-size: 20px;
	font-weight: 600;
	color: #000;
	padding-bottom: 5px;
}

.bold-stats {
	color: #000;
	font-weight: 700;
	margin-right: 0px;
}


.right-align-button {
	text-align: right;
}


.main-profile-description {
    margin-top: 10px;
    line-height: 20px;
    /*max-height: 135px; /* was 130px */
    /*height: 120px;*/
    border-radius: 0rem;
    /*overflow-y: auto;*/
    white-space: pre-wrap;
    word-wrap: break-word;
    /*background: white;*/
    padding: 5px;    
}

.main-profile-description::-webkit-scrollbar {
    width: 8px; /* was 4px */
    background: white;
    border-radius: 0rem;
}

.main-profile-description::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 0rem; /* was 10px */
}


#profile-avatar-img:hover,
#profile-cover-img:hover {
    cursor: pointer;
}




.line-clamp-8 {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}




/* hacky hacky */
.main-profile-box-inner ul {
	margin-bottom: 20px;
}


.generic-hover:hover,
.open-profile:hover,
.switch-profile:hover {
    cursor: pointer;
    background-color: #ececec; /* was #ececec */
}

.open-profile-from-list:hover {
    cursor: pointer;
    text-decoration: underline;
}






/* ============ community box =========== */

.profile-text-content ol {
	list-style: decimal;
    list-style-position: inside;
    padding: 15px 15px 20px 15px;
    text-indent: -15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* ================ Hide community recs on load ================ */

/*
#community-recs {
    display: none;
}
*/



/* ============ footer =========== */

.tags-sec {
	background-color: #fff;
	padding: 20px 20px;

}
.tags-sec ul {
	float: left;
	width: 100%;
	text-align: center;
}
.tags-sec ul li {
	display: inline-block;
	border-right: 1px solid #b2b2b2;
	padding: 0 7px;
	margin-bottom: 15px;
}
.tags-sec ul li:nth-child(2),
.tags-sec ul li:nth-child(4),
.tags-sec ul li:nth-child(7) {
	border-right: 0;
}
.tags-sec ul li div {
	display: inline-block;
	color: #686868;
	font-size: 12px;
	font-weight: 500;
}
.tags-sec ul li div:hover {
	color: #8a2217; /* was #cc3322 */
	cursor: pointer;
}


.cp-sec {
	text-align: center;
	margin-top: 15px;
	margin-bottom: 5px;
	color: #686868;
	font-size: 12px;
}












/* ================ post popup =============== */

.post-popup {
	width: 570px;
	margin: 0 auto;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0.65);
	-moz-transform: translateX(-50%) translateY(-50%) scale(0.65);
	-ms-transform: translateX(-50%) translateY(-50%) scale(0.65);
	-o-transform: translateX(-50%) translateY(-50%) scale(0.65);
	transform: translateX(-50%) translateY(-50%) scale(0.65);
	opacity: 0;
	visibility: hidden;
	z-index: 0;
}

.post-popup.active {
	opacity: 1;
	visibility: visible;
	z-index: 999;
	-webkit-transform: scale(1) translateX(-50%) translateY(-50%);
}

.user-popup h3,
.post-popup h3,
.email-popup h3 {
	float: left;
	width: 100%;
	/*border-radius: 1rem 1rem 0rem 0rem;*/
	background-color: #8a2217; /* was #cc3322 */
	color: #fff;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	padding: 20px 0;
}

.post-error {
    margin-left: 2px;
    color: #8a2217; /* was #cc3322 */
	min-height: 1.5em;
	height: 1.5em;
	visibility: hidden;
}

.post-footer-controls {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    width: 100%;
    margin-bottom: 10px;
}



.popup-fields {
	float: left;
	width: 100%;
	padding: 20px 20px;
	background-color: #fff;
	/*border-radius: 0rem 0rem 1rem 1rem;*/
}

.popup-fields.corner-me {
	border-radius: 0rem 0rem 0rem 0rem;
}

.popup-fields form input[type="text"],
.popup-fields form input[type="email"],
.popup-fields form input[type="password"],
.popup-fields form input[type="date"] {
	border-radius: 0.5rem;
	padding: 0 10px;
	margin: 0px 0px 0px 0px;
	height: 40px;
}

.popup-fields form input[type="checkbox"] {
    vertical-align: middle;
}


.popup-fields form textarea {
	border-radius: 0.5rem;
	padding: 10px;
	height: 130px;
}

.popup-fields form input[type="text"],
.popup-fields form input[type="email"],
.popup-fields form input[type="password"],
.popup-fields form textarea,
.popup-fields form select {
	width: 100%;
	line-height: 1.2rem;
	background-color: #fff;
	border: 1px solid #cccccc;
	margin-bottom: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.popup-fields form input[type="date"] {
    background-color: #fff;
	border: 1px solid #cccccc;
	margin-bottom: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}




.popup-fields form select {
	border-radius: 0.5rem;
	height: 40px;
	padding: 0 10px;
}

.popup-fields form select.placeholder-active {
    color: #777777;
}

.popup-fields form select option {
    color: #000000;
    font-size: 15px;
}

.popup-fields form select option[value=""][disabled] {
    color: #777777;
}

.popup-fields form ul {
	float: left;
	margin-top: 10px;
	width: 100%;
}
.popup-fields form ul li {
	display: inline-block;
	margin-right: px; /* this is the problem! */
}

.popup-fields .fa-image {
	margin-top: 10px;
	margin-left: 0px;
	margin-bottom: 20px;
	font-size: 25px;
	color: #777777;
}

.popup-fields label {
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 10px;
}

.popup-fields fieldset legend {
	font-weight: 600;
	padding-top: 20px;
	margin-bottom: 10px;
}



.popup-fields .label2 {
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 10px;
}

.popup-fields-img {
	height: 25px;
}

.upload-controls {
	display: flex;
	align-items: flex-end;
	gap: 5px;
}

.file-name-display {
    margin-bottom: 5px;
}


#quote-post {
    color: #686868;
}



/* ================ community popup =============== */

.community-popup {
	width: 570px;
	margin: 0 auto;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0.65);
	-moz-transform: translateX(-50%) translateY(-50%) scale(0.65);
	-ms-transform: translateX(-50%) translateY(-50%) scale(0.65);
	-o-transform: translateX(-50%) translateY(-50%) scale(0.65);
	transform: translateX(-50%) translateY(-50%) scale(0.65);
	opacity: 0;
	visibility: hidden;
	z-index: 0;
}



.community-popup.active,
.user-popup.active {
	opacity: 1;
	visibility: visible;
	z-index: 999;
	overflow: hidden;
	/*border-radius: 1rem 1rem 1rem 1rem;*/
	-webkit-transform: scale(1) translateX(-50%) translateY(-50%);
}

.cover-sec img {
	width: 100%;
	aspect-ratio: 3 / 1;
	margin-bottom: 20px;
}

.profile-img {
	float: left;
	width: 110px;
	text-align: left;
	margin-bottom: 0px;
	margin-top: -75px;
	margin-left: 10px;
	position: relative;
}

.profile-img img {
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	-ms-border-radius: 100px;
	-o-border-radius: 100px;
	width: 110px;
	aspect-ratio: 1 / 1;
	border-radius: 100px;
	float: none;
	border: 5px solid #fff;
}

.clear-left {
	clear: left;
}

.popup-fields.corner-me form .col-lg-12 {
	margin-bottom: 10px;
}



/* ================ profile popup =============== */

.user-popup {
	width: 570px;
	margin: 0 auto;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0.65);
	-moz-transform: translateX(-50%) translateY(-50%) scale(0.65);
	-ms-transform: translateX(-50%) translateY(-50%) scale(0.65);
	-o-transform: translateX(-50%) translateY(-50%) scale(0.65);
	transform: translateX(-50%) translateY(-50%) scale(0.65);
	opacity: 0;
	visibility: hidden;
	z-index: 0;
}

.user-popup.active {
	opacity: 1;
	visibility: visible;
	z-index: 1001;
	-webkit-transform: scale(1) translateX(-50%) translateY(-50%);
}


.user-popup-inner {
	max-height: 75vh;
	overflow-y: auto;
	margin-top: 60px;
}

.profile-error {
    margin-left: 2px;
    color: #8a2217; /* was #cc3322 */
	min-height: 1.0em;
	height: 1.0em;
	visibility: hidden;
}

.close-btn {
    z-index: 101;
    color: white;
    background-color: #8a2217; /* was #cc3322 */
    position: absolute;
    right: 15px;
    top: 5px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}



.corner-me-round {
	border-radius: 0rem 0rem 1rem 1rem;
}


.input-group {
    margin-top: 20px;
    position: relative;
}

.char-counter-container {
    position: absolute;
    top: -20px;
    right: 0; 
    font-size: 0.8em;
    color: #888;
}

.char-counter.warning {
    color: #8a2217; /* was #cc3322 */
    font-weight: bold;
}

.upload-image-link:hover {
    cursor: pointer;
}


/* ================ email popup =============== */

.email-popup {
	width: 500px;
	margin: 0 auto;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0.65);
	-moz-transform: translateX(-50%) translateY(-50%) scale(0.65);
	-ms-transform: translateX(-50%) translateY(-50%) scale(0.65);
	-o-transform: translateX(-50%) translateY(-50%) scale(0.65);
	transform: translateX(-50%) translateY(-50%) scale(0.65);
	opacity: 0;
	visibility: hidden;
	z-index: 0;
}

.email-popup.active {
	opacity: 1;
	visibility: visible;
	z-index: 999;
	-webkit-transform: scale(1) translateX(-50%) translateY(-50%);
}

/*
.email-popup h3 {
	float: left;
	width: 100%;
	border-radius: 1rem 1rem 0rem 0rem;
	background-color: #8a2217;
	color: #fff;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	padding: 20px 0;
}
*/

.email-popup h2 {
	float: left;
	width: 100%;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	padding: 0px 0px 30px 0px;
}




/* ================ common popup format=============== */

.post-popup > a,
.community-popup > a,
.user-popup > a {
	position: absolute;
	top: -20px;
	right: -20px;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
}
.post-popup > a:hover,
.community-popup > a:hover,
.user-popup > a:hover {
	color: #fff;
}


/* ================ SETTINGS =============== */

/*
.user-settings-left-col {
	display: none;
	padding-bottom: 10px;
	border-radius: 1rem;
}
*/

/* hacky hacky
.user-settings-left-col a .generic-box img,
.info-left-col a .generic-box img {
	height: 25px;
	width: 25px;
} */

#user-settings {
	display: none;
	padding-bottom: 10px;
	border-radius: 1rem;
}

.user-settings-box {
    padding: 15px;    
}


.font-weight-600 {
    font-weight: 600;
    
}


/* hacky hacky */
.full-width .popup-fields {
	padding: 0px 20px;
}

.popup-fields .settings-box label {
	color: #000;
	font-weight: 500;
	margin: 25px 0px;
}


/* hacky hacky */
.settings-box .custom-control.custom-switch {
	padding-left: 15px;
	width: 100%;
}

.settings-box {
	display: flex;
	justify-content: space-between;
	align-items: left;
	line-height: 1.4;
	padding-right: 5px;
}

.settings-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.settings-label {
  width: 95%;
  padding-top: 4px;
}

.multiple-settings {
	margin-bottom: 15px;
}

.popup-fields form .multiple-settings label,
.popup-fields form .notif-choices label {
	font-weight: 500;
	margin: 0px;
}

.notif-choices {
	margin-top: 20px;
}

/* hacky hacky */
.notif-choices .custom-switch {
	padding-left: 1.5rem;
}

/* hacky hacky */
.extra-bottom-margin {
	margin-bottom: 15px;
}

.centered-legend {
    text-align: center;
    font-weight: 600;
    padding: 20px 0 10px 0;
    
}

/* remove focus box shadow */
.custom-control-input:focus ~ .custom-control-label::before {
	box-shadow: none;
}

/* Styling for the unchecked/off state (grey outline) */
.custom-control-input:not(:checked) ~ .custom-control-label::before {
  border-color: #adb5bd; /* Default grey border color */
}
/* Styling for the checked/on state outline */
.custom-control-input:checked ~ .custom-control-label::before {
  border-color: #8a2217; /* was #cc3322 */ /* Bootstrap's primary blue color is #007bff */
}
/* Styling for the checked/on state button */
.custom-control-input:checked ~ .custom-control-label::before {
  background-color: #8a2217; /* was #cc3322 */
}









/* ================ INFORMATION =============== */
.info-left-col {
	display: none;
}

/*.info-left-col a:hover {
	text-decoration: underline;
	text-decoration-thickness: 2px;
	color: #000;
	background-color: #e0e0e0;
}*/


/* hacky hacky */
.full-width.info-left-col {
	padding-bottom: 5px;
}

.info-center-col {
	display: none;
}


.info-box {
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
	padding: 15px 20px 0px 20px;
}

.info-box h1 {
	margin-bottom: 0.3em;
	/*font-weight: 600;*/
}

.info-box p {
	margin-bottom: 1.0em;
}

.info-box a {
	color: #212529;
	font-weight: 600;
}

.info-box a:hover {
	text-decoration: underline;
	text-decoration-thickness: 2px;
}

.small-marg {
	margin-bottom: 0.5em;	
}

.large-marg {
	margin-bottom: 1.0em;	
}

.extra-padding {
    padding: 30px;
}

.extra-top-padding {
	padding-top: 10px;
}

.extra-top-padding-25 {
	padding-top: 25px;
}


.extra-top-margin-15 {
	margin-top: 15px;
}

.extra-top-padding-60 {
    padding-top: 60px;
}

.extra-bottom-padding-5 {
	padding-bottom: 5px;
}

.extra-bottom-padding-10 {
	padding-bottom: 10px;
}

.extra-bottom-padding {
	padding-bottom: 15px;
}

.extra-bottom-padding-25 {
	padding-bottom: 25px;
}

.info-box ul,
.info-box ol {
	list-style-type: disc;
	margin-bottom: 1em;
	padding-left: 1.5em;
}

.info-box li {
	margin-bottom: 0.5em;
}

/* hacky hacky */
.info-center-col .full-width {
	padding-bottom: 5px;
}

.bold-text {
	font-weight: 600;
}

strong {
    font-weight: 600;
}

.contact-us-page .popup-fields form textarea {
	height: 250px;
}



/* ================ SIGN IN =============== */


.sign-in-container {
  display: flex;
  justify-content: center; /* Centers horizontally (left to right) */
  align-items: center;     /* Centers vertically (top to bottom) */
  height: 100vh;           /* Ensures the body takes the full height of the viewport */
  margin: 0;               /* Removes default body margin */
}


.sign-in-links {
    text-align: center;
}


.sign-in-window {
	/*display: none;*/
}

.sign-in-title {
	padding: 15px 20px 15px 20px;
	text-align: center;
	color: #000000;
	font-size: 30px;
	font-weight: 600;
	color: #fff;
	background-color: #8a2217; /* was #cc3322 */
	/*border-radius: 1rem 1rem 0rem 0rem;*/
}

.sign-up-confirmation {
	text-align: center;
	color: #686868;
	padding-top: 10px;
	padding-bottom: 20px;
}

.user-msg,
.user-msg1,
.user-msg2,
.user-msg3 {
	font-size: 16px;
	font-weight: 600;
	margin: 35px 0px 35px 0px;
	color: #8a2217; /* was #cc3322 */
	text-align: center;
	line-height: 1.5em;
	min-height: 2.0em;
	height: 2.0em;
}

.user-msg4,
.user-msg5,
.user-msg6 {
	font-size: 16px;
	font-weight: 600;
	padding: 0px 0px 0px 0px;
	color: #8a2217; /* was #cc3322 */
	text-align: center;
	/*line-height: 3.0em;*/
	min-height: 2.0em;
	height: 2.0em;
}

.user-msg-8 {
	font-size: 16px;
	font-weight: 600;
	padding: 0px 0px 10px 0px;
	color: #8a2217; /* was #cc3322 */
	text-align: center;
	/*line-height: 3.0em;*/
	min-height: 2.0em;
	height: 2.0em;
}





.email-error,
.pw-error {
	color: #8a2217; /* was #cc3322 */
	padding-left: 6px;
	visibility: hidden;
}

.password-error {
    min-height: 2em; /* was 1.2em */
    color: #8a2217; /* was #cc3322 */
    padding-left: 6px;
}

.user-handle-error {
    min-height: 2em;
    color: #8a2217; /* was #cc3322 */
    padding-left: 6px;
    visibility: hidden;
}

.dob-error {
    min-height: 2em;
    color: #8a2217; /* was #cc3322 */
    padding-left: 6px;
    visibility: hidden;
}

.user_name {
    display: none;
}

.lost-pw-and-sign-in {
    text-align: center;
    padding-top: 20px;
    color: #000;
}

.lost-pw-and-sign-in:hover {
    color: #0056b3;
    text-decoration: underline;
    cursor:pointer;
}

.sign-up-window {
    display: none;
}

.lost-password-request {
    display: none;
}

.lost-password-submit {
    display: none;
}

/* renamed to snackbar to not conflict with Bootstrap */
#snackbar-container {
    position: fixed;
    bottom: 20px;
    right: 20px; /* Or left: 50%; transform: translateX(-50%); for center */
    z-index: 9999;
    pointer-events: none;
}
.snackbar {
    background: #333;
    color: #fff;
    padding: 12px 24px;
    margin-top: 10px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    width: fit-content;
    max-width: 100%;
    pointer-events: auto;
    
}
.snackbar.show {
    opacity: 1;
}

.snackbar.error {
    background: #8a2217; /* was #cc3322 */ /* Red for errors */
}

.snackbar.success {
    background: #198754; /* Bootstrap Success Green */
}


/* END OF INDIE SOCIAL CSS */

















