 /*
 * SPDX-FileCopyrightText: 2010-2024 the Friendica project
 *
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */

/*
    Created on : 17.02.2016, 23:55:45
    Author     : rabuzarus and contributors
*/

body {
	padding-top: 110px;
	background-color: #f2f4f7;
	background-image: url("");
	background-size: auto;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: #313131;
	font-family: "Open Sans", sans-serif;
}
body.minimal {
	padding: 15px;
}

body a {
	color: #0066ff;
	text-decoration: none;
}
/* Anchors incorrectly display with a fixed top menu. This global rule offsets all
 * anchors so that accessing them with a # link will actually scroll the associated
 * content in the visible part of the page.
 *
 * anchor.top should be the opposite of body.padding-top
 */
body a[name]:not([href]) {
	display: block;
	position: relative;
	top: -110px;
	visibility: hidden;
}

body a:hover,
.btn-link:hover,
body a:focus,
.btn-link:focus,
body a:active,
.btn-link:active,
body a.active,
.btn-link.active {
	color: #005ce6;
	outline-color: #005ce6;
	text-decoration: none;
}

.wall-item-container a:hover {
	text-decoration: underline;
}

hr {
	margin-top: 10px;
	margin-bottom: 10px;
}
aside hr,
section hr {
	border-color: rgba(238, 238, 238, 1);
}
iframe,
img,
video {
	max-width: 100%;
}
blockquote {
	font-size: inherit;
}
.clear {
	clear: both;
}
.no-padding {
	padding: 0;
}
.fakelink {
	cursor: pointer;
}
.btn.btn-link.fakelink {
	box-shadow: none;
	padding: 0 2px;
	vertical-align: baseline;
	outline-offset: 0;
}

.hidden {
	display: none !important;
}
.minimize {
	max-height: 0px !important;
	overflow: hidden !important;
}
.inflated {
	display: none;
}

/**
 * details tag
 */
details {
	padding: .5em .5em 0;
}
details details {
	padding-left: .5em;
}
details summary {
	font-weight: bold;
	display: list-item;
}

/**
 * clickable table rows
 */
.table > tbody > td[role="button"] {
	cursor: pointer;
}

/**
 * mobile aside
 */
@media screen and (max-width: 990px) {
	body {
		padding-top: 105px;
	}
	aside {
		position: fixed !important;
		top: 0 !important;
		background-color: #f2f4f7;
		width: 100%;
		max-width: 300px;
		height: 100%;
		padding-top: 100px;
		z-index: 10;
		overflow: auto;
		padding-left: 6px !important;
		padding-right: 6px !important;
	}
	aside::before {
		content: " ";
		position: fixed;
		display: block;
		top: 0;
		left: 300px;
		right: 0;
		bottom: 0;
		background-color: rgba(0, 0, 0, 0.4);
		opacity: 0;
		transition: opacity 0.5s;
	}
	aside.canvas-slid::before {
		opacity: 1;
	}

	/* prevent page scroll when the aside is opened **/
	body.aside-out {
		overflow: hidden;
	}
}
/*
* standard page elements
*/

#back-to-top {
	display: none;
	cursor: pointer;
	color: #65686C;
	position: fixed;
	z-index: 49;
	right: 20px;
	bottom: 20px;
	opacity: 1;
	font-size: 2.9em;
	padding: 0 12px 0 12px;
	border-radius: 10px;
	background-color: #ffffff;
	line-height: 1.5;
}

#item-delete-selected {
	cursor: pointer;
	color: white;
	position: fixed;
	z-index: 49;
	right: 20px;
	top: 100px;
	opacity: 0.8;
	font-size: 2.9em;
	padding: 0 12px 0 12px;
	border-radius: 10px;
	background-color: #0066ff;
	line-height: 1.5;
	display: none;
}

#toggle_mobile_link {
	display: none;
}

/*
* Overwriting and Extend Bootstrap
*/
.label,
.label a {
	color: #fff;
}

/* Buttons */

.btn {
	float: none;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	-moz-box-shadow: none;
	background-image: none;
	text-shadow: none;
	border-radius: 3px;
	margin-bottom: 0;
	margin-top: 2px;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	color: inherit;
}
.btn:focus {
	outline-color: #005ce6;
}

.btn-default {
	background: #ededed;
	color: #313131;
}
.btn-sm {
	padding: 4px 8px;
	font-size: 12px;
}
.btn-small {
	padding: 6px 10px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px;
}
.btn-xs {
	padding: 1px 5px;
	font-size: 12px;
}
.btn.btn-danger {
	color: #ffffff;
	background-color: #ae0f0f;
}

.btn.btn-primary {
	background: #ffffff;
	color: #65686C;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
	color: #65686C;
	background: rgba(128,128,128,.1);
	text-decoration: none;
}
.btn.btn-primary:active,
.btn.btn-primary.active {
	background: rgba(128,128,128,.1);
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary.focus,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary.active,
.btn-primary:active,
.open > .dropdown-toggle.btn-primary {
	background: rgba(128,128,128,.1);
	border-color: none;
}

.btn-link {
	border: 0;
	color: #0066ff;
	padding-left: 0;
	padding-right: 0;
}
.btn-clear,
.btn-clear:active {
	border: 0;
	background: transparent;
	box-shadow: none;
}
.btn-eventnav,
btn-eventnav:hover {
	font-size: 16px;
	background: none;
	background-color: transparent;
	padding: 0 14px;
}
.btn-separator {
	border-left: 1px solid #777;
}

.toggle.btn {
	border: 1px solid transparent;
}
.toggle.btn-xs {
	min-width: 45px;
}
.toggle.off {
	border-color: #ccc;
}
.toggle .toggle-off,
.toggle .toggle-off:hover {
	color: #ccc;
	background-color: #eee;
	box-shadow: none;
}
.toggle.off .toggle-handle {
	background-color: #eee;
}
.toggle-handle {
	background-color: #fff;
	border-width: 0 1px;
	border: 1px solid transparent;
	border-color: #ccc;
}
.form-control-sm,
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
	padding: 0.275rem 0.75rem;
	line-height: 1.5;
	height: 30px;
	border-radius: 0.2rem;
}
/* Bootstrap media class fix/hack
 * This is a test. I thought it does have some
 * issues in some corner cases. Maybe we remove
 * once more
 * https://github.com/twbs/bootstrap/issues/6053
 */
.media,
.media-body {
	overflow: visible;
}
.media .media-body {
	display: table-cell;
	width: 10000px;
	*width: auto;
	*zoom: 1;
}
.media:before,
.media:after {
	content: "";
	display: table;
}
.media:after {
	clear: both;
}

/* Badges */
.badge {
	vertical-align: baseline;
	background-color: #0066ff;
	border-radius: 4px;
	z-index: 1;
}
aside .badge {
	opacity: 0.7;
}
.group-widget-entry .badge,
.sidebar-circle-li .badge {
	margin-top: 6px;
}

/* disabled elements */
.community-content-wrapper > h3,
.network-content-wrapper > .section-title-wrapper {
	display: none;
}

header #site-location {
	display: none;
}
header #banner {
	position: fixed;
	top: 0px;
	left: 49%;
	right: 49%;
	z-index: 1040;
	margin-top: 12.5px;
	text-align: center;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	font-size: 14px;
	font-family: tahoma, "Lucida Sans", sans;
	color: #fff;
	font-weight: bold;
	white-space: nowrap;
	padding-left: 55px;
}
header #banner #logo-img,
.navbar-brand #logo-img {
	-webkit-mask-image: url("img/friendica-25.png");
	background-color: #65686C;
	height: 25px;
	width: 25px;
	margin-left: auto;
	margin-right: auto;
}

#navbrand-container {
	display: flex;
}
#navbrand-container #navbar-brand-text {
	padding-left: 5px;
	color: #65686C;
}

/* offcanvas section */

/* Right offcanvas uses: #offcanvasUsermenu, .offcanvas-right-active
   .offcanvas-right and .offcanvas-right-overlay */
.off-canvas {
	width: 300px;
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	background-color: #333;
	transform: translateX(-100%);
	transition: 0.4s ease-in-out;
	z-index: 1060;
}
#offcanvasUsermenu {
	width: 300px;
	position: fixed;
	right: 0px;
	top: 50px;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	background-color: #333;
	transform: translateX(100%);
	transition: 0.4s ease-in-out;
	z-index: 1060;
}
.offcanvas-active .off-canvas {
	transform: translateX(0);
}
.offcanvas-right-active #offcanvasUsermenu {
	transform: translateX(0);
}
.navbar-fixed-top {
	transition: 0.4s ease-in-out;
	width: 100%;
}
.page-wrapper {
	padding-top: 50px;
	transition: 0.4s ease-in-out;
}
.offcanvas-active .page-wrapper,
.offcanvas-active .navbar-fixed-top {
	transform: translateX(300px);
}

.offcanvas-overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1050;
	visibility: hidden;
	opacity: 0;
	transition: 0.4s ease-in-out;
}
.offcanvas-right-overlay {
	position: fixed;
	right: 0;
	top: 50px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1050;
	visibility: hidden;
	opacity: 0;
	transition: 0.4s ease-in-out;
}
.offcanvas-active .offcanvas-overlay,
.offcanvas-right-active .offcanvas-right-overlay {
	opacity: 1;
	visibility: visible;
}
/* offcanvas section ends */

/* NavBar */
.topbar {
	position: fixed;
	display: block;
	height: 50px;
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}
.topbar ul.nav {
	float: left;
}
.topbar ul.nav > li {
	float: left;
}
@media (min-width: 992px) {
	.topbar ul.nav > li > a,
	.topbar ul.nav > li > button {
		padding-top: 15px;
		padding-bottom: 15px;
		line-height: 20px;
	}
}
@media (max-width: 991px) {
	.topbar ul.nav > li > a,
	.topbar ul.nav > li > button {
		padding: 15px 10px;
	}
}
.topbar .dropdown-footer {
	margin: 10px;
}
.topbar .dropdown-header {
	font-size: 16px;
	padding: 3px 10px;
	margin-bottom: 10px;
	font-weight: 300;
	color: #bebebe;
}
.topbar .dropdown-header .dropdown-header-link {
	position: absolute;
	top: 2px;
	right: 10px;
}
.topbar .dropdown-header .dropdown-header-link a,
.topbar .dropdown-header .dropdown-header-link .btn-link {
	color: #0066ff !important;
	font-size: 12px;
	font-weight: 400;
}
.topbar .dropdown-header:hover {
	color: #bebebe;
}
#topbar-first,
nav.navbar {
	background-color: #ffffff;
	top: 0;
	z-index: 1030;
	color: #65686C;
}
@media screen and (max-width: 767px) {
	#topbar-first,
	nav.navbar {
		padding: 0 2px;
	}
}

#topbar-first .navbar-toggle {
	margin-top: 5px;
	margin-bottom: 0;
	margin-right: 0;
}
#topbar-first .nav > li > a,
#topbar-first .nav > li > button,
nav.navbar .nav > li > a,
nav.navbar .nav > li > button {
	color: #65686C;
}
#topbar-first .nav > .open > a,
#topbar-first .nav > .open > button {
	background-color: #ffffff;
}
#topbar-first .nav > li > a:hover,
#topbar-first .nav > li > a:focus,
#topbar-first .nav > li > button:not(#main-menu):hover,
#topbar-first .nav > li > button:not(#main-menu):focus,
nav.navbar .nav > li > a:hover,
nav.navbar .nav > li > a:focus,
nav.navbar .nav > li > button:hover,
nav.navbar .nav > li > button:focus {
	background-color: #e6e6e6;
}
#topbar-first .nav > .account {
	height: 50px;
	margin-left: 20px;
}
#topbar-first .nav > .account img {
	margin-left: 10px;
	height: 32px;
	width: 32px;
	border-radius: 3px;
}
#topbar-first .nav > .account .dropdown-toggle {
	padding: 8px 5px 0px;
	line-height: 1.1em;
	text-align: left;
}
#topbar-first .nav > .account .dropdown-toggle span {
	font-size: 12px;
}
#topbar-first .topbar-brand {
	position: relative;
	z-index: 2;
}
#topbar-first .topbar-actions {
	position: relative;
	z-index: 3;
}
#topbar-first .topbar-nav {
	left: 0;
	right: 0;
	text-align: center;
	z-index: 1;
}
#topbar-first .topbar-nav .nav-segment {
	position: relative;
	text-align: left;
}
#topbar-first .topbar-nav .nav-segment > a {
	display: inline-block;
	text-decoration: none;
	text-align: left;
}
#topbar-first .topbar-nav .nav-segment .nav-notification {
	position: absolute;
	top: 4px;
	right: -2px;
	background-color: #ff3535;
}
#topbar-first #intro-update {
	cursor: pointer;
}
#topbar-first .topbar-nav .arrow:after {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
	border-width: 10px;
	content: " ";
	top: 1px;
	margin-left: -10px;
	border-top-width: 0;
	border-bottom-color: #fff;
	z-index: 1035;
}
#topbar-first .topbar-nav .arrow {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
	z-index: 1001;
	border-width: 11px;
	left: 50%;
	margin-left: -18px;
	border-top-width: 0;
	border-bottom-color: rgba(0, 0, 0, 0.15);
	top: -19px;
	z-index: 1035;
}
#topbar-first .topbar-nav .dropdown-menu {
	width: 350px;
	margin-left: -148px;
}
#topbar-first .topbar-nav .dropdown-menu ul.media-list {
	max-height: 400px;
	overflow: auto;
}
#topbar-first .topbar-nav .dropdown-menu li {
	position: relative;
}
#topbar-first .topbar-nav .dropdown-menu li i.approval {
	position: absolute;
	left: 2px;
	top: 36px;
	font-size: 14px;
}
#topbar-first .topbar-nav .dropdown-menu li i.accepted {
	color: #5cb85c;
}
#topbar-first .topbar-nav .dropdown-menu li i.declined {
	color: #d9534f;
}
#topbar-first .topbar-nav .dropdown-menu li .media {
	position: relative;
}
#topbar-first .topbar-nav .dropdown-menu li .media .img-space {
	position: absolute;
	top: 14px;
	left: 14px;
}
#topbar-first .dropdown-footer {
	margin: 10px 10px 5px;
}
#topbar-first .caret {
	border-top-color: #bebebe;
}
#topbar-first .btn-group > a {
	background-color: #7f9baa;
}
#topbar-first .btn-enter {
	background-color: #7f9baa;
	margin: 6px 0;
}
#topbar-first .btn-enter:hover {
	background-color: #89a2b0;
}
.navbar-fixed-top ul.nav.navbar-nav.navbar-right {
	display: flex;
}

#friendica-logo-mask {
	display: block;
}

/* Notification Menu */
#topbar-first #nav-notifications-menu {
	max-height: 400px;
}
#topbar-first #nav-notifications-menu a {
	color: #333;
	padding: 0;
}
#topbar-first #nav-notifications-menu li.notif-entry {
	color: #333;
	padding: 10px;
	border-bottom: 1px solid #eee;
	position: relative;
	border-left: 3px solid #fff;
	font-size: 12px;
}

#topbar-first #nav-notifications-menu li.notification-unseen {
	border-left: 3px solid #e3eff3;
	background-color: #e3eff3;
}
#topbar-first #nav-notifications-menu li.notif-entry:hover {
	background-color: #f7f7f7;
	border-left: 3px solid #0066ff;
}
#topbar-first #nav-notifications-menu li.placeholder {
	border-bottom: none;
}
#topbar-first #nav-notifications-menu .media .media-body .contactname {
	font-weight: bold;
}
#topbar-first #nav-notifications-menu .media .media-body .label {
	padding: 0.1em 0.5em;
}
#topbar-first #nav-notifications-menu li.notif-entry .media-object a img {
	height: 32px;
	width: 32px;
	border-radius: 3px;
}
/* The Top Nav Bar user menu */
#topbar-first .account .user-title {
	text-align: right;
	margin-top: 7px;
}
#topbar-first .account .user-title span {
	color: #65686C;
}
#topbar-first .account #main-menu .nav-notification {
	position: absolute;
	top: 4px;
	right: -2px;
	background-color: #ff8989;
}
#offcanvasUsermenu {
	top: 50px;
	background-color: #f2f4f7;
	border-top: 0;
	border-right: 0;
	border-bottom: 0;
	border-left-color: #65686C;
	box-shadow: -3px 0 3px -3px black;
}
#offcanvasUsermenu .nav-container {
	/* required to compensate for moving the container below the topnav bar */
	margin-bottom: 50px;
}
#offcanvasUsermenu li.divider {
	background-color: transparent;
	height: 3px;
}

#offcanvasUsermenu ul,
#offcanvasUsermenu ul li:first-child,
#offcanvasUsermenu ul,
#offcanvasUsermenu ul li:last-child {
	border-radius: 0;
}
#offcanvasUsermenu li,
#offcanvasUsermenu a {
	background-color: #ffffff;
	color: #65686C;
}

#offcanvasUsermenu li.list-group-item {
	border-color: #f2f4f7;
}
#offcanvasUsermenu a {
	display: block;
	margin: -10px -15px;
	padding: 10px 15px;
}
#offcanvasUsermenu li.nav-sitename {
	font-weight: bold;
}
#topbar-first .dropdown.account li#nav-sitename {
	padding-left: 20px;
	padding-right: 20px;
	font-weight: bold;
	word-break: break-word;
}
#topbar-first .dropdown.account li#nav-sitename:hover {
	border: none;
	background-color: #ffffff;
}
/* Nav Search */
.menu-popup {
	max-height: calc(100vh - 55px);
	overflow-y: auto;
}
#topbar-first #search-box .navbar-form {
	margin: 0px;
	padding: 12px 12px;
}
#search-mobile {
	position: fixed;
	top: 90px;
	left: 0;
	right: 0;
	z-index: 2;

	background-color: #f2f4f7;

	/* fix bootstrap .well class not playing well with data-target slide animation */
	margin: 0;
	padding: 0;
	min-height: 0;
	border-radius: 0;
}
#search-mobile .navbar-form {
	margin: 0;
}
#topbar-first #search-box .form-search {
	height: 25px;
	font-size: 13px;
	background-position: 8px 4px;
}
#topbar-first #search-box .btn {
	font-size: 10px;
	padding: 1px 8px;
}

/* second topbar */
#topbar-second {
	height: 40px;
	top: 50px;
	background-color: #fff;
	z-index: 1029;
	background-image: none;
	-webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid #d4d4d4;
}
#topbar-second > .container {
	height: 100%;
}
@media screen and (max-width: 767px) {
	#topbar-second > .container,
	#topbar-second #navbar-button {
		padding: 0;
	}
}
#topbar-second .dropdown-menu {
	padding-top: 0;
	padding-bottom: 0;
}
#topbar-second .dropdown-menu .divider {
	margin: 0;
}
#topbar-second #space-menu-dropdown,
#topbar-second #search-menu-dropdown {
	width: 400px;
}
#topbar-second #space-menu-dropdown .media-list,
#topbar-second #search-menu-dropdown .media-list {
	max-height: 400px;
	overflow: auto;
}
.intro-actions {
	font-size: 2em;
	padding: 1em;
}
.intro-wrapper button.intro-action-link {
	padding-left: 10px;
	padding-right: 10px;
}
ul li .intro-wrapper button.intro-action-link {
	opacity: 0.7;
}
@media screen and (max-width: 768px) {
	#topbar-second #space-menu-dropdown .media-list,
	#topbar-second #search-menu-dropdown .media-list {
		max-height: 200px;
	}
}
#topbar-second #space-menu-dropdown form,
#topbar-second #search-menu-dropdown form {
	margin: 10px;
}
#topbar-second #space-menu-dropdown .search-reset,
#topbar-second #search-menu-dropdown .search-reset {
	position: absolute;
	color: #999;
	margin: 10px;
	top: 8px;
	right: 10px;
	display: none;
	cursor: pointer;
}
#topbar-second #space-menu-dropdown li > ul > li > a > .media .media-body p {
	color: #bebebe;
	font-size: 11px;
	margin: 0;
	font-weight: 400;
}
#topbar-second #nav-short-info .heading {
	margin-left: -14px;
	overflow: hidden;
	white-space: nowrap;
	padding-right: 20px;
	text-overflow: ellipsis;
}
#topbar-second #tabmenu .heading {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #0066ff;
	text-align: center;
}

/* Dropdown Menus */
.nav > li > .btn-link {
	position: relative;
	display: block;
	padding: 10px 15px;
}
.nav .open > .btn-link {
	background-color: #eee;
	border-color: #337ab7;
}
.nav-pills > li > .btn-link {
	border-radius: 4px;
}
.nav-pills .dropdown-menu,
.nav-tabs .dropdown-menu,
.account .dropdown-menu,
.contact-photo-wrapper .dropdown-menu {
	background-color: #ffffff;
	border: none;
}
.dropdown-menu .divider {
	margin: 5px 0;
}
.nav-pills .dropdown-menu li.divider,
.nav-tabs .dropdown-menu li.divider,
.account .dropdown-menu li.divider,
.contact-photo-wrapper .dropdown-menu li.divider {
	background-color: rgba(128,128,128,.1);
	border-bottom: none;
}
.nav-pills .dropdown-menu li > a,
.nav-tabs .dropdown-menu li > a,
.account .dropdown-menu li > a,
.contact-photo-wrapper .dropdown-menu li > a {
	border-left: 3px solid #ffffff;
}
.nav-pills .dropdown-menu li a,
.nav-pills .dropdown-menu li .btn-link,
.nav-tabs .dropdown-menu li a,
.nav-tabs .dropdown-menu li .btn-link,
.account .dropdown-menu li a,
.account .dropdown-menu li .btn-link,
.contact-photo-wrapper .dropdown-menu li a,
.contact-photo-wrapper .dropdown-menu li .btn-link {
	color: #65686C;
	font-weight: 400;
	width: 100%;
	text-align: left;
}
.nav-pills .dropdown-menu li a i,
.nav-pills .dropdown-menu li .btn-link i,
.nav-tabs .dropdown-menu li a i,
.nav-tabs .dropdown-menu li .btn-link i,
.account .dropdown-menu li a i,
.account .dropdown-menu li .btn-link i,
.contact-photo-wrapper .dropdown-menu li a i,
.contact-photo-wrapper .dropdown-menu li .btn-link i {
	margin-right: 5px;
	font-size: 14px;
	display: inline-block;
	width: 14px;
}
.nav-pills .dropdown-menu li > a:hover,
.nav-tabs .dropdown-menu li > a:hover,
.account .dropdown-menu li > a:hover,
.contact-photo-wrapper .dropdown-menu li > a:hover,
.nav-pills .dropdown-menu li.selected a,
.nav-tabs .dropdown-menu li.selected a,
.account .dropdown-menu li.selected a,
.contact-photo-wrapper .dropdown-menu li.selected a {
	border-left: 3px solid #0066ff;
	color: #fff;
	background: rgba(128,128,128,.1);
}
#photo-edit-link-wrap {
	color: #333;
	margin-bottom: 15px;
}

#newmember-tab > a {
	font-size: 1.2em;
	font-weight: 800;
}

/*
 * Aside
 *
 */

aside .widget,
.nav-container .widget {
	border: none;
	color: #313131;
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0 0 3px #dadada;
	-webkit-box-shadow: 0 0 3px #dadada;
	-moz-box-shadow: 0 0 3px #dadada;
	border-radius: 4px;
	position: relative;
	margin-bottom: 20px;
	padding: 10px;
	overflow: auto;
}
aside .widget h3,
.nav-container .widget h3 {
	font-weight: bold;
	font-size: 16px;
	margin: 0;
	padding-bottom: 10px;
}

aside .widget ul,
.nav-container .widget ul {
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: -10px;
	margin-right: -10px;
	list-style: none;
}

aside .widget li .label {
	float: left;
}
aside .widget li,
.nav-container .widget li {
	padding-left: 20px;
	padding-right: 10px;
}
aside .widget li:hover,
aside .widget li.selected,
.nav-container .widget li:hover {
	z-index: 2;
	color: #333;
	background-color: rgba(247, 247, 247, 1);
	border-left: 3px solid #0066ff !important;
	padding-left: 17px;
}
.side-link-link,
aside .widget li a {
	display: block;
	padding-top: 6px;
	padding-bottom: 6px;
}
aside .widget li a,
aside .widget li a:hover {
	color: #333;
}

/* group-list widget */
aside > #datebrowse-sidebar li.posted-date-selector-months {
	margin-bottom: 10px;
	padding: 0;
	width: 100%;
}
aside > #datebrowse-sidebar li.posted-date-selector-months:hover {
	border-left: none !important;
	background-color: transparent !important;
}
aside > #datebrowse-sidebar .posted-date-selector-months > ul {
	margin: 0;
}
aside > #datebrowse-sidebar .posted-date-selector-months > ul > li {
	padding-left: 30px;
}
aside > #datebrowse-sidebar .posted-date-selector-months > ul > li:hover {
	padding-left: 27px;
}

.group-list-img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	opacity: 0.5;
	filter: alpha(opacity=50); /* For IE8 and earlier */
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#group-list-sidebar-ul li:hover a > .group-list-img {
	-webkit-filter: unset;
	filter: unset;
	opacity: unset;
}

/* help page widget */
aside > .help-aside-wrapper p strong:first-child {
	display: block;
	margin: 1em 0 0em;
}
aside > .help-aside-wrapper h1 {
	font-weight: bold;
	font-size: 16px;
	margin: 0;
	padding: 20px 0 10px;
}
aside > .help-aside-wrapper h2 {
	font-weight: bold;
	font-size: 14px;
}

/* vcard / h-card */
aside .vcard #profile-photo-wrapper {
	margin: 0;
}
aside .vcard img.u-photo,
aside img.vcard-photo {
	width: 100%;
	border-radius: 3px;
}
aside .vcard .tool .action {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 32px;
	width: 45px;
	height: 45px;
	background: rgba(0, 0, 0, 0.5);
	text-align: center;
	border-radius: 3px;
	opacity: 0;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
aside .vcard .tool a {
	color: rgba(255, 255, 255, 0.85);
}
aside .vcard #profile-photo-wrapper:hover .tool .action {
	opacity: 1;
}
aside .vcard #profile-photo-wrapper.crop-preview {
	padding: 0;
}
aside .vcard .profile-header {
	padding: 5px 0px 20px 0px;
}
aside .vcard .fn {
	font-weight: bold;
	padding: 5px 0px 5px 0px;
}
aside .vcard .p-addr {
	font-style: italic;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-bottom: 2px;
}
aside .vcard .title {
	margin-top: 10px;
}
aside .vcard .detail {
	display: table;
	padding: 2px 0;
}
aside .xmpp, aside .matrix {
	display: table;
}
aside .vcard .icon {
	display: table-cell;
	padding-right: 10px;
	width: 30px;
}
#profile-extra-links {
	overflow: auto;
	margin-bottom: 10px;
}
aside .vcard #subscribe-feed-link-button,
aside .vcard #dfrn-request-link-button,
aside .vcard #wallmessage-link-button {
	width: 50%;
	margin: 0 0 0 -5px;
	float: left;
	padding: 0 5px;
}
aside .vcard #subscribe-feed-link,
aside .vcard #dfrn-request-link,
aside .vcard #wallmessage-link {
	width: 100%;
}
/* vcard-short-info */
#vcard-short-info,
#nav-short-info .contact-wrapper {
	margin-top: 2px;
	height: 40px;
	white-space: nowrap;
	overflow: hidden;
	padding-right: 20px;
	margin-left: -14px;
}
#nav-short-info .contact-photo-wrapper.media-left {
	float: left;
}
#vcard-short-photo-wrapper img,
#nav-short-info .contact-wrapper img {
	height: 34px;
	width: 34px;
	border-radius: 3px;
}
#vcard-short-desc,
#nav-short-info .contact-wrapper .media-body {
	display: block;
	height: 34px;
	width: 100%;
	text-overflow: ellipsis;
}
#vcard-short-desc > .media-heading,
#vcard-short-desc > .vcard-short-addr,
#nav-short-info .contact-wrapper .media-heading,
#nav-short-info .contact-wrapper #contact-entry-url-network {
	text-overflow: ellipsis;
	overflow: hidden;
}
#vcard-short-desc > .media-heading,
#nav-short-info .contact-wrapper .media-heading {
	margin-bottom: 1px;
	font-weight: bold;
}
#nav-short-info .contact-wrapper .media-heading a {
	color: #333;
	font-size: 14px !important;
}
#vcard-short-desc > .vcard-short-addr,
#nav-short-info .contact-wrapper #contact-entry-url-network {
	color: #313131;
	font-size: 12px;
}
.network-content-wrapper > .generic-page-wrapper,
#nav-short-info .contact-wrapper .contact-photo-overlay,
#nav-short-info .contact-wrapper .contact-actions {
	display: none;
}

aside #peoplefind-sidebar input,
aside #follow-sidebar input {
	height: 30px;
	background-position: 10px 5px;
}
aside #peoplefind-sidebar label,
aside #follow-sidebar label {
	font-weight: normal;
}
aside #peoplefind-sidebar .form-group-search .form-button-search,
aside #follow-sidebar .form-group-search .form-button-search {
	padding: 2px 8px;
}

div#sidebar-circle-header h3,
div#sidebar-group-header h3 {
	float: left;
}

div#sidebar-circle-list,
div#sidebar-group-list {
	clear: both;
}

.circle-new-form {
	clear: both;
}

.circle-edit-tool,
.group-new-tool {
	padding-top: 0;
	color: #333;
}
.sidebar-widget-header .circle-edit-tool,
.group-new-tool {
	margin-top: -5px;
}

.faded-icon {
	color: #333;
	opacity: 0.3;
	transition: all 0.1s ease-in-out;
}
.faded-icon:hover {
	color: #333;
	opacity: 1;
}
.icon-padding {
	margin-left: 20px;
}

aside .widget-action {
	padding: 5px 10px;
}
aside #circle-sidebar .sidebar-circle-li .circle-edit-tool.faded-icon:hover,
aside #group-sidebar .group-new-tool.faded-icon:hover,
aside #saved-search-list .saved-search-li .savedsearchdrop.faded-icon:hover,
aside .widget.widget-action.faded-icon:hover {
	opacity: 0.8;
	transition: all 0.25s ease-in-out;
}
aside #circle-sidebar .sidebar-circle-li .circle-edit-tool.faded-icon:hover,
aside #group-sidebar .group-new-tool.faded-icon:hover,
aside #saved-search-list .saved-search-li .savedsearchdrop.faded-icon:hover,
aside .widget .widget-action.faded-icon:hover {
	opacity: 1;
}
aside #circle-sidebar li .circle-checkbox {
	margin: 6px 0 0;
}
aside #circle-sidebar li .circle-edit-tool {
	padding-right: 10px;
}
aside #circle-sidebar li .circle-edit-tool:first-child {
	padding-right: 0px;
}

/* contact block widget */
.contact-block-content {
	clear: both;
	overflow: auto;
	height: auto;
}
.contact-block-div {
	float: left;
	margin: 0px 5px 5px 0px;
}
.contact-block-link {
}
.contact-block-img {
	height: 75px;
	width: 75px;
	border-radius: 4px;
}

/* Tag cloud widget */
.tagblock.widget > .tag-cloud {
	text-align: center;
}
/* Section */
section ul.tabs {
	display: none !important;
}

/* Jot */
section #jotOpen {
	display: none;
}
#jotOpen {
	margin-top: 3px;
	float: right;
}
#jot-content {
	display: none;
}
.modal #jot-sections {
	max-height: calc(100vh - 22px);
}
@media (min-width: 768px) {
	.modal #jot-sections {
		max-height: calc(100vh - 62px);
	}
}
#jot-modal #jot-modal-body {
	overflow: auto;
}
#jot-modal #jot-sections,
#jot-modal #jot-modal-body,
#jot-modal #profile-jot-form,
#jot-modal #profile-jot-wrapper,
#jot-modal #jot-text-wrap,
#jot-modal #jot-preview-content,
#jot-modal #tread-wrapper--1,
#jot-modal #item-Q0,
#jot-modal #profile-jot-acl-wrapper,
#jot-modal #acl-wrapper {
	display: flex;
	flex: auto;
	flex-direction: column;
}
#jot-modal .modal-header a,
#jot-modal .modal-header .btn-link,
#profile-jot-submit-wrapper a,
#profile-jot-submit-wrapper .btn-link {
	color: #333;
}
#jot-modal .modal-header {
	border-bottom: none;
}
#jot-modal .modal-header .compose-link {
	float: right;
	margin-right: 20px;
}
#jot-title-wrap,
#jot-category-wrap {
	margin-bottom: 5px;
}
#jot-text-wrap {
	margin-top: 20px;
}
#jot-text-wrap textarea {
	min-height: 100px;
	overflow-y: auto !important;
	overflow-y: overlay !important;
}
#jot-text-wrap .preview textarea {
	width: 100%;
}
#preview_profile-jot-text,
.comment-edit-form .preview {
	position: relative;
	padding: 0px 10px;
	margin-top: -2px;
	border: 2px solid #ededed;
	border-top: none;
	box-shadow: none;
	border-radius: 0 0 4px 4px;
	background: #fff;
	color: #333;
}
textarea#profile-jot-text:focus + #preview_profile-jot-text,
textarea.comment-edit-text:focus + .comment-edit-form .preview {
	border: 2px solid #6fdbe8;
	border-top: none;
}
.preview hr.previewseparator {
	margin-top: 0px;
	border-color: #d2d2d2;
}
#previewImgBtn_profile-jot-text,
.closePreview {
	position: absolute;
	top: 15px;
}
.closePreview {
	right: 15px;
	z-index: 1;
}
.previewImgBtn {
	left: 15px;
}
.preview button.previewActionBtn {
	display: block;
	height: 25px;
	width: 25px;
	border-radius: 50%;
	color: #fff;
	border: 2px solid #fff;
	box-shadow: 0 0 3px gray;
	background: #777;
	text-align: center;
	line-height: 2px;
	text-decoration: none;
	padding: 0 0 1px 1px;
	opacity: 0.7;
}
.preview button.previewActionBtn:hover {
	opacity: 1;
}
.preview .closePreview button.previewActionBtn {
	font-size: 25px;
}
#previewInputTitle_profile-jot-text {
	width: 100%;
}
#profile-jot-wrapper button#profile-jot-submit {
	margin-top: 5px;
}
#profile-jot-wrapper #character-counter {
	padding: 10px 15px;
}
.modal .wall-item-container.preview {
	overflow-y: auto;
	overflow-y: overlay;
}
/* ACL */
.fa.lock:before {
	font-family: ForkAwesome;
	content: "\f023";
}
.fa.unlock:before {
	font-family: ForkAwesome;
	content: "\f09c";
}

#acl-wrapper label.panel-heading {
	display: block;
	margin-bottom: 0;
	cursor: pointer;
}

/* Filebrowser */
.fbrowser .breadcrumb {
	margin-bottom: 0px;
}
.fbrowser .path a:before {
	content: "";
	padding: 0;
}
.fbrowser .breadcrumb > li:last-of-type a {
	color: #313131;
	pointer-events: none;
	cursor: default;
}
.fbrowser .folders {
	box-shadow: -1.5px 0 0 0 rgba(0, 0, 0, 0.1) inset;
	padding-right: 1px;
}
.fbrowser .folders ul {
	padding: 0px;
	margin-left: -15px;
	margin-bottom: 0px;
	overflow-y: auto;
	min-width: 100px;
	max-height: calc(100vh - 210px);
	line-height: 1.3;
}
@media (min-width: 768px) {
	.fbrowser .folders ul {
		max-height: calc(100vh - 255px);
	}
}
.fbrowser .folders li {
	padding-left: 20px;
	padding-right: 10px;
	padding-top: 3px;
	padding-bottom: 3px;
}
.fbrowser .folders li:hover {
	z-index: 2;
	color: #333;
	background-color: rgba(247, 247, 247, 1);
	border-left: 3px solid #0066ff;
	padding-left: 17px;
}
.fbrowser .folders li a,
.fbrowser .folders li a:hover {
	color: #333;
	font-size: 13px;
}
.fbrowser .folders + .list {
	padding-left: 10px;
}
.fbrowser .fbrowser-content-container {
	overflow-y: auto;
	max-height: calc(100vh - 233px);
}
@media (min-width: 768px) {
	.fbrowser .fbrowser-content-container {
		max-height: calc(100vh - 277px);
	}
}
.fbrowser.photo .photo-album-image-wrapper {
	box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
}
.fbrowser.photo .photo-album-image-wrapper .caption {
	pointer-events: none;
}
.fbrowser.photo .photo-album-image-wrapper .jg-caption {
	pointer-events: none;
}
.fbrowser .profile-rotator-wrapper {
	min-height: 200px;
}
.fbrowser .fa-spin {
	position: absolute;
	left: 45%;
	top: 40%;
	font-size: 48px;
	margin: 0px auto;
}

/*
/* Stream
*/
.panel {
	border: none;
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0 0 2px #dadada;
	-webkit-box-shadow: 0 0 2px #dadada;
	-moz-box-shadow: 0 0 2px #dadada;
	border-radius: 4px;
	position: relative;
}
.panel.panel-inline {
	margin-left: -15px;
	margin-right: -15px;
	margin-top: 15px;
	padding: 15px;
}
.panel .panel-body {
	word-wrap: break-word;
}
.tread-wrapper .media {
	overflow: visible;
	word-wrap: break-word;
}
aside .panel-body {
	padding: 0px;
}

/* Thread hover effects */
.desktop-view .wall-item-container .wall-item-content a,
.desktop-view .wall-item-name,
.desktop-view .wall-item-container .fakelink,
.desktop-view .toplevel_item .fakelink,
.desktop-view .toplevel_item .wall-item-container .wall-item-responses a {
	color: #313131;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.toplevel_item:hover .fakelink,
.wall-item-container:hover .fakelink,
.toplevel_item:hover .wall-item-container:hover .wall-item-responses a,
.toplevel_item:hover .wall-item-content a,
.toplevel_item:hover .wall-item-name,
.wall-item-container:hover .wall-item-content a,
.wall-item-container:hover .wall-item-name,
.wall-item-container:hover .wall-item-location a {
	color: #0066ff;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

/* wall items */
.wall-item-container {
	border-top: 1px solid rgba(255, 255, 255, 0.8);
}

.wall-item-container.panel-body {
	padding: 0;
	border-top: none;
}

.comment-edit-preview .wall-item-container.panel-body.preview {
	margin-top: 4px;
}
.comment-edit-preview .panel {
	margin-bottom: 0;
}

.wall-item-container .media {
	margin-top: 0;
	padding: 10px;
	background-color: rgba(0, 0, 0, 0.03);
}

/* wall items contact photo */
.contact-photo {
	height: 48px;
	width: 48px;
	border-radius: 3px;
	/*maybe some adional stuff is needed for the different screen sizes */
}
.contact-photo-image-wrapper {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
	text-align: center;
}
.contact-photo-overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	border-radius: 3px;
	background: rgba(0, 0, 0, 0.5);
	text-align: center;
	opacity: 0;
	-webkit-transition: opacity 0.25s ease;
	-moz-transition: opacity 0.25s ease;
}
.contact-photo-overlay:hover {
	opacity: 1;
}
.contact-photo-overlay-content {
	font-size: 26px;
	text-shadow: 1px 1px 1px #ccc;
	color: rgba(255, 255, 255, 0.85);
	height: 100%;
	vertical-align: bottom;
}
.contact-photo-xs {
	height: 38px;
	width: 38px;
	border-radius: 3px;
}
.wwto .contact-photo {
	width: auto;
	height: 25px;
	font-size: 8.8px;
	border-radius: 2px;
	position: absolute;
	top: 28px;
	left: 28px;
	display: inline-block;
}

/* wall items action dropdown menu */
.media .contact-info {
	position: relative;
}

/* Workaround for Firefox where the post heading covers the avatar, preventing hovercard interaction,
 48px is the width of the avatar image and should be adjusted accordingly if it ever changes. */
.media .dropdown.pull-left + .contact-info {
	margin-left: 48px;
}

.preferences {
	position: absolute;
	right: 0;
	top: 0;
}
.shared_header {
	margin-left: 0px;
	margin-top: 0px;
	padding-top: 0px;
	margin-bottom: 10px;
	border-top: none;
	color: inherit;
}
.preferences .plink {
	margin-left: 5px;
}

blockquote.shared_content {
	padding: 0px;
	margin-inline-start: 0px;
	color: inherit;
}

.wall-item-network {
	font-size: 13px;
}

/* wall items contact info */
.media .media-body h4.media-heading {
	font-size: 14px;
	font-weight: 500;
	color: #333;
}
.media .contact-info-comment {
	display: table-cell;
}
.media .contact-info-xs h5,
.media .contact-info-comment {
	margin: 0 0 5px;
}
.media-heading {
	margin: 0px;
}
.wall-item-name,
.shared-author {
	font-size: 15px;
	font-weight: bold;
}
.wall-item-name.xs {
	font-weight: 700;
	font-size: 14px;
}

/* Contact avatar click card */
.userinfo.click-card {
	position: relative;
}

.userinfo.click-card > *:hover:after {
	content: "⌄";
	color: #bebebe;
	font-size: 1em;
	font-weight: bold;
	background-color: #ffffff;
	text-align: center;
	line-height: 40%;
	position: absolute;
	top: 0;
	left: 0;
	width: 33%;
	height: 33%;
	opacity: 0.8;
	border-radius: 0 0 40% 0;
}

/* The lock symbol popup */
#panel {
	position: absolute;
	list-style: none;
	background-color: #ffffff;
	border: none;
	border-radius: 3px;
	float: left;
	min-width: 160px;
	max-width: 220px;
	padding: 10px;
	margin: 2px 0 0;
	font-size: 14px;
	text-align: left;
	color: #65686C;
	z-index: 1000;
}

/* Space between content and head */
.wall-spacer {
	height: 10px;
}

/* wall items content */
.wall-item-content {
	word-break: break-word;
}
.wall-item-content img {
	object-fit: contain;
}
.wall-item-body > img,
.wall-item-body > a > img {
	border-radius: 3px;
}
.wall-item-body .body-attach > a {
	color: #333;
	display: inline-block;
}
.wall-item-body .body-attach > a div {
	color: #333;
	width: 20px;
}

/* wall-item content elements */
.shared-wrapper {
	position: relative;
	margin-top: 10px;
	margin-bottom: 0;
}
.vevent {
	padding: 10px;
	box-shadow: 0 0 0 1.5px rgba(0, 0, 0, 0.1) inset, 0 1px 1px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
	.vevent {
		margin-left: 0px;
		margin-right: 0px;
	}
	.shared-wrapper {
		margin: 5px -10px 0;
	}
}
.vevent:hover {
	box-shadow: 0 0 0 1.5px rgba(0, 0, 0, 0.15) inset, 0 1px 1px rgba(0, 0, 0, 0.05);
}
code > .hl-main {
	padding: 10px 10px 1px 0;
}
.hl-main ol {
	line-height: 1.7;
}
.type-link img.attachment-image {
	width: 100%;
}
.type-link blockquote,
.type-video blockquote {
	margin: 0;
	padding: 10px 0;
}
.oembed.video .embed_video > div::before {
	font-family: ForkAwesome;
	font-weight: normal;
	font-style: normal;
	display: inline-block;
	text-decoration: inherit;
	vertical-align: top;
	font-size: 3em;
	content: "\f01d";
	color: #fff;
	bottom: 0px;
	right: 10px;
	position: absolute;
}
.oembed.video .embed_video > div {
	background-color: rgba(0, 0, 0, 0.2);
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.oembed.video .embed_video > div:hover {
	background-color: rgba(0, 0, 0, 0);
}
.oembed.video .embed_video.active {
	margin: 1em 0;
}
.oembed.video .embed_video.active iframe {
	width: 100% !important;
}
.wall-item-tags,
.itemedited {
	margin: 10px 0;
	font-size: 13px;
}
.wall-item-tags:empty {
	margin: 0;
}

.wall-item-tags a {
	color: #333;
}

.wall-item-tags a:hover {
	text-decoration: none;
}
.wall-item-bottom .label,
.wall-item-bottom .label a {
	color: #fff;
}
.wall-item-tags .category,
.wall-item-tags .folder {
	margin-right: 3px;
}

/* item social action buttons */
.wall-item-actions {
	display: flex;
	margin: 0;
	justify-content: space-between;
}
.wall-item-actions .btn,
.wall-item-actions a,
.wall-item-actions button {
	color: #333;
	background-color: transparent;
	padding-left: 5px;
	padding-right: 5px;
}
.wall-item-actions button:disabled,
button[disabled] {
  	color: #aaa;
}
.wall-item-actions .active {
	font-weight: bold;
	color: #0066ff;
	box-shadow: none;
}
.wall-item-actions-left {
	display: table-cell;
	vertical-align: middle;
}
.wall-item-actions-right {
	display: flex;
}
.wall-item-actions-items {
	flex-grow: 1;
}
.wall-item-actions-row {
	display: flex;
}
.wall-item-actions-row .btn {
	width: 100%;
}
.wall-item-actions-row > * {
	flex: 1 1 0;
}
.wall-item-actions .checkbox {
	margin: 0 0 0 15px;
}
@media screen and (max-width: 767px) {
	.wall-item-actions .btn,
	.wall-item-actions a,
	.wall-item-actions button {
		padding-right: 0;
		padding-left: 0;
	}
	.wall-item-actions .checkbox {
		margin-top: 8px;
		flex: 0 1 auto;
	}
	.wall-item-actions .like-rotator {
		position: absolute;
		top: 8px;
		right: 0;
	}
}
.wall-item-actions button:hover {
	text-decoration: underline;
}
.wall-item-actions .separator {
	margin: 0 0.3em;
}
.wall-item-responses {
	margin-top: .3em;
}
.wall-item-responses > div > p {
	margin: 0;
}
.btn-group-event {
	display: flex;
	flex-basis: auto;
}
/* wall item hover effects */

@media (min-width: 768px) {
	/* Tags and mentions */
	.wall-item-container .wall-item-bottom .wall-item-tags span.label {
		filter: grayscale(0.5);
		opacity: 0.8;

		-webkit-transition: all 0.25s ease-in-out;
		-moz-transition: all 0.25s ease-in-out;
		-o-transition: all 0.25s ease-in-out;
		-ms-transition: all 0.25s ease-in-out;
		transition: all 0.25s ease-in-out;
	}

	.wall-item-container:hover .wall-item-bottom .wall-item-tags span.label {
		filter: grayscale(0);
		opacity: 1;

		-webkit-transition: all 0.25s ease-in-out;
		-moz-transition: all 0.25s ease-in-out;
		-o-transition: all 0.25s ease-in-out;
		-ms-transition: all 0.25s ease-in-out;
		transition: all 0.25s ease-in-out;
	}
	/* Like/Comment/etc buttons */
	.wall-item-container .wall-item-links,
	.wall-item-container .wall-item-actions button > a {
		opacity: 0.4;

		-webkit-transition: all 0.25s ease-in-out;
		-moz-transition: all 0.25s ease-in-out;
		-o-transition: all 0.25s ease-in-out;
		-ms-transition: all 0.25s ease-in-out;
		transition: all 0.25s ease-in-out;
	}
	.wall-item-container:hover .wall-item-links,
	.wall-item-container:hover .wall-item-actions button > a {
		opacity: 1;

		-webkit-transition: all 0.25s ease-in-out;
		-moz-transition: all 0.25s ease-in-out;
		-o-transition: all 0.25s ease-in-out;
		-ms-transition: all 0.25s ease-in-out;
		transition: all 0.25s ease-in-out;
	}
	.wall-item-container .wall-item-body .body-attach > a:hover {
		opacity: 1;
	}
}

/*
* Comments
*/
wall-item-comment-wrapper.well {
	border: none;
	box-shadow: none;
	background-color: rgba(237, 237, 237, 1);
	background-image: none;
	margin-bottom: 1px;
	background-color: red;
}
wall-item-comment-wrapper.well-small {
	padding: 10px;
	border-radius: 3px;
}
wall-item-comment-wrapper.well hr {
	border-top: 1px solid #d9d9d9;
}
.wall-entry wall-item-comment-wrapper.well {
	margin-bottom: 0;
}
.comment-container {
	margin-bottom: 0px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}
.comment .media {
	position: relative !important;
	margin-top: 0;
}
.hide-comments-outer {
	display: block;
	background-color: rgba(0, 0, 0, 0.03);
	padding: 0.3em 10px;
	width: 100%;
	border: none;
	text-align: left;
}

.network-svg {
	width: 18px;
	height: 18px;
	border-radius: 4px;
	padding: 2px;
}

/*
* Comment Box
*/

.comment-fake-form,
.wall-item-comment-wrapper {
	padding: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.8);
	background-color: rgba(0, 0, 0, 0.03);
	border-radius: 0 0 4px 4px;
	margin-bottom: 0;
}

.comment-fake-form {
	border-color: #d9d9d9;
}
.comment-fake-form textarea {
	resize: none;
}

.comment-container .wall-item-comment-wrapper {
	margin-top: 0.5em;
}

.comment-edit-form textarea {
	resize: vertical;
}

.comment-edit-submit-wrapper {
	text-align: right;
	margin-bottom: 0;
}

.comment-icon-list {
	display: flex;
	justify-content: space-between;
}

/* acpopup  + textcompletion*/
.acpopup {
	background-color: #ffffff;
	border-radius: 4px;
	overflow: auto;
	z-index: 100000;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
nav .acpopup {
	margin-left: -23px;
}
/** @todo: we should consider the possibility to overwrite bootstrap dropdowns
 at the beginning of this file to get rid of the !important */
.textcomplete-item > a {
	color: #333 !important;
	padding: 5px 20px !important;
}
.textcomplete-item.active > a {
	background-color: rgb(247, 247, 247) !important;
	background-image: none !important;
	border-left: 3px solid #0066ff;
	padding-left: 17px !important;
}
.textcomplete-item a .group {
	color: #0066ff;
}
img.acpopup-img {
	border-radius: 4px;
}

/* The wall-item thread levels */
.wall-item-container.thread_level_3,
.wall-item-container.thread_level_4,
.wall-item-container.thread_level_5,
.wall-item-container.thread_level_6,
.wall-item-container.thread_level_7,
.wall-item-container.thread_level_8,
.wall-item-container.thread_level_9 {
	margin-left: 15px;
}

/* Birthday and Event Reminders  */
#birthday-notice,
#birthday-wrapper,
#rfic-desc,
#remote-friends-in-common,
#event-notice,
#event-wrapper {
	margin-bottom: 5px;
	padding: 10px;
	border: none;
	background-color: rgba(247, 247, 247, 1);
	box-shadow: 0 0 3px #dadada;
	-webkit-box-shadow: 0 0 3px #dadada;
	-moz-box-shadow: 0 0 3px #dadada;
	border-radius: 4px;
	cursor: pointer;
}
#remote-friends-in-common {
	background-color: rgba(247, 247, 247, 1)
	border-radius: 4px;
	color: #444;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 10px;
	margin-bottom: 15px;
	padding: 10px;
}
#remote-friends-in-common-wrapper{
	display: none;
}

/* Menubar Tabs */
section > .tabbar-wrapper {
	/* The tabbar shouldn't' be visible inside
the section element. Only after we have
moved it to the nav through js */
	display: none !important;
}
.tabbar-wrapper__link {
	padding-right: 10px;
	padding-left: 10px;
}
#tabmenu,
.tabbar-wrapper,
.tabbar,
.tabbar > li {
	height: 100%;
	padding: 0;
}
#tabmenu .search-heading {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
ul.tabs {
	list-style: none;
	height: 100%;
	padding: 0;
	margin: 0;
}
ul.tabs li {
	float: left;
	margin: 0;
	padding: 0;
	border-bottom: 0 solid #0066ff;
	font-size: 13px;
	height: 102%;
	transition: all 0.15s ease;
}
ul.tabs li a {
	display: block;
	padding-top: 11px;
	padding-bottom: 11px;
}
ul.tabs li:hover,
ul.tabs li.active {
	border-bottom-width: 4px;
}
.tabbar.visible-xs .tabs-extended {
	padding-top: 0;
}
#dropdownMenuTools-xs {
	padding: 9px 15px;
}
ul.tabbar ul.tabs-extended:hover li.dropdown {
	border-bottom: 0;
}

ul.tabbar ul.tabs-extended li.active {
	width: 100%;
	border-bottom-width: 2px;
}
ul.tabbar ul.tabs-extended li.active a {
	background: none;
}
ul.dropdown-menu li:hover {
	border-bottom: 0;
}
.dropdown-menu li {
	display: block;
	width: 100%;
	box-sizing: border-box;
}
/* Dropdown Menu */
.dropdown-menu li .btn-link,
.dropdown-menu li a,
.tabs .dropdown-menu li a {
	padding: 6px 20px;
	font-size: 14px;
}
.dropdown-menu li a,
.dropdown-menu li .btn-link {
	color: #333;
}
.dropdown-menu li > :hover,
.dropdown-menu li > :visited,
.dropdown-menu li > :focus {
	background: 0 0;
}

.dropdown-menu li:first-child {
	margin-top: 3px;
}

/* Notification badges */
#mail-update-li.show {
	display: inline-block !important;
}

/* Media Classes */
p.wall-item-announce,
.media .time,
.media .shared-time,
.media .delivery,
.media .location,
.media .location a {
	font-size: 11px;
	color: #333;
}
.media-list > li {
	padding: 10px;
	border-bottom: 1px solid rgba(238, 238, 238, 1);
	position: relative;
	border-left: 3px solid rgba(255, 255, 255, 0);
	font-size: 12px;
}
.media-list > li:hover,
.media-list > li.selected,
.media-list > li.active {
	border-left: 3px solid #0066ff;
	background-color: rgba(247, 247, 247, 1);
}

/* Forms */
.form-control {
	box-shadow: none;
}
.form-control:focus {
	border: 2px solid #0066ff;
	box-shadow: none;
}

.radio label::before,
.checkbox label::before {
	background-color: rgba(255, 255, 255, 1);
}
.radio label::after {
	background-color: #0066ff;
}
.checkbox label::after {
	color: #0066ff;
}

.checkbox input[type="checkbox"]:focus + label::before,
.radio input[type="radio"]:focus + label::before {
	outline-color: #005ce6;
}

.help-block {
	color: #333;
}

input[type="range"].form-control {
	padding-left: 0;
	padding-right: 0;
}

/* Search form */
.form-control.form-search {
	border-radius: 30px;
	background-image: url(img/icon_search16x16.png);
	background-repeat: no-repeat;
	background-position: 10px 8px;
	padding-left: 34px;
}
.form-group-search {
	position: relative;
	width: 100%;
}

.form-group-search .form-button-search {
	position: absolute;
	top: 4px;
	right: 4px;
	border-radius: 30px;
}
.search-input.form-control.form-search {
	width: 100%;
}
.search-heading {
	text-align: center;
	color: #0066ff;
	font-size: 20px;
}
.search-content-wrapper > #search-header-wrapper {
	display: none;
}
.search-content-wrapper > .section-title-wrapper {
	display: none;
}
#navbar-button > #search-save {
	margin-top: 3px;
}
/* Section-Content-Wrapper */
#search-header-wrapper {
	padding: 15px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border: none;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 4px;
	position: relative;
	color: #333;
	box-shadow: 0 0 3px #dadada;
	-webkit-box-shadow: 0 0 3px #dadada;
	-moz-box-shadow: 0 0 3px #dadada;
}

/* *******
 * PAGES
 *********/

section > .generic-page-wrapper,
.videos-content-wrapper,
.suggest-content-wrapper,
.help-content-wrapper,
.match-content-wrapper,
.dirfind-content-wrapper,
.delegation-content-wrapper,
.notes-content-wrapper,
.message-content-wrapper,
.apps-content-wrapper,
#adminpage,
.delegate-content-wrapper,
.uexport-content-wrapper,
.dfrn_request-content-wrapper,
.friendica-content-wrapper,
.credits-content-wrapper,
.nocircle-content-wrapper,
.profperm-content-wrapper,
.invite-content-wrapper,
.tos-content-wrapper,
.fsuggest-content-wrapper {
	min-height: calc(100vh - 150px);
	padding: 15px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border: none;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 4px;
	position: relative;
	color: #333;
	box-shadow: 0 0 3px #dadada;
	-webkit-box-shadow: 0 0 3px #dadada;
	-moz-box-shadow: 0 0 3px #dadada;
}
#content:hover .page-action.faded-icon {
	opacity: 0.8;
	transition: all 0.25s ease-in-out;
}
#content .page-action.faded-icon:hover {
	opacity: 1;
}

.section-title-wrapper {
	overflow: hidden;
}
/* Home and Login Page */
body.mod-home nav.navbar .nav > li > a:hover {
	background-color: rgba(255, 255, 255, 0.2);
}
body.mod-home .navbar #nav-login,
body.mod-login .navbar #nav-login {
	display: none;
}
/* Profile-page */
#profile-content-standard,
#profile-content-advanced {
	overflow: hidden;
}
#profile-menu {
	margin-top: 20px;
	margin-bottom: 20px;
}
.contact-block-div.group-list-profile-advanced {
	float: left;
}

/* contacts page */
ul.viewcontact_wrapper {
	margin-left: -15px;
	margin-right: -15px;
}
ul.viewcontact_wrapper > li {
	padding-left: 15px;
}
.contact-wrapper .contact-photo-wrapper button {
	padding: 0;
}
.contact-wrapper.media {
	overflow: visible;
	word-wrap: break-word;
	margin-top: 0;
}
/* bootstrap hack for .media */
.contact-wrapper.media .media-body {
	display: table-cell;
	width: 10000px;
	*width: auto;
	*zoom: 1;
}
.contact-wrapper.media:before,
.media:after {
	content: "";
	display: table;
}
.contact-wrapper.media:after {
	clear: both;
}
.contact-wrapper .contact-photo-image-wrapper img.contact-photo.xl {
	height: 80px;
	width: 80px;
}
.contact-wrapper .contact-photo-image-wrapper img.contact-photo-xs {
	height: 48px;
	width: 48px;
}
.contact-wrapper .contact-photo-overlay-content.xl {
	font-size: 48px;
}
.contact-wrapper .contact-photo-menu {
	top: auto;
}

.contact-entry-desc {
	color: #333;
}
.contact-entry-checkbox {
	margin-top: -20px;
}
.contact-wrapper .media-body .contact-entry-name h4.media-heading a {
	font-weight: bold !important;
	color: #0066ff;
	font-size: 15px !important;
}
.contact-wrapper .contact-actions {
	display: flex;
	position: relative;
	margin: -8px -8px 0 0;
}
.contact-wrapper .contact-action-link,
.contact-wrapper .contact-action-link:hover,
.textcomplete-item .contact-wrapper .contact-action-link {
	color: #333;
	border: 0;
}
.contact-wrapper .contact-action-link {
	background-color: transparent;
	opacity: 0.3;
	transition: all 0.25s ease-in-out;
}
ul li:hover .contact-wrapper .contact-action-link:hover {
	opacity: 1;
}
#contacts-search-wrapper,
#directory-search-wrapper {
	padding: 10px 0;
}

/* contact-edit */
#contact-edit-actions {
	position: absolute;
}
#contact-edit-status-wrapper {
	border: none;
	background-color: rgba(225, 245, 254, 1);
	margin: 15px -15px;
}
#contact-edit-settings {
	display: block;
}

/* directory page */
#directory-search-heading {
	padding-top: 10px;
}

/* circle edit page */
.circle-actions {
	margin-top: 4px;
	margin-bottom: 10px;
	font-size: 30px;
}
.circle-actions button,
.circle-actions a {
	font-size: 18px;
}

.contact-circle-actions .fa-times-circle {
	color: #d00000;
}
.contact-circle-actions .fa-plus-circle {
	color: #008000;
}

#circle-edit-wrapper {
	margin-top: 14px;
	display: none;
}
#circle-edit-header {
	display: block;
}
#circle-update-wrapper .contact-photo-overlay {
	display: none;
}
#circle-update-wrapper .viewcontact_wrapper .contact-circle-actions {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#circle-update-wrapper .viewcontact_wrapper .contact-circle-link {
	opacity: 0.8;
	font-size: 15px;
}
#circle-update-wrapper .viewcontact_wrapper .contact-action-link:hover {
	opacity: 1;
}
#circle-update-wrapper .shortmode {
	height: 53px;
	overflow: hidden;
}
#circle-update-wrapper .shortmode .contact-photo {
	height: 32px;
	width: 32px;
}
#circle-update-wrapper .shortmode .media {
	overflow: hidden;
}
#circle-update-wrapper .shortmode .contact-entry-desc {
	font-size: 12px !important;
}
#circle-update-wrapper .shortmode .contact-entry-desc h4.media-heading {
	margin: 0;
}
#circle-update-wrapper .shortmode .contact-entry-desc h4.media-heading a {
	font-size: 13px !important;
	white-space: nowrap;
}
#circle-update-wrapper .shortmode .contact-entry-desc .contact-entry-rel,
#circle-update-wrapper .shortmode .contact-entry-desc .contact-entry-network {
	display: none;
}

/* private mail */
.message-content-wrapper > li {
	/* we need this overwriting because we have no template file
   for the general mail page /message
*/
	list-style-type: none;
}
.mail-thread {
	max-height: calc(100vh - 200px);
}
#mail-conversation {
	overflow-y: auto;
	max-height: calc(100vh - 400px);
	max-height: auto;
	margin-bottom: 0px;
	padding: 0 15px;
}
.mail-conv-wrapper .media .contact-photo-wrapper img {
	height: 48px;
	width: 48px;
}
.mail-thread #prvmail-to-label,
.mail-thread #prvmail-subject-label {
	display: none;
}
.mail-thread #prvmail-message-label > label {
	display: none;
}
.mail-thread #prvmail-message-label textarea {
	max-height: 120px;
}
.mail-conv-wrapper {
	padding: 15px 0;
	border-bottom: 1px solid rgba(238, 238, 238, 1);
}
#message-sidebar {
	height: calc(100vh - 150px);
}
#message-preview {
	height: calc(100% - 20px);
}
#message-preview ul {
	margin: 0px;
}
#message-preview .media-list li {
	padding: 0px 10px;
	border: none;
}
#message-preview .media-list li:hover {
	border-left: none !important;
}
#message-preview .media-list li a {
	color: #0066ff;
}
.mail-list-outside-wrapper {
	padding: 5px 0;
	border-bottom: 1px solid rgba(238, 238, 238, 1);
}
.mail-list-outside-wrapper .contact-photo-wrapper img {
	height: 48px;
	width: 48px;
}
#prvmail-end {
	clear: both;
}
#modal #prvmail-text-edit-bb .bb-img {
	display: none;
}

/* photos */
#photo-album-edit-name-label {
	width: 100%;
}
.photo-album-edit-name {
	width: 60%;
}

.photo-album-actions {
	margin-bottom: 10px;
}
.photo-album-actions .photos-order-link {
	float: right;
}

#photo-edit-submit-button {
	margin-top: 15px;
}

/* Events page */

.fc .fc-month-view .fc-content .fc-title .item-desc:hover {
	color: #005ce6;
}
.fc .fc-list-item-title a {
	color: #0066ff;
}
.fc .fc-list-item-title a[href]:hover {
	color: #005ce6;
	text-decoration: none;
}
.event-wrapper .event-owner {
	margin-bottom: 15px;
	word-break: break-all;
}
.event-wrapper .event-owner img {
	display: block;
}
.event-owner img {
	height: 48px;
	width: 48px;
	max-width: 48px;
	border-radius: 3px;
}
.event-wrapper .vevent {
	margin-left: 0;
	margin-right: 0;
	box-shadow: 1.5px 0 0 0 rgba(0, 0, 0, 0.1) inset;
}
.event-wrapper .event-buttons {
	margin-top: 15px;
}
#event-form-wrapper {
	padding-top: 5px;
}
#event-edit-form-wrapper {
	padding-top: 15px;
}
#event-nav a {
	color: #333;
}
#event-edit-form-wrapper #event-edit-time {
	padding: 10px 0;
}
.event-buttons .plink-event-link {
	margin-left: 20px;
}
.vevent .event-summary {
	font-size: 16px;
}
.vevent .event-description {
	padding: 10px 0;
}
.vevent .event-location .location {
	font-size: inherit;
	color: inherit;
}
.modal-body .vevent .event-summary {
	display: none;
}
#event-preview .vevent .event-summary {
	display: block;
}

/* Event Cards */
.event-card-details,
.event-card-header {
	width: 100%;
}
.event-card-header,
.event-card-left-date {
	float: left;
}
.vevent .event-card-header {
	display: table;
}
.event-card-left-date {
	width: 60px; /* Das muss wahrscheinlich unterschiedlich sein zwischen calendar und stream */
}
.event-card .event-date-wrapper > span {
	display: block;
	overflow: hidden;
	text-align: center;
	white-space: nowrap;
}
.event-card .event-date-wrapper .event-card-short-month {
	font-size: 13px;
	text-transform: uppercase;
}
.event-card .event-date-wrapper.medium .event-card-short-date {
	font-size: 24px;
	line-height: 28px;
	margin-top: 2px;
}
.event-card .event-card-content {
	width: 100%;
	padding: 0 5px 0 15px;
	box-shadow: 1.5px 0 0 0 rgba(0, 0, 0, 0.1) inset;
	color: #313131;
	position: relative;
}
.event-card .event-card-content .event-map-btn {
	position: absolute;
	right: 0;
	top: 0;
	line-height: 15px;
}
.event-card .event-card-title {
	font-size: 14px;
	color: #333;
	line-height: 15px;
	font-weight: bold;
	margin: 0;
}
.event-card .event-card-location {
	margin-top: 10px;
	font-size: 13px;
}
.event-card .event-card-location br {
	content: " ";
}
.event-card .event-card-location br::after {
	content: " ";
}
.event-card-profile-name a {
	color: #0066ff;
}
.event-card-profile-name a:hover {
	color: #005ce6;
}
.event-card .event-card-content .event-location-map {
	position: absolute;
	left: -9999px;
	top: -9999px;
}
.event-card .event-card-content .event-location-map .map {
	margin-top: 10px;
}
.event-card .description {
	margin-top: 10px;
	box-shadow: 0 1.5px 0 0 rgba(0, 0, 0, 0.1) inset;
}
/* Photos Pages */
#photo-photo {
	position: relative;
}
.photo-next-link,
.photo-prev-link {
	height: 64px;
	margin-top: -32px;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateZ(0);
	transition: opacity 0.2s;
	width: 100px;
	z-index: 11;
	font-size: 64px;
	color: #fff;
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.photo-next-link > i,
.photo-prev-link > i {
	vertical-align: super;
}
.photo-next-link > i {
	float: right;
}
.photo-prev-link {
	left: 20px;
}
.photo-next-link {
	right: 20px;
}
#photo-photo:hover .photo-next-link,
#photo-photo:hover .photo-prev-link {
	opacity: 0.4;
}
#photo-photo .photo-next-link:hover,
#photo-photo .photo-prev-link:hover {
	opacity: 1;
	color: #fff;
}
.photo-comment-wrapper .comment {
	position: relative;
}
.photo-comment-wrapper .wall-item-content {
	color: #333;
	font-size: 13px;
}
.photo-comment-wrapper .comment-wwedit-wrapper,
.photo-comment-wrapper .wall-item-outside-wrapper.media:first-child {
	margin-top: 15px;
}

/* Profiles Page */
.profile-listing-table {
	display: table;
	width: 100%;
}
.profile-listing-row {
	display: table-row;
}
.profile-listing-cell {
	display: table-cell;
}
.profile-listing-photo {
	width: 48px;
	height: 48px;
	margin: 10px 0px;
}
#profile-listing-new-link-wrapper {
	margin-bottom: 20px;
}

#profile-photo-upload-section {
	display: none;
	padding: 10px;
}
#profile-photo-upload-close {
	font-size: 14px;
}

/* Settings */
.section-subtitle-wrapper {
	padding: 1px 10px;
}
.accordion-toggle {
	width: 100%;
    text-align: left;
}
details.profile-jot-net[open] summary:before,
.panel .section-subtitle-wrapper .accordion-toggle:before {
	font-family: ForkAwesome;
	content: "\f0d7";
	padding-right: 5px;
}
details.profile-jot-net summary:before,
.panel .section-subtitle-wrapper .accordion-toggle.collapsed:before {
	font-family: ForkAwesome;
	content: "\f0da";
}
details.profile-jot-net summary:before {
	padding-right: 5px;
	padding-left: 3px;
}
details.profile-jot-net[open] summary:before {
	padding-right: 5px;
	padding-left: 0px;
}
#settings-nick-wrapper {
	margin-bottom: 20px;
}
.group {
	margin-left: 20px;
}

/* Emulates Bootstrap display */
.settings-block {
	margin: 0 0 5px;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 4px;
	padding: 10px 15px;
	box-shadow: 0 0 3px #dadada;
	-webkit-box-shadow: 0 0 3px #dadada;
	-moz-box-shadow: 0 0 3px #dadada;
}

.settings-block.fakelink,
.settings-block > .fakelink {
	padding: 10px 25px;
	display: block;
}
.settings-block > .fakelink {
	margin: -10px -15px 10px -15px;
	border-radius: 4px 4px 0 0;
}

.settings-block.fakelink:hover,
.settings-block > .fakelink:hover {
	color: #005ce6;
}
.settings-block.fakelink > h3,
.settings-block > .fakelink > h3 {
	margin: 0;
	padding: 0;
	color: #0066ff;
	font-size: 18px;
}

.section-subtitle-wrapper > h2 {
	font-size: 18px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.section-subtitle-wrapper > h2 .accordion-toggle {
	margin-top: -10px;
	margin-bottom: -10px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.section-subtitle-wrapper > h3 {
	font-size: 16px;
	margin-top: 8px;
	margin-bottom: 8px;
}

.fakelink > h3:before {
	padding-right: 10px;
}
.widget.fakelink > h3:before {
	font-family: ForkAwesome;
	content: "\f0da"; /* Right Plain Pointer */
}
.widget > .fakelink > h3:before,
#sidebar-circle-header > .fakelink > h3:before,
#sidebar-group-header > .fakelink > h3:before {
	font-family: ForkAwesome;
	content: "\f0d7"; /* Bottom Plain Pointer */
}

h3.connector {
	line-height: 40px;
}

/* Intro Notifications */
ul.notif-network-list {
	margin-left: -15px;
	margin-right: -15px;
}
ul.notif-network-list > li {
	padding-left: 15px;
	padding-right: 15px;
}
.intro-wrapper.media {
	overflow: visible;
	word-wrap: break-word;
	margin-top: 0;
}
.intro-photo-wrapper img.intro-photo {
	height: 80px;
	width: 80px;
	border-radius: 4px;
}
.intro-actions {
	display: flex;
}
.intro-enty-name h4 {
	font-size: 15px !important;
}
.intro-wrapper button.intro-action-link {
	opacity: 0.1;
	transition: all 0.25s ease-in-out;
}
.intro-wrapper button.intro-action-link,
.intro-wrapper button.intro-action-link:hover {
	padding-right: 5px;
	padding-left: 5px;
	color: #333;
}
ul li:hover .intro-wrapper button.intro-action-link {
	opacity: 0.8;
	transition: all 0.25s ease-in-out;
}
ul li:hover .intro-wrapper button.intro-action-link:hover {
	opacity: 1;
}
.intro-action-buttons {
	margin-top: 15px;
	max-height: 0px;
	overflow: hidden;
	transition: max-height 0.1s ease-out;
}
ul.notif-network-list > li:hover .intro-action-buttons {
	max-height: 30px;
	transition: max-height 0.1s ease-in;
}
.intro-desc-label,
.intro-url-label,
.intro-network-label,
.intro-location-label,
.intro-keywords-label,
.intro-about-label,
.intro-knowyou-label,
.intro-madeby-label {
	font-weight: bold;
}
.intro-contact-info.xs .intro-url-label,
.intro-contact-info.xs .intro-network-label,
.intro-contact-info.xs .intro-location-label,
.intro-contact-info.xs .intro-keywords-label,
.intro-contact-info.xs .intro-about-label,
.intro-contact-info.xs .intro-knowyou-label {
	display: block;
	margin-top: 5px;
}

/* Notifications Page */
ul.notif-network-list li.unseen {
	background-color: #e3eff3;
}
.notif-item img.notif-image {
	height: 48px;
	width: 48px;
	border-radius: 4px;
}
.notif-item .notif-desc-wrapper {
	height: 48px;
}
.notif-item .notif-desc-wrapper a {
	height: 100%;
	display: block;
	color: #333;
	font-size: 13px;
	font-weight: 600;
}

/* Search Page */

/* This is a little bit hacky. Since the search page is used for different
content types we can't apply the generic-page-wrapper class.
So we apply the css of the generic-page-wrapper class to the ul element with some
little modifications to emulate a standard page template */
.search-content-wrapper > ul.viewcontact_wrapper {
	min-height: calc(100vh - 150px);
	padding-top: 15px;
	padding-bottom: 20px;
	margin: 0;
	margin-bottom: 20px;
	border: none;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 4px;
	position: relative;
	color: #333;
	box-shadow: 0 0 3px #dadada;
	-webkit-box-shadow: 0 0 3px #dadada;
	-moz-box-shadow: 0 0 3px #dadada;
}

/* Help Page */
section.help-content-wrapper h1 {
	padding-bottom: 0.3em;
	font-size: 1.8em;
	border-bottom: 1px solid #ddd;
}
section.help-content-wrapper h2 {
	padding-bottom: 0.3em;
	font-size: 1.5em;
	border-bottom: 1px solid #ddd;
}
section.help-content-wrapper h3 {
	font-size: 1.2em;
}
section.help-content-wrapper h4 {
	font-size: 1em;
}
section.help-content-wrapper h1,
section.help-content-wrapper h2,
section.help-content-wrapper h3,
section.help-content-wrapper h4,
section.help-content-wrapper h5,
section.help-content-wrapper h6 {
	margin-top: 24px;
	margin-bottom: 16px;
	font-weight: 600;
	line-height: 1.25;
}
section.help-content-wrapper p {
	margin: 0.4em 0;
}
section.help-content-wrapper p,
section.help-content-wrapper a,
section.help-content-wrapper li {
	line-height: 1.6;
	font-size: 0.96em;
}

/*Admin Page*/
#adminpage #frio_background_image .image-select {
	display: none;
}
#adminpage #frio_background_image.input-group {
	display: block;
}
#admin-summary-wrapper {
	padding-top: 10px;
}
#adminpage ul#addonslist,
li.addon {
	list-style: none;
}
#adminpage li .icon {
	display: inline-block;
	vertical-align: text-top;
	position: relative;
	padding-left: 5px;
}
#adminpage li .icon:before {
	content: "";
	display: inline-block;
	position: absolute;
	width: 17px;
	height: 17px;
	left: 0;
	margin-left: -20px;
	margin-top: 2px;
	border: 1px solid #cccccc;
	border-radius: 3px;
	background-color: #f2f4f7;
	-webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
	-o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
	transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
#adminpage li .icon.on:after {
	font-family: "ForkAwesome";
	content: "\f00c";
	display: inline-block;
	position: absolute;
	width: 16px;
	height: 16px;
	left: 0;
	top: 0;
	margin-left: -20px;
	margin-top: 2px;
	padding-left: 3px;
	padding-top: 1px;
	font-size: 11px;
	color: #0066ff;
}
#adminpage .addon .desc {
	padding-left: 10px;
}
#adminpage h2 {
	word-break: break-all;
}
#adminpage .table-logs thead tr {
	display: grid;
	grid-auto-flow: row;
}
#adminpage .table-logs tbody {
	display: table;
	width: 100%;
	table-layout: fixed;
}
#adminpage .table-logs td {
	word-break: break-word;
}
#adminpage .table-logs td.log-message {
	width: 40%;
}
#logdetail td.log-message {
	width: 80%;
}
@media (min-width: 600px) {
	#adminpage .table-logs thead tr {
		grid-auto-flow: column;
	}
	#adminpage .table-logs td.log-message {
		width: 60%;
	}
}
#admin-users #users tr.blocked {
	background-color: #f8efc0;
}
.adminpage .table-hover > tbody > tr:hover + tr.details {
	background-color: #f5f5f5;
}
.offset-anchor::before {
	display: block;
	content: " ";
	margin-top: -100px;
	height: 100px;
	visibility: hidden;
	pointer-events: none;
}

#relocate-form {
	margin-top: 5px;
}

/* Manage Page */
#identity-selector-wrapper {
	width: auto;
	height: auto;
	margin-top: 20px;
}
#identity-selector-wrapper .identity-match-photo {
	width: auto;
	float: none;
}
#identity-selector-wrapper .identity-match-photo button {
	position: relative;
}
#identity-selector-wrapper .identity-match-photo .badge {
	position: absolute;
	top: -8px;
	right: -8px;
}
#identity-selector-wrapper .identity-match-name {
	text-align: center;
}
#identity-selector-wrapper .identity-match-details {
	width: auto;
	float: none;
}

/* Register Page */
#register-openid-wrapper,
#register-name-wrapper,
#register-invite-wrapper,
#profile-publish-wrapper {
	margin-top: 20px;
}
#register-openid-end,
#register-nickname-end {
	margin-top: 40px;
}

/*
* Overwriting for transparency and other colors
*/
main .nav-tabs > li.active > a,
main .nav-tabs > li.active > a:focus,
main .nav-tabs > li.active > a:hover {
	background-color: rgba(255, 255, 255, 1);
}

/*
 * Modal
 */
.modal hr {
	border-color: #eee;
}

@media (min-width: 768px) {
	.modal-dialog {
		width: 650px;
	}
}

/*
 * Framework overwrite
 */

/* textcomplete for contact filtering*/
#contact-list ul.dropdown-menu.textcomplete-dropdown.media-list {
	position: relative !important;
	top: inherit !important;
	bottom: inherit !important;
	left: inherit !important;
	padding: 0;
	margin-left: -15px;
	margin-right: -15px;
	background-color: transparent;
	box-shadow: none;
	border: none;
}
#contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li {
	padding-left: 15px;
	border-bottom: 1px solid rgba(238, 238, 238, 1);
}
#contact-list ul.dropdown-menu.textcomplete-dropdown.media-list > li:first-child {
	display: none;
}
#contact-list ul.dropdown-menu.textcomplete-dropdown.media-list .textcomplete-item > a {
	padding: 0 !important;
	border-left: none;
	background-color: transparent !important;
}
/* this is a little hack for texcomplete contact filter
There are for some reasons empty <a> tags. I don't know why */
.textcomplete-item .contact-wrapper a {
	padding: 0;
}

/* hovercard fix */
body .tread-wrapper .hovercard a,
body .tread-wrapper .hovercard a:hover {
	color: #0066ff;
}
body .tread-wrapper .hovercard:hover .hover-card-content a {
	color: #0066ff !important;
}

/* Pagination improvements */
.pagination {
	text-align: center;
	display: block;
}
.pagination > li > a,
.pagination > li > span {
	color: #0066ff;
	float: none;
}
.pagination > li > a:hover,
.pagination > li > span:hover {
	color: #005ce6;
}
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
	background-color: #0066ff;
	border-color: #0066ff;
	border-radius: 3px;
}
.pagination li.pager_n a {
	margin-left: 3px;
	border-radius: 3px;
}
.pagination .pager_prev a {
	margin-left: -5px;
	margin-right: 4px;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}
.pagination .pager_next a {
	margin-left: 4px;
	margin-right: -5px;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}
.pager .next > a,
.pager .previous > a {
	float: none;
	border-radius: 3px;
}
.pagination .disabled > a,
.pager .disabled > a {
	display: none;
}

.pagination li > a,
.pager li > a {
	background-color: rgba(255, 255, 255, 1);
}

/*
 * some temporary workarounds until this will solved
 * elsewhere (e.g. new templates)
 */

section .profile-match-wrapper {
	float: left;
}

.profile-match-photo {
	align-items: center;
	display: flex;
	justify-content: center;
}

.profile-match-name {
	align-items: center;
	display: flex;
	justify-content: center;
	text-align: center;
}

.profile-match-break {
	display: none;
}

.profile-match-end {
	display: none;
}

/**
 * Login page
 */
#login-submit-wrapper {
	float: right;
}
#lost-password-link {
	flex-grow: 2;
}
#login-lost-password-link {
	margin-bottom: 10px;
	float: right;
}
#div_id_remember {
	float: left;
}
#id_password_wrapper {
	margin-bottom: unset;
}
#login_openid {
	clear: both;
}
#register-link {
	color: white;
	background: #8ad0a1;
	width: 100%;
}
#login-end {
	clear: both;
}

.mod-home.is-not-singleuser,
.mod-login {
	background-color: #ededed;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)), url(https://friendica.rogueproject.org/images/wp002.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	padding-top: 0;
}
.mod-home.is-not-singleuser nav.navbar,
.mod-login nav.navbar {
	background-color: transparent;
	position: inherit;
}
.mod-home.is-not-singleuser #topbar-second,
.mod-login #topbar-second {
	background-color: transparent;
	box-shadow: unset;
	border: 0;
}
.mod-home.is-not-singleuser .login-content,
.mod-login .login-content {
	color: #eee;
	margin-top: 2.5%;
}

.mod-home.is-not-singleuser .login-form > #login-extra-links {
	margin-top: 4em;
}

.mod-home.is-not-singleuser .login-form > #login-form label,
.mod-login #content #login-form label {
	color: #eee;
}

.mod-home.is-not-singleuser .login-panel-content,
.mod-login .login-panel-content {
	background-color: rgba(255, 255, 255, 0.85);
}

.qq-upload-button {
	background: #ffffff !important;
	color: #65686C !important;
	float: none;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	-moz-box-shadow: none;
	background-image: none;
	text-shadow: none;
	border-radius: 3px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	color: inherit;
	width: 100% !important;
}

.qq-upload-drop-area {
	background: white !important;
	float: none;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	-moz-box-shadow: none;
	background-image: none;
	text-shadow: none;
	border-radius: 3px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	color: inherit;
	width: 100% !important;
	display: block !important;
	position: relative !important;
	border: black 1px dashed !important;
	margin-bottom: 5px !important;
	margin-top: 15px !important;
}

/**
 * The different views of js fullcalendar
 */
#fc-header {
	margin-top: 20px;
	margin-bottom: 10px;
}
#fc-header-left,
#fc-header-right,
#event-calendar-title {
	display: inline-block;
}
#fc-title {
	margin: 0;
	padding-left: 20px;
}
#fc-header-right {
	margin-top: -4px;
}
#fc-header-right .dropdown > button {
	color: inherit;
}
#event-calendar-title {
	vertical-align: middle;
}
#event-calendar-views {
	padding: 6px 9px;
	font-size: 14px;
}
.fc .fc-toolbar {
	display: none;
}
.fc .fc-month-view td.fc-widget-content,
.fc .fc-list-view,
.fc .fc-list-view .fc-list-table td,
.fc .fc-body td {
	border-style: none;
}
.fc td.fc-widget-header,
.fc th.fc-widget-header {
	border-left: none;
	border-right: none;
	border-top: none;
}
.fc .fc-month-view td.fc-day {
	border-left: none;
	border-right: none;
	border-bottom: 1px solid;
	padding: 0 6px;
}
.fc .fc-day-grid-container .fc-row {
	border-bottom: 1px solid;
	border-color: #ddd;
}
.fc tr td.fc-today {
	border-style: none;
}
.fc .fc-month-view .fc-content .fc-title .item-desc {
	font-size: 11px;
}
.fc .fc-view-container {
	margin-top: 25px;
}
.fc .fc-list-view td {
	padding: 0;
}
#events-calendar.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
	float: left;
	font-size: 12px;
}
.fc .fc-event {
	background-color: #e3f2fd;
	border: 1px solid #bbdefb;
	color: #333;
}
.fc .fc-month-view .fc-time,
.fc .fc-listMonth-view .fc-list-item-time,
.fc .fc-listMonth-view .fc-list-item-marker,
.fc .fc-listMonth-view .fc-widget-header {
	display: none;
}
.fc .fc-listMonth-view .fc-list-item:hover td {
	background: transparent;
	cursor: pointer;
}
.fc .fc-listMonth-view .separator {
	margin-left: 30px;
	width: 60px;
}

/**
 * The event-card
 */
.event-card {
	width: auto;
}
.event-card .event-label,
.event-card .location-label {
	font-weight: bold;
}
.popover.event-card .event-card-basic-content {
	margin-top: 0;
	padding: 9px;
	padding-left: 0px;
}
.event-card .event-hover-location .location {
	color: #313131;
	font-size: 13px;
}

.generic-page-wrapper.contact-follow-wrapper {
	min-height: auto;
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
	.mod-home.is-not-singleuser #content,
	.mod-login #content {
		margin-top: 100px !important;
	}

	.mod-home.is-not-singleuser .login-form > #login-form,
	.mod-home.is-not-singleuser .login-form > #login-extra-links,
	.mod-login #content #login-form {
		background-color: #fff;
		padding: 1em;
		position: relative;
	}
	.mod-home.is-not-singleuser .login-form > #login-extra-links {
		margin-top: unset;
		background-color: white;
	}

	.mod-home.is-not-singleuser .login-form > #login-form label,
	.mod-login #content #login-form label {
		color: #444;
	}

	.mod-home.is-not-singleuser .login-form::before,
	.mod-login #content #login-form::before {
		display: block;
		position: absolute;
		content: " ";
		background-color: rgba(255, 255, 255, 0.1);
		width: 90%;
		height: 110%;
		top: -5%;
		left: 5%;
		z-index: -1;
	}

	.mod-home.is-not-singleuser .login-form::after,
	.mod-login #content #login-form::after {
		display: block;
		position: absolute;
		content: " ";
		background-color: rgba(255, 255, 255, 0.2);
		width: 80%;
		height: 120%;
		top: -10%;
		left: 10%;
		z-index: -1;
	}
}

/* Mobile display */
@media (max-width: 600px) {
	body {
		padding-top: 95px;
	}
	body.minimal {
		padding: 15px;
	}

	#friendica-logo-mask {
		display: none;
	}

	.container {
		padding-right: 0;
		padding-left: 0;
	}

	.panel {
		border-radius: 0;
		margin-bottom: 5px;
	}

	.toplevel_item > .wall-item-container {
		padding: 0;
	}

	.wall-spacer {
		height: 0px;
	}

	.wall-item-actions {
		margin-top: 10px;
	}

	.media {
		margin-top: 0;
	}

	.mod-home.is-not-singleuser,
	.mod-login {
		padding-left: 10px;
		padding-right: 10px;
	}

	.generic-page-wrapper,
	.videos-content-wrapper,
	.suggest-content-wrapper,
	.help-content-wrapper,
	.match-content-wrapper,
	.dirfind-content-wrapper,
	.directory-content-wrapper,
	.delegation-content-wrapper,
	.notes-content-wrapper,
	.message-content-wrapper,
	.apps-content-wrapper,
	#adminpage,
	.delegate-content-wrapper,
	.uexport-content-wrapper,
	.dfrn_request-content-wrapper,
	.friendica-content-wrapper,
	.credits-content-wrapper,
	.nocircle-content-wrapper,
	.profperm-content-wrapper,
	.invite-content-wrapper,
	.tos-content-wrapper,
	.fsuggest-content-wrapper {
		border-radius: 0;
		padding: 10px;
	}

	.row {
		margin-right: 0;
	}

	.col-lg-1,
	.col-lg-10,
	.col-lg-11,
	.col-lg-12,
	.col-lg-2,
	.col-lg-3,
	.col-lg-4,
	.col-lg-5,
	.col-lg-6,
	.col-lg-7,
	.col-lg-8,
	.col-lg-9,
	.col-md-1,
	.col-md-10,
	.col-md-11,
	.col-md-12,
	.col-md-2,
	.col-md-3,
	.col-md-4,
	.col-md-5,
	.col-md-6,
	.col-md-7,
	.col-md-8,
	.col-md-9,
	.col-sm-1,
	.col-sm-10,
	.col-sm-11,
	.col-sm-12,
	.col-sm-2,
	.col-sm-3,
	.col-sm-4,
	.col-sm-5,
	.col-sm-6,
	.col-sm-7,
	.col-sm-8,
	.col-sm-9,
	.col-xs-1,
	.col-xs-10,
	.col-xs-11,
	.col-xs-12,
	.col-xs-2,
	.col-xs-3,
	.col-xs-4,
	.col-xs-5,
	.col-xs-6,
	.col-xs-7,
	.col-xs-8,
	.col-xs-9 {
		padding-right: 0;
	}

	.wwto .contact-photo {
		height: 19px;
		padding: 0;
		top: 24px;
		left: 24px;
	}

	/*
		Prevent automatic zoom on input focus on iOS
		see https://stackoverflow.com/a/16255670
	*/
	.form-control {
		font-size: 16px;
	}

	.wall-item-container.thread_level_3,
	.wall-item-container.thread_level_4,
	.wall-item-container.thread_level_5,
	.wall-item-container.thread_level_6,
	.wall-item-container.thread_level_7,
	.wall-item-container.thread_level_8,
	.wall-item-container.thread_level_9 {
		margin-left: 5px;
	}
}
/*
 * SPDX-FileCopyrightText: 2010-2024 the Friendica project
 *
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */

@-webkit-keyframes passing-through{0%{opacity:0;-webkit-transform:translateY(40px);-moz-transform:translateY(40px);-ms-transform:translateY(40px);-o-transform:translateY(40px);transform:translateY(40px)}30%,70%{opacity:1;-webkit-transform:translateY(0px);-moz-transform:translateY(0px);-ms-transform:translateY(0px);-o-transform:translateY(0px);transform:translateY(0px)}100%{opacity:0;-webkit-transform:translateY(-40px);-moz-transform:translateY(-40px);-ms-transform:translateY(-40px);-o-transform:translateY(-40px);transform:translateY(-40px)}}@-moz-keyframes passing-through{0%{opacity:0;-webkit-transform:translateY(40px);-moz-transform:translateY(40px);-ms-transform:translateY(40px);-o-transform:translateY(40px);transform:translateY(40px)}30%,70%{opacity:1;-webkit-transform:translateY(0px);-moz-transform:translateY(0px);-ms-transform:translateY(0px);-o-transform:translateY(0px);transform:translateY(0px)}100%{opacity:0;-webkit-transform:translateY(-40px);-moz-transform:translateY(-40px);-ms-transform:translateY(-40px);-o-transform:translateY(-40px);transform:translateY(-40px)}}@keyframes passing-through{0%{opacity:0;-webkit-transform:translateY(40px);-moz-transform:translateY(40px);-ms-transform:translateY(40px);-o-transform:translateY(40px);transform:translateY(40px)}30%,70%{opacity:1;-webkit-transform:translateY(0px);-moz-transform:translateY(0px);-ms-transform:translateY(0px);-o-transform:translateY(0px);transform:translateY(0px)}100%{opacity:0;-webkit-transform:translateY(-40px);-moz-transform:translateY(-40px);-ms-transform:translateY(-40px);-o-transform:translateY(-40px);transform:translateY(-40px)}}@-webkit-keyframes slide-in{0%{opacity:0;-webkit-transform:translateY(40px);-moz-transform:translateY(40px);-ms-transform:translateY(40px);-o-transform:translateY(40px);transform:translateY(40px)}30%{opacity:1;-webkit-transform:translateY(0px);-moz-transform:translateY(0px);-ms-transform:translateY(0px);-o-transform:translateY(0px);transform:translateY(0px)}}@-moz-keyframes slide-in{0%{opacity:0;-webkit-transform:translateY(40px);-moz-transform:translateY(40px);-ms-transform:translateY(40px);-o-transform:translateY(40px);transform:translateY(40px)}30%{opacity:1;-webkit-transform:translateY(0px);-moz-transform:translateY(0px);-ms-transform:translateY(0px);-o-transform:translateY(0px);transform:translateY(0px)}}@keyframes slide-in{0%{opacity:0;-webkit-transform:translateY(40px);-moz-transform:translateY(40px);-ms-transform:translateY(40px);-o-transform:translateY(40px);transform:translateY(40px)}30%{opacity:1;-webkit-transform:translateY(0px);-moz-transform:translateY(0px);-ms-transform:translateY(0px);-o-transform:translateY(0px);transform:translateY(0px)}}@-webkit-keyframes pulse{0%{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}10%{-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);-o-transform:scale(1.1);transform:scale(1.1)}20%{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}}@-moz-keyframes pulse{0%{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}10%{-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);-o-transform:scale(1.1);transform:scale(1.1)}20%{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}}@keyframes pulse{0%{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}10%{-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);-o-transform:scale(1.1);transform:scale(1.1)}20%{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}}.dropzone,.dropzone .dz-default *{box-sizing:border-box;overflow:auto;cursor:default}.dropzone:not(textarea){border:1px solid rgba(0,0,0,.3);padding:0px 0px 5px 0px;color: #999;}.dropzone.dz-clickable{cursor:pointer;border-radius: 4px;background-color: #f2f4f7; margin-bottom: 10px;}.dropzone.dz-clickable .dz-message,.dropzone.dz-clickable .dz-message *{cursor:pointer}.dropzone.dz-started .dz-message{display:none}.dropzone.dz-drag-hover{border-style:solid}.dropzone.dz-drag-hover .dz-message{opacity:.5}.dropzone .dz-message{text-align:center}.dropzone .dz-message .dz-button{background:none;color:inherit;border:none;padding:0;font:inherit;cursor:pointer;outline:inherit}.dropzone .dz-preview{position:relative;display:inline-block;vertical-align:top;margin:16px;min-height:100px}.dropzone .dz-preview:hover{z-index:1000}.dropzone .dz-preview:hover .dz-details{opacity:1}.dropzone .dz-preview.dz-file-preview .dz-image{border-radius:20px;background:#999;background:linear-gradient(to bottom, #eee, #ddd)}.dropzone .dz-preview.dz-file-preview .dz-details{opacity:1}.dropzone .dz-preview.dz-image-preview{background:#fff}.dropzone .dz-preview.dz-image-preview .dz-details{-webkit-transition:opacity 0.2s linear;-moz-transition:opacity 0.2s linear;-ms-transition:opacity 0.2s linear;-o-transition:opacity 0.2s linear;transition:opacity 0.2s linear}.dropzone .dz-preview .dz-remove{font-size:14px;text-align:center;display:block;cursor:pointer;border:none}.dropzone .dz-preview .dz-remove:hover{text-decoration:underline}.dropzone .dz-preview:hover .dz-details{opacity:1}.dropzone .dz-preview .dz-details{z-index:20;position:absolute;top:0;left:0;opacity:0;font-size:13px;min-width:100%;max-width:100%;padding:2em 1em;text-align:center;color:rgba(0,0,0,.9);line-height:150%}.dropzone .dz-preview .dz-details .dz-size{margin-bottom:1em;font-size:16px}.dropzone .dz-preview .dz-details .dz-filename{white-space:nowrap}.dropzone .dz-preview .dz-details .dz-filename:hover span{border:1px solid rgba(200,200,200,.8);background-color:rgba(255,255,255,.8)}.dropzone .dz-preview .dz-details .dz-filename:not(:hover){overflow:hidden;text-overflow:ellipsis}.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span{border:1px solid transparent}.dropzone .dz-preview .dz-details .dz-filename span,.dropzone .dz-preview .dz-details .dz-size span{background-color:rgba(255,255,255,.4);padding:0 .4em;border-radius:3px}.dropzone .dz-preview:hover .dz-image img{-webkit-transform:scale(1.05, 1.05);-moz-transform:scale(1.05, 1.05);-ms-transform:scale(1.05, 1.05);-o-transform:scale(1.05, 1.05);transform:scale(1.05, 1.05);-webkit-filter:blur(8px);filter:blur(8px)}.dropzone .dz-preview .dz-image{border-radius:20px;overflow:hidden;width:120px;height:120px;position:relative;display:block;z-index:10}.dropzone .dz-preview .dz-image img{display:block}.dropzone .dz-preview.dz-success .dz-success-mark{-webkit-animation:passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-moz-animation:passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-ms-animation:passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-o-animation:passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);animation:passing-through 3s cubic-bezier(0.77, 0, 0.175, 1)}.dropzone .dz-preview.dz-error .dz-error-mark{opacity:1;-webkit-animation:slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);-moz-animation:slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);-ms-animation:slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);-o-animation:slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);animation:slide-in 3s cubic-bezier(0.77, 0, 0.175, 1)}.dropzone .dz-preview .dz-success-mark,.dropzone .dz-preview .dz-error-mark{pointer-events:none;opacity:0;z-index:500;position:absolute;display:block;top:50%;left:50%;margin-left:-27px;margin-top:-27px}.dropzone .dz-preview .dz-success-mark svg,.dropzone .dz-preview .dz-error-mark svg{display:block;width:54px;height:54px}.dropzone .dz-preview.dz-processing .dz-progress{opacity:1;-webkit-transition:all 0.2s linear;-moz-transition:all 0.2s linear;-ms-transition:all 0.2s linear;-o-transition:all 0.2s linear;transition:all 0.2s linear}.dropzone .dz-preview.dz-complete .dz-progress{opacity:0;-webkit-transition:opacity 0.4s ease-in;-moz-transition:opacity 0.4s ease-in;-ms-transition:opacity 0.4s ease-in;-o-transition:opacity 0.4s ease-in;transition:opacity 0.4s ease-in}.dropzone .dz-preview:not(.dz-processing) .dz-progress{-webkit-animation:pulse 6s ease infinite;-moz-animation:pulse 6s ease infinite;-ms-animation:pulse 6s ease infinite;-o-animation:pulse 6s ease infinite;animation:pulse 6s ease infinite}.dropzone .dz-preview .dz-progress{opacity:1;z-index:1000;pointer-events:none;position:absolute;height:16px;left:50%;top:50%;margin-top:-8px;width:80px;margin-left:-40px;background:rgba(255,255,255,.9);-webkit-transform:scale(1);border-radius:8px;overflow:hidden}.dropzone .dz-preview .dz-progress .dz-upload{background:#333;background:linear-gradient(to bottom, #666, #444);position:absolute;top:0;left:0;bottom:0;width:0;-webkit-transition:width 300ms ease-in-out;-moz-transition:width 300ms ease-in-out;-ms-transition:width 300ms ease-in-out;-o-transition:width 300ms ease-in-out;transition:width 300ms ease-in-out}.dropzone .dz-preview.dz-error .dz-error-message{display:block}.dropzone .dz-preview.dz-error:hover .dz-error-message{opacity:1;pointer-events:auto}.dropzone .dz-preview .dz-error-message{pointer-events:none;z-index:1000;position:absolute;display:block;display:none;opacity:0;-webkit-transition:opacity 0.3s ease;-moz-transition:opacity 0.3s ease;-ms-transition:opacity 0.3s ease;-o-transition:opacity 0.3s ease;transition:opacity 0.3s ease;border-radius:8px;font-size:13px;top:130px;left:-10px;width:140px;background:#be2626;background:linear-gradient(to bottom, #be2626, #a92222);padding:.5em 1.2em;color:#fff}.dropzone .dz-preview .dz-error-message:after{content:"";position:absolute;top:-6px;left:64px;width:0;height:0;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #be2626}
/*
	Name	   : Bookface Auto Color Mode
	Version    : 1.3
    Licence    : AGPL
    Created on : 11 Feb 2025
    Author     : Kristi H. @kmh@friendica.world feb @feb@loma.ml Phil phil@loma.ml
*/

:root {
    --global-font-family: "Open Sans", Arial, sans-serif, Noto Color Emoji;
    --nav-bg: #ffffff;
    --link-color: #0066ff;
    --nav-icon-color: #65686C;
    --background-color: #f2f4f7;
    --contentbg-transp: 1;
    --font-color: #313131;
    --font-color-darker: #333;
    --background-image: ;
    --menu-background-hover-color: color-mix(in oklab, var(--link-color) 15%, white);
    --border-color: #eeeeee;
    --count-color: #ffffff;
    --count-bg: var(--link-color);
    
    /* LOCALIZE pseudo-element text below */
    --sign-in-text: 'Sign-In';
    --compose-text: 'Compose';
    --new-note-text: 'New Note';
    --save-search-text: 'Save Search';
    --follow-tag-text: 'Follow Tag';
    --comment-button-text: 'Comment';
    --share-button-text: 'Share';
    --quote-button-text: 'Quote';
    --like-button-text: 'Like';
    --dislike-button-text: 'Dislike';
    --more-button-text: 'More';
    --attendyes-button-text: 'Going';
    --attendno-button-text: 'Can\'t Go';
    --attendmaybe-button-text: 'Maybe';
    --add-photo-button-text: 'Add Photos';
    --follow-button-text: 'Follow';
    --save-button-text: 'Save';    
}

	body {
		background-color: var(--background-color) !important;
		font-size: 15px !important;
		padding-top: 130px !important;
		font-family: var(--global-font-family);
	}
	#topbar-first .nav > li > a, 
	#topbar-first .nav > li > button, 
	nav.navbar .nav > li > a, 
	nav.navbar .nav > li > button{
		color: var(--nav-icon-color) !important;
		}
	#topbar-first, nav.navbar {
		background-color: var(--nav-bg) !important;
		color: var(--nav-icon-color) !important;
		height: 55px;
	}
		#topbar-first .topbar-nav .nav-segment {
			margin-right: 10px;
		}
		#topbar-first .nav > li > a:hover:not(.selected) {
			background-color: rgba(128,128,128,.1) !important;
			border-radius: 8px !important;
		}
		.fa-lg {
			font-size: 24px !important;
		}
	#topbar-first .nav > li > a:hover, 
	#topbar-first .nav > li > a:focus, 
	#topbar-first .nav > li > button:not(#main-menu):hover, 
	#topbar-first .nav > li > button:not(#main-menu):focus,
	#topbar-first button.navbar-toggle:hover,
	#topbar-first button.navbar-toggle:focus, 
	nav.navbar .nav > li > a:hover, 
	nav.navbar .nav > li > a:focus, 
	nav.navbar .nav > li > button:hover, 
	nav.navbar .nav > li > button:focus {
	  background-color: rgba(128,128,128,.1) !important;
		border-radius: 8px !important;
		
	}
	#topbar-first button.navbar-toggle,
	#nav-notifications-menu-btn {
		width: 50px;
		height: 50px;
	}	
	#topbar-first .nav > li > a.selected,
	#nav-notification.dropdown.open {
		border-bottom: 3px solid var(--link-color) !important;
		color: var(--link-color) !important;
	}
	#topbar-first .nav > li > a.selected:hover,
	#topbar-first .nav > li > a.selected:focus,
	#topbar-first .nav > li > #main-menu:hover,
	#topbar-first .nav > li > #main-menu:focus,
	#nav-notification.dropdown.open #nav-notifications-menu-btn:hover,
	#nav-notification.dropdown.open #nav-notifications-menu-btn:focus {
		background-color: transparent !important;
		border-radius: 0 !important;
	}
	#nav-notification.dropdown.open #nav-notifications-menu-btn .fa-bell::before {
		content: '\f0f3';	
		color: var(--link-color);	
	}
	ul.tabs li {
		font-size: 15px !important;
		margin-left: 10px !important;
	}
		ul.tabs li a {
			margin-top: 8px;
			color: var(--link-color);
		}
		ul.tabs li:hover:not(.active) {
			border-bottom-width: 0px !important;
		}
			ul.tabs li:hover:not(.active) > a {
				background-color: rgba(128,128,128,.1) !important;
				border-radius: 8px !important;
				color: var(--font-color);
			}
	.dropdown-menu {
		padding-bottom: 15px !important;
        background-color: var(--nav-bg) !important;
        border: 1px solid var(--background-color) !important;
	}
		.dropdown-menu li {
			margin: 3px 10px;
			width: 92%  !important;
			border-radius: 8px;
		}
			.dropdown-menu li:hover {
				border-color: transparent  !important;
			}
			.dropdown-menu > li > a:hover,
			.dropdown-menu > li > a:focus {
				background-image: none !important;
				border-radius: 8px ;
			}
			.dropdown-menu > li.active,
			.dropdown-menu > li.active:hover,
			.dropdown-menu > li.active:focus {
				border-radius: 0;
				background-color: transparent;
				border-bottom: 4px solid var(--link-color) !important;
			}
			.dropdown-menu > li.active > a,
			.dropdown-menu > li.active:hover > a,
			.dropdown-menu > li.active:focus > a {
				color: var(--link-color);
				background-color: transparent;
				background-image: none;
			}
    .form-control {
    	background: var(--nav-bg);
    	color: #000;
    }
    	.form-control[readonly],
    	.form-control[disabled],
    	.fieldset[disabled] .form-control {
    		/* background color */
    		/* color */
    		opacity: .5;
    	}
	.table-striped > tbody > tr:nth-of-type(2n+1){
		/* not necessary for light mode */
	}			
	header #banner {
		left: 0 !important;
		right: auto !important;
		margin-top: 10px;
	}
	.navbar-brand #logo-img {
		margin-top: 20px;
	}
	.navbar-brand #logo-img,
	header #banner #logo-img {
		/* SVG Mask is broken in WebKit use Icon Font instead */
		-webkit-mask-image: unset !important;
		mask: none !important;
		mask-size: unset !important;
		mask-composite: unset !important;
		mask-mode: unset !important;
		background-color: transparent !important;
		height: 40px;
		width:  40px;
	}
		.navbar-brand #logo-img::before,
		header #banner #logo-img::before {
			content: '\f2e6';
			font-family: ForkAwesome;
			font-size: 45px;
			position: relative;
			top: -12px;
			left: 0px;
			text-shadow: none;
			color: var(--link-color);
		}
		
	    #navbar-brand-text {
       		line-height: 40px;
       		font-weight: 700;
       		color: var(--link-color) !important;
       }
       #nav-login::before{
       	content: var(--sign-in-text);
       }
	.topbar ul.nav {
		left: 50% !important;
		margin-left: -25% !important;
		position: relative;
	}
	#topbar-first .nav > .account img {
		border-radius: 100% !important;
		box-shadow: 0 0 1px rgba(255,255,255,.1) !important;
		height: 40px !important;
		width: 40px !important;
	}
	#search-box {
		position: fixed !important;
		left: 100px;
	}
	#topbar-first #search-box .form-search {
		height: 40px !important;
		font-size: 15px;
		background-position: unset;
		/* box shadow okay for light mode */
	}
	#search-box form > div {
		background-color: var(--background-color);
		border-radius: 50px;
	}
	#search-box form > div::before {
		content: '\f002';
		font-family: ForkAwesome;
		position: absolute;
		left: 10px;
		top: 8px;
	}
	#search-box .form-control.form-search {
		border-radius: 50px !important;
		background: transparent !important;
		width: 100% !important;
	}
	#search-box .form-control::placeholder {
		color: #666 !important;
	}
	#topbar-first #search-box .btn {
		font-size: 0px !important;
  		height: 32px;
		width: 32px;
		top: 2px !important;
		background-color: white !important;
		margin-top: 2px !important;
	}
	#topbar-first #search-box .btn::before {
		content: '\f061';
		font-family: ForkAwesome;
		font-size: 15px;
		color: #666;
	}
	#nav-user-menu, #nav-notifications-menu {
		background-color: var(--nav-bg) !important;
		border: 1px solid var(--background-color) !important;
	}
	#nav-user-menu {
		min-width: 250px !important;
		overflow-x: hidden;
	}
	.nav-pills .dropdown-menu li a, 
	.nav-pills .dropdown-menu li .btn-link, 
	.nav-tabs .dropdown-menu li a, 
	.nav-tabs .dropdown-menu li .btn-link, 
	.account .dropdown-menu li a, 
	.account .dropdown-menu li .btn-link, 
	.contact-photo-wrapper .dropdown-menu li a, 
	.contact-photo-wrapper .dropdown-menu li .btn-link {
		color: var(--nav-icon-color) !important;
		border-color: var(--nav-bg) !important;
	}
		.nav-pills .dropdown-menu li > a:hover, 
		.nav-tabs .dropdown-menu li > a:hover, 
		.account .dropdown-menu li > a:hover, 
		.contact-photo-wrapper .dropdown-menu li > a:hover, 
		.nav-pills .dropdown-menu li.selected a, 
		.nav-tabs .dropdown-menu li.selected a, 
		.account .dropdown-menu li.selected a, 
		.contact-photo-wrapper .dropdown-menu li.selected a {
			color: #333 !important;
			background: #f2f2f2 !important;
			border-radius: 8px;
		}  
	.nav-pills .dropdown-menu li.divider, 
	.nav-tabs .dropdown-menu li.divider,
	.account .dropdown-menu li.divider, 
	.contact-photo-wrapper .dropdown-menu li.divider {
		background-color: var(--nav-bg) !important;
	}
#content .nav > li > .btn-link {
	margin: 5px;
}
#content .nav > li > .btn-link:hover,
#content .nav > li > .btn-link:focus {
	background-color: var(--link-color);
	color: white;
}  
	#topbar-first #nav-notifications-menu {
		   border: 1px solid var(--background-color) !important;
	}
	#topbar-first #nav-notifications-menu li {
		border-color: transparent !important;
		box-sizing: border-box;
		margin: 10px;
		border-radius: 10px !important;
		width: 94% !important;
	}
	#topbar-first .notification-unseen {
		   background-color: rgba(0,0,0,.1) !important;
	}
	#topbar-first #nav-notifications-menu li.notif-entry:hover{
		   background-color:rgba(128,128,128,.2) !important;    
		   border-color: transparent !important;
	}
		.topbar .dropdown-header {
			color: var(--nav-icon-color);
		}
		#topbar-first .topbar-nav .arrow {
			display: none !important;
		}
				.topbar .dropdown-header .dropdown-header-link .btn-link {
					border: 1px solid var(--link-color);
					border-radius: 8px;
					padding: 5px;
					margin-top: -6px;
				}
					.topbar .dropdown-header .dropdown-header-link .btn-link:hover,
					.topbar .dropdown-header .dropdown-header-link .btn-link:focus {
						background-color: rgba(0,0,0,.1);
					}	
	#topbar-second {
		top: 55px;
		height: 60px !important;
		background-color: var(--nav-bg) !important;
		border-color: #ccc;
	}
		.btn.btn-primary:hover,
		.btn.btn-primary:focus {
			border-radius: 8px !important;
		}
		#dropdownMenuTools {
			height: 40px;
			width: 40px;
			background-color: rgba(128,128,128,.1) !important;
			border-radius: 100% !important;
			margin-top: 5px !important;
			margin-right: 10px !important;
		}
			#dropdownMenuTools:hover,
			#dropdownMenuTools:focus {
			background-color: rgba(0,0,0,.1) !important;
		}
		#jotOpen {
			border-radius: 8px !important;
			background-color: var(--link-color) !important;
			color: #ffffff !important;
			/* frio border-color */
			/* frio box-shadow */
		}
		#jotOpen:hover, #jotOpen:focus {
			box-shadow: inset 0 0 100px rgba(0,0,0,.1) !important;
		}
		#jotOpen::before {
			content: var(--compose-text);
			font-size: 15px;
			margin-right: 10px;
			line-height: 32px;
			position: relative;
			display: inline;
			top: -4px;
		}
		body.mod-notes #jotOpen::before {
			content: var(--new-note-text);
		}
		body.mod-notes .sectiontop h3::before {
  			content: '\f023';
  			font-family: ForkAwesome;
  			margin-right: 5px;
		}
		#jotOpen .fa-pencil-square-o {
			font-size: 32px !important;
			position: relative;
			top: 4px;
		}
		#topbar-second #nav-short-info {
			margin-top: 10px;
		}
	/* General Content Wrappers */
	section > .generic-page-wrapper, 
	.videos-content-wrapper, 
	.suggest-content-wrapper, 
	.help-content-wrapper, 
	.match-content-wrapper, 
	.dirfind-content-wrapper, 
	.delegation-content-wrapper, 
	.notes-content-wrapper, 
	.message-content-wrapper, 
	.apps-content-wrapper, #adminpage, 
	.delegate-content-wrapper, 
	.uexport-content-wrapper, 
	.dfrn_request-content-wrapper, 
	.friendica-content-wrapper, 
	.credits-content-wrapper, 
	.nocircle-content-wrapper, 
	.profperm-content-wrapper, 
	.invite-content-wrapper, 
	.tos-content-wrapper, 
	.fsuggest-content-wrapper,
	.shared-wrapper {
		background-color: var(--nav-bg) !important;
		background-image: none;
		/* frio light border-color */
	}
	/* Make Submit Buttons Pretty */
	#adminpage a.btn,
	.settings-submit,
	button[type="submit"],
	input[type="submit"],
	#photos-upload-submit {
		background-color: var(--link-color) !important;
		color: white !important;
		border-radius: 8px !important;
		border: none !important;
		box-shadow: none !important;
	}
	.settings-submit.form-button-search,
	button[type="submit"].form-button-search {
		border-radius:50px !important;
		margin-top:-.5px !important;
	}
	#adminpage a.btn:hover,
    #adminpage a.btn:focus,
	.settings-submit:hover,
	.settings-submit:focus,
	button[type="submit"]:hover,
	button[type="submit"]:focus,
	input[type="submit"]:hover,
	input[type="submit"]:focus,
	#photos-upload-submit:hover,
	#photos-upload-submit:focus{
		box-shadow: inset 0 0 100px rgba(0,0,0,.1) !important;
	}
	 #delegate-parent .submit button {
    	float: right;
    	padding: 8px;
    	appearance: none;
    	border: none;
    }
    	#delegate-parent .submit::after {
    		content: '';
    		display: block;
    		clear: both;
    	}
	/* make position of submit buttons in settings consistent */
    .panel-footer {
    	background-color: var(--nav-bg) !important;
    }
	.panel-footer button[type="submit"],
	.panel-footer input[type="submit"] {
		float: right !important;
		margin-left: 5px;
	}
		.panel-footer::after{
			content: '';
			display: block;
			clear: both;
		}
		#addonslist{
			margin-top: 20px;
		}
	#settings-server button[type="submit"] {
	  float: right !important;
	  margin-left: 5px !important;
	  margin-bottom: 20px !important;
	}
	#adminpage button[type="sbumit"],
	input[type="submit"],
	input[name="page_logs"],
	input[name="republish_directory"],
	input[name="page_tos"]{
	    float: right;
		padding: 8px;
		border: none;		
	}
	.submit::after{
		content: '';
		display: block;
		clear: both;
	}
	#photo-edit-end {
		clear: both;
	}
	/* make textareas resize in the correct direction */
	textarea {
		resize: vertical !important;
	}
	/* Other people profiles */
	#mention-link {
		border-radius: 8px !important;
		background-color: var(--link-color) !important;
		color: #ffffff !important;
		/* frio border-color */
		/* frio box-shadow */
		padding: 0 16px !important;
	}
		#mention-link:hover,
		#mention-link:focus {
			box-shadow: inset 0 0 100px rgba(0,0,0,.1) !important;
		}
		#mention-link span:first-of-type {
			float: right;
			font-size: 32px;
			line-height: 45px;
			top: 4px;
		}
		#mention-link span:first-of-type .fa-2x {
			font-size: inherit !important;
		}
		#mention-link span:last-of-type {
			font-size: 15px;
			margin-right: 10px;
			line-height: 32px;
			top: 6px;
			position:relative;
		}
	#contact-edit-status-wrapper {
		margin: 15px 0px !important;
		border-radius: 10px;
	}
	#profile-extra-links .btn {
		border-radius: 8px !important;
		margin-bottom: 10px !important;
	}
	/* SEARCH RESULTS */
	#search-save {
		background-color: var(--link-color) !important;
		color: white !important;
		border-radius: 8px !important;
		padding: 6px 8px !important;
	}
		#search-save:hover,
		#search-save:focus {
			box-shadow: inset 0 0 100px rgba(0,0,0,.1) !important;
		}
	#search-save .fa-plus::before{
		content: '\f292' !important;
	}
	#search-save .fa-floppy-o::before {
		content: '\f00e' !important;
	}
	#search-save .fa-floppy-o::before,
	#search-save .fa-plus::before {
		display: inline-block;
		margin-top: 2px;
	}
	#search-save .fa-floppy-o::after,
	#search-save .fa-plus::after{
		content: var(--save-search-text);
		font-family: 'Open Sans', Arial, sans-serif;
		font-size: 15px;
		float: left;
		margin-right: 10px;
		line-height: 32px;
		position: relative;
		display: block;
		top: -2px;
		font-weight: 700;
	}
	#search-save .fa-floppy-o::after {
		  content: var(--save-search-text);
	}
	#search-save .fa-plus::before {
		display: inline-block;
		margin-top: 2px;
	}
	#search-save .fa-plus::after {
		  content: var(--follow-tag-text);
	}
	/* popovers */
	.popover.hovercard {
		border: 1px solid var(--nav-bg) !important;
		/* 	
			dark version needs box shadow as outer glow
		*/
	}
	.hover-card-footer {
		border-color: #ccc;
		background-color: var(--nav-bg);
	}
		.hovercard.top > .arrow::after {
			border-top-color: var(--nav-bg);
		}
		.hovercard.right > .arrow::after {
			border-right-color: var(--nav-bg);
		}
		.hovercard.bottom > .arrow::after {
			border-bottom-color: var(--nav-bg);
		}
		.hovercard.left > .arrow::after {
			border-left-color: var(--nav-bg);
		}
	/* sidebar widgets */
	aside .widget,
	.nav-container .widget {
		background-color: var(--background-color) !important;
		-webkit-box-shadow: none !important;
		-moz-box-shadow: none !important;
		box-shadow: none !important;
	}
	aside .badge {
		background-color: var(--link-color);
	}
	/* POSTS */
	.tread-wrapper {
	  /* frio background-color */
	  box-shadow: 0 0px 1px rgba(0,0,0,.5) !important;
	  border-radius: 10px !important;
	}
	.wall-item-container {
		border-top: none;
	}
	.wall-item-container .media {
		background-color: #ffffff !important;
		border-radius: 10px !important;
	}
	.wall-item-container iframe {
		width: 100% !important;
		height: auto !important;
		display: block;
		margin: 0 auto;
		aspect-ratio: 16/9;
		border: 1px solid #ccc;
		border-radius: 8px;
		background-color: #000;
	}
	/*
		Dark mode has some extra styling
		here light mode does not need
	*/
		.contact-photo,
		.contact-photo-xs {
			border-radius: 100% !important;
			border: 1px solid #eee !important;
		}
	/*
		Dark mode has some extra styling
		here light mode does not need
		to the .media-list > li elements
	*/
/*	
	Dark mode has some extra styling
	here for the .hovercard element
*/
		.hover-card-pic img.thumbnail {
			border-radius: 100% !important;
			/* frio background-color */
			/* frio border-color */
		}
		p.wall-item-announce,
		.media .time, .media .shared-time,
		.media .delivery, .media .location,
		.media .location a {
			font-size: 13px !important;
		}
			.type-link, .type-video {
				padding: 0 !important;
				margin:  0 !important;
				background-color: rgb(240, 242, 245) !important;
				border: 1px solid rgb(208,211,215) !important;
			}
			.type-link h4, .type-link blockquote, .type-link sup,
			.type-video h4, .type-video blockquote, .type-video sup {
				padding-left: 10px !important;
				padding-right: 10px !important;
			}
       /* keep mentions and tags from spilling out */
       #profile-page .label,
       #profile-page .label a,
       .wall-item-bottom .label, 
       .wall-item-bottom .label a {
            display: inline-block !important;
       }
		/* ACTION BUTTON LABELS */
		.wall-item-actions-row button,
		.wall-item-actions-right button {
		    position: relative;
			display: block;
			white-space: normal !important;
			margin: 0 auto !important;
			/* frio -webkit-box-shadow */
			/* frio box-shadow */
		}
		.wall-item-actions-row button::after,
		.wall-item-actions-right button::after {
			font-size: 14px;
			font-family: sans-serif;
			display: block;
			margin-top: 2px;
		}
		.wall-item-response {
		    position: relative;
			overflow: visible !important;
			display: block;
		}
		.button-comments::after {
			content: var(--comment-button-text);
		}
		.button-announces::after {
			content: var(--share-button-text);
		}
			.share-links .dropdown-toggle::after {
				content: var(--share-button-text);
			}
		.button-votes::after {
			content: var(--quote-button-text);
		}
		.button-likes::after {
			content: var(--like-button-text);
		}
	 	[id^="dislike-"]::after{
		 	content: var(--dislike-button-text);
	 	}
		.wall-item-actions-right .dropdown-toggle::after,
		.more-links .dropdown-toggle::after {
			content: var(--more-button-text);
		}
		/* engagement counts */
		.wall-item-actions-row > button span,
		.wall-item-response span {
			position: absolute;
			text-align: center;
			display: block;
			background-color: var(--count-bg);
			box-shadow: -1px 1px 1px #fff;
			border-radius: 4px;
			color: var(--count-color);
			font-size: 12px;
			font-weight: 700;
			width: fit-content;
			padding: 0px 7px;
			left: 55%;
			top: 0px;
			z-index: 1;
		}
		/* event response buttons */
		.vote-event:has(button) {
			padding-bottom: 135px;
		}
		.vote-event:has(button) .wall-item-response {
			position: absolute;
			top: 63px;
		}
		.vote-event .wall-item-response:empty{
			display: none;
		}
		.vote-event:has(button) .wall-item-response:nth-of-type(1){
			left: 15px;
		}
		.vote-event .wall-item-response:nth-of-type(1) .button-event::after,
		[id^="attendyes"]::after{
			content: var(--attendyes-button-text);
		}
		.vote-event:has(button) .wall-item-response:nth-of-type(2){
			left: 105px;
		}
		.vote-event .wall-item-response:nth-of-type(2) .button-event::after,
		[id^="attendno"]::after{
			content: var(--attendno-button-text);
			position: relative;
			height: 20px;
			overflow: hidden; /* or skews mobile button layout */
		}
		.vote-event:has(button) .wall-item-response:nth-of-type(3){
			left: 204px;
		}
		.vote-event .wall-item-response:nth-of-type(3) .button-event::after,
		[id^="attendmaybe"]::after{
			content: var(--attendmaybe-button-text);
		}
		/* prevent "Like Like" and "Dislike Dislike" on photos */
		#photo-view-wrapper .wall-item-actions .button-likes {
			font-color: transparent !important;
			font-size: 0px !important;
		}
			#photo-view-wrapper .wall-item-actions .button-likes::after {
				font-size: 18px !important;
				color: var(--nav-icon-color) !important;
			}
			#photo-view-wrapper .wall-item-actions .button-likes .fa-thumbs-up,
			#photo-view-wrapper .wall-item-actions .button-likes .fa-thumbs-down {
				font-size: 24px !important;
				color: var(--nav-icon-color) !important;
			}
				#photo-view-wrapper .wall-item-actions .button-likes:hover::after,
				#photo-view-wrapper .wall-item-actions .button-likes:focus::after,
				#photo-view-wrapper .wall-item-actions .button-likes:hover .fa-thumbs-up,
				#photo-view-wrapper .wall-item-actions .button-likes:focus .fa-thumbs-up,
				#photo-view-wrapper .wall-item-actions .button-likes:hover .fa-thumbs-down,
				#photo-view-wrapper .wall-item-actions .button-likes:focus .fa-thumbs-down {
					color: var(--link-color) !important;
				}
		/* END OF ACTION BUTTON LABELS */	
	/* Compose and Reply */
	#jot-modal .modal-header .compose-link {
		border-radius: 100% !important;
		height: 36px;
		width: 36px;
		font-size: 27px !important;
		padding: 0 6px !important;
		background-color: rgba(0,0,0,.1);
	}
		#jot-modal .modal-header .compose-link:hover,
		#jot-modal .modal-header .compose-link:focus {
			background-color: rgba(0,0,0,.2);
		}
	.close {
		height: 36px;
		width: 36px;
		background-color: var(--link-color) !important;
		opacity: 1 !important;
		color: #fff !important;
		border-radius: 100%;
		margin-top: 5px;
		margin-top: 2px !important;
	}
	.close:hover,
	.close:focus {
		  box-shadow: inset rgba(0,0,0,.2) !important;
	}
	.modal-content,
	#jot-modal-content,
	.wall-item-comment-wrapper {
		background-color: #fff !important;
		border-radius: 15px !important;
		background-image: none;   
	}
		.wall-item-comment-wrapper {
			border: none;
		}
		.photo-comment-wrapper .btn-sm,
		#profile-jot-wrapper .btn-sm,
		.wall-item-comment-wrapper .btn-sm {
			background-color: transparent;
			color: var(--nav-icon-color);
			height: 45px;
			width:  45px;
			font-size: 18px;
		}
			.photo-comment-wrapper .btn-sm:hover,
			.photo-comment-wrapper .btn-sm:focus,
			#profile-jot-wrapper .btn-sm:hover,
			#profile-job-wrapper .btn-sm:focus,
			.wall-item-comment-wrapper .btn-sm:hover,
			.wall-item-comment-wrapper .btn-sm:focus {
				background-color: transparent;
				color: var(--link-color);
			} 
	#jot-modal-content input,
	#jot-modal-content .friendica-tagsinput {
		   background-color: #fff !important;
	}
	#filebrowser .breadcrumb{
		background-color: var(--background-color);
	}
	.fbrowser .folders button {
	   background-color: rgba(0,0,0,.1) !important;
	   color: black !important;
       appearance: none;
       border: none;
       border-radius: 8px;
       width: 100%;
       margin-bottom: 5px;
	}
	.fbrowser .folders button:hover,
	.fbrowser .folders button:focus {
		background-color: rgba(0,0,0,.2) !important;
	}
		   .fbrowser .folders li:hover,
		   .fbrowser .folders li:focus {
		   border-color: transparent !important;
		   background-color: transparent !important;
	}
		   
	#jot-title,
	#jot-category {
		   background-color: #fff !important;
	}
		#profile-jot-text, #profile-jot-wrapper textarea,
		#jot-location,
		.wall-item-comment-wrapper textarea {
			background-color: #fff !important;
		}
	#jot-text-wrap, #profile-jot-wrapper .dropzone.dz-clickable,
	.wall-item-comment-wrapper .dropzone.dz-clickable {
		   background-color: var(--background-color) !important;
	}
.jothidden.nav.nav-pills .btn-link {
	font-size: 18px;
}
	.jothidden.nav.nav-pills .btn-link:hover,
	.jothidden.nav.nav-pills .btn-link:focus {
		color: var(--link-color) !important;
	}
	.jot-nav {
		   border: none !important;
	}
	.jot-nav a {
		   border: none !important;
		   border-radius: 8px !important;
		   margin-right: 5px;
	}
	.jot-nav a:hover, .jot-nav a:focus {
		   background-color: rgba(128,128,128,.2) !important;
	}
	.jot-nav .active a {
		   background-color: transparent !important;
		   border-radius: 0 !important;
		   border-bottom: 3px solid var(--link-color) !important;
	}
	.jot-nav .active a:hover, .jot-nav .active a:focus {
		   background-color: transparent !important;
	}
	[id^="comment-edit-preview"],
	.comment-edit-preview {
	  border-radius: 8px !important;
	  box-shadow: none !important;
	  background-color: rgba(0,0,0,.1);
	}
	[id^="comment-edit-preview"]:hover,
	[id^="comment-edit-preview"]:focus,
	.comment-edit-preview:hover,
	.comment-edit-preview:focus {
		   background-color: rgba(0,0,0,.2) !important;
	}
	#profile-jot-wrapper .wall-item-container.panel-body.preview {
		   border: none!important;
		   margin-top:20px !important;
		   border-radius: none !important;
		   background-color: transparent;
	}
		/* file browser */
		#upload-photo {
			background-color: var(--link-color) !important;
			color: white !important;
			border-radius: 8px !important;
		}
		 #upload-photo:hover,
		#upload-photo:focus {
			background-color: darkblue !important;
		}
    /* 	HIDE ATTACHMENT BUTTON
    	=======================
    	This hides the file attachment button in the Compose "Browser" tab
    	because there is no way to manage/delete uploaded attachments it
    	was a design choice of this theme mod to hide this button from users.
    	
    	If you WANT users to be able to see uploaded files and attach them
    	to posts either comment out this rule or change "none" to "block"
    */ 
    .fbswitcher [data-mode="attachment"] {
           display: none !important;
    }
/* PROFILE */
	#profile-photo-wrapper {
		overflow: visible !important;
		padding: 5px;
		background-color: #ffffff;
		border-radius: 100%
	}
	aside .widget li {
		margin-bottom: 8px;
	}
	aside .vcard img.u-photo, aside img.vcard-photo {
  		border-radius: 100% !important;
		box-shadow: 0 0 1px rgba(0,0,0,.3);
		border: 3px solid white;
	}	
	aside .widget h3.p-name {
		font-size: 32px !important;
		text-align: center;
		word-break: break-word;
		text-shadow: 1px 1px 2px var(--background-color), -1px -1px 2px var(--background-color);
	}
	aside .vcard .p-addr {
		font-weight: 600;
		text-align: center;
		white-space: break-spaces !important;
		background-color: var(--background-color);
		border-radius: 8px;
	}
	aside .vcard .title,
	aside .vcard .location,
	aside .vcard .key,
	aside .vcard .about,
	aside .vcard .xmpp,
	aside .vcard .matrix,
	aside .vcard .homepage {
		background-color: var(--background-color);
		padding: 5px;
		border-radius: 8px;
		min-width: 100%;
		margin: 10px 0;
	}
	aside .widget li.selected {
		background-color: rgba(128,128,128,.1) !important;
		background-image: linear-gradient(var(--menu-background-hover-color),var(--menu-background-hover-color)) !important;
		border-color: transparent !important;
		border-radius: 8px;
	}
	aside .widget li.selected a {
		font-weight: bold;
	}
		aside .widget li.selected a:hover {
			color: #333;
		}
	aside .widget li:hover {
		background-color:rgba(255,255,255,1) !important;
		border-color: transparent !important;
		border-radius: 8px;
	}
	#widget-contacts {
		background-color: #ffffff !important;
		border-radius: 8px !important;
		box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2) !important;
	}
		.contact-block-img {
			height: 100px !important;
			width: 100px !important;
			border-radius: 8px !important;
			box-shadow: 0 0 1px rgba(0, 0, 0, .2);
			margin: 5px;
		}
	.comment-fake-form {
	 	border: none !important;
		background-color: transparent !important;
	}
	.comment-fake-form textarea {
  		border-radius: 50px !important;
  		/* frio background-color */
  		/* frio -webkit-box-shadow */
  		/* frio box-shadow */
	}	
	.wall-item-actions button {
	  font-size: 24px !important;
		color: var(--nav-icon-color) !important;
	}
		.wall-item-actions button:hover {
			color: var(--link-color) !important;
		}
		.wall-item-actions .checkbox {
			padding-top: 6px !important;
		}
		.comment .media-body {
			padding: 10px;
			background-color: var(--background-color);
			border-radius: 20px;
		}
		.wall-item-actions-row .wall-item-emoji {
			font-size: 18px;
			line-height: 40px;
		}
		.navicon {
			font-size: 20px;
			position: relative;
			top: 1px;
		}
		/* little vcard when you scroll down on profiles */
		#vcard-short-photo-wrapper img, 
		#nav-short-info .contact-wrapper img {
			border-radius: 100% !important;
		}
		/* Profile Cover Photo */
		.row:has(.coverphoto) aside,
		.row:has(.coverphoto) #content {
			margin-top: 350px;
		}
			.row:has(.coverphoto) aside .widget.vcard {
				background-color: transparent !important;
			}
		.coverphoto {
			position: fixed;
			top: 115px;
			left: 0 !important;
			right: 0 !important;
			z-index: -1;
			height: 500px;
			overflow: hidden;
		}
			.coverphoto img {
				width: 100%;
				height: 100%;
				object-fit: cover;
				object-position: center;
			}
				.coverphoto:has(> :last-child:nth-child(2)) img {
					height: 50%;
				}
				.coverphoto:has(> :last-child:nth-child(3)) img {
					height: 33.3333%;
				}
				.coverphoto:has(> :last-child:nth-child(n+4)) img {
					height: 25%;
				}
	/* not obviously clickable or intuitive what it does */
	.plink.u-url {
		/* uncomment to outline as a button
		-webkit-box-shadow: 0 0 1px rgba(0,0,0,.5);
		box-shadow: 0 0 1px rgba(0,0,0,.5);
		*/
		border-radius: 100%;
		position: relative;
		padding: 6px 4px;
		height: 35px;
		width:  35px;
		display: block;
	}
		.plink.u-url:hover {
			background-color: rgba(0,0,0,.1) !important;
			text-decoration: none !important;
		}
		.plink.u-url::after {
  			content: '\f101';
  			font-family: ForkAwesome;
  			color: #666;
		}	
	.img-allocated-max-width {
		margin: 20px auto;
	}
	#vcard-short-photo-wrapper img, 
	#nav-short-info .contact-wrapper img {
		border-radius: 100%;
	}
/* Calendar */
.fc-unthemed td.fc-today {
	background-color: rgba(128,128,128,.1);
	background-image: linear-gradient(var(--menu-background-hover-color),var(--menu-background-hover-color));
}
.event-buttons .btn {
  background-color: var(--link-color);
  color: #fff;
  border-radius: 100%;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 18px;
  padding: 0;
  margin-right: 5px;
}
	.event-buttons .btn:hover,
	.event-buttons .btn:focus {
		color: #fff;
		box-shadow: inset 0 0 100px rgba(0,0,0,.1);
	}
	.fc .fc-event {
		background-color: var(--link-color);
		border: none;
		color: white;
	}
		.fc .fc-month-view .fc-content .fc-title .item-desc:hover,
		.fc .fc-month-view .fc-content .fc-title .item-desc:focus {
			color: white;
		}
		.fc .fc-event:hover,
		.fc .fc-event:focus {
			box-shadow: inset 0 0 100px rgba(0,0,0,.2);
		}
/* Photo Albums */
.photo-album-actions .icon-padding,
.photo-edit-link-wrap .icon-padding {
    margin-left: 10px !important;
}
.photos-upload-link {
    font-size: 28px;
    color: var(--link-color) !important;
    opacity: 1 !important;
    border-radius: 8px;
    padding: 0px 8px;
}
#photo-album-link {
    opacity: 1 !important;
}
.photos-upload-link i,
#photo-album-link i,
#photo-edit-link i,
#photo-toprofile-link i,
#album-edit-link i,
#album-drop-link i,
.photos-order-link i {
    font-size: 24px !important;
    color: var(--link-color) !important;
    opacity: 1 !important;
    border-radius: 100% !important;
    padding: 8px 11px !important;
    height: 40px;
    width:  40px;
}
    #photo-edit-link i.fa-image {
        padding: 6px 7px !important;
    }
.photos-order-link {
    margin-top: 5px !important;
}
    .photos-upload-link:hover i,
    .photos-upload-link:focus i,
    #photo-album-link:hover i,
    #photo-album-link:focus i,
    #photo-edit-link:hover i,
    #photo-toprofile-link:hover i,
    #photo-toprofile-link:focus i,
    #album-edit-link:hover i,
    #album-edit-link:focus i,
    #album-drop-link:hover i,
    #album-drop-link:focus i,
    .photos-order-link:hover i,
    .photos-upload-link:hover i,
    .photos-upload-link:focus i {
        background-color: rgba(128,128,128,.1) !important;
    }
.photos-content-wrapper .photos-upload-link::before {
    content: var(--add-photo-button-text);
    font-size: 15px; 
    vertical-align: middle; 
    margin-top: -10px;
    display: inline-block;
}
.justified-gallery {
    overflow: visible !important;
    height: auto !important;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
}
.justified-gallery > a, 
.justified-gallery > div, 
.justified-gallery > figure{
    height: 180px !important;
    width: 180px !important;
    border: 1px solid #ccc;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    border-radius: 8px;
    margin: 4px !important;
}
.justified-gallery > .jg-entry-visible > img,
.justified-gallery > .jg-entry-visible > a > img,
.justified-gallery > .jg-entry-visible > svg,
.justified-gallery > .jg-entry-visible > a > svg{
    width: 100% !important;
    height:  100% !important;
    margin: 0 !important;
    top: 0 !important;
    left: 0 !important;
    object-fit:cover;
    object-position: center;
}
#photo-photo {
    margin: 0 auto !important;
    max-width: 100%;
}	
#photos-upload-perms button[data-toggle="modal"] {
	background-color: rgba(0,0,0,.1) !important;
	padding: 0 !important;
	height: 36px;
	width:  36px;
	margin-right: 5px;
	border-radius: 100%;
	color: var(--link-color);	
}
	#photos-upload-perms button[data-toggle="modal"]:hover,
	#photos-upload-perms button[data-toggle="modal"]:focus {
		background-color: rgba(0,0,0,.2) !important;
	}		
/* ADD-ONS */
.advancedcontentfilter-content-wrapper table td:nth-of-type(2) {
  word-wrap: anywhere;
}
.advancedcontentfilter-content-wrapper pre {
	margin-top: 20px;
}
/* MISCELLANEOUS STUFF */
div#back-to-top {
	bottom: 65px;
	left:   10px;
	background-color: var(--link-color);
	color: #ffffff;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 24px;
	border-radius: 100%;
}	
#item-delete-selected {
	height: 50px;
	width:  50px;
	line-height: 50px;
	font-size: 24px;
	background-color: var(--link-color);
	border-radius: 100%;
	top: 120px;
}
	#item-delete-selected:hover,
	#item-delete-selected:focus {
		box-shadow: inset 0 0 100px rgba(0,0,0,.2);
	}
	/* Profile pics in Messages */
	.event-wrapper .event-owner img,
	.mail-conv-wrapper .media .contact-photo-wrapper img,
	.mail-list-outside-wrapper .contact-photo-wrapper img {
		border-radius: 100%;
	}
.modal-backdrop {
	background-color: #fff;
}
/* TAGS, CATEGORIES, MENTIONS BUTTONS
   ==================================
   Restyled to be less obnoxious and tiny
   now sized and spaced like they are on Mastodon
*/
a.tag.label,
.wall-item-container .wall-item-bottom .wall-item-tags span.label {
	border-radius: 4px !important;
  	display: inline-flex !important;
  	font-size: 12px !important;
  	font-weight: 500 !important;
  	padding: 6px 12px !important;
  	-webkit-text-decoration: none !important;
  	text-decoration: none !important;
  	margin: 2px !important;	
  	background-image: none !important;
  	background-color: transparent !important;
  	box-shadow: none !important;
  	color: #0066FF !important;
  	border: 1px solid #0066FF;	
}
	.wall-item-bottom .label {
		color: inherit;
	}
	.wall-item-bottom .label a {
		color: inherit;
	}
		/* hide lightning bolt and person icons
		   pretty sure people know what "#" and "@" mean now
		*/
		a.tag.label .fa-bolt::before,
		.wall-item-bottom .label .fa-bolt::before {
			content: '';
		}
		.wall-item-bottom .label .fa-user::before{
			content: '';
		}
	/* undo hover for entire container*/
	.wall-item-container:hover .wall-item-bottom .wall-item-tags span.label {
		filter: grayscale(0.5);
		opacity: 0.8;
		-webkit-transition: 0s;
		-moz-transition: 0s;
		-ms-transition: 0s;
		transition: 0s;
	}
	/* replace with hover for individual tag */
	.wall-item-container .wall-item-bottom .wall-item-tags span.label:hover,
	.wall-item-container .wall-item-bottom .wall-item-tags span.label:focus,
	.wall-item-container .wall-item-bottom .wall-item-tags span.label:focus-within {
		filter: grayscale(0) !important;
		opacity: 1 !important;
		/* probably don't need vendor prefixed anymore but whatever...*/
		-webkit-transition: all 0.25s ease-in-out !important;
		-moz-transtion: all 0.25s ease-in-out !important;
		-ms-transition: all 0.25s ease-in-out !important;
		transition: all 0.25s ease-in-out !important;
	}
	/* Hashtag Buttons */
	a.tag.label.btn-info,
	.wall-item-bottom .wall-item-tags .tag.label.btn-info {
		/* inherits everything from above */
	}
		a.tag.label.btn-info:hover, a.tag.label.btn-info:focus,
		.wall-item-bottom .wall-item-tags .tag.label.btn-info:hover,
		.wall-item-bottom .wall-item-tags .tag.label.btn-info:focus {
			background-color: #0066FF !important;
			color: white !important;
		}
	/* Category Buttons */
	.wall-item-bottom .wall-item-tags .category.label.btn-success {
		border-color: green !important;
		color: green !important;
		font-size: 0px !important; /* to get rid of parentheses */
	}
		/* replace (x) remove with icon button */
		.wall-item-bottom .wall-item-tags .category.label.btn-success a:first-of-type {
			font-size: 12px;
		}
		.wall-item-bottom .wall-item-tags .category.label.btn-success a:last-of-type::after {
			content: '\f00d';
			font-family: ForkAwesome;
			font-size: 12px;
			margin-left: 4px;
		}
		.wall-item-bottom .wall-item-tags .category.label.btn-success:hover,
		.wall-item-bottom .wall-item-tags .category.label.btn-success:focus {
			background-color: green !important;
			color: white !important;
		}
		/* when a category is removed need to visually indicate it */
		.wall-item-bottom .wall-item-tags .category.label:not(.btn-success){
			border-color: #ccc !important;
			color: #ccc !important;
			font-size: 0px !important;
		}
			.wall-item-bottom .wall-item-tags .category.label:not(.btn-success) a:first-of-type{
				font-size: 12px;
				text-decoration: line-through;
			}
			.wall-item-bottom .wall-item-tags .category.label:not(.btn-success) a:last-of-type::after {
				content: '';
			}
			.wall-item-bottom .wall-item-tags .category.label:not(.btn-success):hover,
			.wall-item-bottom .wall-item-tags .category.label:not(.btn-success):focus {
				background-color: red !important;
				color: white !important;
			}
	/* @ Mention Buttons */
	.wall-item-bottom .wall-item-tags .mention.label.btn-warning {
		border-color: darkgoldenrod !important;
		color: darkgoldenrod !important;
	}
		.wall-item-bottom .wall-item-tags .mention.label.btn-warning:hover,
		.wall-item-bottom .wall-item-tags .mention.label.btn-warning:focus {
			background-color: goldenrod !important;
			border-color: goldenrod !important;
			color: white !important;
		}
/*	Greater than Full-HD Width
	===========================
*/
@media screen and (min-width: 1921px){
	.coverphoto {
		max-width: 1920px;
		left: 50% !important;
		margin-left: -960px;
		border-bottom-right-radius: 10px;
		border-bottom-left-radius:  10px;
	}
}
/*	Small Laptop Screens
	Some tablets in Landscape Orientation
	=====================================
*/		
@media screen and (max-width: 1280px) {
	#search-box { 
		width: 18% !important;
	}
	#search-save {
		width: 140px !important;
	}
}
/*	Large Tablets in Portrait Orientation
	=====================================
*/
@media screen and (max-width: 990px){
	/* Friendica icon upper left */
	#banner {
		display: block !important;
		padding: 0 !important;
		margin: 8px 10px;
	}
		#friendica-logo-mask {
			display: block !important;
		}
	/* hide search box - no room */
    #search-box {
        display: none;
    }
    	/* show mobile search toggle */
    	#topbar-first .navbar-toggle[data-target="#search-mobile"]{
    		display: block !important;
    		position: fixed !important;
    		left: 100px;
    		top:    6px;
    	}
    	/* force display of mobile search box */
    	#search-mobile {
    		top: 115px !important;
    		/* frio border-color */
    	}
    		#search-mobile .col-xs-12 {
    			background-color: var(--nav-bg);
    		}
    			#search-mobile.collapse.in,
    			#search-mobile.collapse.in * {
    				display: block !important;
    			}
		#topbar-first .navbar-toggle[data-target="aside"] {
			position: fixed;
			top: 6px;
			left: 50px;
		}
		/* change aside toggle icon */
		.navbar-toggle .fa-ellipsis-v::before,
		#topbar-first .navbar-toggle[data-target="aside"] .fa-angle-double-right::before {
			content: "\f152";
		}
		body.aside-out .navbar-toggle .fa-ellipsis-v::before,
		body.aside-out #topbar-first .navbar-toggle[data-target="aside"] .fa-angle-double-right::before {
			content: "\f191";
		}
	#topbar-first .nav > .account {
		right: 24px;
	}
    #jotOpen::before {
        content: '';
        margin: 0;
    }
    #mention-link span:last-of-type {
        margin-right: 42px;
    }
    .offcanvas-right-overlay,
    aside::before {
    	background-color: rgba(255, 255, 255, 0.4);
    }
    /* Cover Photo Mobile */
	.row:has(.coverphoto) aside {
		margin-top: 0px;
	}   
    aside:has(.coverphoto){
    	left: -300px !important;
    	right: auto !important;
    	display: block !important;
    	padding-top: 120px;
    	background-color: transparent !important;
    	transition-duration: .5s;
    	z-index: auto;
    }
    aside.canvas-sliding:has(.coverphoto) {
    	-webkit-transition: none;
    	transition: none;
    }
    aside.canvas-slid:has(.coverphoto) {
    	left: 0px !important;
    	right: auto !important;
    	z-index: 20;
    }
    	.coverphoto.canvas-slid{
    		left: 0px !important;
    		right: 0px !important;
    		bottom: 0px;
    		background-color: var(--background-color);
    		overflow: visible;
    	}
    		.coverphoto.canvas-slid::after {
    			content: '';
    			position: absolute;
    			top: 500px;
    			left: 0px;
    			width: 100%;
    			height: 100%;
    			display: block;
    			background-color: var(--background-color);
    		}
}
/*	Most Phones in Portrait Orientation
	Large Screen Phones in Landscape Orientation
	Some Small tablets in Portrait Orientation
	======================================
*/
@media screen and (max-width: 768px), (max-height: 480px) and (max-width: 960px) and (orientation: landscape) {
	#topbar-first .navbar-toggle[data-target="#search-mobile"]{
		left: 10%;
	}
	.topbar ul.nav {
		position: relative !important;
		left: 10% !important;
		margin-left: 0!important;
	}
	#search-save {
		width: 100px !important;
	}
		#search-save .fa-plus::after {
			content: var(--follow-button-text);
		}
		#search-save .fa-floppy-o::after {
			content: var(--save-button-text);
		}
	a.wall-item-name-link, span.fakelink {
		font-weight: bold;
	}
    .wall-item-container iframe {
    	aspect-ratio: 5/4;
    }
	/* new mobile layout */
	body {
		padding-top: 65px !important;
		padding-bottom: 55px !important;
	}
	
	/* Friendica icon upper left */
	#banner {
		display: block !important;
		padding: 0 !important;
		margin: 8px 10px !important;
	}
		#friendica-logo-mask {
			display: block !important;
		}
	#topbar-first {
		top: auto;
		bottom: 0;
		box-shadow: 2px 0px 5px rgba(0,0,0,.5);
	}
		#topbar-first .topbar-nav .arrow {
			display: none;
		}
		/* re-reveal the user profile toggle */
		#topbar-first .nav > .account {
			position: fixed;
			display: block !important;
			top: 0;
			right: 8px;
		}
			#topbar-first .nav > .account img {
				margin: 0;
			}
			#topbar-first .nav > .account span.caret {
				display: none;
			}
		/* overlay mobile nav toggle invisibly */
		#topbar-first .offcanvas-right-toggle {
			position: fixed;
			top: -3px;
			right: 7px;
			color: transparent;
			z-index: 10000;
		}
		/* move sidebar toggle to bottom bar */
		#topbar-first .navbar-toggle[data-target="aside"]{
			position: fixed;
			top: auto;
			left: auto;
			bottom: 5px;
		}
			/* change icon */
			.navbar-toggle .fa-ellipsis-v::before,
			#topbar-first .navbar-toggle[data-target="aside"] .fa-angle-double-right::before {
				content: "\f152";
			}
			body.aside-out .navbar-toggle .fa-ellipsis-v::before,
			body.aside-out #topbar-first .navbar-toggle[data-target="aside"] .fa-angle-double-right::before {
				content: "\f191";
			}
		/* move search button right */
		#topbar-first .navbar-toggle[data-target="#search-mobile"] {
			position: relative !important;
			display: block !important; /* show in landscape on phones */
			top: 0;
			left: auto;
			right: auto;
			margin: 0;
		}
			#topbar-first .navbar-toggle[data-target="#search-mobile"]:not(.collapsed){
				color: var(--link-color);
				border-bottom: 3px solid var(--link-color);
				background-color: transparent !important;
				border-radius: 0 !important;
				margin-top: 0px;
			}
				#topbar-first .navbar-toggle[data-target="#search-mobile"]:not(.collapsed) .fa-search::before {
					content: '\f00e';
				}
		/* fix spacing of icons */
		.topbar ul.nav {
			position: absolute !important;
			left: 50px !important;
			right: 50px !important;
			display: flex;
			justify-content: space-between;
		}
		#topbar-first .topbar-nav .nav-segment {
			margin: 0px;
		}
		#search-mobile {
			top: 60px !important;
		}
			/* always show on phones in landscape */
			#search-mobile.collapse.in,
			#search-mobile.collapse.in * {
				display: block !important;
			}
		/* app-style notification menu */
		#nav-notifications-menu {
			position: fixed;
			top: 60px;
			bottom: 51px;
			left: 0;
			right: 0;
			width: 100% !important;
			min-width: unset;
			max-width: unset;
			min-height: unset;
			max-height: unset !important;
			margin: 0 !important;
			box-shadow: none;
		}
			#nav-notifications-menu::before {
				content: '\f00d';
				font-family: ForkAwesome;
				position: absolute;
				top: 8px;
				right: 12px;
				height: 40px;
				width:  40px;
				background-color: var(--link-color);
				color: white;
				font-size: 24px;
				border-radius: 100%;
				line-height: 40px;
				text-align: center;
				display: block;
			}
	#offcanvasUsermenu {
		background-color: var(--nav-bg) !important;
	}
	#offcanvasUsermenu ul.list-group {
		-webkit-box-shadow: none !important;
		-moz-box-shadow: none !important;
		box-shadow: none !important;
	}
		#offcanvasUsermenu ul.list-group li:first-of-type img {
			max-width: unset  !important;
			max-height: unset  !important;
			height: 40px  !important;
			width:  40px  !important;
			border-radius: 100% !important;
		}
			#offcanvasUsermenu li.divider {
				display: none !important;
			}
			#offcanvasUsermenu li.list-group-item,
	    #offcanvasUsermenu li.list-group-item a {
				border: transparent !important;
				background-color: transparent !important;
				color: var(--nav-icon-color) !important;
				width: 90% !important;
				margin: 0 auto;
			}
	#offcanvasUsermenu li.list-group-item:hover {
		background-color: #333 !important;
		border-radius: 8px !important;
	}
	#offcanvasUsermenu li.list-group-item:hover a {
		color: #fff !important;
	}
	#offcanvasUsermenu li.list-group-item:first-of-type:hover {
		background-color: revert !important;
	}
		/* force mobile search in landscape on phones */
		#search-box {
			display: none !important;
		}
	/* position delete button */
	#item-delete-selected {
		top: 60px;
		right: 10px;
	}	
	/* move top bars around */
	#topbar-second {
		top: 0px;
		padding: 0;
	}
		#topbar-second div.container{
			position: absolute;
			left: 55px;
			right: 55px;
		}
		#topbar-second #tabmenu {
			width: 100%;
		}
			/* override and show mobile tabs  in landscape */
			#topbar-second #tabmenu ul.tabbar.hidden-xs {
				display: none !important;
			}
			#topbar-second #tabmenu ul.tabbar.visible-xs {
				display: block !important;
			}
		#topbar-second ul.tabbar {
			text-align: center;
			max-width: 100%;
		}
			#topbar-second ul.tabbar > li:first-of-type {
				max-width: 75%;
				overflow: hidden;
			}
				#topbar-second ul.tabbar li:first-of-type ul.tabs {
					max-width: 100%;
				}
					#topbar-second ul.tabbar li:first-of-type ul.tabs li {
						width: 100%;
					}
						#topbar-second ul.tabbar li:first-of-type ul.tabs li a {
							overflow: hidden;
							text-overflow: ellipsis;
							white-space: nowrap;
						}
			#dropdownMenuTools-xs {
				height: 60px;
			}
				ul.tabs-extended .dropdown.open .fa-chevron-down::before{
					content: '\f077';
				}
		#jotOpen, #search-save, #mention-link {
			position: fixed;
			bottom: 65px;
			right: 10px;
			border-radius: 100% !important;
			height: 50px;
			width: 50px !important;
			line-height: 50px;
		}
			#mention-link span:last-of-type {
				display: none;
			}
			#mention-link span:first-of-type {
				float: none;
				position: relative;
				left: -5px;
				top: 2px;
			}
			#search-save .fa-plus::after,
			#search-save .fa-floppy-o::after {
				display: none;
			}
			#search-save .fa-plus::before,
			#search-save .fa-floppy-o::before {
				content: '\f0c7' !important;
			}
			.fa-edit::before,
			.fa-pencil-square-o::before {
				content: "\f040";
			}
		/* drop-down mobile style*/
		#topbar-second .dropdown-menu {
			position: fixed;
			top: 58px;
			left: 0px;
			right: 0px;
			bottom: 50px;
			width: 100% !important;
			overflow: auto !important;
			overflow-x: hidden !important;
		}	
			#topbar-second .dropdown-menu li {
				height: auto !important;
			}
				#topbar-second .dropdown-menu li a,
				.tabs .dropdown-menu li a {
					font-size: 18px !important;
				}
				.topbar .dropdown-header {
					font-size: 18px !important;
				}
				.topbar .dropdown-header .dropdown-header-link .btn-link {
					font-size: 18px !important;
					margin-right: 40px;
				}
		aside.offcanvas-xs {
			padding-top: 60px;
			padding-bottom: 60px;
		}
		.coverphoto {
			top: 55px;
		}
	#message-new {
		height: 50px;
		width:  50px;
		background-color: var(--link-color);
		line-height: 50px;
		font-size: 24px;
		text-align: center;
		border-radius: 100%;
	}
		#message-new a {
			color: white !important;
			opacity: 1;
		}
			#message-new:hover,
			#message-new:focus {
				box-shadow: 0 0 100px rgba(0,0,0,.2);
			}		
}
/*	Narrow Screen Phones in Portrait Orientation
	============================================
*/
@media screen and (max-width: 400px) and (orientation: portrait) {
	/* remove action button labels if screen is too narrow */
	.wall-item-actions-row button::after {
		content: '.';
		color: transparent;
	}
	/* NOTE: cannot simply empty or display none or button alignment gets messed up! */
}
/* 	Narrow Screen Phones in Landscape Orientation
	==============================================
*/
@media screen and (max-height: 400px) and (orientation: landscape) {	
		#topbar-first {
			transition-duration: .5s;
			transition-property: bottom;
			bottom: -55px;
		}
			header #banner {
				background-color: var(--nav-bg);
				border-radius: 8px;
				z-index: 1030;
			}
			#topbar-first .navbar-toggle[data-target="aside"] {
				position: fixed !important;
				left: 10px;
				bottom: 10px;
				transition-duration: .5s;
				background-color: var(--link-color);
				color: white;
				height: 50px;
				width:  50px;
				border-radius: 100%;
				line-height: 32px;
			}
			#topbar-first .navbar-toggle[data-target="#search-mobile"],
		 	#topbar-first .navbar-toggle[data-target="#search-mobile"]:not(.collapsed) {
				position: fixed !important;
				top: auto;
				bottom: 10px;
				right: 10px;
				transition-duration: .5s;
				background-color: var(--link-color) !important;
				color: white;
				height: 50px;
				width:  50px;
				border-radius: 100% !important;
				line-height: 32px;			
			}
			#topbar-first .navbar-toggle[data-target="#search-mobile"]:hover,
			#topbar-first .navbar-toggle[data-target="#search-mobile"]:focus {
				box-shadow: inset 0 0 100px rgba(0,0,0,.2);
			}
			.fa-fw {
				width: auto;
			}
			#topbar-first .offcanvas-right-toggle {
				top: -2px;
				right: 10px;
				padding: 0 !important;
			}
			#topbar-first .nav > .account {
				top: -5px;
				right: 5px;
			}
			#main-menu img {
				border: 5px solid var(--link-color);
				border-radius: 100%;
				box-sizing: unset;
			}
		#search-mobile {
        	top: 40% !important;
        	border: 10px solid var(--link-color);
        	border-radius: 8px;
        	left: 50%;
        	width: 80%;
        	margin-left: -40%;
        	box-shadow: 0 0 50px rgba(0,0,0,.75);
    	}
    		#search-mobile .col-xs-12 {
    			background-color: var(--nav-bg);
    		}
		#topbar-second {
			transition-duration: .5s;
			transition-property: top;
			top: -60px;
		}
		#topbar-first .nav > li > a:hover, 
		#topbar-first .nav > li > a:focus, 
		#topbar-first .nav > li > button:not(#main-menu):hover, 
		#topbar-first .nav > li > button:not(#main-menu):focus, 
		#topbar-first button.navbar-toggle:not(.offcanvas-right-toggle):hover, 
		#topbar-first button.navbar-toggle:not(.offcanvas-right-toggle):focus, 
		nav.navbar .nav > li > a:hover, 
		nav.navbar .nav > li > a:focus, 
		nav.navbar .nav > li > button:hover, 
		nav.navbar .nav > li > button:focus {
		  background-color: var(--link-color) !important;
		  border-radius: 100% !important;
		  box-shadow: inset 0 0 100px rgba(0,0,0,.2);
		}
		#topbar-first button.navbar-toggle.offcanvas-right-toggle:hover, 
		#topbar-first button.navbar-toggle.offcanvas-right-toggle:focus {
			border-radius: 100% !important;
		}
		#topbar-first .topbar-actions {
			z-index: 1070;
		}
		/* if notifications is left open when phone is rotated */
		#nav-notifications-menu {
			top: 0;
			bottom: 0;
			z-index: 10000;
		}
		#offcanvasUsermenu {
			top: 0px;
		}
			#offcanvasUsermenu li:first-of-type img {
				display: none;
			}
			#offcanvasUsermenu li:first-of-type {
				font-weight: 700;
			} 
		.offcanvas-right-overlay {
 			top: 0px;
 		}
		.row:has(.coverphoto) #content {
			margin-top: 200px;
		}
 		.coverphoto {
			top: 0px;
		}	
	}
	
/* =====================================================================


			USER PREFERS DARK MODE
			
			
   =====================================================================
*/
@media (prefers-color-scheme: dark){
	:root{
		--nav-bg: #252728;
		--link-color: #0066ff;
		--nav-icon-color: #B0B3B8;
		--background-color: #1C1C1D;
		--contentbg-transp: 1;
		--font-color: #cccccc;
		--font-color-darker: #acacac;
		--background-image: ;
		--menu-background-hover-color: color-mix(in oklab, var(--link-color) 50%, black);
		--border-color: #333333;
		--count-color:  #ffffff;
		--count-bg: var(--link-color);
	}
body {
       background-color: var(--background-color) !important;
       font-size: 15px !important;
       padding-top: 130px !important;
       font-family: var(--global-font-family);
       color: var(--font-color);
}
/* headers pretty much everywhere */
section > .generic-page-wrapper, 
.videos-content-wrapper, 
.suggest-content-wrapper, 
.help-content-wrapper, 
.match-content-wrapper, 
.dirfind-content-wrapper, 
.delegation-content-wrapper, 
.notes-content-wrapper, 
.message-content-wrapper, 
.apps-content-wrapper, #adminpage, 
.delegate-content-wrapper, 
.uexport-content-wrapper, 
.dfrn_request-content-wrapper, 
.friendica-content-wrapper, 
.credits-content-wrapper, 
.nocircle-content-wrapper, 
.profperm-content-wrapper, 
.invite-content-wrapper, 
.tos-content-wrapper, 
.fsuggest-content-wrapper {
	color: var(--nav-icon-color);
}
#topbar-first .nav > li > a, 
#topbar-first .nav > li > button, 
nav.navbar .nav > li > a, 
nav.navbar .nav > li > button{
       color: var(--nav-icon-color) !important;
       }
#topbar-first, nav.navbar {
       background-color: var(--nav-bg) !important;
       color: var(--nav-icon-color) !important;
       height: 55px;
}
       #topbar-first .topbar-nav .nav-segment {
              margin-right: 10px;
       }
       #topbar-first .nav > li > a:hover:not(.selected) {
              background-color: rgba(255,255,255,.1) !important;
              border-radius: 8px !important;
       }
       .fa-lg {
              font-size: 24px !important;
       }
#topbar-first .nav > li > a:hover, 
#topbar-first .nav > li > a:focus, 
#topbar-first .nav > li > button:not(#main-menu):hover, 
#topbar-first .nav > li > button:not(#main-menu):focus, 
#topbar-first button.navbar-toggle:hover,
#topbar-first button.navbar-toggle:focus, 
nav.navbar .nav > li > a:hover, 
nav.navbar .nav > li > a:focus, 
nav.navbar .nav > li > button:hover, 
nav.navbar .nav > li > button:focus {
	background-color: rgba(255,255,255,.1) !important;
	border-radius: 8px !important;
       
}    
	#topbar-first button.navbar-toggle,
	#nav-notifications-menu-btn {
		width: 50px;
		height: 50px;
	}	
	#topbar-first .nav > li > a.selected,
	#nav-notification.dropdown.open {
		border-bottom: 3px solid var(--link-color) !important;
		color: var(--link-color) !important;
	}
#topbar-first .nav > li > a.selected:hover,
#topbar-first .nav > li > a.selected:focus,
#topbar-first .nav > li > #main-menu:hover,
#topbar-first .nav > li > #main-menu:focus,
#nav-notification.dropdown.open #nav-notifications-menu-btn:hover,
#nav-notification.dropdown.open #nav-notifications-menu-btn:focus {
       background-color: transparent !important;
       border-radius: 0 !important;
}
	#nav-notification.dropdown.open #nav-notifications-menu-btn .fa-bell::before {
		content: '\f0f3';
		color: var(--link-color);		
	}
ul.tabs li {
       font-size: 15px !important;
       margin-left: 10px !important;
}
       ul.tabs li a {
              margin-top: 8px;
              color: var(--link-color);
       }
       ul.tabs li:hover:not(.active) {
              border-bottom-width: 0px !important;
       }
			ul.tabs li:not(.active):hover > a {
				background-color: rgba(128,128,128,.1) !important;
				background-image: none !important;
				border-radius: 8px !important;
				color: var(--font-color);
			}
    .dropdown-menu {
        padding-bottom: 15px !important;
        background-color: var(--nav-bg) !important;
        border: 1px solid var(--background-color) !important;
    }
		.dropdown-menu li {
			margin: 3px 10px;
			width: 92%  !important;
			border-radius: 8px;
		}
			.dropdown-menu li:hover {
				border-color: transparent  !important;
			}
			.dropdown-menu > li > a:hover,
			.dropdown-menu > li > a:focus {
				background-image: none !important;
				border-radius: 8px ;
			}
            .dropdown-menu li a, 
            .dropdown-menu li .btn-link {
            	color: var(--font-color);
            }
			.dropdown-menu > li.active,
			.dropdown-menu > li.active:hover,
			.dropdown-menu > li.active:focus {
				border-radius: 0;
				background-color: transparent;
				border-bottom: 4px solid var(--link-color) !important;
			}
			.dropdown-menu > li.active > a,
			.dropdown-menu > li.active:hover > a,
			.dropdown-menu > li.active:focus > a {
				color: var(--link-color);
				background-color: transparent;
				background-image: none;
			}
    .form-control {
    	background: var(--nav-bg);
    	color: #fff;
    }
    	.form-control[readonly],
    	.form-control[disabled],
    	.fieldset[disabled] .form-control {
    		background-color: #666;
    		color: #fff;
    		opacity: .5;
    	}
    .table-striped > tbody > tr:nth-of-type(2n+1) {
    	background-color: var(--nav-bg);
    }
header #banner {
       left: 0 !important;
       right: auto !important;
       margin-top: 10px;
}
	.navbar-brand #logo-img {
		margin-top: 20px;
	}
	.navbar-brand #logo-img,
	header #banner #logo-img {
		/* SVG Mask is broken in WebKit use Icon Font instead */
		-webkit-mask-image: unset !important;
		mask: none !important;
		mask-size: unset !important;
		mask-composite: unset !important;
		mask-mode: unset !important;
		background-color: transparent !important;
		height: 40px;
		width:  40px;
	}
		.navbar-brand #logo-img::before,
		header #banner #logo-img::before {
			content: '\f2e6';
			font-family: ForkAwesome;
			font-size: 45px;
			position: relative;
			top: -12px;
			left: 0px;
			text-shadow: none;
			color: var(--link-color);
		}

       #navbar-brand-text {
       	line-height: 40px;
       	font-weight: 700;
       	color: var(--link-color) !important;
       }
       #nav-login::before{
       	content: var(--sign-in-text);
       }
.topbar ul.nav {
       left: 50% !important;
       margin-left: -25% !important;
       position: relative;
}
#topbar-first .nav > .account img {
       border-radius: 100% !important;
       box-shadow: 0 0 1px rgba(255,255,255,.1) !important;
       height: 40px !important;
       width: 40px !important;
}
#search-box {
       position: fixed !important;
       left: 100px;
}
#topbar-first #search-box .form-search {
       height: 40px !important;
       font-size: 15px;
       background-position: unset;
       box-shadow: none !important;
}
#search-box form > div {
       background-color: var(--background-color);
       border-radius: 50px;
}
#search-box form > div::before {
       content: '\f002';
       font-family: ForkAwesome;
       position: absolute;
       left: 10px;
       top: 8px;
}
#search-box .form-control.form-search {
       border-radius: 50px !important;
       background: transparent !important;
       width: 100% !important;
}
#search-box .form-control::placeholder {
       color: var(--nav-icon-color) !important;
}
#topbar-first #search-box .btn {
       font-size: 0px !important;
         height: 32px;
       width: 32px;
       top: 2px !important;
       background-color: black !important;
       margin-top: 2px !important;
}
#topbar-first #search-box .btn::before {
       content: '\f061';
       font-family: ForkAwesome;
       font-size: 15px;
       color: var(--nav-icon-color);
}
#nav-user-menu, #nav-notifications-menu {
       background-color: var(--nav-bg) !important;
       border: 1px solid var(--background-color) !important;
}
#nav-user-menu {
    min-width: 250px !important;
    overflow-x: hidden;
}
.nav-pills .dropdown-menu li a, 
.nav-pills .dropdown-menu li .btn-link, 
.nav-tabs .dropdown-menu li a, 
.nav-tabs .dropdown-menu li .btn-link, 
.account .dropdown-menu li a, 
.account .dropdown-menu li .btn-link, 
.contact-photo-wrapper .dropdown-menu li a, 
.contact-photo-wrapper .dropdown-menu li .btn-link {
       color: var(--nav-icon-color) !important;
       border-color: var(--nav-bg) !important;
}
       .nav-pills .dropdown-menu li > a:hover, 
       .nav-tabs .dropdown-menu li > a:hover, 
       .account .dropdown-menu li > a:hover, 
       .contact-photo-wrapper .dropdown-menu li > a:hover, 
       .nav-pills .dropdown-menu li.selected a, 
       .nav-tabs .dropdown-menu li.selected a, 
       .account .dropdown-menu li.selected a, 
       .contact-photo-wrapper .dropdown-menu li.selected a {
              color: #333 !important;
              background: #f2f2f2 !important;
              border-radius: 8px;
       }  
.nav-pills .dropdown-menu li.divider, 
.nav-tabs .dropdown-menu li.divider, 
.account .dropdown-menu li.divider, 
.contact-photo-wrapper .dropdown-menu li.divider {
       background-color: var(--nav-bg) !important;
}  
#content .nav > li > .btn-link {
	margin: 5px;
}
#content .nav > li > .btn-link:hover,
#content .nav > li > .btn-link:focus {
	background-color: var(--link-color);
	color: white;
}  
#topbar-first #nav-notifications-menu {
       border: 1px solid var(--background-color) !important;
}
#topbar-first #nav-notifications-menu li {
    border-color: transparent !important;
	box-sizing: border-box;
    margin: 10px;
    border-radius: 10px !important;
    width: 94% !important;
}
#topbar-first #nav-notifications-menu a {
	color: var(--font-color);
}
#topbar-first .notification-unseen {
       background-color: rgba(255,255,255,.2) !important
}
#topbar-first #nav-notifications-menu li.notif-entry:hover{
       background-color:rgba(128,128,128,.2) !important;    
       border-color: transparent !important;
}
#topbar-first .nav > .open > a, 
#topbar-first .nav > .open > button {
  background-color: transparent;
}
	.topbar .dropdown-header {
		color: var(--nav-icon-color);
	}
	#topbar-first .topbar-nav .arrow {
		display: none !important;
	}
				.topbar .dropdown-header .dropdown-header-link .btn-link {
					border: 1px solid var(--link-color);
					border-radius: 8px;
					padding: 5px;
					margin-top: -6px;
				}
					.topbar .dropdown-header .dropdown-header-link .btn-link:hover,
					.topbar .dropdown-header .dropdown-header-link .btn-link:focus {
						background-color: rgba(0,0,0,.1);
					}
#topbar-second {
	top: 55px;
    height: 60px !important;
    background-color: var(--nav-bg) !important;
       border-color: #333 !important;
}
       .btn.btn-primary:hover,
       .btn.btn-primary:focus {
              border-radius: 8px !important;
       }
       #dropdownMenuTools {
              height: 40px;
              width: 40px;
              background-color: rgba(255,255,255,.1) !important;
              border-radius: 100% !important;
              margin-top: 5px !important;
              margin-right: 10px !important;
       }
              #dropdownMenuTools:hover,
              #dropdownMenuTools:focus {
              background-color: rgba(0,0,0,.1) !important;
       }
       #jotOpen {
              border-radius: 8px !important;
              background-color: var(--link-color) !important;
              color: #ffffff !important;
              border-color: #000 !important;
              box-shadow: none !important;
       }
       #jotOpen:hover, #jotOpen:focus {
              box-shadow: inset 0 0 100px rgba(0,0,0,.1) !important;
       }
       #jotOpen::before {
              content: var(--compose-text);
              font-size: 15px;
              margin-right: 10px;
              line-height: 32px;
              position: relative;
              display: inline;
              top: -4px;
       }
		body.mod-notes #jotOpen::before {
			content: var(--new-note-text);
		}
		body.mod-notes .sectiontop h3::before {
  			content: '\f023';
  			font-family: ForkAwesome;
  			margin-right: 5px;
		}
       #jotOpen .fa-pencil-square-o {
              font-size: 32px !important;
              position: relative;
              top: 4px;
       }
       #topbar-second #nav-short-info {
              margin-top: 10px;
       }
	/* General Content Wrappers */
	section > .generic-page-wrapper, 
	.videos-content-wrapper, 
	.suggest-content-wrapper, 
	.help-content-wrapper, 
	.match-content-wrapper, 
	.dirfind-content-wrapper, 
	.delegation-content-wrapper, 
	.notes-content-wrapper, 
	.message-content-wrapper, 
	.apps-content-wrapper, #adminpage, 
	.delegate-content-wrapper, 
	.uexport-content-wrapper, 
	.dfrn_request-content-wrapper, 
	.friendica-content-wrapper, 
	.credits-content-wrapper, 
	.nocircle-content-wrapper, 
	.profperm-content-wrapper, 
	.invite-content-wrapper, 
	.tos-content-wrapper, 
	.fsuggest-content-wrapper,
	.shared-wrapper {
		background-color: var(--nav-bg) !important;
		background-image: none;
		border-color: #333;
	}
    /* Make Submit Buttons Pretty */
    #adminpage a.btn,
    .settings-submit,
    button[type="submit"],
    input[type="submit"],
    #photos-upload-submit {
        background-color: var(--link-color) !important;
        color: white !important;
        border-radius: 8px !important;
        border: none !important;
        box-shadow: none !important;
    }
    .settings-submit.form-button-search,
    button[type="submit"].form-button-search {
        border-radius:50px !important;
        margin-top:-.5px !important;
    }
    #adminpage a.btn:hover,
    #adminpage a.btn:focus,
    .settings-submit:hover,
    .settings-submit:focus,
    button[type="submit"]:hover,
    button[type="submit"]:focus,
    input[type="submit"]:hover,
    input[type="submit"]:focus,
    #photos-upload-submit:hover,
    #photos-upload-submit:focus{
        box-shadow: inset 0 0 100px rgba(0,0,0,.1) !important;
    }
    #delegate-parent .submit button {
    	float: right;
    	padding: 8px;
    	appearance: none;
    	border: none;
    }
    	#delegate-parent .submit::after {
    		content: '';
    		display: block;
    		clear: both;
    	}
    /* make position of submit buttons in settings consistent */
    .panel-footer {
    	background-color: var(--nav-bg) !important;
    }
    .panel-footer button[type="submit"],
    .panel-footer input[type="submit"] {
        float: right !important;
        margin-left: 5px;
    }
        .panel-footer::after{
            content: '';
            display: block;
            clear: both;
        }
        #addonslist {
            margin-top: 20px;
        }
	#settings-server button[type="submit"] {
	  float: right !important;
	  margin-left: 5px !important;
	  margin-bottom: 20px !important;
	}
    #adminpage button[type="submit"],
    input[type="submit"],
	input[name="page_logs"],
	input[name="republish_directory"],
	input[name="page_tos"]{
	    float: right;
	    padding: 8px;
	    border: none;		
	}
	.submit::after{
		content: '';
		display: block;
		clear: both;
	}
	#photo-edit-end {
		clear: both;
	}
/* Other people profiles */
#mention-link {
	border-radius: 8px !important;
    background-color: var(--link-color) !important;
    color: #ffffff !important;
    border-color: #000 !important;
    box-shadow: none !important;
    padding: 0 16px !important;
}
       #mention-link:hover,
       #mention-link:focus {
              box-shadow: inset 0 0 100px rgba(0,0,0,.1) !important; 
       }
       #mention-link span:first-of-type {
              float: right;
              font-size: 32px;
              line-height: 45px;
              top: 4px;
       }
       #mention-link span:first-of-type .fa-2x {
              font-size: inherit !important;
       }
       #mention-link span:last-of-type {
              font-size: 15px;
              margin-right: 10px;
              line-height: 32px;
              top: 6px;
              position:relative;
       }
#contact-edit-status-wrapper {
    margin: 15px 0px !important;
    border-radius: 10px;
}
#profile-extra-links .btn {
	border-radius: 8px !important;
	margin-bottom: 10px !important;
}
	/* SEARCH RESULTS */
	#search-save {
		background-color: var(--link-color) !important;
		color: white !important;
		border-radius: 8px !important;
		padding: 6px 8px !important;
	}
		#search-save:hover,
		#search-save:focus {
			box-shadow: inset 0 0 100px rgba(0,0,0,.1) !important;
		}
	#search-save .fa-plus::before{
		content: '\f292' !important;
	}
	#search-save .fa-floppy-o::before {
		content: '\f00e' !important;
	}
	#search-save .fa-floppy-o::before,
	#search-save .fa-plus::before {
		display: inline-block;
		margin-top: 2px;
	}
	#search-save .fa-floppy-o::after,
	#search-save .fa-plus::after{
		content: var(--save-search-text);
		font-family: 'Open Sans', Arial, sans-serif;
		font-size: 15px;
		float: left;
		margin-right: 10px;
		line-height: 32px;
		position: relative;
		display: block;
		top: -2px;
		font-weight: 700;
	}
	#search-save .fa-floppy-o::after {
		  content: var(--save-search-text);
	}
	#search-save .fa-plus::before {
		display: inline-block;
		margin-top: 2px;
	}
	#search-save .fa-plus::after {
		  content: var(--follow-tag-text);
	}
	/* popovers */
	.popover.hovercard {
		border: 1px solid var(--nav-bg) !important;
		-webkit-box-shadow: 0 10px 100px rgba(255, 255, 255, 0.25);
  		-moz-box-shadow: 0 10px 100px rgba(255, 255, 255, 0.25);
  		box-shadow: 0 10px 100px rgba(255, 255, 255, 0.25);
	}
	.hover-card-footer {
		border-color: #333;
		background-color: var(--nav-bg);
	}
		.hovercard.top > .arrow::after {
			border-top-color: var(--nav-bg);
		}
		.hovercard.right > .arrow::after {
			border-right-color: var(--nav-bg);
		}
		.hovercard.bottom > .arrow::after {
			border-bottom-color: var(--nav-bg);
		}
		.hovercard.left > .arrow::after {
			border-left-color: var(--nav-bg);
		}
/* sidebar widgets */
aside .widget,
.nav-container .widget {
       background-color: var(--background-color) !important;
       -webkit-box-shadow: none !important;
       -moz-box-shadow: none !important;
       box-shadow: none !important;
}
	aside .badge {
		background-color: var(--link-color);
	}
/* POSTS */
.tread-wrapper {
	background-color: rgb(37, 39, 40) !important;
	box-shadow: 0 0px 1px rgba(0,0,0,.5) !important;
	border-radius: 10px !important;
}
.wall-item-container {
	border-top: none;
}
.wall-item-container .media {
       background-color: rgb(37, 39, 40) !important;
       border-radius: 10px !important;
}
	.wall-item-container iframe {
		width: 100% !important;
		height: auto !important;
		display: block;
		margin: 0 auto;
		aspect-ratio: 16/9;
		border: 1px solid #333;
		border-radius: 8px;
		background-color: #000;
	}
.well {
       -webkit-box-shadow: none !important;
       box-shadow: none !important;
}
       .contact-photo,
       .contact-photo-xs {
              border-radius: 100% !important;
              border: 1px solid var(--nav-bg) !important;
       }
.desktop-view .wall-item-container .wall-item-content a, 
.desktop-view .wall-item-name, 
.desktop-view .wall-item-container .fakelink, 
.desktop-view .toplevel_item .fakelink, 
.desktop-view .toplevel_item .wall-item-container .wall-item-responses a,
.text-muted,
p.wall-item-announce, 
.media .time, 
.media .shared-time, 
.media .delivery, 
.media .location, 
.media .location a,
.event-card .event-card-content,
.contact-entry-desc {
	color: var(--font-color);
}
.vevent {
	box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.1) inset, 0 1px 1px rgba(255, 255, 255, 0.05);
}
.event-card .event-card-title {
	color: var(--font-color-lighter);
}
.event-card .event-card-content {
  box-shadow: 1.5px 0 0 0 rgba(255, 255, 255, 0.1) inset;
}
.event-card .description {
  box-shadow: 0 1.5px 0 0 rgba(255, 255, 255, 0.1) inset;
}
.contact-wrapper .contact-action-link, 
.contact-wrapper .contact-action-link:hover, 
.textcomplete-item .contact-wrapper .contact-action-link {
	color: var(--nav-icon-color);
}
.media-list > li {
	border-color: var(--nav-bg);
}
.media-list > li:hover, 
.media-list > li.selected, 
.media-list > li.active {
	background-color: var(--background-color);
}
.hovercard {
       background-color: var(--nav-bg) !important;
       border: 1px solid var(--background-color) !important;        
}
       .hover-card-pic img.thumbnail {
              border-radius: 100% !important;
              background-color: var(--background-color) !important;
              border-color: black !important;
       }
       p.wall-item-announce,
       .media .time, .media .shared-time,
       .media .delivery, .media .location,
       .media .location a {
              font-size: 13px !important;
       }
              .type-link, .type-video {
                     padding: 0 !important;
                     margin:  0 !important;
                     background-color: rgb(51, 51, 52) !important;
                     border: 1px solid rgb(101, 104, 108) !important;
              }
              .type-link h4, .type-link blockquote, .type-link sup,
              .type-video h4, .type-video blockquote, .type-video sup {
                     padding-left: 10px !important;
                     padding-right: 10px !important;
              }
        .media hr, 
        aside hr, 
        section hr {
        	border-color: var(--nav-bg);
        }
       /* keep mentions and tags from spilling out */
       #profile-page .label,
       #profile-page .label a,
       .wall-item-bottom .label, 
       .wall-item-bottom .label a {
            display: inline-block !important;
       }
       /* ACTION BUTTON LABELS */
       .wall-item-actions-row button,
       .wall-item-actions-right button {
              position: relative;
              display: block;
              white-space: normal !important;
              margin: 0 auto !important;
              -webkit-box-shadow: none !important;
              box-shadow: none !important;
       }
       .wall-item-actions-row button::after,
       .wall-item-actions-right button::after {
              font-size: 14px;
              font-family: sans-serif;
              display: block;
              margin-top: 2px;
       }
       .wall-item-response {
              position: relative;
              padding-top: 4px;
              display: block;
       }
       .button-comments::after {
              content: var(--comment-button-text);
       }
       .button-announces::after {
              content: var(--share-button-text);
       }
              .share-links .dropdown-toggle::after {
                     content: var(--share-button-text);
              }
       .button-votes::after {
              content: var(--quote-button-text);
       }
       .button-likes::after {
              content: var(--like-button-text);
       }
     [id^="dislike-"]::after{
         content: var(--dislike-button-text);
     }
       .wall-item-actions-right .dropdown-toggle::after,
       .more-links .dropdown-toggle::after {
              content: var(--more-button-text);
       }
       /* engagement counts */
       .wall-item-actions-row > button span,
       .wall-item-response span {
              position: absolute;
              text-align: center;
              display: block;
              background-color: var(--count-bg);
              box-shadow: -1px 1px 1px #000;
              border-radius: 4px;
              color: var(--count-color);
              font-size: 12px;
              font-weight: 700;
              width: fit-content;
              padding: 0px 7px;
              left: 55%;
              top: 0px;
              z-index: 1;
       }
/*        .vote-event:not(:has(.wall-item-response:empty)) { */
		.vote-event:has(button) {
            padding-bottom: 135px;
        }
        .vote-event:has(button) .wall-item-response {
            position: absolute;
            top: 63px;
        }
        .vote-event .wall-item-response:empty{
            display: none;
        }
        .vote-event:has(button) .wall-item-response:nth-of-type(1){
            left: 15px;
        }
        .vote-event .wall-item-response:nth-of-type(1) .button-event::after,
        [id^="attendyes"]::after{
            content: var(--attendyes-button-text);
        }
        .vote-event:has(button) .wall-item-response:nth-of-type(2){
            left: 105px;
        }
        .vote-event .wall-item-response:nth-of-type(2) .button-event::after,
        [id^="attendno"]::after{
            content: var(--attendno-button-text);
            position: relative;
            height: 20px;
            overflow: hidden; /* or skews mobile button layout */
        }
        .vote-event:has(button) .wall-item-response:nth-of-type(3){
            left: 204px;
        }
        .vote-event .wall-item-response:nth-of-type(3) .button-event::after,
        [id^="attendmaybe"]::after{
            content: var(--attendmaybe-button-text);
        }
		/* prevent "Like Like" and "Dislike Dislike" on photos */
		#photo-view-wrapper .wall-item-actions .button-likes {
			font-color: transparent !important;
			font-size: 0px !important;
		}
			#photo-view-wrapper .wall-item-actions .button-likes::after {
				font-size: 18px !important;
				color: var(--nav-icon-color) !important;
			}
			#photo-view-wrapper .wall-item-actions .button-likes .fa-thumbs-up,
			#photo-view-wrapper .wall-item-actions .button-likes .fa-thumbs-down {
				font-size: 24px !important;
				color: var(--nav-icon-color) !important;
			}
				#photo-view-wrapper .wall-item-actions .button-likes:hover::after,
				#photo-view-wrapper .wall-item-actions .button-likes:focus::after,
				#photo-view-wrapper .wall-item-actions .button-likes:hover .fa-thumbs-up,
				#photo-view-wrapper .wall-item-actions .button-likes:focus .fa-thumbs-up,
				#photo-view-wrapper .wall-item-actions .button-likes:hover .fa-thumbs-down,
				#photo-view-wrapper .wall-item-actions .button-likes:focus .fa-thumbs-down {
					color: var(--link-color) !important;
				}
       /* END OF ACTION BUTTON LABELS */        
/* Compose and Reply */
	#jot-modal .modal-header .compose-link {
		border-radius: 100% !important;
		height: 36px;
		width: 36px;
		font-size: 27px !important;
		padding: 0 6px !important;
		background-color: rgba(255,255,255,.2);
	}
		#jot-modal .modal-header .compose-link:hover,
		#jot-modal .modal-header .compose-link:focus {
			background-color: rgba(255,255,255,.1);
		}	
	.close {
		height: 36px;
		width: 36px;
		background-color: var(--link-color) !important;
		opacity: 1 !important;
		color: #fff !important;
		border-radius: 100%;
		margin-top: 5px;
		margin-top: 2px !important;
	}
	.close:hover,
	.close:focus {
		  box-shadow: inset rgba(255,255,255,.2) !important;
	}
.modal-content,
#jot-modal-content,
.wall-item-comment-wrapper {
	background-color: rgb(37,39,40) !important;
    border-radius: 15px !important;
    background-image: none;
}
	.wall-item-comment-wrapper {
		border: none;
	}
		.photo-comment-wrapper .btn-sm,
		#profile-jot-wrapper .btn-sm,
		.wall-item-comment-wrapper .btn-sm {
			background-color: transparent;
			color: var(--nav-icon-color);
			height: 45px;
			width:  45px;
			font-size: 18px;
		}
			.photo-comment-wrapper .btn-sm:hover,
			.photo-comment-wrapper .btn-sm:focus,
			#profile-jot-wrapper .btn-sm:hover,
			#profile-jot-wrapper .btn-sm:focus,
			.wall-item-comment-wrapper .btn-sm:hover,
			.wall-item-comment-wrapper .btn-sm:focus {
				background-color: transparent;
				color: var(--link-color);
			}
#jot-modal-content input,
#jot-modal-content .friendica-tagsinput {
       background-color: var(--background-color) !important;
}
#filebrowser .breadcrumb {
	background-color: var(--background-color);
}
.fbrowser .folders button {
       background-color: rgba(255,255,255,.5) !important;
       color: black !important;
       appearance: none;
       border: none;
       border-radius: 8px;
       width: 100%;
       margin-bottom: 5px;
}
	.fbrowser .folders button:hover,
	.fbrowser .folders button:focus {
		background-color: rgba(255,255,255,.75) !important;
	}
		.fbrowser .folders li:hover,
		.fbrowser .folders li:focus {
       border-color: transparent !important;
       background-color: transparent !important;
}
#jot-modal .modal-header a, 
#jot-modal .modal-header .btn-link, 
#profile-jot-submit-wrapper a, 
#profile-jot-submit-wrapper .btn-link {
  color: var(--nav-icon-color);
}     
#jot-title,
#jot-category {
       background-color: rgb(51,51,52) !important;
}
    #profile-jot-text, #profile-jot-wrapper textarea,
    #jot-location,
	.wall-item-comment-wrapper textarea {
		background-color: rgb(51, 51, 52) !important;
	}
#jot-text-wrap, #profile-jot-wrapper .dropzone.dz-clickable,
.wall-item-comment-wrapper .dropzone.dz-clickable {
       background-color: var(--background-color) !important;
}
.jothidden.nav.nav-pills .btn-link {
	font-size: 18px;
}
	.jothidden.nav.nav-pills .btn-link:hover,
	.jothidden.nav.nav-pills .btn-link:focus {
		color: var(--link-color) !important;
	}
.jot-nav {
       border: none !important;
}
.jot-nav a {
       border: none !important;
       border-radius: 8px !important;
       margin-right: 5px;
}
.jot-nav a:hover, .jot-nav a:focus {
       background-color: rgba(255,255,255,.2) !important;
}
.jot-nav .active a {
       background-color: transparent !important;
       border-radius: 0 !important;
       border-bottom: 3px solid var(--link-color) !important;
}
.jot-nav .active a:hover, .jot-nav .active a:focus {
       background-color: transparent !important;
}
[id^="comment-edit-preview"],
.comment-edit-preview {
  border-radius: 8px !important;
  box-shadow: none !important;
  background-color: rgba(255,255,255,.1);
}
[id^="comment-edit-preview"]:hover,
[id^="comment-edit-preview"]:focus,
.comment-edit-preview:hover,
.comment-edit-preview:focus {
       background-color: rgba(255,255,255,.2) !important;
}
#profile-jot-wrapper .wall-item-container.panel-body.preview {
       border: none !important;
       margin-top:20px !important;
       border-radius: none !important;
       background-color: transparent;
}
    /* file browser */
    #upload-photo {
        background-color: var(--link-color) !important;
        color: white !important;
        border-radius: 8px !important;
    }
     #upload-photo:hover,
     #upload-photo:focus {
        background-color: darkblue !important;
    }
    /* 	HIDE ATTACHMENT BUTTON
    	=======================
    	This hides the file attachment button in the Compose "Browser" tab
    	because there is no way to manage/delete uploaded attachments it
    	was a design choice of this theme mod to hide this button from users.
    	
    	If you WANT users to be able to see uploaded files and attach them
    	to posts either comment out this rule or change "none" to "block"
    */ 
    .fbswitcher [data-mode="attachment"] {
           display: none !important;
    }
    .panel,
    .panel-body {
    	background-color: var(--nav-bg);
    	border-radius: 10px;
    }
    .help-block {
    	color: var(--font-color-darker);
    }
/* PROFILE */
#profile-photo-wrapper {
    overflow: visible !important;
    padding: 5px;
    background-color: var(--background-color);
    border-radius: 100%
}
aside .widget, .nav-container .widget {
	color: var(--font-color);
}
aside .widget li {
    margin-bottom: 8px;
}
	aside .widget li a {
		color: var(--font-color);
	}
	 aside .widget li a:hover,
	 aside .widget li a:focus {
	 	color: var(--font-color);
	 }
aside .vcard img.u-photo, aside img.vcard-photo {
    border-radius: 100% !important;
    box-shadow: 0 0 1px rgba(0,0,0,.3);
    border: 3px solid var(--background-color);
}    
aside .widget h3.p-name {
    font-size: 32px !important;
    text-align: center;
    word-break: break-word;
	text-shadow: 1px 1px 2px var(--background-color), -1px -1px 2px var(--background-color);
	}
aside .vcard .p-addr {
    font-weight: 600;
    text-align: center;
    white-space: break-spaces !important;
	background-color: var(--background-color);
	border-radius: 8px;
}
	aside .vcard .title,
	aside .vcard .location,
	aside .vcard .key,
	aside .vcard .about,
	aside .vcard .xmpp,
	aside .vcard .matrix,
	aside .vcard .homepage {
		background-color: var(--background-color);
		padding: 5px;
		border-radius: 8px;
		min-width: 100%;
		margin: 10px 0;
	}
aside .widget li.selected {
	background-color: rgba(128,128,128,.1) !important;
	background-image: linear-gradient(var(--menu-background-hover-color),var(--menu-background-hover-color)) !important;
    border-color: transparent !important;
    border-radius: 8px;
}
aside .widget li.selected a {
    font-weight: bold;
}
	aside .widget li.selected a:hover {
		color: #eeeeee;
	}
aside .widget li:hover {
    background-color:rgba(128,128,128,.2) !important;
    border-color: transparent !important;
    border-radius: 8px;
}
#widget-contacts {
    background-color: rgb(37, 39, 40) !important;
    border-radius: 8px !important;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2) !important;
}
       .contact-block-img {
            height: 100px !important;
            width: 100px !important;
            border-radius: 8px !important;
            box-shadow: 0 0 1px rgba(0, 0, 0, .2);
            margin: 5px;
       }
.comment-fake-form {
    border: none !important;
    background-color: transparent !important;
}
.comment-fake-form textarea {
    border-radius: 50px !important;
    background-color: rgb(51, 51, 52) !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}    
.wall-item-actions button {
    font-size: 24px !important;
    color: var(--nav-icon-color) !important;
}
       .wall-item-actions button:hover {
              color: var(--link-color) !important;
       }
       .wall-item-actions .checkbox {
              padding-top: 6px !important;
       }
       .comment .media-body {
              padding: 10px;
              background-color: var(--background-color);
              border-radius: 20px;
       }
       .wall-item-actions-row .wall-item-emoji {
              font-size: 18px;
              line-height: 40px;
       }
       .navicon {
              font-size: 20px;
              position: relative;
              top: 1px;
       }
		/* little vcard when you scroll down on profiles */
		#vcard-short-photo-wrapper img, 
		#nav-short-info .contact-wrapper img {
			border-radius: 100% !important;
		}
		/* Profile Cover Photo */
		.row:has(.coverphoto) aside,
		.row:has(.coverphoto) #content {
			margin-top: 350px;
		}
			.row:has(.coverphoto) aside .widget.vcard,
			.row:has(.coverphoto) aside .panel-body {
				background-color: transparent !important;
			}
		.coverphoto {
			position: fixed;
			top: 115px;
			left: 0 !important;
			right: 0 !important;
			z-index: -1;
			height: 500px;
			overflow: hidden;
		}
			.coverphoto img {
				width: 100%;
				height: 100%;
				object-fit: cover;
				object-position: center;
			}
				.coverphoto:has(> :last-child:nth-child(2)) img {
					height: 50%;
				}
				.coverphoto:has(> :last-child:nth-child(3)) img {
					height: 33.3333%;
				}
				.coverphoto:has(> :last-child:nth-child(n+4)) img {
					height: 25%;
				}
    /* not obviously clickable or intuitive what it does */
    .plink.u-url {
    	/* uncomment to outline as a button
        -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
        box-shadow: 0 0 1px rgba(255,255,255,.5);
        */
        border-radius: 100%;
        position: relative;
        padding: 6px 4px;
        height: 35px;
        width:  35px;
        display: block;
    }
        .plink.u-url:hover {
            background-color: rgba(255,255,255,.1) !important;
            text-decoration: none !important;
        }
        .plink.u-url::after {
              content: '\f101';
              font-family: ForkAwesome;
              color: #666;
        }        
	.img-allocated-max-width {
		   margin: 20px auto;
	}
	#vcard-short-photo-wrapper img, 
	#nav-short-info .contact-wrapper img {
		border-radius: 100%;
	}
/* Calendar */
.fc-unthemed td.fc-today {
	background-color: rgba(128,128,128,.1);
	background-image: linear-gradient(var(--menu-background-hover-color),var(--menu-background-hover-color));
}
.event-buttons .btn {
  background-color: var(--link-color);
  color: #fff;
  border-radius: 100%;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 18px;
  padding: 0;
  margin-right: 5px;
}
	.event-buttons .btn:hover,
	.event-buttons .btn:focus {
		color: #fff;
		box-shadow: inset 0 0 100px rgba(0,0,0,.1);
	}
	.fc .fc-event {
		background-color: var(--link-color);
		border: none;
		color: white;
	}
		.fc .fc-month-view .fc-content .fc-title .item-desc:hover,
		.fc .fc-month-view .fc-content .fc-title .item-desc:focus {
			color: white;
		}
		.fc .fc-event:hover,
		.fc .fc-event:focus {
			box-shadow: inset 0 0 100px rgba(0,0,0,.2);
		}
/* Photo Albums */
.photo-album-actions .icon-padding,
.photo-edit-link-wrap .icon-padding {
    margin-left: 10px !important;
}
.photos-upload-link {
    font-size: 28px;
    color: var(--link-color) !important;
    opacity: 1 !important;
    border-radius: 8px;
    padding: 0px 8px;
}
#photo-album-link {
    opacity: 1 !important;
}
.photos-upload-link i,
#photo-album-link i,
#photo-edit-link i,
#photo-toprofile-link i,
#album-edit-link i,
#album-drop-link i,
.photos-order-link i {
    font-size: 24px !important;
    color: var(--link-color) !important;
    opacity: 1 !important;
    border-radius: 100% !important;
    padding: 8px 11px !important;
    height: 40px;
    width:  40px;
}
#photo-edit-link i.fa-image {
    padding: 6px 7px !important;
}
.photos-order-link {
    margin-top: 5px !important;
}
    .photos-upload-link:hover i,
    .photos-upload-link:focus i,
    #photo-album-link:hover i,
    #photo-album-link:focus i,
    #photo-edit-link:hover i,
    #photo-toprofile-link:hover i,
    #photo-toprofile-link:focus i,
    #album-edit-link:hover i,
    #album-edit-link:focus i,
    #album-drop-link:hover i,
    #album-drop-link:focus i,
    .photos-order-link:hover i,
    .photos-upload-link:hover i,
    .photos-upload-link:focus i {
       background-color: rgba(255,255,255,.1) !important;
    }
.photos-content-wrapper .photos-upload-link::before {
    content: var(--add-photo-button-text);
    font-size: 15px; 
    vertical-align: middle; 
    margin-top: -10px;
    display: inline-block;
}
.justified-gallery {
    overflow: visible !important;
    height: auto !important;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
}
.justified-gallery > a, 
.justified-gallery > div, 
.justified-gallery > figure{
    height: 180px !important;
    width: 180px !important;
    border: 1px solid #ccc;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    border-radius: 8px;
    margin: 4px !important;
}
.justified-gallery > .jg-entry-visible > img,
.justified-gallery > .jg-entry-visible > a > img,
.justified-gallery > .jg-entry-visible > svg,
.justified-gallery > .jg-entry-visible > a > svg{
    width: 100% !important;
    height:  100% !important;
    margin: 0 !important;
    top: 0 !important;
    left: 0 !important;
    object-fit:cover;
    object-position: center;
}
#photo-photo {
    margin: 0 auto !important;
    max-width: 100%;
}
#photos-upload-perms button[data-toggle="modal"] {
	background-color: rgba(255,255,255,.2) !important;
	padding: 0 !important;
	height: 36px;
	width:  36px;
	margin-right: 5px;
	border-radius: 100%;
	color: var(--link-color);	
}
	#photos-upload-perms button[data-toggle="modal"]:hover,
	#photos-upload-perms button[data-toggle="modal"]:focus {
		background-color: rgba(255,255,255,.1) !important;
	}
/* ADD-ONS */
.advancedcontentfilter-content-wrapper table td:nth-of-type(2) {
  word-wrap: anywhere;
}
.advancedcontentfilter-content-wrapper pre {
	margin-top: 20px;
}
/* MISCELLANEOUS STUFF */
div#back-to-top {
	bottom: 65px;
	left:   10px;
	background-color: var(--link-color);
	color: #ffffff;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 24px;
	border-radius: 100%;
}	
#item-delete-selected {
	height: 50px;
	width:  50px;
	line-height: 50px;
	font-size: 24px;
	background-color: var(--link-color);
	border-radius: 100%;
	top: 120px;
}
	#item-delete-selected:hover,
	#item-delete-selected:focus {
		box-shadow: inset 0 0 100px rgba(0,0,0,.2);
	}
	/* Profile pics in Messages and Events */
	.event-wrapper .event-owner img,
	.mail-conv-wrapper .media .contact-photo-wrapper img,
	.mail-list-outside-wrapper .contact-photo-wrapper img {
		border-radius: 100%;
	}
.modal-backdrop {
	background-color: #000;
}
/* TAGS, CATEGORIES, MENTIONS BUTTONS
   ==================================
   Restyled to be less obnoxious and tiny
   now sized and spaced like they are on Mastodon
*/
a.tag.label,
.wall-item-container .wall-item-bottom .wall-item-tags span.label {
	border-radius: 4px !important;
  	display: inline-flex !important;
  	font-size: 12px !important;
  	font-weight: 500 !important;
  	padding: 6px 12px !important;
  	-webkit-text-decoration: none !important;
  	text-decoration: none !important;
  	margin: 2px !important;	
  	background-image: none !important;
  	background-color: transparent !important;
  	box-shadow: none !important;
  	color: #05d8fb !important;
  	border: 1px solid #05d8fb;	
}
	.wall-item-bottom .label {
		color: inherit;
	}
	.wall-item-bottom .label a {
		color: inherit;
	}
		/* hide lightning bolt and person icons
		   pretty sure people know what "#" and "@" mean now
		*/
		a.tag.label .fa-bolt::before,
		.wall-item-bottom .label .fa-bolt::before {
			content: '';
		}
		.wall-item-bottom .label .fa-user::before{
			content: '';
		}
	/* undo hover for entire container*/
	.wall-item-container:hover .wall-item-bottom .wall-item-tags span.label {
		filter: grayscale(0.5);
		opacity: 0.8;
		-webkit-transition: 0s;
		-moz-transition: 0s;
		-ms-transition: 0s;
		transition: 0s;
	}
	/* replace with hover for individual tag */
	.wall-item-container .wall-item-bottom .wall-item-tags span.label:hover,
	.wall-item-container .wall-item-bottom .wall-item-tags span.label:focus,
	.wall-item-container .wall-item-bottom .wall-item-tags span.label:focus-within {
		filter: grayscale(0) !important;
		opacity: 1 !important;
		/* probably don't need vendor prefixed anymore but whatever...*/
		-webkit-transition: all 0.25s ease-in-out !important;
		-moz-transtion: all 0.25s ease-in-out !important;
		-ms-transition: all 0.25s ease-in-out !important;
		transition: all 0.25s ease-in-out !important;
	}
	/* Hashtag Buttons */
	a.tag.label.btn-info,
	.wall-item-bottom .wall-item-tags .tag.label.btn-info {
		/* inherits everything from above */
	}
		a.tag.label.btn-info:hover, a.tag.label.btn-info:focus,
		.wall-item-bottom .wall-item-tags .tag.label.btn-info:hover,
		.wall-item-bottom .wall-item-tags .tag.label.btn-info:focus {
			background-color: #05d8fb !important;
			color: black !important;
		}
	/* Category Buttons */
	.wall-item-bottom .wall-item-tags .category.label.btn-success {
		border-color: limegreen !important;
		color: limegreen !important;
		font-size: 0px !important; /* to get rid of parentheses */
	}
		/* replace (x) remove with icon button */
		.wall-item-bottom .wall-item-tags .category.label.btn-success a:first-of-type {
			font-size: 12px;
		}
		.wall-item-bottom .wall-item-tags .category.label.btn-success a:last-of-type::after {
			content: '\f00d';
			font-family: ForkAwesome;
			font-size: 12px;
			margin-left: 4px;
		}
		.wall-item-bottom .wall-item-tags .category.label.btn-success:hover,
		.wall-item-bottom .wall-item-tags .category.label.btn-success:focus {
			background-color: limegreen !important;
			color: black !important;
		}
		/* when a category is removed need to visually indicate it */
		.wall-item-bottom .wall-item-tags .category.label:not(.btn-success){
			border-color: #ccc !important;
			color: #ccc !important;
			font-size: 0px !important;
		}
			.wall-item-bottom .wall-item-tags .category.label:not(.btn-success) a:first-of-type{
				font-size: 12px;
				text-decoration: line-through;
			}
			.wall-item-bottom .wall-item-tags .category.label:not(.btn-success) a:last-of-type::after {
				content: '';
			}
			.wall-item-bottom .wall-item-tags .category.label:not(.btn-success):hover,
			.wall-item-bottom .wall-item-tags .category.label:not(.btn-success):focus {
				background-color: red !important;
				color: #ccc !important;
			}
	/* @ Mention Buttons */
	.wall-item-bottom .wall-item-tags .mention.label.btn-warning {
		border-color: gold !important;
		color: gold !important;
	}
		.wall-item-bottom .wall-item-tags .mention.label.btn-warning:hover,
		.wall-item-bottom .wall-item-tags .mention.label.btn-warning:focus {
			background-color: gold !important;
			border-color: gold !important;
			color: black !important;
		}
/*	Greater than Full-HD Width
	===========================
*/
@media screen and (min-width: 1921px){
	.coverphoto {
		max-width: 1920px;
		left: 50% !important;
		margin-left: -960px;
		border-bottom-right-radius: 10px;
		border-bottom-left-radius:  10px;
	}
}
/*	Small Laptop Screens
	Some tablets in Landscape Orientation
	=====================================
*/	
@media screen and (max-width: 1280px) {
    #search-box { 
        width: 18% !important;
    }
	#search-save {
		width: 140px !important;
	}
}
/*	Large Tablets in Portrait Orientation
	=====================================
*/
@media screen and (max-width: 991px){
	/* Friendica icon upper left */
	#banner {
		display: block !important;
		padding: 0 !important;
		margin: 8px 10px;
	}
		#friendica-logo-mask {
			display: block !important;
		}
	/* hide search box - no room */
    #search-box {
        display: none;
    }
    	/* show mobile search toggle */
    	#topbar-first .navbar-toggle[data-target="#search-mobile"]{
    		display: block !important;
    		position: fixed !important;
    		left: 100px;
    		top:    6px;
    	}
    	/* force display of mobile search box */
    	#search-mobile {
    		top: 110px !important;
    		border-color: black;
    	}
    		#search-mobile .col-xs-12 {
    			background-color: var(--nav-bg);
    		}
    			#search-mobile.collapse.in,
    			#search-mobile.collapse.in * {
    				display: block !important;
    			}
		#topbar-first .navbar-toggle[data-target="aside"] {
			position: fixed;
			top: 6px;
			left: 50px;
		}
		/* change aside toggle icon */
		.navbar-toggle .fa-ellipsis-v::before,
		#topbar-first .navbar-toggle[data-target="aside"] .fa-angle-double-right::before {
			content: "\f152";
		}
		body.aside-out .navbar-toggle .fa-ellipsis-v::before,
		body.aside-out #topbar-first .navbar-toggle[data-target="aside"] .fa-angle-double-right::before {
			content: "\f191";
		}
	#topbar-first .nav > .account {
		right: 24px;
	}
    #jotOpen::before {
        content: '';
        margin: 0;
    }
    #mention-link span:last-of-type {
        margin-right: 42px;
    }
    .offcanvas-right-overlay,
    aside::before {
    	background-color: rgba(0, 0, 0, 0.4);
    }
    /* Cover Photo Mobile */
	.row:has(.coverphoto) aside {
		margin-top: 0px;
	}   
    aside:has(.coverphoto){
    	left: -300px !important;
    	right: auto  !important;
    	display: block !important;
    	padding-top: 120px;
    	background-color: transparent !important;
    	transition-duration: .5s;
    	z-index: auto;
    }
    aside.canvas-sliding:has(.coverphoto) {
    	-webkit-transition: none;
    	transition: none;
    }
    aside.canvas-slid:has(.coverphoto) {
    	left: 0px !important;
    	right: auto !important;
    	z-index: 20;
    }
    	.coverphoto.canvas-slid{
    		left: 0px !important;
    		right: 0px !important;
    		bottom: 0px;
    		background-color: var(--background-color);
    		overflow: visible;
    	}
    		.coverphoto.canvas-slid::after {
    			content: '';
    			position: absolute;
    			top: 500px;
    			left: 0px;
    			width: 100%;
    			height: 100%;
    			display: block;
    			background-color: var(--background-color);
    		}
}
/*	Most Phones in Portrait Orientation
	Large Screen Phones in Landscape Orientation
	Some Small tablets in Portrait Orientation
	======================================
*/
@media screen and (max-width: 768px), (max-height: 480px) and (max-width: 960px) and (orientation: landscape) {
		#topbar-first .navbar-toggle[data-target="#search-mobile"]{
			left: 10%;
		}
		.topbar ul.nav {
			position: relative !important;
			left: 10% !important;
			margin-left: 0!important;
		}
		#search-save {
			width: 100px !important;
		}
			#search-save .fa-plus::after {
				content: var(--follow-button-text);
			}
			#search-save .fa-floppy-o::after {
				content: var(--save-button-text);
			}
		a.wall-item-name-link, span.fakelink {
    		font-weight: bold;
		}
		.wall-item-container iframe {
    		aspect-ratio: 5/4;
    	}
	/* new mobile layout */
	body {
		padding-top: 65px !important;
		padding-bottom: 55px !important;
	}
	
	/* Friendica icon upper left */
	#banner {
		display: block !important;
		padding: 0 !important;
		margin: 8px 10px !important;
	}
		#friendica-logo-mask {
			display: block !important;
		}
	#topbar-first {
		top: auto;
		bottom: 0;
		box-shadow: 2px 0px 5px rgba(0,0,0,.5);
	}
		#topbar-first .topbar-nav .arrow {
			display: none;
		}
		/* re-reveal the user profile toggle */
		#topbar-first .nav > .account {
			position: fixed;
			display: block !important;
			top: 0;
			right: 8px;
		}
			#topbar-first .nav > .account img {
				margin: 0;
			}
			#topbar-first .nav > .account span.caret {
				display: none;
			}
		/* overlay mobile nav toggle invisibly */
		#topbar-first .offcanvas-right-toggle {
			position: fixed;
			top: -3px;
			right: 7px;
			color: transparent;
			z-index: 10000;
		}
		/* move sidebar toggle to bottom bar */
		#topbar-first .navbar-toggle[data-target="aside"]{
			position: fixed;
			top: auto;
			left: auto;
			bottom: 5px;
		}
			/* change icon */
			.navbar-toggle .fa-ellipsis-v::before,
			#topbar-first .navbar-toggle[data-target="aside"] .fa-angle-double-right::before {
				content: "\f152";
			}
			body.aside-out .navbar-toggle .fa-ellipsis-v::before,
			body.aside-out #topbar-first .navbar-toggle[data-target="aside"] .fa-angle-double-right::before {
				content: "\f191";
			}
		/* move search button right */
		#topbar-first .navbar-toggle[data-target="#search-mobile"] {
			position: relative !important;
			display: block !important; /* show in landscape on phones */
			top: 0;
			left: auto;
			right: auto;
			margin: 0;
		}
			#topbar-first .navbar-toggle[data-target="#search-mobile"]:not(.collapsed){
				color: var(--link-color);
				border-bottom: 3px solid var(--link-color);
				background-color: transparent !important;
				border-radius: 0 !important;
				margin-top: 0px;
			}
				#topbar-first .navbar-toggle[data-target="#search-mobile"]:not(.collapsed) .fa-search::before {
					content: '\f00e';
				}
		/* fix spacing of icons */
		.topbar ul.nav {
			position: absolute !important;
			left: 50px !important;
			right: 50px !important;
			display: flex;
			justify-content: space-between;
		}
		#topbar-first .topbar-nav .nav-segment {
			margin: 0px;
		}
		#search-mobile {
			top: 60px !important;
		}
			/* always show on phones in landscape */
			#search-mobile.collapse.in,
			#search-mobile.collapse.in * {
				display: block !important;
			}
		/* app-style notification menu */		
		#nav-notifications-menu {
			position: fixed;
			top: 60px;
			bottom: 51px;
			left: 0;
			right: 0;
			width: 100% !important;
			min-width: unset;
			max-width: unset;
			min-height: unset;
			max-height: unset !important;
			margin: 0 !important;
			box-shadow: none;
		}
			#nav-notifications-menu::before {
				content: '\f00d';
				font-family: ForkAwesome;
				position: absolute;
				top: 8px;
				right: 12px;
				height: 40px;
				width:  40px;
				background-color: var(--link-color);
				color: white;
				font-size: 24px;
				border-radius: 100%;
				line-height: 40px;
				text-align: center;
				display: block;
			}
	#offcanvasUsermenu {
		background-color: var(--nav-bg) !important;
	}
	#offcanvasUsermenu ul.list-group {
		-webkit-box-shadow: none !important;
		-moz-box-shadow: none !important;
		box-shadow: none !important;
	}
		#offcanvasUsermenu ul.list-group li:first-of-type img {
			max-width: unset  !important;
			max-height: unset  !important;
			height: 40px  !important;
			width:  40px  !important;
			border-radius: 100% !important;
		}
			#offcanvasUsermenu li.divider {
				display: none !important;
			}
			#offcanvasUsermenu li.list-group-item,
	    #offcanvasUsermenu li.list-group-item a {
				border: transparent !important;
				background-color: transparent !important;
				color: var(--nav-icon-color) !important;
				width: 90% !important;
				margin: 0 auto;
			}
	#offcanvasUsermenu li.list-group-item:hover {
		background-color: #333 !important;
		border-radius: 8px !important;
	}
	#offcanvasUsermenu li.list-group-item:hover a {
		color: #fff !important;
	}
	#offcanvasUsermenu li.list-group-item:first-of-type:hover {
		background-color: revert !important;
	}
		/* force mobile search in landscape on phones */
		#search-box {
			display: none !important;
		}
	/* position delete button */
	#item-delete-selected {
		top: 60px;
		right: 10px;
	}	
	/* move top bars around */		
	#topbar-second {
		top: 0px;
		padding: 0;
	}
		#topbar-second div.container{
			position: absolute;
			left: 55px;
			right: 55px;
		}
		#topbar-second #tabmenu {
			width: 100%;
		}
			/* override and show mobile tabs  in landscape */
			#topbar-second #tabmenu ul.tabbar.hidden-xs {
				display: none !important;
			}
			#topbar-second #tabmenu ul.tabbar.visible-xs {
				display: block !important;
			}
		#topbar-second ul.tabbar {
			text-align: center;
			max-width: 100%;
		}
			#topbar-second ul.tabbar > li:first-of-type {
				max-width: 75%;
				overflow: hidden;
			}
				#topbar-second ul.tabbar li:first-of-type ul.tabs {
					max-width: 100%;
				}
					#topbar-second ul.tabbar li:first-of-type ul.tabs li {
						width: 100%;
					}
						#topbar-second ul.tabbar li:first-of-type ul.tabs li a {
							overflow: hidden;
							text-overflow: ellipsis;
							white-space: nowrap;
						}
			#dropdownMenuTools-xs {
				height: 60px;
			}
				ul.tabs-extended .dropdown.open .fa-chevron-down::before{
					content: '\f077';
				}
		#jotOpen, #search-save, #mention-link {
			position: fixed;
			bottom: 65px;
			right: 10px;
			border-radius: 100% !important;
			height: 50px;
			width: 50px !important;
			line-height: 50px;
			border: none !important;
    		box-shadow: none !important;
		}
			#mention-link span:last-of-type {
				display: none;
			}
			#mention-link span:first-of-type {
				float: none;
				position: relative;
				left: -5px;
				top: 2px;
			}
			#search-save .fa-plus::after,
			#search-save .fa-floppy-o::after {
				display: none;
			}
			#search-save .fa-plus::before,
			#search-save .fa-floppy-o::before {
				content: '\f0c7' !important;
			}
			.fa-edit::before,
			.fa-pencil-square-o::before {
				content: "\f040";
			}
		/* drop-down mobile style*/
		#topbar-second .dropdown-menu {
			position: fixed;
			top: 58px;
			left: 0px;
			right: 0px;
			bottom: 50px;
			width: 100% !important;
			overflow: auto !important;
			overflow-x: hidden !important;
		}	
			#topbar-second .dropdown-menu li {
				height: auto !important;
			}
				#topbar-second .dropdown-menu li a,
				.tabs .dropdown-menu li a {
					font-size: 18px !important;
				}
				.topbar .dropdown-header {
					font-size: 18px !important;
				}
				.topbar .dropdown-header .dropdown-header-link .btn-link {
					font-size: 18px !important;
					margin-right: 40px;
				}
		aside.offcanvas-xs {
			padding-top: 60px;
			padding-bottom: 60px;
		}
		.coverphoto {
			top: 55px;
		}	
	#message-new {
		height: 50px;
		width:  50px;
		background-color: var(--link-color);
		line-height: 50px;
		font-size: 24px;
		text-align: center;
		border-radius: 100%;
	}
		#message-new a {
			color: white !important;
			opacity: 1;
		}
			#message-new:hover,
			#message-new:focus {
				box-shadow: 0 0 100px rgba(0,0,0,.2);
			}						
}
/*	Narrow Screen Phones in Portrait Orientation
	============================================
*/
@media screen and (max-width: 400px) and (orientation: portrait) {
	/* remove action button labels if screen is too narrow */
	.wall-item-actions-row button::after {
		content: '.';
		color: transparent;
	}
	/* NOTE: cannot simply empty or display none or button alignment gets messed up! */
}	
/* 	Narrow Screen Phones in Landscape Orientation
	==============================================
*/
@media screen and (max-height: 400px) and (orientation: landscape) {	
		#topbar-first {
			transition-duration: .5s;
			transition-property: bottom;
			bottom: -55px;
		}
			header #banner {
				background-color: var(--nav-bg);
				border-radius: 8px;
				z-index: 1030;
			}
			#topbar-first .navbar-toggle[data-target="aside"] {
				position: fixed !important;
				left: 10px;
				bottom: 10px;
				transition-duration: .5s;
				background-color: var(--link-color);
				color: white;
				height: 50px;
				width:  50px;
				border-radius: 100%;
				line-height: 32px;
			}
			#topbar-first .navbar-toggle[data-target="#search-mobile"],
			#topbar-first .navbar-toggle[data-target="#search-mobile"]:not(.collapsed) {
				position: fixed !important;
				top: auto;
				bottom: 10px;
				right: 10px;
				transition-duration: .5s;
				background-color: var(--link-color);
				color: white;
				height: 50px;
				width:  50px;
				border-radius: 100%;
				line-height: 32px;			
			}
			#topbar-first .navbar-toggle[data-target="#search-mobile"]:hover,
			#topbar-first .navbar-toggle[data-target="#search-mobile"]:focus {
				box-shadow: inset 0 0 100px rgba(0,0,0,.2);
			}
			.fa-fw {
				width: auto;
			}
			#topbar-first .offcanvas-right-toggle {
				top: 3px;
				right: 13px;
			}
			#main-menu img {
				border: 5px solid var(--link-color);
				border-radius: 100%;
				box-sizing: unset;
			}
		#search-mobile {
        	top: 40% !important;
        	border: 10px solid var(--link-color);
        	border-radius: 8px;
        	left: 50%;
        	width: 80%;
        	margin-left: -40%;
        	box-shadow: 0 0 50px rgba(0,0,0,.75);
    	}
    		#search-mobile .col-xs-12 {
    			background-color: var(--nav-bg);
    		}
		#topbar-second {
			transition-duration: .5s;
			transition-property: top;
			top: -60px;
		}
		#topbar-first .nav > li > a:hover, 
		#topbar-first .nav > li > a:focus, 
		#topbar-first .nav > li > button:not(#main-menu):hover, 
		#topbar-first .nav > li > button:not(#main-menu):focus, 
		#topbar-first button.navbar-toggle:not(.offcanvas-right-toggle):hover, 
		#topbar-first button.navbar-toggle:not(.offcanvas-right-toggle):focus, 
		nav.navbar .nav > li > a:hover, 
		nav.navbar .nav > li > a:focus, 
		nav.navbar .nav > li > button:hover, 
		nav.navbar .nav > li > button:focus {
		  background-color: var(--link-color) !important;
		  border-radius: 100% !important;
		  box-shadow: inset 0 0 100px rgba(0,0,0,.2);
		}
		#topbar-first button.navbar-toggle.offcanvas-right-toggle:hover, 
		#topbar-first button.navbar-toggle.offcanvas-right-toggle:focus {
			border-radius: 100% !important;
		}
		#topbar-first .topbar-actions {
			z-index: 1070;
		}
		/* if notifications is left open when phone is rotated */
		#nav-notifications-menu {
			top: 0;
			bottom: 0;
			z-index: 10000;
		}
		#offcanvasUsermenu {
			top: 0px;
		}
			#offcanvasUsermenu li:first-of-type img {
				display: none;
			}
			#offcanvasUsermenu li:first-of-type {
				font-weight: 700;
			} 
		.offcanvas-right-overlay {
 			top: 0px;
 		}
 		.row:has(.coverphoto) #content {
			margin-top: 200px;
		}
 		.coverphoto {
			top: 0px;
			left: 0px;
			right: 0px;
			height: 500px;
		}	
}
}	
/* LOGIN AND INFO SCREENS */
.mod-home .navbar,
.mod-home #topbar-second{
	background-color: transparent !important;
}
.mod-home #nav-about {
	background-color: var(--link-color);
	height: 50px;
	width: 50px;
	color: white !important;
	border-radius: 100% !important;
	right: 15px;
}
 .mod-home #nav-about:hover,
.mod-home #nav-about:focus {
	background-color: var(--link-color) !important;
	box-shadow: inset 0 0 100px rgba(0,0,0,.1);
}
.mod-home #nav-about .fa-info {
	line-height: 24px;
	width: auto;
	display: block;
}
	@media screen and (max-width: 768px){
		.mod-home #nav-about .fa-info {
			line-height: 32px;
		}
	}